@charset "utf-8";

.indent-1 {
  display: inline-block;
  padding-left: 1em;
  text-indent: -1em;
}

/*メインビジュアル*/
#kv .wrap {
  max-width: 980px;
  padding-top: 10px;
}
#kv .bdr_box {
  width: 100%;
  position: relative;
  border-left: 1px solid var(--mainColor);
  border-bottom: 1px solid var(--mainColor);
  padding: 0 0 60px 20px;
}
#kv .bdr_box .bgi {
  width: 52%;
  position: absolute;
  bottom: 10px;
  right: 0;
  pointer-events: none;
}
#kv .main_layout {
  position: relative;
  justify-content: space-between;
}
#kv .main_layout .copy {
  width: 38%;
  position: relative;
  padding-top: 70px;
}
#kv .main_layout .copy img {
  animation-name: openning02;
  animation-fill-mode: forwards;
  animation-duration: 1s;
  animation-delay: 1s;
  animation-iteration-count: 1;
  animation-timing-function: cubic-bezier(.785, .135, .15, .86);
  animation-direction: normal;
  backface-visibility: hidden;
  clip-path: polygon(0% 0%, 100% 0%, 100% 0%, 0% 0%);
}
#kv .main_layout .copy:before {
  content: '';
  width: 4px;
  height: 100%;
  background: var(--mainColor);
  position: absolute;
  left: -24px;
  top: 0;
}
#kv .main_layout .copy:after {
  content: '';
  width: 100%;
  height: 70px;
  background: #fff;
  position: absolute;
  left: -24px;
  top: 0;
}
#kv .main_layout .copy p {
  font-size: 28px;
  line-height: 1.6em;
  font-weight: normal;
  letter-spacing: .35em;
}
#kv .main_layout .copy p span {
  color: var(--mainColor);
  padding-top: 10px;
  position: relative;
  display: inline-block;;
}
#kv .main_layout .copy h2 {
  color: var(--mainColor);
  font-size: 58px;
  line-height: 1.2em;
  font-weight: normal;
  letter-spacing: .2em;
  margin: 10px 0 0 0;
}
#kv .main_layout .copy p span:before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 8px;
  background: var(--mainColor);
  position: absolute;
  left: 10px;
  top: 2px;
}
#kv .main_layout .copy ul.type_list {
  justify-content: center;
  gap: 15px;
  margin: 15px 0 0 0;
  max-width: 300px;
}
#kv .main_layout .copy ul.type_list li {
  width: calc((100% - 15px)/2);
  height: 32px;
  text-align: center;
  color: #fff;
  font-size: 17px;
  line-height: 1.2em;
  font-weight: bold;
  background: var(--mainColor);
  padding: 3px 0 0 0;
  border-radius: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}
#kv .main_layout .copy ul.type_list li.t01 {
  background: var(--colorBlue);
}
#kv .main_layout .copy ul.type_list li.t02 {
  background: var(--colorGreen);
}
#kv .cts_layout {
  width: 100%;
  margin: 60px 0 0 0;
  padding: 0;
}
#kv .cts_layout.mv_in {
  transition-delay: 2s;
}
#kv .cts_layout p {
  color: var(--mainColor);
  font-size: 14px;
  line-height: 2em;
  font-weight: normal;
  text-align: justify;
}
#kv .cts_layout p + p {
  margin-top: 15px;
}
#kv .animetion {
  width: 56%;
  justify-content: flex-start;
  align-items: center;
  gap: 24px;
}
#kv .animetion .anim_box {
  width: calc((100% - 24px*2)/3);
  height: calc((100% - 24px)/2);
  text-align: center;
  mask-image: url(../images/kv-anim_mask.png);
  mask-size: auto 99%;
  mask-repeat: no-repeat;
  mask-position: center bottom;
  animation-name: openning;
  animation-fill-mode: forwards;
  animation-duration: .9s;
  animation-delay: 1.2s;
  animation-iteration-count: 1;
  animation-timing-function: cubic-bezier(.785, .135, .15, .86);
  animation-direction: normal;
  backface-visibility: hidden;
  transform: scale(1.1);
}
@keyframes openning {
  0% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
#kv .animetion .anim_box .inner {
  background: var(--mainColor);
  width: 100%;
  height: 100%;
  display: block;
  animation-name: openning02;
  animation-fill-mode: forwards;
  animation-duration: 1s;
  animation-delay: 1.2s;
  animation-iteration-count: 1;
  animation-timing-function: cubic-bezier(.785, .135, .15, .86);
  animation-direction: normal;
  backface-visibility: hidden;
  clip-path: polygon(0% 0%, 100% 0%, 100% 0%, 0% 0%);
}
@keyframes openning02 {
  0% {
    clip-path: polygon(0% 0%, 100% 0%, 100% 0%, 0% 0%);
  }
  100% {
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
  }
}
#kv .animetion .anim_box img {
  width: auto;
  height: 100%;
  opacity: 1;
  transition: opacity 1s ease-in-out;
}
#kv .animetion .anim_box.is-active img.anim-img {
  animation-name: fadeInOut;
  animation-fill-mode: forwards;
  animation-iteration-count: infinite;
  animation-duration: 9s;
  animation-timing-function: ease-in-out;
  animation-direction: normal;
  backface-visibility: hidden;
}
@keyframes fadeInOut {
  0% {
    opacity: 1;
  }
  40% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  90% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
#kv .animetion .anim_box.is-active.a01 img {
  animation-delay: 3s;
}
/* #kv .animetion .anim_box.is-active.a02 img {
  animation-delay: 5s;
} */
#kv .animetion .anim_box.is-active.a03 img {
  animation-delay: 6s;
}
/* #kv .animetion .anim_box.is-active.a04 img {
  animation-delay: 2s;
} */
#kv .animetion .anim_box.is-active.a05 img {
  animation-delay: 1.5s;
}
/* #kv .animetion .anim_box.is-active.a06 img {
  animation-delay: 10s;
} */
#kv .animetion .anim_box.a01 {
  animation-delay: 1.3s;
}
#kv .animetion .anim_box.a02 {
  animation-delay: 1.4s;
}
#kv .animetion .anim_box.a03 {
  animation-delay: 1.5s;
}
#kv .animetion .anim_box.a04 {
  animation-delay: 1.6s;
}
#kv .animetion .anim_box.a05 {
  animation-delay: 1.7s;
}
#kv .animetion .anim_box.a06 {
  animation-delay: 1.8s;
}
#kv .animetion .anim_box.a01 .inner {
  background: #9070af;
  animation-delay: 1.2s;
}
#kv .animetion .anim_box.a02 .inner {
  background: var(--colorGreen);
  animation-delay: 1.3s;
}
#kv .animetion .anim_box.a03 .inner {
  background: #e98ea9;
  animation-delay: 1.4s;
}
#kv .animetion .anim_box.a04 .inner {
  background: var(--colorBlue);
  animation-delay: 1.5s;
}
#kv .animetion .anim_box.a05 .inner {
  background: #f8b616;
  animation-delay: 1.6s;
}
#kv .animetion .anim_box.a06 .inner {
  background: var(--mainColor);
  animation-delay: 1.7s;
}

#index {
  overflow: hidden;
}
#index .wrap {
  padding: 40px 0 30px;
  max-width: 600px;
  position: relative;
}
#index .wrap:before {
  content: '';
  width: 890px;
  height: 100%;
  background: url(../images/index-bgi.png) no-repeat center bottom / 100% auto;
  position: absolute;
  left: 50%;
  bottom: 10px;
  transform: translate(-49%,0);
  z-index: -1;
}
#index h2 {
  color: var(--mainColor);
  font-size: 22px;
  line-height: 1.4em;
  font-weight: bold;
  text-align: center;
  margin: 0 0 20px;
}
#index h2 span {
  position: relative;
}
#index h2 span:after {
  content: '';
  width: 34px;
  height: 24px;
  background: url(../images/index-icon.svg) no-repeat center / contain;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(100%,-50%);
}
#index p {
  color: var(--mainColor);
  font-size: 11px;
  line-height: 1.8em;
  font-weight: 600;
  display: block;
  margin: 20px auto 0;
  max-width: 510px;
  text-align: justify;
}
#index .btn_list {
  justify-content: center;
  gap: 25px 40px;
}
#index .btn_list .btn {
  width: 250px;
}
#index .btn_list .btn:last-of-type {
  width: 290px;
}

.point .acc_tab {
  background: var(--colorBlue);
  color: #fff;
  width: 100%;
  position: relative;
  border-bottom: 1px solid #fff;
  box-shadow: 0px 0px 2px rgba(0,0,0,.5);
}
.point .acc_tab:after {
  content: '';
  width: 100%;
  height: 1px;
  background: #fff;
  position: absolute;
  left: 0;
  bottom: 5px;
  z-index: 0;
}
.point .acc_tab .inner {
  width: 90%;
  max-width: 768px;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin: 0 auto;
  padding: 5px 0;
  position: relative;
}
.point .acc_tab .inner .btn {
  content: '';
  width: 36px;
  height: 36px;
  border-radius: 36px;
  border: 1px solid #fff;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(0,-50%);
}
.point .acc_tab .inner .btn:before,
.point .acc_tab .inner .btn:after {
  content: '';
  width: 18px;
  height: 2px;
  background: #fff;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  transition: .3s;
}
.point.open .acc_tab .inner .btn:after {
  transform: translate(-50%,-50%) rotate(0deg);
}
.point .acc_tab .inner .btn:after {
  transform: translate(-50%,-50%) rotate(90deg);
}
.point .acc_tab .inner h2 {
  font-size: 28px;
  line-height: 1.5em;
  font-weight: bold;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  letter-spacing: 1px;
  width: calc((100% - 90px)/2);
}
.point .acc_tab .inner h2 span {
  font-size: 18px;
  line-height: 1em;
  margin: 0 5px 0 0;
}
.point .acc_tab .inner p {
  font-size: 20px;
  line-height: 1.5em;
  font-weight: bold;
  display: flex;
  align-items: center;
  letter-spacing: 1px;
  width: calc((100% - 90px)/2);
}
.point .acc_tab .inner p span {
  font-size: 30px;
}
.point .acc_tab .inner .icon {
  mix-blend-mode: multiply;
  position: relative;
  z-index: 1;
  transform: translate(0,5px);
  width: 60px;
}
#type01 {
  background: rgba(0,155,230,.15);
}
#type02 {
  background: rgba(70,180,168,.15);
}
#type02.point .acc_tab {
  background: var(--colorGreen);
}
.point .acc_cts {
  display: none;
}
.point .cts_block {
  background: #fff;
  width: 100%;
  padding: 30px 0 0 0;
  position: relative;
}
.point .cts_block + .cts_block {
  margin-top: 50px;
}
.point .cts_block:after {
  content: '';
  width: calc(100% - 170px);
  height: 10px;
  background: #a2d2f2;
  position: absolute;
  right: 0;
  top: 0;
}
.point .cts_block .numble {
  position: absolute;
  left: 0;
  top: 0;
  transform: translate(0,-50%);
}
.point .cts_block .numble img {
  width: auto;
  height: 50px;
}
.point .cts_block.p01 .numble img,
.point .cts_block.p02 .numble img {
  height: 45px;
}
.point .cts_block.p03 .numble img {
  height: 48px;
}
.point .cts_block h3 {
  color: var(--colorBlue);
  font-size: 24px;
  line-height: 1.5em;
  font-weight: bold;
  padding: 0 25px;
  width: 100%;
}
.point .cts_block h4 {
  background: var(--colorBlue);
  color: #fff;
  font-size: 16px;
  line-height: 1.5em;
  font-weight: bold;
  letter-spacing: 1px;
  width: calc(100% - 50px);
  margin: 5px 25px;
  padding: 5px 10px;
  position: relative;
}
.point .cts_block h4:after {
  content: '';
  width: 25px;
  height: 100%;
  background: var(--colorBlue);
  position: absolute;
  right: -25px;
  top: 0;
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
}
.point .cts_block h4 + p {
  margin-top: 10px;
}
.point .cts_block p + h4 {
  margin-top: 15px;
}
.point .cts_block .txt_ttl {
  color: #46a5e6;
  font-size: 15px;
  line-height: 1.8em;
  font-weight: bold;
  width: 100%;
}
.point .cts_block .txt_ttl + h4 {
  margin-top: 0;
}
.point .cts_block .txt_ttl span {
  font-size: 18px;
}
.point .cts_block p + .txt_ttl {
  margin-top: 10px;
}
.point .cts_block p {
  font-size: 14px;
  line-height: 1.5em;
  font-weight: normal;
  padding: 0 25px;
  text-align: justify;
}
.point .cts_block p.caution {
  font-size: 10px;
}
.point .cts_block .cts {
  justify-content: flex-start;
  align-items: flex-end;
  gap: 25px 15px;
}
.point .cts_block .cts div {
  width: calc((100% - 15px)/2);
}
.point .cts_block .cts div.full {
  width: 100%;
}
.point .cts_block p + .cts {
  margin-top: 15px;
}
.point .cts_block p .box {
  font-size: 16px;
  line-height: 1.4em;
  display: inline-block;
  border: 1px solid #000;
  padding: 2px 10px;
  margin: 5px 5px 8px;
  background: #fff;
  position: relative;
}
.point .cts_block p .box:after {
  content: '';
  width: 100%;
  height: 100%;
  border-right: 1px solid #000;
  border-bottom: 1px solid #000;
  position: absolute;
  right: -3px;
  bottom: -3px;
}

#type01.point .cts_block.p01 .cts {
  gap: 25px;
}
#type01.point .cts_block.p01 .cts div:nth-of-type(1) {
  width: calc(((100% - 15px)/2) - 10px);
}
#type01.point .cts_block.p02 .cts div {
  padding-left: 25px;
}
#type01.point .cts_block.p03,
#type02.point .cts_block.p02 {
  padding-bottom: 30px;
}
#type01.point .cts_block.p03 .badge {
  padding: 0 50px 0 25px;
  margin-top: -80px;
  position: relative;
  z-index: 1;
  pointer-events: none;
}
#type01.point .cts_block.p03 .sp_scroll {
  padding: 0 25px;
  overflow: auto;
}
#type01.point .cts_block.p03 .caution {
  padding: 0;
}
#type01.point .cts_block.p03 .caution.inner {
  padding-left: 25px;
  padding-right: 25px;
}
#type01.point .cts_block.p03 .txt_c,
#type02.point .cts_block.p02 .txt_c {
  text-align: center;
  width: 100%;
}
#type01.point .cts_block.p03 .alnC,
#type02.point .cts_block.p02 .alnC {
  font-size: 13px;
}
#type01.point .cts_block.p03 .acc_wrap,
#type01.point .cts_block.p03 .acc_cts {
  width: 100%;
}
#type01.point .cts_block.p03 .alnC img,
#type02.point .cts_block.p02 .alnC img {
  max-width: 294px;
}
#type01.point .cts_block.p04 .cts {
  justify-content: space-between;
}
#type01.point .cts_block.p04 .cts div {
  width: calc(50% - 35px);
  text-align: center;
}
#type01.point .cts_block.p04 .cts div:nth-of-type(1) img {
  width: 80%;
}
#type01.point .cts_block.p05 .cts,
#type02.point .cts_block.p04 .cts {
  align-items: flex-start;
}
#type02.point .cts_block.p01 .cts {
  width: 85%;
  max-width: 620px;
}
#type02.point .cts_block.p01 .bgi {
  position: absolute;
  right: 0;
  top: 0;
  width: 38%;
  max-width: 280px;
}
#type02.point .cts_block.p03 .cts {
  padding: 0 10px 10px 25px;
  gap: 0;
}
#type02.point .cts_block.p03 .cts div:nth-of-type(1) {
  width: 60%;
}
#type02.point .cts_block.p03 .cts div:nth-of-type(2) {
  width: 40%;
}
.point .cts_block.member {
  padding: 0;
}
.point .cts_block.member:after {
  content: none;
}
.point .cts_block.member h4 {
  width: 100%;
  margin: 0;
}
.point .cts_block.member h4:after {
  content: none;
}
.point .cts_block.member .inner {
  width: 100%;
  padding: 25px;
}
.point .cts_block.member.comingsoon .inner {
  position: relative;
}
.point .cts_block.member.comingsoon .inner:before {
  content: '';
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,.75);
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  pointer-events: none;
}
.point .cts_block.member.comingsoon .inner:after {
  content: '';
  width: 156px;
  height: 18px;
  background: url(../images/comingsoon.svg) no-repeat center / contain;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  z-index: 3;
}

#type02.point .cts_block:after {
  background: #9adacb;
}
#type02.point .cts_block h3 {
  color: var(--colorGreen);
}
#type02.point .cts_block h4,
#type02.point .cts_block h4:after {
  background: var(--colorGreen);
}
#type02.point .cts_block .txt_ttl {
  color: var(--colorGreen);
}

#difference .wrap {
  padding: 15px 0 40px;
}
#difference .ttl_box {
  width: 100%;
  background: linear-gradient(45deg,#3fa9f5,#38ac90);
  padding: 20px 0;
}
#difference .ttl_box h2 {
  width: 90%;
  max-width: 768px;
  margin: 0 auto;
  position: relative;
  color: #fff;
  font-size: 26px;
  line-height: 1.6em;
  font-weight: bold;
  padding-left: 16px;
  position: relative;
}
#difference .ttl_box h2:before {
  content: '';
  width: 6px;
  height: 60%;
  background: #fff;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(0,-50%);
}
#difference .cts_block {
  width: 100%;
  margin: 0;
  padding: 0;
}
#difference .cts_block + .cts_block {
  margin-top: 25px;
}
#difference h3 {
  color: var(--mainColor);
  font-size: 18px;
  line-height: 1.6em;
  font-weight: bold;
}
#difference .t01 h3 {
  color: var(--colorBlue);
}
#difference .t02 h3 {
  color: var(--colorGreen);
}
#difference table.difference {
  width: 100%;
  table-layout: fixed;
  margin: 5px 0 0;
}
#difference table.difference th,
#difference table.difference td {
  border: 1px solid #ccc;
  color: #fff;
  font-size: 12px;
  line-height: 1.4em;
  vertical-align: middle;
  text-align: center;
  font-weight: bold;
  padding: 5px;
}
#difference table.difference .head th,
#difference table.difference .head td {
  padding: 10px 5px;
}
#difference table.difference th {
  background: var(--mainColor);
  width: 180px;
}
#difference table.difference .t01 {
  background: var(--colorBlue);
}
#difference table.difference .t02 {
  background: var(--colorGreen);
}
#difference table.senbatsu {
  width: 100%;
  table-layout: fixed;
  margin: 5px 0;
}
#difference table.senbatsu th,
#difference table.senbatsu td {
  border: 1px solid #ccc;
  color: #fff;
  font-size: 12px;
  line-height: 1.4em;
  vertical-align: middle;
  text-align: center;
  font-weight: bold;
  padding: 10px 5px;
}
#difference table.senbatsu th {
  width: 180px;
}
#difference table.senbatsu td {
  font-size: 21px;
}
#difference table.senbatsu .t01 {
  background: var(--colorBlue);
}
#difference table.senbatsu .t02 {
  background: var(--colorGreen);
}
#difference table.senbatsu .head th,
#difference table.senbatsu .head td {
  font-size: 12px;
  line-height: 1.4em;
  vertical-align: middle;
  text-align: center;
  font-weight: bold;
}
#difference table.senbatsu .head th {
  background: #ccc;
}
#difference table.senbatsu .head td:nth-of-type(1) {
  background: #65aadd;
}
#difference table.senbatsu .head td:nth-of-type(2) {
  background: #9070af;
}
#difference table.senbatsu .head td:nth-of-type(3) {
  background: #6fb16b;
}
#difference table.senbatsu .head td:nth-of-type(4) {
  background: #e98ea9;
}
#difference table.senbatsu .head td:nth-of-type(5) {
  background: #d1332d;
}
#difference table.senbatsu .head td:nth-of-type(6) {
  background: #f8b616;
}
#difference p {
  font-size: 12px;
  line-height: 1.4em;
}

#info .ttl_box {
  width: 100%;
  background: #e6e6e6;
  color: var(--mainColor);
  box-shadow: 0px 0px 8px rgba(0,0,0,.5);
  padding: 20px 0;
}
#info > .ttl_box {
  width: 100%;
  background: var(--mainColor);
  color: #fff;
  box-shadow: none;
}
#info .ttl_box h2 {
  width: 90%;
  max-width: 768px;
  margin: 0 auto;
  position: relative;
}
#info .ttl_box h2 img {
  width: 130px;
}
#info .ttl_box h2:before {
  content: '';
  width: 64px;
  height: 70px;
  background: url(../images/info-ttl_bgi.png) no-repeat center / contain;
  position: absolute;
  left: -10px;
  top: 50%;
  transform: translate(-100%,-50%);
}
#info .ttl_box h3 {
  color: var(--mainColor);
  font-size: 26px;
  line-height: 1.6em;
  font-weight: bold;
  display: flex;
  align-items: center;
  width: 90%;
  max-width: 768px;
  margin: 0 auto;
  padding: 0 0 0 16px;
  position: relative;
}
#info .ttl_box h3:before {
  content: '';
  width: 6px;
  height: 60%;
  background: var(--mainColor);
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(0,-50%);
}
#info .ttl_box h3 img {
  width: auto;
  height: 26px;
}

#faq {
  background: url(../images/faq-bgi.png) repeat;
  overflow: hidden;
}
#faq .wrap {
  position: relative;
}
#faq .acc_wrap {
  background: #fff;
  box-shadow: 5px 5px 5px rgba(0,0,0,.3);
  position: relative;
  z-index: 3;
}
#faq .acc_wrap + .acc_wrap {
  margin-top: 30px;
}
#faq .acc_wrap .acc_tab {
  background: #46a5e6;
  color: #fff;
  position: relative;
}
#faq .acc_wrap .acc_tab:before {
  content: '';
  width: 100px;
  height: 68px;
  background: url(../images/faq-q_bgi.png) no-repeat center / contain;
  position: absolute;
  right: 60px;
  bottom: 0;
}
#faq .acc_wrap .acc_tab:after {
  content: '';
  width: 18px;
  height: 18px;
  border-right: 1px solid var(--mainColor);
  border-bottom: 1px solid var(--mainColor);
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translate(0,-70%) rotate(45deg);
  transition: .3s;
}
#faq .acc_wrap.open .acc_tab:after {
  transform: translate(0,-20%) rotate(225deg);
}
#faq .acc_wrap .inner {
  justify-content: flex-start;
  gap: 15px;
  padding: 15px;
  position: relative;
}
#faq .acc_wrap .inner .faq_qa {
  width: 32px;
  text-align: center;
}
#faq .acc_wrap .inner .txt {
  width: calc(100% - 47px);
  font-size: 14px;
  line-height: 1.6em;
}
#faq .acc_wrap .acc_tab .inner {
  align-items: center;
  padding: 8px 15px 5px;
  min-height: 58px;
}
#faq .acc_wrap .acc_tab .inner .txt {
  font-size: 16px;
  line-height: 1.4em;
  font-weight: bold;
}
#faq .acc_wrap .acc_cts {
  display: none;
}
#faq .bgi {
  position: absolute;
  top: 120px;
  z-index: 1;
}
#faq .bgi.bgi01 {
  left: 0;
  transform: translate(-85%, 0);
}
#faq .bgi.bgi02 {
  top: 140px;
  right: 0;
  transform: translate(50%, 0);
}
#faq .wrap,
#requirements .wrap,
#event .wrap,
#information .wrap {
  padding: 20px 0 50px;
}
#info .bnr_list {
  flex-direction: column;
  align-items: center;
  max-width: 460px;
  gap: 20px;
  margin: 15px auto 0;
}
#information h4 {
  font-size: 22px;
  line-height: 1.6em;
  font-weight: bold;
  text-align: center;
  color: var(--mainColor);
}
/* ========================================================================================================
   980px以上
   ========================================================================================================*/
@media screen and (min-width: 980px) {
  :root {
    --fontSize: 16px;
    --lineHeight: 1.8em;
    --ctsWidth: 980px;
  }
  #kv .wrap {
    max-width: 1220px;
    padding-top: 10px;
  }
  #kv .main_layout .copy {
    padding-top: 95px;
  }
  #kv .main_layout .copy:after {
    height: 95px;
  }
  #kv .cts_layout p {
    font-size: 17px;
    line-height: 2em;
  }
  #index .wrap {
    max-width: 780px;
  }
  #index .wrap:before {
    width: 1150px;
    transform: translate(-49%,0);
  }
  #index h2 {
    font-size: 32px;
    line-height: 1.4em;
    margin: 0 0 30px;
  }
  #index .btn_list .btn {
    width: 325px;
  }
  #index .btn_list .btn:last-of-type {
    width: 380px;
  }
  #index p {
    font-size: 13px;
    line-height: 1.8em;
    max-width: 580px;
  }
  .point .acc_tab .inner {
    max-width: 980px;
  }
  .point .acc_tab .inner h2 {
    font-size: 34px;
    line-height: 1.5em;
  }
  .point .acc_tab .inner h2 span {
    font-size: 22px;
    line-height: 1em;
    margin: 0 8px 0 0;
  }
  .point .acc_tab .inner p {
    font-size: 26px;
    line-height: 1.5em;
  }
  .point .acc_tab .inner p span {
    font-size: 40px;
  }
  .wrap {
    max-width: 980px;
  }
  .point .cts_block h3 {
    font-size: 32px;
    line-height: 1.5em;
  }
  .point .cts_block p {
    font-size: 16px;
    line-height: 1.5em;
  }
  .point .cts_block h4 {
    font-size: 18px;
    line-height: 1.5em;
  }
  .point .cts_block p .box {
    font-size: 18px;
    line-height: 1.4em;
    padding: 4px 10px;
  }
  .point .cts_block p.caution {
    font-size: 12px;
  }
  #difference .ttl_box h2 {
    max-width: 980px;
    font-size: 28px;
    line-height: 1.6em;
  }
  #difference table.difference th {
    width: 200px;
  }
  #difference table.difference th,
  #difference table.difference td {
    font-size: 15px;
    line-height: 1.4em;
  }
  #difference h3 {
    font-size: 22px;
    line-height: 1.6em;
  }
  #difference table.senbatsu .head th,
  #difference table.senbatsu .head td,
  #difference table.senbatsu th,
  #difference table.senbatsu td {
    font-size: 15px;
    line-height: 1.4em;
  }
  #difference table.senbatsu td {
    font-size: 40px;
  }
  #difference p {
    font-size: 14px;
    line-height: 1.4em;
  }
  #info .ttl_box h2 {
    max-width: 980px;
  }
  #info .ttl_box h3 {
    font-size: 30px;
    line-height: 1.6em;
    max-width: 980px;
  }
  #faq .acc_wrap .acc_tab .inner .txt {
    font-size: 20px;
    line-height: 1.4em;
  }
  #faq .acc_wrap .inner .txt {
    font-size: 17px;
    line-height: 1.6em;
  }
  #type02.point .cts_block.p01 .bgi {
    max-width: 375px;
  }
  #index h2 span:after {
    width: 44px;
    height: 34px;
  }
  .point .cts_block p + .cts {
    margin-top: 25px;
  }
  #faq .acc_wrap .acc_tab .inner {
    padding: 12px 15px;
    min-height: 80px;
  }
  #info .bnr_list {
    max-width: 520px;
    margin: 25px auto 0;
  }
  .point .cts_block .txt_ttl {
    font-size: 17px;
    line-height: 1.8em;
  }
  .point .cts_block .txt_ttl span {
    font-size: 22px;
  }
  #type02.point .cts_block.p01 .cts {
    width: 85%;
    max-width: 780px;
  }
}

/* ========================================================================================================
   767px以下
   ========================================================================================================*/
@media screen and (max-width: 767px) {
  #kv .wrap {
    padding-bottom: 25px;
  }
  #kv .bdr_box {
    border-left: none;
    border-bottom: none;
    padding: 0 5px calc(100vw/100*42);
  }
  #kv .bdr_box .bgi {
    width: 100vw;
    bottom: 0;
    right: -5%;
  }
  #kv .main_layout {
    flex-direction: column-reverse;
    gap: 25px;
  }
  #kv .main_layout .copy {
    width: 100%;
    padding-top: 0;
  }
  #kv .main_layout .copy img {
    width: 100%;
    max-width: 100%;
  }
  #kv .main_layout .copy:before,
  #kv .main_layout .copy:after {
    content: none;
  }
  #kv .animetion {
    width: 100%;
    gap: 24px;
  }
  #kv .animetion .anim_box.a03,
  #kv .animetion .anim_box.a05 {
    display: none;
  }
  #kv .animetion .anim_box.a01 {
    order: 3;
  }
  #kv .animetion .anim_box.a02 {
    order: 2;
  }
  #kv .animetion .anim_box.a04 {
    order: 1;
  }
  #kv .animetion .anim_box.a06 {
    order: 4;
  }
  #kv .animetion .anim_box {
    width: calc((100% - 24px) / 2);
    height: calc((100% - 24px) / 2);
  }
  #kv .cts_layout {
    margin: 20px 0 0 0;
  }
  #kv .cts_layout.mv_in {
    transition-delay: .5s;
  }
  #kv .cts_layout p {
    font-size: 13px;
  }
  #index .wrap:before {
    content: '';
    width: 112%;
    height: 100%;
    background: url(../images/index-bgi_sp.png) no-repeat center / contain;
    position: absolute;
    left: -6%;
    bottom: unset;
    top: 44%;
    transform: translate(0, -50%);
  }
  #index h2 span:after {
    top: 0;
    transform: translate(100%, -120%);
  }
  #index .btn_list {
    gap: 16px;
  }
  #index .btn_list .btn {
    width: calc((100% - 16px)/2);
  }
  #index .btn_list .btn:last-of-type {
    width: 60%;
    max-width: 200px;
  }
  #index p {
    font-size: 12px;
    line-height: 1.6em;
    font-weight: normal;
    margin: 16px auto 0;
    max-width: 260px;
  }
  .point .acc_tab .inner {
    padding: 10px 0 15px;
    gap: 0;
  }
  .point .acc_tab .inner h2 {
    font-size: 24px;
    justify-content: center;
    width: 100%;
    padding: 0 40px 0 60px;
  }
  .point .acc_tab .inner p {
    font-size: 15px;
    justify-content: center;
    width: 100%;
    padding: 0 40px 0 60px;
  }
  .point .acc_tab .inner .icon {
    transform: translate(0, 0);
    width: 54px;
    position: absolute;
    left: 0;
    bottom: 0;
  }
  .point .acc_tab .inner .btn {
    width: 30px;
    height: 30px;
    border-radius: 30px;
  }
  .point .acc_tab .inner .btn:before,
  .point .acc_tab .inner .btn:after {
    width: 14px;
  }
  .point .cts_block h3 {
    line-height: 1.2em;
    margin: 0 0 10px;
  }
  .point .cts_block h3,
  .point .cts_block p {
    padding: 0 15px;
  }
  #type01.point .cts_block.p01 .cts {
    gap: 25px;
  }
  #type01.point .cts_block.p01 .cts div:nth-of-type(1),
  #type01.point .cts_block.p01 div {
    width: 100%;
  }
  #type01.point .cts_block.p01 .cts div:nth-of-type(2),
  #type01.point .cts_block.p02 .cts div:nth-of-type(1) {
    padding: 0 15px;
  }
  #type01.point .cts_block.p02 .cts {
    flex-direction: column-reverse;
  }
  #type01.point .cts_block.p02 .cts div {
    width: 100%;
    padding-left: 0;
  }
  .point .cts_block p .box {
    font-size: 13px;
    padding: 1px 5px;
  }
  .point .cts_block h4 {
    width: calc(100% - 50px);
    margin: 5px 15px;
    font-size: 15px;
    line-height: 1.4em;
    letter-spacing: 0;
    white-space: nowrap;
  }
  .point .cts_block h4 span {
    font-size: 10px;
    line-height: 1.4em;
    letter-spacing: 0;
  }
  .point .cts_block h4:after {
    width: 20px;
    right: -20px;
  }
  #type01.point .cts_block.p03 .badge {
    padding: 0 15px;
    margin-top: -10px;
  }
  #type01.point .cts_block.p03 .sp_scroll {
    padding: 0 15px;
  }
  #type01.point .cts_block.p03 .acc_wrap {
    width: 100%;
  }
  #type01.point .cts_block.p03 .acc_tab {
    width: 100%;
    padding: 0 40px 0 0;
    position: relative;
    background: none;
    border: none;
    box-shadow: none;
    cursor: pointer;
  }
  #type01.point .cts_block.p03 .acc_tab:after {
    content: '';
    width: 16px;
    height: 16px;
    background: none;
    border-right: 1px solid var(--colorBlue);
    border-bottom: 1px solid var(--colorBlue);
    position: absolute;
    left: unset;
    bottom: unset;
    right: 3px;
    top: calc(50% - 5px);
    transform: translate(0,-50%) rotate(225deg);
    z-index: 1;
    transition: .3s;
  }
  #type01.point .cts_block.p03 .open .acc_tab:after {
    top: calc(50% - 12px);
    transform: translate(0,-50%) rotate(45deg);
  }
  #type01.point .cts_block.p03 .acc_tab h3 {
    color: var(--colorBlue);
    font-size: 18px;
    line-height: 1.4em;
    font-weight: bold;
    padding: 0;
  }
  #type01.point .cts_block.p03 .acc_cts {
    width: 100%;
  }
  #type01.point .cts_block.p03 .caution {
    margin-left: auto;
    margin-right: auto;
    padding: 0;
  }
  #type01.point .cts_block.p03 .txt_c,
  #type02.point .cts_block.p02 .txt_c {
    text-align: left;
    margin: 10px auto 0;
    font-size: 12px;
  }
  #type01.point .cts_block.p04 .cts div {
    width: 100%;
  }
  #type01.point .cts_block.p04 .cts div:nth-of-type(1) img {
    width: 90%;
  }
  #type01.point .cts_block.p05 .txt_ttl + p,
  #type02.point .cts_block.p04 .txt_ttl + p {
    font-size: 13px;
  }
  #type01.point .cts_block.p05 .cts h4 + div,
  #type02.point .cts_block.p04 .cts h4 + div {
    width: 100%;
    padding: 0 15px;
    margin-top: -10px;
  }
  #type01.point .cts_block.p05 .cts h4 + div + div,
  #type02.point .cts_block.p04 .cts h4 + div + div {
    width: 100%;
    padding: 0;
    margin-top: -10px;
  }
  #type01.point .cts_block.p05,
  #type02.point .cts_block.p04 {
    padding-bottom: 15px;
  }
  .point .cts_block + .cts_block {
    margin-top: 32px;
  }
  #type02.point .cts_block.p01 .cts {
    width: 100%;
    max-width: 100%;
  }
  #type02.point .cts_block.p01 .bgi {
    position: relative;
    width: 100%;
    max-width: 100%;
  }
  #type02.point .cts_block.p03 .cts div:nth-of-type(1),
  #type02.point .cts_block.p03 .cts div:nth-of-type(2) {
    width: 100%;
    text-align: center;
  }
  #type02.point .cts_block.p03 .cts div:nth-of-type(2) img {
    width: 80%;
  }
  #difference .ttl_box h2 {
    font-size: 21px;
  }
  #difference .cts_block + .cts_block,
  #difference .acc_wrap + .acc_wrap,
  #difference .acc_wrap.t02 {
    margin-top: 20px;
  }
  #difference .acc_wrap.t01 {
    margin: 0 0 5px;
  }
  #difference table.difference th,
  #difference table.difference td {
    text-align: left;
  }
  #difference table.difference th {
    width: 105px;
  }
  #difference table.senbatsu .head th {
    background: #fff;
  }
  #difference table.senbatsu .head th,
  #difference table.senbatsu .head td {
    padding: 2px;
  }
  #difference table.senbatsu .head td:nth-of-type(1) {
    background: var(--mainColor);
  }
  #difference table.senbatsu .head td:nth-of-type(2) {
    background: #287F;
  }
  #difference table.senbatsu th {
    text-align: left;
    width: 65px;
  }
  #difference table.senbatsu tr:nth-of-type(2) th {
    background: #6FA9D9;
  }
  #difference table.senbatsu tr:nth-of-type(3) th {
    background: #8C73AB;
  }
  #difference table.senbatsu tr:nth-of-type(4) th {
    background: #7AAE73;
  }
  #difference table.senbatsu tr:nth-of-type(5) th {
    background: #E194A7;
  }
  #difference table.senbatsu tr:nth-of-type(6) th {
    background: #C94236;
  }
  #difference table.senbatsu tr:nth-of-type(7) th {
    background: #F3B641;
  }
  #info .ttl_box h3 {
    font-size: 21px;
    line-height: 1.2em;
  }
  #info .ttl_box h3 img {
    height: 22px;
  }
  #faq .acc_wrap .acc_tab:before {
    content: none;
  }
  #info > .ttl_box {
    padding: 10px 0 15px;
  }
  #info .ttl_box h2 {
    padding: 20px 0 0 80px;
  }
  #info .ttl_box h2:before {
    content: '';
    width: 64px;
    height: 70px;
    background: url(../images/info-ttl_bgi.png) no-repeat center / contain;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translate(-0, -50%);
  }
  #info .ttl_box h2 img {
    width: 120px;
  }
  #faq .acc_wrap .acc_tab .inner {
    padding: 8px 40px 5px 10px;
  }
  #faq .acc_wrap .acc_tab .inner .txt {
    font-size: 14px;
    line-height: 1.4em;
  }
  #faq .acc_wrap .acc_tab .inner .txt br {
    display: none;
  }
  #faq .acc_wrap .acc_tab:after {
    width: 14px;
    height: 14px;
    border-right: 2px solid var(--mainColor);
    border-bottom: 2px solid var(--mainColor);
    right: 10px;
  }
  #info .ttl_box {
    padding: 10px 0 8px;
  }
  #info .ttl_box h3:before {
    height: 90%;
  }
  #faq .wrap,
  #requirements .wrap,
  #event .wrap {
    padding: 15px 0 30px;
  }
  #information .wrap {
    padding: 15px 0 60px;
  }
  #requirements p,
  #event p,
  #information p {
    font-size: 14px;
    line-height: 1.4em;
  }
  #faq .bgi {
    top: 150px;
  }
  #faq .bgi.bgi01 {
    transform: translate(-60%, 0);
  }
  #faq .bgi.bgi02 {
    transform: translate(40%, 0);
  }
  .point .cts_block .txt_ttl {
    font-size: 14px;
    line-height: 1.8em;
    text-align: left;
  }
  .point .cts_block .txt_ttl span {
    font-size: 17px;
  }
  #type01.point .cts_block.p03 .caution.inner {
    padding-left: 15px;
    padding-right: 15px;
  }


}