@charset "UTF-8";
/*------------------
	FLEXBOX
------------------*/
/*------------------
	フォント
------------------*/
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@300;500&display=swap");
/*------------------
	ブレイクポイント
------------------*/
/*--------------
	アニメ
--------------*/
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes faderight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeleft {
  from {
    opacity: 0;
    transform: translateX(-300px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes arrow {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-30px);
  }
}
@keyframes reveal {
  to {
    -webkit-mask-position: 0% 0%;
    mask-position: 0% 0%;
  }
}
@keyframes rev_reveal {
  to {
    -webkit-mask-position: 100% 0%;
    mask-position: 100% 0%;
  }
}
img {
  max-width: 100%;
}

html {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  font-size: min(0.9vw, 18px);
}
@media screen and (max-width: 1200px) {
  html {
    font-size: min(4vw, 22px);
  }
}

.forsp {
  display: none;
}
@media screen and (max-width: 1200px) {
  .forsp {
    display: inline-block;
  }
}

.forpc {
  display: inline-block;
}
@media screen and (max-width: 1200px) {
  .forpc {
    display: none;
  }
}

.myset {
  width: 1200px;
  margin: auto;
}
@media screen and (max-width: 1200px) {
  .myset {
    width: 95%;
    max-width: 750px;
    margin: auto;
  }
}

/*--------------
    slider
--------------*/
.sliderblock {
  padding-bottom: 60px;
}
.sliderblock.js-scroll {
  opacity: 0;
}
.sliderblock.is-active {
  animation: fadeIn 0.5s ease-in-out forwards;
}

.slick-track {
  display: flex;
  align-items: stretch; /* これでスライド高さ統一 */
}

.slider .slick-slide {
  margin-right: 2vw;
  margin-left: 2vw;
}
@media screen and (max-width: 1200px) {
  .slider .slick-slide {
    margin-right: 1vw;
    margin-left: 1vw;
  }
}
.slider .slick-slide img {
  margin: auto;
}
.slider .slick-slide img.forsp {
  display: none;
}
@media screen and (max-width: 1200px) {
  .slider .slick-slide img.forsp {
    display: block;
  }
}
.slider .slick-slide img.forpc {
  display: block;
}
@media screen and (max-width: 1200px) {
  .slider .slick-slide img.forpc {
    display: none;
  }
}

.slider {
  padding: 0 2%;
}
.slider .slick-arrow {
  display: block;
  cursor: pointer;
  position: absolute;
  width: 53px;
  height: 53px;
  top: 45%;
  z-index: 99;
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 1200px) {
  .slider .slick-arrow {
    width: 10.6vw;
    max-width: 80px;
    height: auto;
    z-index: 5;
  }
}
.slider .slick-arrow:hover {
  opacity: 0.8;
}
.slider .slick-arrow.prev-arrow {
  left: 24.5%;
}
@media screen and (max-width: 1200px) {
  .slider .slick-arrow.prev-arrow {
    left: 0;
  }
}
.slider .slick-arrow.next-arrow {
  right: 24.5%;
  transform: rotate(-180deg);
}
@media screen and (max-width: 1200px) {
  .slider .slick-arrow.next-arrow {
    right: 0;
  }
}

#premiumlive {
  background-color: #00002f;
  width: 100%;
  position: relative;
}

main {
  max-width: 1920px;
  margin: auto;
}
@media screen and (max-width: 1200px) {
  main {
    max-width: 750px;
  }
}

/*--------------
    mv
--------------*/
.mv {
  background: url("../img/mv.jpg") no-repeat left top;
  background-size: contain;
  position: relative;
  width: 100%;
  margin-bottom: 90px;
  transition: 0.8s ease-in opacity;
}
@media screen and (max-width: 1200px) {
  .mv {
    background: url("../img/sp/mv.jpg") no-repeat center top;
    background-size: contain;
    margin-bottom: 10.6vw;
  }
}
.mv.js-scroll {
  opacity: 0;
}
.mv.js-scroll .anniv > h1 {
  opacity: 0;
}
.mv.js-scroll .day > h3 {
  opacity: 0;
}
.mv.is-active {
  opacity: 1;
}
.mv.is-active .anniv > figure {
  animation: reveal 0.8s forwards;
  animation-delay: 0.6s;
}
.mv.is-active .anniv > h1 {
  animation: scaleIn 0.3s ease-in forwards;
  animation-delay: 1.2s;
}
.mv.is-active .day > figure {
  animation: rev_reveal 0.8s forwards;
  animation-delay: 0.6s;
}
.mv.is-active .day > h3 {
  animation: scaleIn 0.3s ease-in forwards;
  animation-delay: 1.2s;
}
.mv__layout {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: space-between;
  overflow: hidden;
}
@media screen and (max-width: 1200px) {
  .mv__layout {
    position: relative;
    justify-content: flex-end;
  }
}
.mv .anniv {
  position: relative;
  width: 32vw;
}
@media screen and (max-width: 1200px) {
  .mv .anniv {
    position: absolute;
    left: 0;
    top: 0;
    width: 75.6vw;
  }
}
.mv .anniv > h1 {
  position: relative;
  z-index: 2;
  top: 3%;
  left: 4%;
  width: 12.1vw;
  max-width: 235px;
}
@media screen and (max-width: 1200px) {
  .mv .anniv > h1 {
    width: 31.33vw;
    left: 4vw;
    top: 2.6vw;
  }
}
.mv .anniv > figure {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  -webkit-mask-image: linear-gradient(to right, black 50%, transparent 50%);
  -webkit-mask-size: 200% 100%;
  -webkit-mask-position: 100% 0%;
  mask-image: linear-gradient(to right, black 50%, transparent 50%);
  mask-size: 200% 100%;
  mask-position: 100% 0%;
}
.mv .day {
  width: 21.8vw;
  max-width: 415px;
  position: relative;
}
@media screen and (max-width: 1200px) {
  .mv .day {
    width: 28.93vw;
    max-width: 217px;
  }
}
.mv .day > h3 {
  position: absolute;
  width: 8.2vw;
  max-width: 158px;
  left: 10%;
  bottom: 23%;
  z-index: 2;
}
@media screen and (max-width: 1200px) {
  .mv .day > h3 {
    width: 17.2vw;
    max-width: 128px;
    bottom: 26%;
    left: 13%;
  }
}
.mv .day > figure {
  text-align: right;
  -webkit-mask-image: linear-gradient(to left, black 50%, transparent 50%);
  -webkit-mask-size: 200% 100%;
  -webkit-mask-position: 0% 0%;
  mask-image: linear-gradient(to left, black 50%, transparent 50%);
  mask-size: 200% 100%;
  mask-position: 0% 0%;
}
.mv .catch {
  width: 42.5vw;
  max-width: 819px;
  position: absolute;
  left: 8%;
  top: 25.5%;
}
.mv .catch.js-scroll {
  opacity: 0;
}
.mv .catch.is-active {
  animation: scaleIn 0.3s ease-in forwards;
  animation-delay: 1.6s;
}
@media screen and (max-width: 1200px) {
  .mv .catch.is-active {
    animation: scaleIn 0.4s ease-in forwards;
    animation-delay: 1.6s;
  }
}
@media screen and (max-width: 1200px) {
  .mv .catch {
    position: relative;
    left: 0;
    top: 0;
    width: 95%;
    max-width: 750px;
    margin: auto;
    margin-bottom: 12vw;
  }
}
.mv__under {
  position: relative;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: space-between;
  top: 2vw;
}
@media screen and (max-width: 1200px) {
  .mv__under {
    top: 0;
    flex-direction: column;
    flex-direction: column-reverse;
  }
}
.mv__under .catch2.js-scroll .catch2__txt {
  opacity: 0;
}
.mv__under .catch2.is-active .catch2__bg {
  animation: reveal 0.6s ease-in forwards;
}
.mv__under .catch2.is-active .catch2__txt {
  animation: scaleIn 0.4s ease-in forwards;
  animation-delay: 0.6s;
}
@media screen and (max-width: 1200px) {
  .mv__under .catch2.is-active .catch2__txt {
    animation: faderight 0.6s ease-in forwards;
    animation-delay: 0.1s;
  }
}
.mv__under .present.active {
  animation: faderight 0.6s ease-in forwards;
  animation-delay: 0.6s;
}
@media screen and (max-width: 1200px) {
  .mv__under .present.active {
    animation: faderight 0.8s ease-in forwards;
    animation-delay: 0.1s;
  }
}
.mv .catch2 {
  position: relative;
  width: 56.9vw;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1200px) {
  .mv .catch2 {
    width: 100%;
    display: block;
    text-align: center;
  }
}
.mv .catch2__bg {
  -webkit-mask-image: linear-gradient(to right, black 50%, transparent 50%);
  -webkit-mask-size: 200% 100%;
  -webkit-mask-position: 100% 0%;
  mask-image: linear-gradient(to right, black 50%, transparent 50%);
  mask-size: 200% 100%;
  mask-position: 100% 0%;
}
.mv .catch2__txt {
  color: #fff;
  font-size: 2rem;
  line-height: 1.8;
  position: absolute;
  z-index: 2;
  width: 15em;
  left: 15%;
  bottom: 18%;
}
@media screen and (max-width: 1200px) {
  .mv .catch2__txt {
    width: 100%;
    left: inherit;
    bottom: inherit;
    background-color: #082663;
    position: relative;
    font-size: 1.25rem;
    padding: 1em;
    box-sizing: border-box;
    margin-top: 0;
    /*-- margin-top: 12w presentありの時--- */
  }
}
.mv .present {
  width: 44.7vw;
  position: relative;
  top: 2vw;
  opacity: 0;
}
@media screen and (max-width: 1200px) {
  .mv .present {
    width: 100%;
    top: inherit;
  }
}

/*--------------
    ボタン
--------------*/
.fixbtn {
  position: fixed;
  right: 0;
  top: 0;
  width: 4.3vw;
  z-index: 99;
  max-width: 83px;
  transition: 0.3s opacity ease;
}
@media screen and (max-width: 1200px) {
  .fixbtn {
    top: inherit;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    width: 100%;
    max-width: 750px;
  }
}
.fixbtn:hover {
  opacity: 0.8;
}
@media screen and (max-width: 1200px) {
  .fixbtn:hover {
    opacity: 1;
  }
}

#mv + .btnwrap.js-scroll > a {
  opacity: 1;
}

#mv + .btnwrap.js-scroll .btnwrap__bg {
  animation: none;
  -webkit-mask-image: none;
          mask-image: none;
}
#mv + .btnwrap.js-scroll > a {
  animation: none;
}

.btnwrap {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  height: 14.84vw;
  max-height: 285px;
}
@media screen and (max-width: 1200px) {
  .btnwrap {
    height: 38vw;
    justify-content: flex-start;
  }
}
.btnwrap.js-scroll > a {
  opacity: 0;
}
.btnwrap.is-active .btnwrap__bg {
  animation: rev_reveal 0.5s ease-in-out forwards;
}
.btnwrap.is-active > a {
  animation: fadeleft 0.5s ease-in-out forwards;
}
.btnwrap > a {
  position: relative;
  display: block;
  z-index: 2;
  width: 62.34vw;
  max-width: 1197px;
}
@media screen and (max-width: 1200px) {
  .btnwrap > a {
    width: 96.4vw;
  }
}
.btnwrap > a img {
  transition: all 0.3s ease;
}
.btnwrap > a:hover img {
  opacity: 0.8;
}
@media screen and (max-width: 1200px) {
  .btnwrap > a:hover img {
    opacity: 1;
  }
}
.btnwrap > a:hover:after {
  transform: translateX(30px);
}
@media screen and (max-width: 1200px) {
  .btnwrap > a:hover:after {
    transform: none;
  }
}
.btnwrap > a:after {
  position: absolute;
  right: 0;
  bottom: 0;
  top: 0;
  margin: auto;
  content: "";
  background: url("../img/arrow.png") no-repeat left center;
  background-size: contain;
  width: 7vw;
  max-width: 135px;
  z-index: 2;
  aspect-ratio: 135/13;
  transition: all 0.3s ease;
}
@media screen and (max-width: 1200px) {
  .btnwrap > a:after {
    content: none;
  }
}
.btnwrap__bg {
  position: absolute;
  right: 0;
  top: 0;
  width: 81vw;
  max-width: 100%;
  text-align: right;
  aspect-ratio: 519/95;
  z-index: 1;
  -webkit-mask-image: linear-gradient(to left, black 50%, transparent 50%);
  -webkit-mask-size: 200% 100%;
  -webkit-mask-position: 0% 0%;
  mask-image: linear-gradient(to left, black 50%, transparent 50%);
  mask-size: 200% 100%;
  mask-position: 0% 0%;
}
@media screen and (max-width: 1200px) {
  .btnwrap__bg {
    width: 100%;
    aspect-ratio: 50/19;
  }
}

.midbtn__pc {
  display: block;
}
@media screen and (max-width: 1200px) {
  .midbtn__pc {
    display: none;
  }
}
.midbtn__sp {
  display: none;
}
@media screen and (max-width: 1200px) {
  .midbtn__sp {
    display: block;
  }
}
@media screen and (max-width: 1200px) {
  .midbtn__sp.last {
    max-width: 750px;
    margin: auto;
  }
}

/*--------------
    ナビメニュー
--------------*/
.nav {
  width: 90%;
  margin: 150px auto 0;
}
@media screen and (max-width: 1200px) {
  .nav {
    margin: 10.6vw auto 0;
  }
}
.nav.js-scroll {
  opacity: 0;
}
.nav.is-active {
  animation: fadeIn 0.5s ease-in-out forwards;
}
.nav .menuwrap {
  border: 1px solid #fff;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
}
@media screen and (max-width: 1200px) {
  .nav .menuwrap {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 1fr 1fr;
  }
}
.nav .menuwrap > a {
  border-right: 1px solid #fff;
  height: 100px;
  width: 16.67%;
  position: relative;
  padding: 30px 1em 0;
  box-sizing: border-box;
  text-align: center;
  transition: background 0.3s ease;
}
@media screen and (max-width: 1200px) {
  .nav .menuwrap > a {
    width: auto;
    height: auto;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: 1px solid #fff;
    padding: 4vw 0 3vw;
  }
  .nav .menuwrap > a:nth-child(3) {
    border-right: none;
  }
  .nav .menuwrap > a:nth-child(n+4) {
    border-bottom: none;
  }
}
.nav .menuwrap > a:last-child {
  border-right: none;
}
.nav .menuwrap > a:hover {
  background-color: #070747;
}
@media screen and (max-width: 1200px) {
  .nav .menuwrap > a:hover {
    background-color: transparent;
  }
}
.nav .menuwrap > a:hover .triangle {
  transform: translateY(5px);
}
@media screen and (max-width: 1200px) {
  .nav .menuwrap > a:hover .triangle {
    transform: none;
  }
}
@media screen and (max-width: 1200px) {
  .nav .menuwrap > a > p {
    width: 90%;
  }
}
.nav .menuwrap > a > p img {
  min-height: 20px;
}
@media screen and (max-width: 1200px) {
  .nav .menuwrap > a > p img {
    min-height: inherit;
    max-height: 2.5vw;
  }
}
.nav .menuwrap > a .triangle {
  margin: 13px auto auto;
  display: block;
  background: #e8242e;
  height: 17.3205080757px;
  width: 20px;
  -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
          clip-path: polygon(0 0, 100% 0, 50% 100%);
  transition: transform 0.3s ease;
}
@media screen and (max-width: 1200px) {
  .nav .menuwrap > a .triangle {
    margin: 0.6em auto auto;
    width: 0.8em;
    height: 0.692820323em;
  }
}

/*--------------
    共通パーツ
--------------*/
.sec__tit {
  text-align: center;
  margin-bottom: 55px;
}
@media screen and (max-width: 1200px) {
  .sec__tit {
    margin-bottom: 30px;
  }
}
.sec__txt {
  color: #fff;
  text-align: center;
  line-height: 1.8;
  margin-bottom: 80px;
  font-size: 1.33rem;
  letter-spacing: 2px;
}
@media screen and (max-width: 1200px) {
  .sec__txt {
    margin-bottom: 40px;
    font-size: 1rem;
    letter-spacing: 1px;
  }
}

/*--------------
    個別
--------------*/
#point {
  padding-top: 150px;
  box-sizing: border-box;
}
@media screen and (max-width: 1200px) {
  #point {
    padding-top: 18.2vw;
  }
}
#point .sec__tit.js-scroll {
  opacity: 0;
}
#point .sec__tit.is-active {
  animation: fadeIn 0.5s ease-in-out forwards;
}
#point .sec__tit img {
  width: 47.39vw;
}
@media screen and (max-width: 1200px) {
  #point .sec__tit img {
    width: 57vw;
  }
}
#point .sec__txt.js-scroll {
  opacity: 0;
}
#point .sec__txt.is-active {
  animation: fadeIn 0.5s ease-in-out forwards;
}
#point .pointimg {
  width: 90%;
  margin: auto auto 150px;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: space-between;
  font-size: 1.55rem;
  color: #fff;
}
@media screen and (max-width: 1200px) {
  #point .pointimg {
    display: block;
    font-size: 1.4rem;
    margin: auto auto 80px;
  }
}
#point .pointimg.js-scroll > dl {
  opacity: 0;
}
#point .pointimg.is-active > dl {
  animation: fadeIn 0.5s ease-in-out forwards;
}
#point .pointimg.is-active > dl:nth-child(2) {
  animation-delay: 0.2s;
}
#point .pointimg.is-active > dl:nth-child(3) {
  animation-delay: 0.4s;
}
#point .pointimg__smalltxt {
  margin-bottom: 5px;
  font-size: 1.33rem;
}
@media screen and (max-width: 1200px) {
  #point .pointimg__smalltxt {
    font-size: 1rem;
  }
}
#point .pointimg dl {
  width: 33%;
}
@media screen and (max-width: 1200px) {
  #point .pointimg dl {
    width: 100%;
    margin-bottom: 40px;
  }
}
#point .pointimg dl dt {
  margin-bottom: 5px;
}
@media screen and (max-width: 1200px) {
  #point .pointimg dl dt {
    margin-bottom: 10px;
  }
}

#highlightsbox {
  background: url("../img/high_bg.png") no-repeat top center, linear-gradient(180deg, rgb(8, 31, 88) 0%, rgb(7, 24, 77) 100%);
  background-size: contain;
  position: relative;
  padding-top: 23.4vw;
  padding-bottom: 140px;
}
@media screen and (max-width: 1200px) {
  #highlightsbox {
    background: url("../img/sp/high_bg.png") no-repeat top 19.6vw center, linear-gradient(180deg, rgb(8, 31, 88) 0%, rgb(7, 24, 77) 100%);
    background-size: contain;
    position: relative;
    padding-top: 19.6vw;
    padding-bottom: 40px;
  }
}
#highlightsbox .sec.js-scroll {
  opacity: 0;
}
#highlightsbox .sec.is-active {
  animation: fadeIn 0.5s ease-in-out forwards;
}
#highlightsbox .sec__tit img {
  width: 61.3vw;
}
@media screen and (max-width: 1200px) {
  #highlightsbox .sec__tit img {
    width: 75.2vw;
  }
}
#highlightsbox .hightxt {
  position: absolute;
  top: 8%;
  left: 20.8%;
  color: #fff;
  width: 17em;
  font-size: 2rem;
  text-align: center;
  line-height: 1.3;
}
@media screen and (max-width: 1200px) {
  #highlightsbox .hightxt {
    position: relative;
    font-size: 1.3rem;
    margin-top: min(46vw, 50%);
    top: 0;
    left: 0;
    width: 100%;
  }
}
#highlightsbox .hightxt.js-scroll {
  opacity: 0;
}
#highlightsbox .hightxt.is-active {
  animation: fadeIn 0.5s ease-in-out forwards;
}
#highlightsbox .hightxt .upper {
  vertical-align: super;
  font-size: 0.5em;
}
#highlightsbox .hightxt__small {
  margin-top: 0.5em;
  font-size: 1rem;
  text-align: center;
}
@media screen and (max-width: 1200px) {
  #highlightsbox .hightxt__small {
    margin-top: 0.3em;
  }
}
#highlightsbox .highcatch {
  color: #fff;
  font-size: 2rem;
  line-height: 1.8;
  text-align: center;
}
@media screen and (max-width: 1200px) {
  #highlightsbox .highcatch {
    font-size: 1.4rem;
    margin-top: 22.4vw;
  }
}
#highlightsbox .highcatch.js-scroll {
  opacity: 0;
}
#highlightsbox .highcatch.is-active {
  animation: fadeIn 0.5s ease-in-out forwards;
}
#highlightsbox #highlights {
  padding-top: 6.7vw;
  box-sizing: border-box;
}
@media screen and (max-width: 1200px) {
  #highlightsbox #highlights {
    padding-top: 18.93vw;
  }
}

#voice {
  background: url("../img/voice_bg1.png") no-repeat left top, url("../img/voice_bg2.png") no-repeat right bottom;
  padding: 7.8vw 0 170px;
}
@media screen and (max-width: 1200px) {
  #voice {
    background: url("../img/sp/voice_bg1.png") no-repeat left top, url("../img/sp/voice_bg2.png") no-repeat right bottom;
    background-size: 20.8vw, 22vw;
    padding: 80px 0 40px;
  }
}
#voice .sec__tit.js-scroll {
  opacity: 0;
}
#voice .sec__tit.is-active {
  animation: fadeIn 0.5s ease-in-out forwards;
}
#voice .sec__tit img {
  width: 12.9vw;
}
@media screen and (max-width: 1200px) {
  #voice .sec__tit img {
    width: 31.4vw;
  }
}
#voice .sec__txt.js-scroll {
  opacity: 0;
}
#voice .sec__txt.is-active {
  animation: fadeIn 0.5s ease-in-out forwards;
}
@media screen and (max-width: 1200px) {
  #voice .sec__txt {
    margin-bottom: 10px;
  }
}
#voice .voiceimg {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: space-around;
  box-sizing: border-box;
  background-color: #00002f;
}
@media screen and (max-width: 1200px) {
  #voice .voiceimg {
    display: block;
  }
}
#voice .voiceimg.js-scroll > dl {
  opacity: 0;
}
#voice .voiceimg.is-active > dl {
  animation: fadeIn 0.5s ease-in-out forwards;
}
#voice .voiceimg.is-active > dl:nth-child(2) {
  animation-delay: 0.2s;
}
#voice .voiceimg.is-active > dl:nth-child(3) {
  animation-delay: 0.4s;
}
#voice .voiceimg > dl {
  width: 42.5%;
}
@media screen and (max-width: 1200px) {
  #voice .voiceimg > dl {
    width: 100%;
    margin-bottom: 30px;
  }
}
#voice .voiceimg > dl dd {
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 18px;
  letter-spacing: 1px;
  line-height: 2;
  padding-left: 1em;
  padding-top: 1em;
  box-sizing: border-box;
  font-weight: 400;
}
@media screen and (max-width: 1200px) {
  #voice .voiceimg > dl dd {
    padding: 10px 0;
    font-size: 1rem;
    line-height: 1.8;
  }
}
#voice .voiceimg > dl dd .red {
  color: #e8242e;
}
#voice .voiceimg > dl dd .yellow {
  color: #ffb93f;
  font-weight: bold;
}

#faq {
  background: linear-gradient(180deg, rgb(8, 31, 88) 0%, rgb(7, 24, 77) 100%);
  padding: 150px 0;
}
@media screen and (max-width: 1200px) {
  #faq {
    padding: 80px 0 80px;
    margin-bottom: 60px;
  }
}
#faq .sec__tit.js-scroll {
  opacity: 0;
}
#faq .sec__tit.is-active {
  animation: fadeIn 0.5s ease-in-out forwards;
}
#faq .sec__tit img {
  width: 8.1vw;
}
@media screen and (max-width: 1200px) {
  #faq .sec__tit img {
    width: 19.73vw;
  }
}
#faq .sec__txt.js-scroll {
  opacity: 0;
}
#faq .sec__txt.is-active {
  animation: fadeIn 0.5s ease-in-out forwards;
}
@media screen and (max-width: 1200px) {
  #faq .sec__txt {
    margin-bottom: 20px;
  }
}
#faq .faqwrap {
  width: 1090px;
  margin: auto auto 60px;
  letter-spacing: 1px;
  line-height: 1.8;
}
@media screen and (max-width: 1200px) {
  #faq .faqwrap {
    width: 95%;
    max-width: 750px;
    margin: auto;
    line-height: 1.5;
  }
}
#faq .faqwrap.js-scroll {
  opacity: 0;
}
#faq .faqwrap.is-active {
  animation: fadeIn 0.5s ease-in-out forwards;
}
#faq .faqwrap .ques {
  position: relative;
  background-color: #00002f;
  padding: 1.8em;
  box-sizing: border-box;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  color: #fff;
  cursor: pointer;
  display: grid;
  grid-template-columns: 49px 1fr 40px;
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 1200px) {
  #faq .faqwrap .ques {
    grid-template-columns: 6.6vw 1fr 6vw;
    padding: 0.8em;
  }
}
#faq .faqwrap .ques:hover {
  opacity: 0.7;
}
@media screen and (max-width: 1200px) {
  #faq .faqwrap .ques:hover {
    opacity: 1;
  }
}
#faq .faqwrap .ques:before {
  content: "";
  width: 49px;
  height: 42px;
  display: block;
  background: url("../img/q.png") no-repeat left top;
  background-size: contain;
}
@media screen and (max-width: 1200px) {
  #faq .faqwrap .ques:before {
    width: 100%;
    height: auto;
  }
}
#faq .faqwrap .ques__txt {
  padding: 0.4em 0.5em 0.5em 1em;
  box-sizing: border-box;
}
@media screen and (max-width: 1200px) {
  #faq .faqwrap .ques__txt {
    padding: 0.4em 0.5em 0.5em 0.5em;
  }
}
#faq .faqwrap .ques .check {
  position: relative;
  width: 46px;
  height: 46px;
  display: block;
  transition: 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: pointer;
}
@media screen and (max-width: 1200px) {
  #faq .faqwrap .ques .check {
    width: 100%;
    height: 6vw;
    align-self: center;
  }
}
#faq .faqwrap .ques .check:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 75%;
  height: 3px;
  border-radius: 10px;
  background: #e8242e;
  display: block;
}
@media screen and (max-width: 1200px) {
  #faq .faqwrap .ques .check:before {
    height: 2px;
  }
}
#faq .faqwrap .ques .check:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 3px;
  height: 75%;
  border-radius: 10px;
  background: #e8242e;
  display: block;
  transition: 0.3s cubic-bezier(0.76, 0, 0.24, 1);
  will-change: transform;
}
@media screen and (max-width: 1200px) {
  #faq .faqwrap .ques .check:after {
    width: 2px;
  }
}
#faq .faqwrap .ques.active .check:after {
  transform: translate(-50%, -50%) rotate(90deg);
}
#faq .faqwrap .ans {
  position: relative;
  background-color: #fff;
  padding: 1.8em;
  box-sizing: border-box;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  color: #00002f;
  display: none;
}
@media screen and (max-width: 1200px) {
  #faq .faqwrap .ans {
    padding: 0.8em;
  }
}
#faq .faqwrap .ans__txt {
  padding: 0.4em 0.5em 0.5em calc(51px + 1em);
  box-sizing: border-box;
  position: relative;
}
@media screen and (max-width: 1200px) {
  #faq .faqwrap .ans__txt {
    padding: 0.4em 0.5em 0.5em calc(6.6vw + 0.5em);
  }
}
#faq .faqwrap .ans__txt:before {
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  width: 51px;
  height: 36px;
  display: block;
  background: url("../img/a.png") no-repeat left top;
  background-size: contain;
}
@media screen and (max-width: 1200px) {
  #faq .faqwrap .ans__txt:before {
    width: 6.6vw;
    height: 5vw;
  }
}

.bg {
  padding: 150px 0 80px;
  background: url("../img/kids_bg1.png") no-repeat left top, url("../img/kids_bg2.png") no-repeat right top 43.33vw, url("../img/present_bg1.png") no-repeat left bottom 24.1vw, url("../img/present_bg2.png") no-repeat right bottom;
  background-size: 17.5vw, 23vw, 16.3vw, 16.3vw;
}
@media screen and (max-width: 1200px) {
  .bg {
    background: none;
    padding: 80px 0 60px;
  }
}

.opt {
  margin-bottom: 140px;
}
@media screen and (max-width: 1200px) {
  .opt {
    margin-bottom: 60px;
  }
}
.opt.js-scroll {
  opacity: 0;
}
.opt.is-active {
  animation: fadeIn 0.5s ease-in-out forwards;
}
@media screen and (max-width: 1200px) {
  .opt:first-child .sec__tit img {
    width: 57.2vw;
  }
}
@media screen and (max-width: 1200px) {
  .opt:nth-child(2) .sec__tit img {
    width: 27.86vw;
  }
}
.opt:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 1200px) {
  .opt:last-child {
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 1200px) {
  .opt:last-child .sec__tit img {
    width: 49.33vw;
  }
}

#present .sec__txt {
  margin-bottom: 1em;
}

#map {
  padding: 150px 0;
  background: linear-gradient(180deg, rgb(8, 31, 88) 0%, rgb(7, 24, 77) 100%);
}
@media screen and (max-width: 1200px) {
  #map {
    padding: 80px 0 60px;
  }
}
#map .sec__tit.js-scroll {
  opacity: 0;
}
#map .sec__tit.is-active {
  animation: fadeIn 0.5s ease-in-out forwards;
}
@media screen and (max-width: 1200px) {
  #map .sec__tit img {
    width: 22.2vw;
  }
}
#map .sec__txt {
  margin-bottom: 1.3em;
}
#map .sec__txt.js-scroll {
  opacity: 0;
}
#map .sec__txt.is-active {
  animation: fadeIn 0.5s ease-in-out forwards;
}
#map .mapwrap {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: space-between;
  margin-bottom: 150px;
}
@media screen and (max-width: 1200px) {
  #map .mapwrap {
    display: block;
    margin-bottom: 80px;
  }
}
#map .mapwrap.js-scroll > a {
  opacity: 0;
}
#map .mapwrap.is-active > a {
  animation: fadeIn 0.5s ease-in-out forwards;
}
#map .mapwrap.is-active > a:nth-child(2) {
  animation-delay: 0.2s;
}
#map .mapwrap.is-active > a:nth-child(3) {
  animation-delay: 0.4s;
}
#map .mapwrap dl {
  background-color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  color: #00002f;
  transition: 0.3s opacity ease;
}
@media screen and (max-width: 1200px) {
  #map .mapwrap dl {
    margin-bottom: 40px;
  }
}
#map .mapwrap dl:hover {
  opacity: 0.8;
}
@media screen and (max-width: 1200px) {
  #map .mapwrap dl:hover {
    opacity: 1;
  }
}
#map .mapwrap dl:hover .linkico__arr {
  transform: translateX(5px);
}
@media screen and (max-width: 1200px) {
  #map .mapwrap dl:hover .linkico__arr {
    transform: none;
  }
}
#map .mapwrap dl dt {
  text-align: center;
}
#map .mapwrap dl .access {
  padding: 1em 1em 0;
  box-sizing: border-box;
  font-size: 16px;
  letter-spacing: 1px;
}
@media screen and (max-width: 1200px) {
  #map .mapwrap dl .access {
    padding: 0.5em 0.5em 0;
    font-size: 20px;
  }
}
#map .mapwrap dl .access__name {
  margin-bottom: 1em;
  font-size: 20px;
  font-weight: bold;
}
@media screen and (max-width: 1200px) {
  #map .mapwrap dl .access__name {
    font-size: 24px;
  }
}
#map .mapwrap dl .access__post {
  margin-bottom: 0.5em;
}
#map .mapwrap dl .access__address {
  margin-bottom: 1.3em;
}
#map .mapwrap dl .linkico {
  padding: 0 20px 20px 0;
  box-sizing: border-box;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  gap: 10px;
}
#map .mapwrap dl .linkico__arr {
  transition: 0.3s transform ease;
}

#att {
  margin-bottom: 120px;
}
@media screen and (max-width: 1200px) {
  #att {
    margin-bottom: 0;
  }
}
#att.js-scroll {
  opacity: 0;
}
#att.is-active {
  animation: fadeIn 0.5s ease-in-out forwards;
}
#att h5 {
  margin-bottom: 35px;
}
@media screen and (max-width: 1200px) {
  #att h5 {
    margin-bottom: 15px;
  }
}
#att > p {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  color: #fff;
  line-height: 2;
  font-size: 18px;
  letter-spacing: 1px;
}
@media screen and (max-width: 1200px) {
  #att > p {
    font-size: 0.9rem;
    line-height: 1.8;
  }
}

footer {
  font-size: 1rem;
  color: #fff;
  background-color: #00002f;
  height: 145px;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 500;
}
@media screen and (max-width: 1200px) {
  footer {
    display: block;
    text-align: center;
    padding-top: 3em;
    padding-bottom: 30vw;
    height: auto;
    font-size: 0.68rem;
  }
}
footer .copyright {
  margin-top: 40px;
}/*# sourceMappingURL=style.css.map */