@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
}

html {
  font-size: 62.5%;
}

body {
  font-size: 16px;
  font-size: 1.6rem;
  text-align: justify;
  text-justify: inter-ideograph;
  font-family: "Noto Sans JP", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", Osaka, Verdana, sans-serif;
  line-height: 1.428571429;
  letter-spacing: 0.02em;
  font-weight: 500;
}

/* 自動クリアフィックス */
header:after, section:after, article:after, footer:after, .clearfix:after {
  content: " ";
  display: block;
  clear: both;
  height: 0;
  line-height: 0;
}

@media only screen and (max-width: 960px) {
  .pc {
    display: none;
  }
}

@media only screen and (max-width: 600px) {
  .tablet {
    display: none;
  }
}

.mobile {
  display: none;
}
@media only screen and (max-width: 600px) {
  .mobile {
    display: inline-block;
  }
}

.center {
  text-align: center;
}

/*!
component > title
------------------------------
*/
.h2Wrap {
  text-align: center;
}

.secTitle {
  font-family: Noto Sans JP, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 36px;
  font-size: 3.6rem;
  margin-top: 80px;
  padding-bottom: 5px;
  text-align: center;
  line-height: 1.2;
}
@media only screen and (max-width: 600px) {
  .secTitle {
    margin-top: 60px;
    font-size: 26px;
    font-size: 2.6rem;
  }
}

/*!
component > common
------------------------------
*/
a {
  color: #003B80;
  text-decoration: none;
}

.marker {
  text-align: left;
  font-family: inherit !important;
  margin-bottom: 0 !important;
  background: linear-gradient(transparent 0%, #ffff66 0%);
}

.red {
  color: #ed1c29;
}

.center {
  text-align: center;
}

.caution {
  color: #ed1c29;
}

.bold {
  font-weight: bold;
}

.transition-common {
  transition: all 0.2s;
}

.shadow-common {
  box-shadow: 2px 2px 3px 0px rgba(0, 0, 0, 0.2);
}

#toTop {
  position: fixed;
  z-index: 100;
  bottom: 0;
  right: 10px;
  background-color: #008BB5;
  border-radius: 5px 5px 0 0;
  width: 60px;
  height: 60px;
  padding: 5px;
  box-sizing: border-box;
}
@media only screen and (max-width: 600px) {
  #toTop {
    width: 50px;
    height: 50px;
  }
}
#toTop a {
  color: #fff;
  display: block;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
#toTop img {
  width: 50%;
}
#toTop .toTop__text {
  display: block;
  text-align: center;
}

/*!
component > btn
------------------------------
*/
.btnArea {
  text-align: center;
}

.btn {
  text-align: center;
  border: none;
  padding: 20px 1em 16px;
  font-size: 15px;
  font-size: 1.5rem;
  border-radius: 5px;
  font-family: Noto Sans JP, sans-serif;
  font-weight: 700;
  font-style: normal;
}
.btn.std {
  max-width: 280px;
  margin: 10px auto;
  color: #fff;
  background-color: #003B80;
}
.btn.std.black {
  background-color: #0A0C07;
}
.btn.large {
  max-width: 360px;
}
.btn.disable {
  background-color: #808080 !important;
}
.btn.round {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  padding: 1em 2em;
  width: 300px;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  background-color: #008BB5;
  border-radius: 50vh;
  letter-spacing: 0.05em;
}
@media only screen and (max-width: 600px) {
  .btn.round {
    width: inherit;
  }
}
.btn.round.sub {
  background-color: #003B80;
}

a.btn {
  text-decoration: none;
  display: block;
}

a:hover {
  transition: 0.2s;
  opacity: 0.8;
}

.disable:hover {
  cursor: default;
}

.btn-line {
  max-width: 280px;
  display: block;
  border-width: 2px;
  border-style: solid;
  margin: 10px auto;
  background-color: rgba(255, 255, 255, 0.5);
  color: #003B80;
  border-color: #003B80;
}

/*!
layout > container
------------------------------
*/
.contentsWrap {
  min-height: 1200px;
}

/*!
layout > header
------------------------------
*/
#top-head {
  top: -100px;
  position: absolute;
  width: 100%;
  margin: 100px auto 0;
  line-height: 1;
  z-index: 999;
  text-decoration: none;
  background-color: #008BB5;
}
#top-head a {
  text-decoration: none;
  color: #fff;
}
#top-head .logo {
  position: absolute;
  width: 100px;
  left: 5%;
  top: 10%;
  z-index: 1000;
}
@media only screen and (max-width: 960px) {
  #top-head .logo {
    top: 5px;
    position: fixed;
  }
}
#top-head .logo img {
  width: 100px;
}
#top-head .header-inner {
  position: relative;
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 2%;
  padding-right: 2%;
}
@media only screen and (max-width: 960px) {
  #top-head .header-inner {
    padding-left: inherit;
    padding-right: inherit;
  }
}

@media only screen and (max-width: 960px) {
  #mobile-head {
    width: 100%;
    z-index: 999;
    height: 46px;
    position: fixed;
    background-color: rgba(0, 139, 181, 0.9);
  }
}
#global-nav {
  padding-top: 12px;
  padding-bottom: 10px;
  display: flex;
  justify-content: flex-end;
}
@media only screen and (max-width: 960px) {
  #global-nav {
    display: none;
    width: 100%;
    padding-top: 0;
    overflow-y: scroll;
    position: fixed;
    height: 100%;
  }
}
#global-nav ul {
  list-style: none;
}
#global-nav #mainNav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 70%;
  box-sizing: border-box;
}
@media only screen and (max-width: 960px) {
  #global-nav #mainNav {
    display: block;
    width: 100%;
    background-color: rgba(10, 12, 7, 0.9);
    border-radius: inherit;
    padding-left: 5%;
    padding-right: 5%;
    margin-top: 50px;
  }
}
#global-nav #mainNav .mainNavList {
  display: flex;
}
@media only screen and (max-width: 960px) {
  #global-nav #mainNav .mainNavList {
    display: block;
  }
  #global-nav #mainNav .mainNavList li {
    font-size: 18px;
    font-size: 1.8rem;
  }
}
#global-nav #mainNav .mainNavList > li {
  text-align: center;
  display: flex;
  align-items: center;
  padding: 0 3em;
  font-family: Noto Sans JP, sans-serif;
  font-weight: 500;
  font-style: normal;
}
@media only screen and (max-width: 960px) {
  #global-nav #mainNav .mainNavList > li {
    display: block;
    text-align: left;
    padding: 16px 0;
  }
}
#global-nav #mainNav .mainNavList > li:not(:last-child) {
  border-right: 1px solid #0A0C07;
}
@media only screen and (max-width: 960px) {
  #global-nav #mainNav .mainNavList > li:not(:last-child) {
    border-right: none;
  }
}
#global-nav #mainNav .mainNavList a {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.2;
  font-weight: bold;
  padding-top: 4px;
  padding-bottom: 4px;
  color: #fff;
}
#global-nav #mainNav .mainNavList a:hover {
  color: rgba(255, 255, 255, 0.9);
}
@media only screen and (max-width: 960px) {
  #global-nav #mainNav .mainNavList a {
    display: block;
    color: #fff;
    padding: 10px 16%;
  }
}
#global-nav #mainNav .mainNavList a .small {
  font-size: 13px;
  font-size: 1.3rem;
}
#global-nav #mainNav .mainNavList a.disable {
  color: #9a9a9a;
}
#global-nav #mainNav .mainNavList span {
  display: block;
}
@media only screen and (max-width: 960px) {
  #global-nav #mainNav .mainNavList span {
    display: inline-block;
  }
}
#global-nav #mainNav .mainNavList .navText-jp {
  font-size: 15px;
  font-size: 1.5rem;
}
@media only screen and (max-width: 960px) {
  #global-nav #mainNav .mainNavList .navText-jp {
    font-size: inherit;
  }
}
#global-nav #mainNav .mainNavList .navText-en {
  font-size: 12px;
  font-size: 1.2rem;
}
@media only screen and (max-width: 960px) {
  #global-nav #mainNav .mainNavList .navText-en {
    font-size: 14px;
    font-size: 1.4rem;
    margin-left: 0.5em;
  }
  #global-nav #mainNav .mainNavList .navText-en:before {
    content: "- ";
  }
}

/* Toggle Button */
#menu-icon {
  position: absolute;
  right: 0;
  top: 20%;
  margin-right: 3%;
  display: none;
}
@media only screen and (max-width: 960px) {
  #menu-icon {
    display: inline;
    cursor: pointer;
  }
  #menu-icon.active .first {
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    margin-top: 10px;
  }
  #menu-icon.active .second {
    transform: rotate(135deg);
    -webkit-transform: rotate(135deg);
    position: relative;
    top: -12px;
  }
  #menu-icon.active .third {
    display: none;
  }
}
#menu-icon span {
  border: 3px solid #0A0C07;
  width: 30px;
  margin-bottom: 6px;
  display: block;
  transition: all 0.1s;
}

.mega-dropdown {
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 3%;
  padding-right: 3%;
  box-sizing: border-box;
  width: 94%;
  position: absolute;
  top: 100%;
  left: 2.5%;
  overflow: hidden;
  padding: 20px 5%;
  display: none;
  opacity: 0;
  margin-top: -5px;
  box-sizing: border-box;
  transition: all 0.5s;
}
@media only screen and (max-width: 960px) {
  .mega-dropdown {
    display: block;
    opacity: 1;
    width: 100%;
    position: static;
    background-color: transparent;
    padding: 0;
    margin-top: 0;
    border-top: 1px solid #fff;
  }
  .mega-dropdown:hover {
    opacity: 1;
    cursor: default;
  }
}
.mega-dropdown.is-active {
  display: block;
  opacity: 1;
  z-index: 1;
  transform: translateY(4px);
  background-color: rgba(10, 12, 7, 0.75);
  transition: all 0.3s;
}
@media only screen and (max-width: 960px) {
  .mega-dropdown.is-active {
    transform: inherit;
  }
}
.mega-dropdown .row {
  justify-content: space-around;
  display: flex;
}
@media only screen and (max-width: 960px) {
  .mega-dropdown .row {
    display: block;
  }
}

.mega-col {
  width: 30%;
  float: left;
}
@media only screen and (max-width: 960px) {
  .mega-col {
    width: 100%;
    float: none;
  }
}
.mega-col li {
  margin: 10px 1em;
  font-family: Noto Sans JP, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 1.1;
  text-align: left;
}
.mega-col a {
  color: #fff !important;
}

/*!
layout > footer
------------------------------
*/
#footer {
  margin-top: 80px;
  text-align: center;
}
#footer .footerBar {
  background-color: #273036;
}

#wrapper.sub #footer {
  background-color: #273036;
  color: #fff;
}
#wrapper.sub #footer .copyright {
  margin: 0;
  padding: 16px 0;
}

.copyright {
  padding: 20px 0;
  font-size: 12px;
  font-size: 1.2rem;
  color: #fff;
}

/* サブページ共通 */
#contents-base {
  margin-top: 100px;
  margin-bottom: 60px;
}

.sub .innerWrap {
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 3%;
  padding-right: 3%;
  box-sizing: border-box;
}

.subpageTitle {
  text-align: center;
  font-size: 36px;
  font-size: 3.6rem;
}

/* 競技種目テーブル */
.grid {
  display: grid;
  margin-top: 30px;
  grid-template-columns: 3fr 1.25fr 1.25fr 1.5fr 1fr 1fr 1fr 1.5fr;
  grid-template-rows: auto;
  grid-gap: 8px;
  font-size: 15px;
  font-size: 1.5rem;
  grid-template-areas: "headTitle1 headTitle2   headTitle3   headTitle4 headTitle5 headTitle6  headTitle7  headTitle8" "catName1   std-distance  std-capacity std-fee1   std-age    std-jtu1    std-wet    std-award" "catName2   std-distance  std-capacity std-fee2   std-age    std-jtu2    std-wet    std-award" "catName3   std-distance  std-capacity std-fee3   std-age    std-jtu3    std-wet    std-award-w" "catName4   std-distance  std-capacity std-fee4   std-age    std-jtu4    std-wet    std-award-w" "bar1 bar1 bar1 bar1 bar1 bar1 bar1 bar1" "catName5   sp-distance  sp-capacity  sp-fee1    sp-age     sp-jtu1     sp-wet     sp-award" "catName6   sp-distance  sp-capacity  sp-fee2    sp-age     sp-jtu2     sp-wet     sp-award" "catName5-hs   sp-distance  sp-capacity  sp-fee5    sp-age     sp-jtu5     sp-wet     sp-award" "catName7   sp-distance  sp-capacity  sp-fee3    sp-age-w     sp-jtu3     sp-wet     sp-award-w" "catName8   sp-distance  sp-capacity  sp-fee4    sp-age-w      sp-jtu4     sp-wet     sp-award-w" "hosoku hosoku hosoku hosoku hosoku hosoku hosoku hosoku" "bar2 bar2 bar2 bar2 bar2 bar2 bar2 bar2" "catName9   ch-distance  ch-capacity  ch-fee     ch-age     ch-jtu     ch-wet     ch-award" "bar3 bar3 bar3 bar3 bar3 bar3 bar3 bar3" "catName10  jrA-distance jrA-capacity jrA-fee    jrA-age    jrA-jtu    jrA-wet    jrA-award" "catName11  jrB-distance jrB-capacity jrB-fee    jrB-age    jrB-jtu    jrB-wet    jrB-award" "bar4 bar4 bar4 bar4 bar4 bar4 bar4 bar4" "catName12  smy-distance  smy-capacity  smy-fee     smy-age     smy-jtu     smy-wet     smy-award";
}
@media only screen and (max-width: 960px) {
  .grid {
    grid-template-columns: 1fr 2fr;
    grid-template-rows: auto;
    grid-gap: 2;
    font-size: 16px;
    font-size: 1.6rem;
    grid-template-areas: "catName-mb1-2 catName-mb1-2" "headTitle2  std-distance" "headTitle3  std-capacity" "headTitle4  std-fee-mb1-2" "headTitle5  std-age" "headTitle6  std-jtu-mb1-2" "headTitle7  std-wet" "headTitle8  std-award" "space1 space1" "catName-mb3-4 catName-mb3-4" "headTitle2-mb2  std-distance-mb" "headTitle3-mb2  std-capacity-mb" "headTitle4-mb2  std-fee-mb3-4" "headTitle5-mb2  std-age-mb" "headTitle6-mb2  std-jtu-mb3-4" "headTitle7-mb2  std-wet-mb" "headTitle8-mb2  std-award-w" "bar1 bar1" "catName-mb5-6 catName-mb5-6" "headTitle2-mb3  sp-distance" "headTitle3-mb3  sp-capacity" "headTitle4-mb3  sp-fee-mb5-6" "headTitle5-mb3  sp-age" "headTitle6-mb3  sp-jtu-mb5-6" "headTitle7-mb3  sp-wet" "headTitle8-mb3  sp-award" "space2 space2" "catName-mb7-8 catName-mb7-8" "headTitle2-mb4  sp-distance-mb" "headTitle3-mb4  sp-capacity-mb" "headTitle4-mb4  sp-fee-mb7-8" "headTitle5-mb4  sp-age-mb" "headTitle6-mb4  sp-jtu-mb7-8" "headTitle7-mb4  sp-wet-mb" "headTitle8-mb4  sp-award-w" "hosoku hosoku" "bar2 bar2" "catName9 catName9" "headTitle2-mb5  ch-distance" "headTitle3-mb5  ch-capacity" "headTitle4-mb5  ch-fee" "headTitle5-mb5  ch-age" "headTitle6-mb5  ch-jtu" "headTitle7-mb5  ch-wet" "headTitle8-mb5  ch-award" "bar3 bar3" "catName10 catName10" "headTitle2-mb6  jrA-distance" "headTitle3-mb6  jrA-capacity" "headTitle4-mb6  jrA-fee" "headTitle5-mb6  jrA-age" "headTitle6-mb6  jrA-jtu" "headTitle7-mb6  jrA-wet" "headTitle8-mb6  jrA-award" "space3 space3" "catName11 catName11" "headTitle2-mb7  jrB-distance" "headTitle3-mb7  jrB-capacity" "headTitle4-mb7  jrB-fee" "headTitle5-mb7  jrB-age" "headTitle6-mb7  jrB-jtu" "headTitle7-mb7  jrB-wet" "headTitle8-mb7  jrB-award" "bar4 bar4" "catName12 catName12" "headTitle2-mb8  smy-distance" "headTitle3-mb8  smy-capacity" "headTitle4-mb8  smy-fee" "headTitle5-mb8  smy-age" "headTitle6-mb8  smy-jtu" "headTitle7-mb8  smy-wet" "headTitle8-mb8  smy-award";
  }
}
.grid .headTitle1 {
  grid-area: headTitle1;
}
.grid .headTitle2 {
  grid-area: headTitle2;
}
.grid .headTitle3 {
  grid-area: headTitle3;
}
.grid .headTitle4 {
  grid-area: headTitle4;
}
.grid .headTitle5 {
  grid-area: headTitle5;
}
.grid .headTitle6 {
  grid-area: headTitle6;
}
.grid .headTitle7 {
  grid-area: headTitle7;
}
.grid .headTitle8 {
  grid-area: headTitle8;
}
.grid .headTitle2-mb2 {
  grid-area: headTitle2-mb2;
}
.grid .headTitle3-mb2 {
  grid-area: headTitle3-mb2;
}
.grid .headTitle4-mb2 {
  grid-area: headTitle4-mb2;
}
.grid .headTitle5-mb2 {
  grid-area: headTitle5-mb2;
}
.grid .headTitle6-mb2 {
  grid-area: headTitle6-mb2;
}
.grid .headTitle7-mb2 {
  grid-area: headTitle7-mb2;
}
.grid .headTitle8-mb2 {
  grid-area: headTitle8-mb2;
}
.grid .headTitle2-mb3 {
  grid-area: headTitle2-mb3;
}
.grid .headTitle3-mb3 {
  grid-area: headTitle3-mb3;
}
.grid .headTitle4-mb3 {
  grid-area: headTitle4-mb3;
}
.grid .headTitle5-mb3 {
  grid-area: headTitle5-mb3;
}
.grid .headTitle6-mb3 {
  grid-area: headTitle6-mb3;
}
.grid .headTitle7-mb3 {
  grid-area: headTitle7-mb3;
}
.grid .headTitle8-mb3 {
  grid-area: headTitle8-mb3;
}
.grid .headTitle2-mb4 {
  grid-area: headTitle2-mb4;
}
.grid .headTitle3-mb4 {
  grid-area: headTitle3-mb4;
}
.grid .headTitle4-mb4 {
  grid-area: headTitle4-mb4;
}
.grid .headTitle5-mb4 {
  grid-area: headTitle5-mb4;
}
.grid .headTitle6-mb4 {
  grid-area: headTitle6-mb4;
}
.grid .headTitle7-mb4 {
  grid-area: headTitle7-mb4;
}
.grid .headTitle8-mb4 {
  grid-area: headTitle8-mb4;
}
.grid .headTitle2-mb5 {
  grid-area: headTitle2-mb5;
}
.grid .headTitle3-mb5 {
  grid-area: headTitle3-mb5;
}
.grid .headTitle4-mb5 {
  grid-area: headTitle4-mb5;
}
.grid .headTitle5-mb5 {
  grid-area: headTitle5-mb5;
}
.grid .headTitle6-mb5 {
  grid-area: headTitle6-mb5;
}
.grid .headTitle7-mb5 {
  grid-area: headTitle7-mb5;
}
.grid .headTitle8-mb5 {
  grid-area: headTitle8-mb5;
}
.grid .headTitle2-mb6 {
  grid-area: headTitle2-mb6;
}
.grid .headTitle3-mb6 {
  grid-area: headTitle3-mb6;
}
.grid .headTitle4-mb6 {
  grid-area: headTitle4-mb6;
}
.grid .headTitle5-mb6 {
  grid-area: headTitle5-mb6;
}
.grid .headTitle6-mb6 {
  grid-area: headTitle6-mb6;
}
.grid .headTitle7-mb6 {
  grid-area: headTitle7-mb6;
}
.grid .headTitle8-mb6 {
  grid-area: headTitle8-mb6;
}
.grid .headTitle2-mb7 {
  grid-area: headTitle2-mb7;
}
.grid .headTitle3-mb7 {
  grid-area: headTitle3-mb7;
}
.grid .headTitle4-mb7 {
  grid-area: headTitle4-mb7;
}
.grid .headTitle5-mb7 {
  grid-area: headTitle5-mb7;
}
.grid .headTitle6-mb7 {
  grid-area: headTitle6-mb7;
}
.grid .headTitle7-mb7 {
  grid-area: headTitle7-mb7;
}
.grid .headTitle8-mb7 {
  grid-area: headTitle8-mb7;
}
.grid .headTitle2-mb8 {
  grid-area: headTitle2-mb8;
}
.grid .headTitle3-mb8 {
  grid-area: headTitle3-mb8;
}
.grid .headTitle4-mb8 {
  grid-area: headTitle4-mb8;
}
.grid .headTitle5-mb8 {
  grid-area: headTitle5-mb8;
}
.grid .headTitle6-mb8 {
  grid-area: headTitle6-mb8;
}
.grid .headTitle7-mb8 {
  grid-area: headTitle7-mb8;
}
.grid .headTitle8-mb8 {
  grid-area: headTitle8-mb8;
}
.grid .bar1 {
  grid-area: bar1;
}
.grid .bar2 {
  grid-area: bar2;
}
.grid .bar3 {
  grid-area: bar3;
}
.grid .bar4 {
  grid-area: bar4;
}
.grid .catName1 {
  grid-area: catName1;
}
.grid .catName2 {
  grid-area: catName2;
}
.grid .catName3 {
  grid-area: catName3;
}
.grid .catName4 {
  grid-area: catName4;
}
.grid .catName5 {
  grid-area: catName5;
}
.grid .catName5-hs {
  grid-area: catName5-hs;
}
.grid .catName6 {
  grid-area: catName6;
}
.grid .catName7 {
  grid-area: catName7;
}
.grid .catName8 {
  grid-area: catName8;
}
.grid .catName9 {
  grid-area: catName9;
}
.grid .catName10 {
  grid-area: catName10;
}
.grid .catName11 {
  grid-area: catName11;
}
.grid .catName12 {
  grid-area: catName12;
}
.grid .catName-mb1-2 {
  grid-area: catName-mb1-2;
}
.grid .catName-mb3-4 {
  grid-area: catName-mb3-4;
}
.grid .catName-mb5-6 {
  grid-area: catName-mb5-6;
}
.grid .catName-mb7-8 {
  grid-area: catName-mb7-8;
}
.grid .std-distance {
  grid-area: std-distance;
}
.grid .std-distance-mb {
  grid-area: std-distance-mb;
}
.grid .std-capacity {
  grid-area: std-capacity;
}
.grid .std-capacity-mb {
  grid-area: std-capacity-mb;
}
.grid .std-fee1 {
  grid-area: std-fee1;
}
.grid .std-fee2 {
  grid-area: std-fee2;
}
.grid .std-fee3 {
  grid-area: std-fee3;
}
.grid .std-fee4 {
  grid-area: std-fee4;
}
.grid .std-fee-mb1-2 {
  grid-area: std-fee-mb1-2;
}
.grid .std-fee-mb3-4 {
  grid-area: std-fee-mb3-4;
}
.grid .std-age {
  grid-area: std-age;
}
.grid .std-age-mb {
  grid-area: std-age-mb;
}
.grid .std-jtu1 {
  grid-area: std-jtu1;
}
.grid .std-jtu2 {
  grid-area: std-jtu2;
}
.grid .std-jtu3 {
  grid-area: std-jtu3;
}
.grid .std-jtu4 {
  grid-area: std-jtu4;
}
.grid .std-jtu-mb1-2 {
  grid-area: std-jtu-mb1-2;
}
.grid .std-jtu-mb3-4 {
  grid-area: std-jtu-mb3-4;
}
.grid .std-wet {
  grid-area: std-wet;
}
.grid .std-wet-mb {
  grid-area: std-wet-mb;
}
.grid .std-award {
  grid-area: std-award;
}
.grid .std-award-w {
  grid-area: std-award-w;
}
.grid .sp-distance {
  grid-area: sp-distance;
}
.grid .sp-distance-mb {
  grid-area: sp-distance-mb;
}
.grid .sp-capacity {
  grid-area: sp-capacity;
}
.grid .sp-capacity-mb {
  grid-area: sp-capacity-mb;
}
.grid .sp-fee1 {
  grid-area: sp-fee1;
}
.grid .sp-fee2 {
  grid-area: sp-fee2;
}
.grid .sp-fee3 {
  grid-area: sp-fee3;
}
.grid .sp-fee4 {
  grid-area: sp-fee4;
}
.grid .sp-fee5 {
  grid-area: sp-fee5;
}
.grid .sp-fee-mb5-6 {
  grid-area: sp-fee-mb5-6;
}
.grid .sp-fee-mb7-8 {
  grid-area: sp-fee-mb7-8;
}
.grid .sp-age {
  grid-area: sp-age;
}
.grid .sp-age-w {
  grid-area: sp-age-w;
}
.grid .sp-age-mb {
  grid-area: sp-age-mb;
}
.grid .sp-jtu1 {
  grid-area: sp-jtu1;
}
.grid .sp-jtu2 {
  grid-area: sp-jtu2;
}
.grid .sp-jtu3 {
  grid-area: sp-jtu3;
}
.grid .sp-jtu4 {
  grid-area: sp-jtu4;
}
.grid .sp-jtu5 {
  grid-area: sp-jtu5;
}
.grid .sp-jtu-mb5-6 {
  grid-area: sp-jtu-mb5-6;
}
.grid .sp-jtu-mb7-8 {
  grid-area: sp-jtu-mb7-8;
}
.grid .sp-wet {
  grid-area: sp-wet;
}
.grid .sp-wet-mb {
  grid-area: sp-wet-mb;
}
.grid .sp-award {
  grid-area: sp-award;
}
.grid .sp-award-w {
  grid-area: sp-award-w;
}
.grid .hosoku {
  grid-area: hosoku;
}
.grid .ch-distance {
  grid-area: ch-distance;
}
.grid .ch-capacity {
  grid-area: ch-capacity;
}
.grid .ch-fee {
  grid-area: ch-fee;
}
.grid .ch-age {
  grid-area: ch-age;
}
.grid .ch-jtu {
  grid-area: ch-jtu;
}
.grid .ch-wet {
  grid-area: ch-wet;
}
.grid .ch-award {
  grid-area: ch-award;
}
.grid .jrA-distance {
  grid-area: jrA-distance;
}
.grid .jrA-capacity {
  grid-area: jrA-capacity;
}
.grid .jrA-fee {
  grid-area: jrA-fee;
}
.grid .jrA-age {
  grid-area: jrA-age;
}
.grid .jrA-jtu {
  grid-area: jrA-jtu;
}
.grid .jrA-wet {
  grid-area: jrA-wet;
}
.grid .jrA-award {
  grid-area: jrA-award;
}
.grid .jrB-distance {
  grid-area: jrB-distance;
}
.grid .jrB-capacity {
  grid-area: jrB-capacity;
}
.grid .jrB-fee {
  grid-area: jrB-fee;
}
.grid .jrB-age {
  grid-area: jrB-age;
}
.grid .jrB-jtu {
  grid-area: jrB-jtu;
}
.grid .jrB-wet {
  grid-area: jrB-wet;
}
.grid .jrB-award {
  grid-area: jrB-award;
}
.grid .smy-distance {
  grid-area: smy-distance;
}
.grid .smy-capacity {
  grid-area: smy-capacity;
}
.grid .smy-fee {
  grid-area: smy-fee;
}
.grid .smy-age {
  grid-area: smy-age;
}
.grid .smy-jtu {
  grid-area: smy-jtu;
}
.grid .smy-wet {
  grid-area: smy-wet;
}
.grid .smy-award {
  grid-area: smy-award;
}
@media only screen and (max-width: 960px) {
  .grid .headTitle1 {
    display: none;
  }
}
.grid .colHead {
  background-color: #273036;
  color: #fff;
  font-family: Noto Sans JP, sans-serif;
  font-weight: 700;
  font-style: normal;
  padding: 10px 2%;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 960px) {
  .grid .colHead {
    background-color: #dadada;
    color: #0A0C07;
    padding: 20px 5%;
  }
}
.grid .colHead.small {
  font-size: 13px;
  font-size: 1.3rem;
}
@media only screen and (max-width: 960px) {
  .grid .colHead.small {
    font-size: inherit;
  }
}
.grid .rowHead {
  background-color: #bdd7dd;
  color: #0A0C07;
  padding: 20px 5%;
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 960px) {
  .grid .rowHead {
    background-color: #003B80;
    border-radius: 10px 10px 0 0;
    color: #fff;
    justify-content: center;
    flex-direction: column;
  }
}
.grid .rowHead.small {
  font-size: 14px;
  font-size: 1.4rem;
}
.grid .rowHead .small {
  font-size: 14px;
  font-size: 1.4rem;
  display: block;
}
.grid .rowHead .inner {
  display: block;
}
.grid .hosoku {
  background-color: #fff;
  font-size: 14px;
  font-size: 1.4rem;
}
.grid .item {
  font-family: Noto Sans JP, sans-serif;
  font-weight: 700;
  font-style: normal;
  padding: 8px;
  line-height: 1.2;
  background-color: #f2f2f2;
  display: flex;
  align-items: center;
  justify-content: center;
}
.grid .item.capacity .inner {
  justify-content: center;
}
.grid .item.distance .inner > div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-width: 50px;
  margin: 4px;
}
@media only screen and (max-width: 600px) {
  .grid .item.distance .inner {
    justify-content: flex-start;
  }
}
.grid .item.age {
  font-size: 14px;
  font-size: 1.4rem;
}
@media only screen and (max-width: 960px) {
  .grid .item.age {
    font-size: inherit;
  }
}
.grid .item .small {
  font-size: 13px;
  font-size: 1.3rem;
  display: inline-block;
  margin-top: 5px;
}
.grid .item .required {
  color: #009cad;
}
@media only screen and (max-width: 960px) {
  .grid .item .noneed {
    margin-left: 1em;
    display: inline-block;
  }
}
.grid .item .num {
  font-size: 20px;
}
@media only screen and (max-width: 960px) {
  .grid .item .onerow {
    margin-left: 0.5em;
    margin-right: 0.5em;
  }
}
.grid .item .inner {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  font-size: 17px;
  font-size: 1.7rem;
}
@media only screen and (max-width: 960px) {
  .grid .item .inner {
    justify-content: center;
  }
}
.grid .item .circle {
  width: 16px;
  height: 8px;
  padding: 8px;
  margin-right: 3px;
  line-height: 1;
  border-radius: 50%;
  font-size: 13px;
  font-size: 1.3rem;
  text-align: center;
  box-sizing: border-box;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #273036;
}
.grid .bar {
  background-color: #0A0C07;
  border: 1px solid #0A0C07;
}
@media only screen and (max-width: 960px) {
  .grid .bar {
    margin-top: 20px;
    margin-bottom: 20px;
  }
}
.grid .mb-view {
  display: none;
}
@media only screen and (max-width: 960px) {
  .grid .mb-view {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
  }
}
@media only screen and (max-width: 960px) {
  .grid .pc-view {
    display: none;
  }
}
.grid .empty {
  background-color: #fff;
  margin-top: 30px;
}

.btnArea {
  margin-top: 20px;
}

.temp {
  max-width: 740px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 3%;
  padding-right: 3%;
  box-sizing: border-box;
  margin-top: 40px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 20px;
  padding-bottom: 20px;
  box-sizing: border-box;
  border-top: 1px solid #0A0C07;
  border-bottom: 1px solid #0A0C07;
}
.temp h3 {
  font-size: 20px;
  font-size: 2rem;
  font-family: Noto Sans JP, sans-serif;
  font-weight: 700;
  font-style: normal;
}

/* 事前告知pre専用設定*/
/* トップページ専用詳細設定 */
.btn.std.wide {
  width: 90%;
  padding-left: 24px;
  padding-right: 24px;
  max-width: 460px;
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.2;
}
@media only screen and (max-width: 600px) {
  .btn.std.wide {
    max-width: 280px;
  }
}

.innerWrap {
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 3%;
  padding-right: 3%;
  box-sizing: border-box;
}

#condolence .innerWrap {
  max-width: 740px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 3%;
  padding-right: 3%;
  box-sizing: border-box;
}
#condolence .box {
  border: 1px solid #808080;
  box-sizing: border-box;
  padding: 20px 5%;
  margin-top: 30px;
}
#condolence .box p {
  line-height: 1.8;
  font-size: 15px;
  font-size: 1.5rem;
}

#topHeader {
  text-align: center;
}
#topHeader #topView {
  width: 100%;
  height: 94vh;
  position: relative;
  background: url("../images/2026/header_pre.jpg") center center no-repeat;
  background-size: cover;
}
#topHeader .topView__inner {
  max-width: 600px;
  padding: 90px 5% 60px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-flow: column;
  justify-content: center;
  height: 100%;
  box-sizing: border-box;
}
@media only screen and (max-width: 960px) {
  #topHeader .topView__inner {
    padding: 14vh 6% 7vh;
  }
}
@media only screen and (max-width: 600px) {
  #topHeader .topView__inner {
    padding: 14vh 5%;
  }
}
#topHeader .topView__inner .topView__inner--middle {
  text-align: center;
}
#topHeader .topView__inner .topView__inner--middle .inner {
  background-color: rgba(255, 255, 255, 0.6);
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}
#topHeader .topView__inner .topView__inner--middle .inner .inner--logo {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  margin-bottom: 20px;
}
#topHeader .topView__inner .topView__inner--middle .inner .inner--obi {
  background-color: rgba(0, 139, 181, 0.9);
}
#topHeader .topView__inner .topView__inner--middle .inner .inner--obi .title {
  font-feature-settings: "palt" 1;
  font-family: Noto Sans JP, sans-serif;
  font-weight: 700;
  font-style: normal;
  color: #fff;
  display: block;
  line-height: 1.2;
  font-size: 16px;
  font-size: 1.6rem;
}
#topHeader .topView__inner .topView__inner--middle .inner .inner--obi .date {
  font-family: Noto Sans JP, sans-serif;
  font-weight: 700;
  font-style: normal;
  color: #fff;
  display: block;
  letter-spacing: 0.05em;
  font-size: 24px;
  font-size: 2.4rem;
}
#topHeader .topView__inner .topView__inner--middle .inner .inner__text {
  padding: 14px 3%;
}
#topHeader .topView__inner .topView__inner--middle .inner .inner__text p {
  font-size: 18px;
  font-size: 1.8rem;
  font-family: Noto Sans JP, sans-serif;
  font-weight: 700;
  font-style: normal;
  line-height: 1.2;
}
#topHeader .topView__inner .topView__inner--middle .topViewLogo {
  width: 90%;
}
#topHeader .topView__inner .topView__inner--bottom {
  width: 400px;
  max-width: 100%;
  margin-top: 30px;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (max-width: 600px) {
  #topHeader .topView__inner .topView__inner--bottom {
    width: auto;
    margin-top: 0;
  }
}
#topHeader .topView__inner .topView__inner--bottom img {
  width: 100%;
}
#topHeader .topView__inner .topView__inner--bottom .btn {
  margin-top: 30px;
}
#topHeader .slider_css {
  height: 600px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
#topHeader .slider_css .solidBg {
  display: block;
  background-size: cover;
  background-position: center bottom;
  width: 100%;
  height: 600px;
  position: absolute;
  top: 0;
  left: 0;
  background-image: url("../images/slideshow/slide02.jpg");
}
@media only screen and (max-width: 600px) {
  #topHeader .slider_css .solidBg {
    height: 60vh;
  }
}
#topHeader .slider_css ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
#topHeader .slider_css ul li {
  background-size: 120%;
  background-position: center 70%;
  width: 100%;
  height: 600px;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-duration: 40s;
          animation-duration: 40s;
}
@media only screen and (max-width: 600px) {
  #topHeader .slider_css ul li {
    height: 60vh;
    background-size: cover !important;
  }
}
#topHeader .slider_css ul li:nth-child(1) {
  background-image: url("../images/slideshow/slide01.jpg?ver=202402211739");
  -webkit-animation-name: slider-zoomin;
          animation-name: slider-zoomin;
  -webkit-animation-delay: -3s;
          animation-delay: -3s;
}
#topHeader .slider_css ul li:nth-child(2) {
  background-image: url("../images/slideshow/slide02.jpg?ver=202402211739");
  -webkit-animation-name: slider-zoomout;
          animation-name: slider-zoomout;
  opacity: 0;
  -webkit-animation-delay: 5s;
          animation-delay: 5s;
}
#topHeader .slider_css ul li:nth-child(3) {
  background-image: url("../images/slideshow/slide03.jpg?ver=202402211739");
  -webkit-animation-name: slider-zoomin;
          animation-name: slider-zoomin;
  opacity: 0;
  -webkit-animation-delay: 13s;
          animation-delay: 13s;
}
#topHeader .slider_css ul li:nth-child(4) {
  background-image: url("../images/slideshow/slide04.jpg?ver=202402211739");
  -webkit-animation-name: slider-zoomout;
          animation-name: slider-zoomout;
  opacity: 0;
  -webkit-animation-delay: 21s;
          animation-delay: 21s;
}
#topHeader .slider_css ul li:nth-child(5) {
  background-image: url("../images/slideshow/slide05.jpg?ver=202402211739");
  -webkit-animation-name: slider-zoomin;
          animation-name: slider-zoomin;
  opacity: 0;
  -webkit-animation-delay: 29s;
          animation-delay: 29s;
}
#topHeader .slider_css ul li img {
  width: 120%;
}
@media only screen and (max-width: 768px) and (max-width: 600px) {
  #topHeader .slider_css {
    height: 60vh;
  }
}
@media only screen and (max-width: 768px) {
  #topHeader .slider_css ul li {
    background-repeat: no-repeat;
  }
  #topHeader .slider_css ul li:nth-child(1) {
    background-image: url("../images/slideshow/slide01.jpg");
    background-position: center 70%;
  }
  #topHeader .slider_css ul li:nth-child(2) {
    background-image: url("../images/slideshow/slide02.jpg");
    background-position: center 70%;
  }
  #topHeader .slider_css ul li:nth-child(3) {
    background-image: url("../images/slideshow/slide03.jpg");
    background-position: center 70%;
  }
  #topHeader .slider_css ul li:nth-child(4) {
    background-image: url("../images/slideshow/slide04.jpg");
    background-position: center 70%;
  }
  #topHeader .slider_css ul li:nth-child(5) {
    background-image: url("../images/slideshow/slide05.jpg");
    background-position: center 70%;
  }
}
@-webkit-keyframes slider-zoomin {
  0% {
    opacity: 0;
    transform: scale(1);
  }
  12.5% {
    opacity: 1;
  }
  20% {
    opacity: 1;
  }
  27.5% {
    opacity: 0;
  }
  100% {
    opacity: 0;
    transform: scale(1.1);
  }
}
@keyframes slider-zoomin {
  0% {
    opacity: 0;
    transform: scale(1);
  }
  12.5% {
    opacity: 1;
  }
  20% {
    opacity: 1;
  }
  27.5% {
    opacity: 0;
  }
  100% {
    opacity: 0;
    transform: scale(1.1);
  }
}
@-webkit-keyframes slider-zoomout {
  0% {
    opacity: 0;
    transform: scale(1.1);
  }
  12.5% {
    opacity: 1;
  }
  20% {
    opacity: 1;
  }
  27.5% {
    opacity: 0;
  }
  100% {
    opacity: 0;
    transform: scale(1);
  }
}
@keyframes slider-zoomout {
  0% {
    opacity: 0;
    transform: scale(1.1);
  }
  12.5% {
    opacity: 1;
  }
  20% {
    opacity: 1;
  }
  27.5% {
    opacity: 0;
  }
  100% {
    opacity: 0;
    transform: scale(1);
  }
}

#footer {
  height: 6vh;
  background-color: #3a3a3a;
  margin-top: 0;
}
/*# sourceMappingURL=home_pre.css.map */