@charset "UTF-8";
:root {
  --primary: #1B1464;
  --secondary: #0071BB;
}

/* =============================================
Base Set
============================================= */
* {
  box-sizing: border-box;
}
html {
  font-size: 62.5%; /*--rem表記用--*/
}
body {
  font-family: '游ゴシック体', YuGothic, '游ゴシック Medium', 'Yu Gothic Medium', 'Noto Sans JP', sans-serif, 'ヒラギノ角ゴ ProN W3', 'Hiragino Sans', 'Hiragino Kaku Gothic Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', HelveticaNeue, Roboto, Verdana, Meiryo, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
  font-feature-settings: "palt" 1;
  font-size: 1.6rem;
  line-height: 1.6;
  color: #000;
  width: 100%;
  overflow-x: hidden;
}

*[animation] {
  opacity: 0;
}

.wrapper{
  width: 100%;
  position: relative;
  overflow: hidden;
  background: url(../img/main-visual_bg_01.webp) center top no-repeat #E6E6E6;
  background-size: 1280px 1040px;
}
.inner {
  width: 100%;
  padding: 0 8%;
}
@media screen and (min-width:768px) {
  .inner {
    max-width: 600px;
    margin: 0 auto;
  }
}
@media screen and (min-width:1280px) {
  .wrapper{
    background-size: 100% auto;
  }
  .inner {
    padding: 0;
  }
}


/* -------------------------------------
Img
------------------------------------- */
img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
}

/* -------------------------------------
Link
------------------------------------- */
a {
  transition: all .3s ease;
}
*:focus {
  outline: none;
}
@media screen and (min-width:768px) {
  a:hover {
    opacity: .7;
  }
}


/* -------------------------------------
Common
------------------------------------- */
/* ---hidden--- */
.only-sp {
  display: block !important;
}
.only-tab {
  display: none !important;
}
.only-pc {
  display: none !important;
}
@media (min-width: 768px) {
  .only-sp {
    display: none !important;
  }
  .only-tab {
    display: block !important;
  }
  .only-pc {
    display: none !important;
  }
}
@media (min-width: 1280px) {
  .only-sp {
    display: none !important;
  }
  .only-tab {
    display: none !important;
  }
  .only-pc {
    display: block !important;
  }
}

/* -------------------------------------
Compornent
------------------------------------- */
/* btn */
.btn-entry {
  width: 100%;
  display: block;
  margin: 0 auto 10px;
}
.btn-entry img {
  transition: all .3s ease;
}
@media screen and (min-width:768px) {
  .btn-entry:hover img {
    opacity: .7;
  }
}

/* swiper customize */
.swiper {
  padding-bottom: 40px;
}
.swiper-pagination {
  height: 22px;
  bottom: 0;
}
.swiper-pagination-bullet {
  width: 22px;
  height: 20px;
  vertical-align: top;
  background-image: url(../img/ico_pad_02.png);
  background-color: transparent;
  background-position: left top;
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 1;
}
.useful .swiper-pagination-bullet {
  background-image: url(../img/ico_pad_03.png);
}
.useful .swiper-pagination-bullet-active,
.swiper-pagination-bullet-active {
  background-image: url(../img/ico_pad_01.png);
}
@media screen and (min-width:768px) {
  .swiper {
    max-width: 1026px;
    padding-bottom: 60px;
  }
  .swiper.features-slide {
    max-width: 800px;
  }
  .swiper-pagination {
    height: 28px;
  }
  .swiper-pagination-bullet {
    width: 32px;
    height: 28px;
  }
}

/* -------------------------------------
Header
------------------------------------- */
.header-logo {
  width: 130px;
  padding-top: 20px;
}

@media screen and (min-width:768px) {
  .header .inner {
    padding: 0;
  }
}
@media screen and (min-width:1280px) {
  .header-logo {
    position: relative;
    z-index: 5;
  }
  .header .inner {
    width: 1230px;
    max-width: none;
    margin: 0 auto;
  }
}

/* -------------------------------------
Main
------------------------------------- */
/* main-visual */
.main-visual {
  padding: 60px 0 69px;
}
.main-visual__catch {
  width: 84%;
  max-width: 305px;
  margin: 484px auto 0;
}
.main-visual__title {
  width: 275px;
  margin: 0 auto 10px;
  animation: mv-fadeIn 1s ease-in;
}
@keyframes mv-fadeIn {
  0%{
    opacity: 0;
    transform: scale(0.6);
  }
  100%{
    opacity: 1;
    transform: scale(1);
  }
}
@media screen and (min-width:1280px) {
  .main-visual {
    padding: 4% 0 6%;
  }
  .main-visual__title {
    width: 21.7%;
  }
  .main-visual__catch {
    width: 24.2%;
    max-width: none;
    margin-top: 38%;
  }
}

/* intro */
.intro {
  padding: 80px 0 120px;
  position: relative;
}
.intro-list__item {
  position: relative;
  margin-bottom: 50px;
}
.intro-list__title {
  font-size: 2.0rem;
  text-align: center;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 10px;
}
.intro-list__bubble {
  position: absolute;
  width: 37%;
  top: 54px;
}
.intro-list__item:nth-of-type(1) .intro-list__bubble {
  right: -10px;
  top: 84px;
}
.intro-list__item:nth-of-type(2) .intro-list__bubble,
.intro-list__item:nth-of-type(4) .intro-list__bubble {
  left: -10px;
}
.intro-list__item:nth-of-type(3) .intro-list__bubble {
  top: auto;
  bottom: -10px;
  right: -10px;
}
.intro-list__text {
  max-width: 288px;
  margin: 0 auto 30px;
}
.intro-list__link {
  display: block;
  position: relative;
}
.intro-list__link-img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (min-width:768px) {
  .intro {
    padding: 40px 0 80px;
  }
  .intro-list__bubble {
    top: 64px;
  }
  .intro-list__item:nth-of-type(1) .intro-list__bubble {
    right: -20px;
    top: 104px;
  }
  .intro-list__item:nth-of-type(2) .intro-list__bubble,
  .intro-list__item:nth-of-type(4) .intro-list__bubble {
    left: -20px;
  }
  .intro-list__item:nth-of-type(3) .intro-list__bubble {
    right: -20px;
  }
  .intro-list__title {
    font-size: 2.4rem;
  }
  .intro-list__link {
    max-width: 450px;
    margin: 0 auto;
  }
}
@media screen and (min-width:1080px) {
  .intro:before,
  .intro:after {
    content: "";
    display: block;
    width: 240px;
    height: 400px;
    position: absolute;
    background-repeat: no-repeat;
    background-size: contain;
  }
  .intro:before {
    top: 10%;
    right: 0;
    background-image: url(../img/intro_image_right.webp);
  }
  .intro:after {
    top: 38%;
    left: 0;
    background-image: url(../img/intro_image_left.webp);
  }
}

/* features */
.features {
  background: repeating-linear-gradient(-45deg, #8ED0EE, #8ED0EE 5px, #A5D9F1 5px, #A5D9F1 12px);
  padding: 120px 0 130px;;
  position: relative;
}
.features:after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  position: absolute;
  bottom: 10px;
  background-color: var(--secondary);
}
.features__visual {
  margin: 0 auto;
  position: relative;
  z-index: 9;
}
.features__image {
  object-fit: cover;
  object-position: center;
  width: 820px;
  height: 400px;
  margin: 0 auto;
}
.features__catch {
  width: 173px;
  margin: 0 auto;
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: block
}
.features__band {
  background-color: var(--secondary);
  padding: 100px 0 15px;
  position: relative;
  margin-top: -90px;
}
.features__band:after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  position: absolute;
  bottom: -10px;
  background-color: var(--secondary);
}
.features__title {
  width: 260px;
  margin: 0 auto;
}
.features-slide {
  margin-top: 60px;
}
.features-slide .swiper-pagination {
  bottom: 0;
}
@media screen and (min-width:820px) {
  .features__image {
    border-radius: 36px;
  }
}

/* special */
.special {
  background-color: #1B1464;
  padding: 120px 0;
}
.special__catch {
  width: 50%;
  max-width: 220px;
  margin: 0 auto 20px;
}
.special__title {
  width: 91%;
  max-width: 375px;
  margin: 0 auto 30px;
}
.special__text {
  color: #fff;
  text-align: center;
}
.special-list {
  margin: 70px 0 80px;
}
.special-list__item + .special-list__item   {
  margin-top: 70px;
}
.special-list__img {
  border-radius: 20px;
  margin-bottom: 20px;
}
.special-list__catch,
.special-list__title {
  text-align: center;
  color: #fff;
}
.special-list__title {
  font-size: 2.4rem;
  margin: 15px 0 25px;
}
.special-list__present {
  max-width: 500px;
  margin: 0 auto;
}
.special__commingsoon {
  width: 166px;
  margin: 0 auto 20px;
}

.commingsoon {
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  background-color: #29AAE1;
  padding: 5px;
}
.commingsoon__inner {
  background: repeating-linear-gradient(-45deg, #3AB1E6, #3AB1E6 5px, #29AAE1 5px, #29AAE1 12px);
  padding: 50px calc(8% - 5px) 150px;
  border: 2px solid #A4DAF3;
}
.commingsoon__catch {
  width: calc(100% - 10px);
  max-width: 400px;
  margin: 0 auto 20px;
}
.commingsoon__title {
  width: 98%;
  max-width: 360px;
  margin: 0 auto 10px;
}
.commingsoon__text {
  text-align: center;
  color: var(--primary);
  margin-bottom: 10px;
}
.commingsoon__image {
  margin: -135px auto 0;
  max-width: 340px;
  position: relative;
  z-index: 1;
}
.commingsoon__movie {
  max-width: 400px;
  display: block;
  margin: 0 auto;
}
.commingsoon__bubble {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
}
@media screen and (min-width:600px) {
  .commingsoon {
    width: 126%;
    margin: 0 -13%;
  }
}

/* entry */
.entry {
  background: -moz-linear-gradient(left, #B47816 0%, #FAE089 85%, #FAE089 100%);
  background: -webkit-linear-gradient(left, #B47816 0%, #FAE089 85%, #FAE089 100%);
  background: linear-gradient(to right, #B47816 0%, #FAE089 85%, #FAE089 100%);
  padding: 55px 0 0;
  position: relative;
}
.entry:before,
.entry:after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  position: absolute;
  left: 0;
  background-color: var(--primary);
}
.entry:before {
  top: 8px;
}
.entry:after {
  bottom: 8px;
}
.entry__image {
  position: relative;
  z-index: 1;
}
.entry__bubble {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.entry__btn {
  margin: 0 auto 20px;
  max-width: 500px;
}

/* useful */
.useful {
  background-color: #EFEFEF;
  padding: 120px 0;
}
.useful__catch {
  width: 55%;
  max-width: 193px;
  margin: 0 auto 15px;
}
.useful__title {
  width: 84%;
  max-width: 315px;
  margin: 0 auto 20px;
}
.useful-list__image {
  border-radius: 20px;
  box-shadow: 7px 7px 5px rgba(0,0,0,0.2);
}
.useful-list__text {
  margin-top: 15px;
  text-align: center;
}


/* -------------------------------------
Footer
------------------------------------- */
.footer {
  padding: 100px 0 10px;
  background: repeating-linear-gradient(-45deg, #8ED0EE, #8ED0EE 5px, #A5D9F1 5px, #A5D9F1 12px);
}
.footer .inner {
  padding-bottom: 60px;
}

/* share */
.share__title {
  width: 64.26%;
  max-width: 285px;
  margin: 0 auto 40px;
}
.share__image {
  width: 64.26%;
  max-width: 285px;
  margin: 0 auto;
}
.share-list {
  width: 65%;
  max-width: 220px;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
}
.share-list__item {
  width: 53px;
}

/* supplement */
.supplement__catch {
  margin-bottom: 15px;
}
.supplement__text {
  text-align: justify;
  margin-bottom: 40px;
}
.supplement__btn {
  display: block;
  margin: 0 auto 420px;
}
.supplement__btn img {
  transition: all .3s ease;
}
@media screen and (min-width: 768px) {
  .supplement__btn {
    max-width: 500px;
  }
  .supplement__btn:hover img {
    opacity: 0.7;
  }
}
@media screen and (min-width: 1080px) {
  .supplement__btn {
    max-width: 500px;
    margin-bottom: 80px;
  }
}

/* copyright */
.copyright {
  font-size: 8px;
  text-align: center;
}

/* modal */
.modaal-container {
  max-width: 400px;
  border-radius: 10px;
  overflow: hidden;
}
.modaal-content-container {
  padding: 0;
}
.modaal-video-wrap {
  margin: auto;;
}
.modal-share .share-list {
  padding: 10px 0 40px;
}
.modal-share__text {
  width: 60%;
  max-width: 214px;
  margin: 20px auto 0;
}

/* smooth-scroll */
.smooth-scroll {
  width: 200px;
  position: absolute;
  right: 0;
  bottom: 0;
}