@charset "utf-8";
/* CSS Document */

/*--------------------------------------------------
 base
--------------------------------------------------*/

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  background-color: #FFFBF0;
  color: #1F1A2E;
  font-size: 14px;
  font-weight: 500;
  line-height:1.8;
  font-family: "M PLUS Rounded 1c","メイリオ",Meiryo,"HiraKakuProN-W3","ヒラギノ角ゴ ProN W3",sans-serif;
  letter-spacing:0.1em;
  /*letter-spacing:0.15em;*/
  position: relative;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  font-style: italic;
  background-repeat: no-repeat;
  background-size: cover;
  shape-margin: 0.75rem;
}

ul {
  padding:0px;
  margin:0;
  list-style:none;
}

ul.indent li {
  text-indent:-1em;
  padding-left:1em;
}

dt {
  font-weight:normal;
}

a {
  text-decoration:none;
  word-wrap:break-word;
  word-break: break-all;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  -ms-transition: 0.3s;
  transition: 0.3s;
  color: inherit;
}

a:hover {
  text-decoration:none;
  color: inherit;
  opacity: 0.8;
}
 
a:focus {
    outline: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
}

dl,dd,p {
  margin:0;
  padding:0;
}

@media ( any-hover: hover ) {
  a.btn:hover {
    color: #fff;
    border: 1px solid #000;
    background-color: #000;
    opacity: 1;
  }
}

table {
  border-collapse: collapse;
  border-spacing:0;
}


@media screen and (max-width: 991px) {
  body {
    font-size: 12px;
  }
}

/* ========================================== */
/* フォント */
/* ========================================== */

.font-accent {
  font-weight: 800;
}


/* ========================================== */
/* ヘッダー */
/* ========================================== */

header {
  width: 100%;
  height: 92px;
  border-bottom: 2px solid #1F1A2E;
  position: fixed;
  z-index: 9999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #FFFBF0;
  padding: 5px 20px;
}

.fixed-top {
  z-index: 990;
}

header .hamburger {
  display: none;
}

.logo-top {
  max-width: 160px;
  padding-bottom:0;
}

h1 {
  margin-bottom: 0;
}

.nav-area .nav-list ul {
  display: flex;
  font-size: 20px;
  justify-content: flex-end;
  position: relative;
  max-width:1030px;
}

.nav-area .nav-list ul li a {
  display: block;
  color: #1F1A2E;
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-weight: 800;
  text-decoration: none;
  padding-right: 8px;
  padding-left: 8px;
  position: relative;
  transition: opacity 0.3s;
  transform: rotate(0.03deg);
}

.nav-area .nav-list ul li a:hover {
  opacity: 0.8;
}

.nav-area .nav-list ul li a .nav-num {
  display: none;
}

@media screen and (max-width: 1396px) {
  header {
    height: 64px;
    display: block;
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 10px;
  }

  .logo-top {
    max-width: 110px;
  }

  .nav-area {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background-color: #1F1A2E;
    overflow-y: auto;
  }

  .nav-area .nav-list {
    width: 100%;
    margin: 64px 0 0;
    border-top: 2px solid #2A2A2A;
  }

  .nav-area .nav-list ul {
    flex-direction: column;
    width: 100%;
    margin: 0;
    max-width: 100%;
    padding-bottom: 100px;
  }

  .nav-area .nav-list ul li {
    display: block;
    padding: 20px 15px;
    border-bottom: 1px solid #2A2A2A;
  }

  .nav-area .nav-list ul li:not(:first-of-type)::after {
    position: relative;
    display: none;
  }

  .nav-area .nav-list ul li a {
    display: flex;
    color: #fff;
    text-decoration: none;
    transition: opacity 0.3s;
    font-size: 20px;
    justify-content: space-between;
    align-items: center;
  }

  .nav-area .nav-list ul li a .nav-num {
    display: block;
    color: #888888;
  }

  header .hamburger {
    top: 11px;
    right: 15px;
    position: fixed;
    display: block;
    width: 42px;
    height: 43px;
    z-index: 99999;
    transition: all .4s;
    box-sizing: border-box;
    cursor: pointer;
    background: #1F1A2E;
    border: 1px solid #fff;
  }

  header .hamburger span {
    display: inline-block;
    transition: all .4s;
    box-sizing: border-box;
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 20px;
    height: 2.5px;
    margin: 0 auto;
    background-color: #fff;
  }

  header .hamburger  span:nth-of-type(1) {
    top: 14px;
  }
  header .hamburger  span:nth-of-type(2) {
    top: 20px;
  }
  header .hamburger  span:nth-of-type(3) {
    top: 26px;
  }

  header .hamburger  span:nth-of-type(1) {
    -webkit-animation: menu-ber01 .75s forwards;
    animation: menu-ber01 .75s forwards;

  }
  header .hamburger  span:nth-of-type(2) {
    transition: all .25s .25s;
    opacity: 1;
  }
  header .hamburger  span:nth-of-type(3) {
    -webkit-animation: menu-ber02 .75s forwards;
    animation: menu-ber02 .75s forwards;
  }

  header .active span:nth-of-type(1) {
    -webkit-animation: active-menu-ber01 .75s forwards;
    animation: active-menu-ber01 .75s forwards;
    top: 10px;

  }
  header .active span:nth-of-type(2) {
    opacity: 0;
  }
  header .active span:nth-of-type(3) {
    -webkit-animation: active-menu-ber03 .75s forwards;
    animation: active-menu-ber03 .75s forwards;
    top: 30px;
  }

  @-webkit-keyframes menu-ber01 {
    0% {
      -webkit-transform: translateY(8px) rotate(45deg);
    }
    50% {
      -webkit-transform: translateY(8px) rotate(0);
    }
    100% {
      -webkit-transform: translateY(0) rotate(0);
    }
  }


  @keyframes menu-ber01 {
    0% {
      transform: translateY(8px) rotate(45deg);
    }
    50% {
      transform: translateY(8px) rotate(0);
    }
    100% {
      transform: translateY(0) rotate(0);
    }
  }


  @-webkit-keyframes menu-ber02 {
    0% {
      -webkit-transform: translateY(-8px) rotate(-45deg);
    }
    50% {
      -webkit-transform: translateY(-8px) rotate(0);
    }
    100% {
      -webkit-transform: translateY(0) rotate(0);
    }
  }


  @keyframes menu-ber02 {
    0% {
      transform: translateY(-8px) rotate(-45deg);
    }
    50% {
      transform: translateY(-8px) rotate(0);
    }
    100% {
      transform: translateY(0) rotate(0);
    }
  }


  @-webkit-keyframes active-menu-ber01 {
    0% {
      -webkit-transform: translateY(0) rotate(0);
    }
    50% {
      -webkit-transform: translateY(10px) rotate(0);
    }
    100% {
      -webkit-transform: translateY(10px) rotate(45deg);
    }
  }


  @keyframes active-menu-ber01 {
    0% {
      transform: translateY(0) rotate(0);
    }
    50% {
      transform: translateY(10px) rotate(0);
    }
    100% {
      transform: translateY(10px) rotate(45deg);
    }
  }


  @-webkit-keyframes active-menu-ber03 {
    0% {
      -webkit-transform: translateY(0) rotate(0);
    }
    50% {
      -webkit-transform: translateY(-11px) rotate(0);
    }
    100% {
      -webkit-transform: translateY(-11px) rotate(-45deg);
    }
  }


  @keyframes active-menu-ber03 {
    0% {
      transform: translateY(0) rotate(0);
    }
    50% {
      transform: translateY(-11px) rotate(0);
    }
    100% {
      transform: translateY(-11px) rotate(-45deg);
    }
  }

}

/* ========================================== */
/* Apply Button */
/* ========================================== */

.apply_bnr {
  position: fixed;
  display: grid;
  align-items: center;
  justify-content: center;
  grid-template-columns: 22px 115px;
  gap: 0;
  width: 100%;
  height: 100%;
  max-width: 188px;
  max-height: 89px;
  z-index: 20;
  bottom: 30px;
  right: 25px;
  text-align: center;
  background: #1F1A2E;
  color: #FFD84D;
  box-shadow: 10px 10px 0 #FFD84D;
  font-size: 22px;
  transition: opacity .3s, transform .3s, box-shadow .3s;
}

.apply_bnr:hover {
  opacity: 1;
  transform: translate(10px, 10px);
  color: #FFD84D;
  box-shadow: 0 0 0 #FFD84D;
}

.apply_bnr .material-icons {
  font-size: 40px;
  display: block;
}

/* footer直前で停止時 */
.apply_bnr.is-stop {
  position: absolute;
}

@media screen and (max-width: 767px) {
  .apply_bnr {
    max-width: 130px;
    max-height: 62px;
    font-size: 16px;
    grid-template-columns: 16px 90px;
    bottom: 10%;
  }

  .apply_bnr .material-icons {
    font-size: 32px;
  }
}

/* ========================================== */
/* メインビジュアル */
/* ========================================== */

#hero {
  position: relative;
  overflow: hidden;
  border-bottom: 4px solid #1F1A2E;
  box-sizing: border-box;
  margin: 92px 0 0;
  padding-top: 0;
  background: 
  radial-gradient(circle at 18% 20%, #FFE9A8 0 22%, transparent 22%),
  radial-gradient(circle at 82% 18%, #FFC7D6 0 18%, transparent 18%),
  radial-gradient(circle at 12% 78%, #CDEEFF 0 20%, transparent 20%),
  radial-gradient(circle at 88% 82%, #D7F6C6 0 22%, transparent 22%),
  radial-gradient(circle at 50% 50%, #FFFBF0 0 40%, #FFF4D9 100%);
}

#hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background-image: radial-gradient(#1F1A2E 1.2px, transparent 1.6px);
  background-size: 22px 22px;
  opacity: .09;
}

.hero-deco {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}

.hero-deco .blob {
  position: absolute;
}

.hero-deco .b-yellow {
  width: 120px;
  height: 120px;
  top: 6%;
  left: -28px;
  animation: bob 5s ease-in-out infinite;
}

.hero-deco .b-mint{
  width: 90px;
  height: 90px;
  top: 3%;
  right: 8%;
  animation: bob 4s ease-in-out infinite reverse;
}

.hero-deco .b-peach {
  width: 70px;
  height: 70px;
  top: 46%;
  left: 5%;
  animation: bob 6s ease-in-out infinite;
}

.hero-deco .b-lav {
  width: 100px;
  height: 100px;
  bottom: 12%;
  right: -24px;
  animation: bob 7s ease-in-out infinite reverse;
}

@keyframes bob {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px);
  }
  100% {
    transform: translateY(0);
  }
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 45px 32px 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.hero-lead {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 900;
  color: #1f1a2e;
  background: #ffd84d;
  border: 3px solid #1f1a2e;
  border-radius: 999px;
  margin: 0 auto 6px;
  padding: 8px 22px;
  white-space: nowrap;
  letter-spacing: .02em;
  line-height: 1.0;
  text-align: center;
  display: table;
  font-size: clamp(18px, 4vw, 56px);
  box-shadow: 4px 4px 0 #1f1a2e;
  transform: rotate(-1deg);
}

.hero-ttl {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 900;
  line-height: .96;
  letter-spacing: -.03em;
  margin: 0;
  text-align: center;
  font-size: clamp(34px, 4vw, 124px);
}

.hero-ttl span {
  display: block;
  white-space: normal;
}

.hero-ttl .tag {
  display: inline-block;
  background: #b8f2d6;
  color: #1f1a2e;
  padding: 16px 0px 16px 24px;
  border: 3px solid #1f1a2e;
  border-radius: 16px;
  box-shadow: 5px 5px 0 #1f1a2e;
  transform: rotate(-2deg);
  margin-left: -0.5em;
}

.hero-sub-ttl {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 900;
  color: #1f1a2e;
  margin: 10px 0 0;
  white-space: nowrap;
  letter-spacing: -.01em;
  line-height: 1.0;
  text-align: center;
  display: block;
  font-size: clamp(24px, 4vw, 87px);
}

.hero-inner .mainvisual {
  display: block;
  background: #fff;
  border: 4px solid #1f1a2e;
  border-radius: 24px;
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
  max-width: 1200px;
  max-height: 675px;
  aspect-ratio: 16/9;
  box-shadow: 10px 10px 0 #1f1a2e;
  margin: 22px 0 10px;
  transform: rotate(-.6deg);
}

.hero-inner .mainvisual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  display: block;
}

@media screen and (max-width: 1190px) {
  #hero {
    margin: 64px 0 0;
  }

  .hero-inner {
    padding: 35px 15px;
  }

  .hero-ttl .tag {
    padding: 5px 8px;
  }

  .hero-sub-ttl {
    margin: 0;
  }

  .hero-inner .mainvisual {
    box-shadow: 5px 5px 0 #1f1a2e;
    margin: 0;
    transform: rotate(358deg);
  }

}

@media screen and (max-width: 485px) {
  .hero-deco .b-yellow {
    width: 90px;
    height: 90px;
  }
}

/* ========================================== */
/* TOP CONTENTS */
/* ========================================== */

#contents {
  position: relative;
}

#contents section {
  position: relative;
  width: 100%;
  margin: 85px 0;
}

#contents section:nth-child(n+3) {
  padding-top: 92px;
  margin: 10px auto;
}

.container {
  max-width: 1280px;
}

.sec-heading {
  margin-bottom: 34px;
}

.sec-heading .num {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 900;
  font-size: 13px;
  letter-spacing: .08em;
  background: #1f1a2e;
  color: #fff;
  padding: 5px 14px;
  display: inline-block;
  border-radius: 999px;
}

.sec-heading .num.color-yel {
  background-color: #FFD84D;
  color: #1f1a2e;
}

.sec-heading h2 {
  font-weight: 900;
  font-size: clamp(24px, 5vw, 54px);
  line-height: 1.15;
  letter-spacing: -.01em;
  display: flex;
  align-items: end;
}

.sec-heading h2 .accent-ttl {
  font-style: normal;
  display: inline-block;
  padding: 10px 18px;
  background: #FFD84D;
  border: 3px solid #1F1A2E;
  border-radius: 16px;
  box-shadow: 5px 5px 0 #1F1A2E;
  transform: rotate(-1.5deg);
  margin-left: 22px;
}

@media screen and (max-width: 767px) {

  #contents section {
    position: relative;
    width: 100%;
    margin: 64px 0;
  }

  #contents section:nth-child(n+3) {
    padding-top: 64px;
    margin: 10px auto;
  }

  .sec-heading h2 {
    margin-top: 8px;
    align-items: baseline;
    flex-wrap: wrap;
  }

  .sec-heading h2 .accent-ttl {
    margin-left: 0;
    padding: 10px 8px;
    margin-top: 8px;
  }

}

/* ========================================== */
/* EPISODE */
/* ========================================== */

section#episode {
  background: linear-gradient(316deg,rgba(32, 39, 64, 1) 0%, rgba(35, 29, 45, 1) 50%, rgba(55, 45, 44, 1) 100%);
  position: relative;
  color: #fff;
  overflow: hidden;
  padding: 85px 0;
}

#episode .movie-area {
  width: 100%;
  height: auto;
  max-width: 1000px;
  margin: 0 auto;
}

#episode .movie-area .iframe {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

#episode .movie-area .iframe iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#episode .ep-btn {
  display: block;
  text-align: center;
  background: #FFD84D;
  color: #1F1A2E;
  font-weight: 800;
  font-size: 18px;
  width: 100%;
  max-width: 288px;
  height: 100%;
  max-height: 48px;
  padding: 16px 0;
  line-height: 1;
  margin: 35px auto 0;
  border-radius: 30px;
  box-shadow: 4px 4px 0 #fff;
  transition: .3s;
}

#episode .ep-btn:hover {
  transform: translate(4px, 4px);
  box-shadow: 0 0 0 #1F1A2E;
}

@media screen and (max-width: 767px) {
  section#episode {
    margin-bottom: 0;
  }
}

/* ========================================== */
/* PROFILE */
/* ========================================== */

#profile .sec-heading h2 .accent-ttl {
  margin-left: 0;
}

#profile .profile-text {
  font-size: 20px;
  text-align: center;
  font-weight: 500;
  transform: rotate(0.03deg);
}

#profile .profile-text .text-em {
  font-size: 40px;
  font-weight: 800;
  background-color: #FFD84D;
  display: inline;
  padding-left: 26px;
}

#profile .profile-text .fw-bold {
  font-size: 26px;
  padding-top: 23px;
}

@media screen and (max-width: 767px) {
  #profile .profile-text .text-em {
    font-size: 21px;
    padding-left: 8px;
  }

  #profile .profile-text {
    font-size: 14px;
  }

  #profile .profile-text .fw-bold {
    font-size: 15px;
    padding-top: 15px;
  }

}


/* ========================================== */
/* MEMBERS */
/* ========================================== */

.modal-btn img {
  object-fit: cover;
  border: 3px solid #1F1A2E;
  box-shadow: 14px 14px 0px #1F1A2E;
}

#members .row {
  padding-right: 15px;
}

/* モーダル本体 */
.modaal-container {
  border: 5px solid rgba(225, 225, 225, 0);
  border-radius: 0;
  overflow: hidden;
}

/* ようた */
.modaal-container.border-yellow {
  border-color: #F7D020;
}

/* たいが */
.modaal-container.border-blue {
  border-color: #03C8FF;
}

/* なるき */
.modaal-container.border-purple {
  border-color: #AB74E2;
}

/* ぱっち */
.modaal-container.border-red {
  border-color: #F83635;
}

/* なぎ */
.modaal-container.border-pink {
  border-color: #FA55A3;
}

.modal-img {
  display: flex;
  justify-content: center;
  align-items: center;
}

.modal-img img {
  max-width: 100%;
  max-height: 100%;
  min-height: 203px;
  aspect-ratio: 16 / 9;
  width: auto;
  height: auto;
  object-fit: cover;
}

.name {
  font-size: 24px;
  margin-bottom: 16px;
  font-weight: 900;
  color: #1F1A2E;
}

.member-color {
  font-size: 14px;
  color: #1F1A2E;
}

.caption {
  font-size: 14px;
  line-height: 1.5;
  margin: 12px 0 32px;
  width: 100%;
}

.ttl {
  font-size: 20px;
  font-weight: bold;
}

ul.member {
  display: flex;
  flex-wrap:wrap;
  justify-content: center;
  margin: auto;
  margin-bottom: 32px;
  column-gap:32px;
}

ul.sns {
  display: flex;
  justify-content: center;
  margin: auto;
  gap: 26px;
}

.sns img{
  max-width: 50px;
  max-height: 50px;
  width: 100%;
  height: 100%;
  border: none;
}

@media (min-width: 768px) {
  .name {
    font-size: 32px;
    margin-bottom: 0;
  }

  .member-color {
    font-size: 16px;
  }

  .ttl {
    font-size: 16px;
  }

  .caption {
    font-size: 16px;
    margin-bottom: 41px;
  }

  ul.member {
    margin-bottom: 28px;
    column-gap:24px;
  }
}

@media (hover: hover) {
  .col-md-6 a:hover,
  ul.sns li a:hover {
    opacity:0.8;
  }

}

.modaal-close {
  display: none;
}

.modaal-inner-wrapper {
  padding: 0 15px;
  height: 100svh;
  transform: rotate(0.03deg);
}

.modaal-container {
  max-width: 660px;
  max-height: calc(100svh - 100px);
  overflow-y: auto;
}

.modaal-content-container {
  padding: 40px 20px 40px;
}

@media (min-width: 768px) {
  .modaal-inner-wrapper {
    padding: 16px 15px;
  }

  .modaal-close {
    right: 20px;
    top:20px;
    background: transparent!important;
  }

  .modaal-close:after,
  .modaal-close:before {
    background-color: #FFF;
  }

  .modaal-container {
    max-height: inherit;
    overflow-y: none;
  }
}

@media screen and (max-width: 767px) {
  #members .col-md-4 {
    max-width: 345px;
    padding-left: 0;
  }

  #members .row {
    padding-right: 0px;
  }
}

@media (min-width: 688px) {
  .modal-img img {
    max-width: 620px;
    max-height: 413px;
    aspect-ratio: auto;
  }
}

/* ========================================== */
/* CONCEPT */
/* ========================================== */

#concept p {
  font-size: 26px;
  transform: rotate(0.03deg);
}

@media screen and (max-width: 767px) {
  #concept p {
    font-size: 16px;
  }
}

/* ========================================== */
/* SCHEDULE */
/* ========================================== */

#schedule .sec-heading h2 .accent-ttl {
  background: #AB74E2;
  color: #fff;
}

.sched-grid {
  display: grid;
  grid-template-columns: 1.3fr .9fr;
  gap: 40px;
  align-items: start;
}

.step-box {
  border-top: 2px solid #1f1a2e;
  border-bottom: 2px solid #1f1a2e;
  transform: rotate(0.03deg);
}

.step-box .step-item {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 18px;
  padding: 22px 10px;
  border-bottom: 1.5px solid #1f1a2e;
  align-items: start;
}

.step-box .step-item .step-num {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 40px;
  font-weight: 800;
  display: grid;
  place-items: center;
  border: 2px solid #1f1a2e;
  color: #fff;
  line-height: 1;
  aspect-ratio: 1;
  letter-spacing: -2px;
}

/* num-color */

.step-item:nth-child(1) .step-num {
  background: #FFD84D;
}

.step-item:nth-child(2) .step-num {
  background: #03C8FF;
}

.step-item:nth-child(3) .step-num {
  background: #AB74E2;
}

.step-item:nth-child(4) .step-num {
  background: #F83635;
}

.step-item:nth-child(5) .step-num {
  background: #FA55A3;
}

.step-item:nth-child(6) .step-num {
  background: #1f1a2e;
}

.step-body .step-ttl {
  font-weight: 800;
  font-size: 19px;
}

.step-body .step-lead {
  font-size: 14px;
  line-height: 1.5;
}

.step-body .step-day {
  font-size: 14px;
}

.step-body .step-day span {
  font-weight: 800;
}

.step-body .step-xs {
  font-size: 9.5px;
  font-weight: 400;
}

.tour-box {
  transform: rotate(0.03deg);
}

.tour-box .tour-sched {
  background: #fff;
  border: 3px solid #1f1a2e;
  padding: 38px;
  box-shadow: 10px 10px 0 #1f1a2e;
  margin-bottom: 35px;
}

.tour-box .tour-sched .tour-sched-ttl {
  font-size: 22px;
  font-weight: 800;
}

.tour-box .tour-sched .tour-sched-lead {
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 20px;
}

.tour-box .tour-sched .tour-sched-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tour-box .tour-sched .tour-sched-list .tour-sched-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
  padding: 10px 12px;
  border: 1.5px solid #1f1a2e;
}

.tour-box .tour-sched .tour-sched-list .tour-sched-item .city {
  font-weight: 900;
  font-size: 14px;
  display: flex;
  align-items: center;
}

.tour-box .tour-sched .tour-sched-list .tour-sched-item .city .dot {
  width: 14px;
  height: 14px;
  display: inline-block;
  background: #03C8FF;
  border: 1px solid #000;
  margin-right: 12px;
}

.tour-box .tour-sched .tour-sched-list .tour-sched-item .day {
  font-size: 14px;
  letter-spacing: .04em;
  text-align: end;
  color: #7A7687;
}

.tour-box .tour-sched .tour-sched-list .tour-sched-item:nth-child(4) .day {
  display: flex;
  flex-direction: column;
}

.tour-box .tour-sched .tour-sched-list .tour-sched-item:nth-child(4) .day .attn {
  font-size: 10px;
}

.tour-box .tour-summary {
  color: #fff;
  background: #1f1a2e;
  border: 3px solid #1f1a2e;
  padding: 25px;
  box-shadow: 10px 10px 0 #FFD84D;
  margin-bottom: 35px;
}

.tour-box .tour-summary .tour-summary-ttl {
  font-size: 16px;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 2px solid #444444;
}

.tour-summary .tour-summary-list .tour-summary-item {
  border-bottom: 1px dotted #444444;
  padding-bottom: 10px;
  margin-bottom: 10px;
}

.tour-summary .tour-summary-list .tour-summary-item .role-model-movie {
  width: 80%;
  margin: 10px auto 0;
}

@media screen and (max-width: 767px) {
  .sched-grid {
    grid-template-columns: 1fr;
  }

  .step-box .step-item {
    padding: 16px 10px;
    gap: 16px;
    grid-template-columns: 42px 1fr;
  }

  .step-box .step-item .step-num {
    font-size: 22px;
    letter-spacing: 0.1px;
  }

  .step-body .step-ttl {
    font-size: 16px;
  }

  .tour-box .tour-sched {
    max-width: 100%;
    min-width: 345px;
    width: 100%;
    padding: 39px 18px;
    margin-bottom: 32px;
  }

  .tour-box .tour-sched .tour-sched-lead {
    margin-bottom: 16px;
  }

  .tour-box .tour-sched .tour-sched-list .tour-sched-item:nth-child(4) .day .attn {
    font-size: 9px;
  }

  .tour-box .tour-summary {
    max-width: 100%;
    min-width: 345px;
    width: 100%;
    padding: 25px 16px;
  }

  .tour-box .tour-summary .tour-summary-ttl {
    font-size: 14px;
    letter-spacing: -1px;
  }
}


/* ========================================== */
/* REQUIREMENTS */
/* ========================================== */

#requirements .sec-heading h2 .accent-ttl {
  background: #03C8FF;
}

.req-grid {
  display: grid;
  grid-template-columns: 1.3fr .9fr;
  gap: 40px;
  align-items: start;
  transform: rotate(0.03deg);
}

.look-box {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.look-box .look-item {
  display: grid;
  align-items: center;
  grid-template-columns: 72px 1fr;
  gap: 16px;
  background: #fff;
  border: 2.5px solid #1f1a2e;
  padding: 20px;
  box-shadow: 6px 6px 0 #1f1a2e;
}

.look-box .look-item .icon-star {
  width: 54px;
  height: 54px;
}

.look-box .look-item .look-item-text {
  font-size: 26px;
  font-weight: 500;
  line-height: 1.5;
}

.rep-box {
  background: #1f1a2e;
  border: 3px solid #1f1a2e;
  padding: 25px;
  box-shadow: 10px 10px 0 #FFD84D;
  margin-bottom: 35px;
  color: #fff;
}

.rep-box .rep-box-ttl {
  font-size: 26px;
  padding-bottom: 10px;
  border-bottom: 2px solid #444444;
  margin-bottom: 50px;
}

.rep-box .rep-list .rep-item {
  border-bottom: 1px dotted #444444;
  padding-bottom: 10px;
  margin-bottom: 10px;
}

.rep-box .rep-list .rep-item:nth-child(4) {
  margin-bottom: 50px;
}

@media screen and (max-width: 767px) {
  .req-grid {
    grid-template-columns: 1fr;
  }

  .look-box {
    gap: 20px;
  }

  .look-box .look-item {
    padding: 25px 18px;
    grid-template-columns: 35px 1fr;
    gap: 20px;
  }

  .look-box .look-item .look-item-text {
    font-size: 16px;
  }

  .rep-box {
    padding: 25px 16px;
    margin-bottom: 0;
  }

  .rep-box .rep-box-ttl {
    margin-bottom: 23px;
  }

  .rep-box .rep-list .rep-item:nth-child(4) {
    margin-bottom: 0;
  }
}

/* ========================================== */
/* ENTRY */
/* ========================================== */

section#entry {
  background: #FFD84D;
  position: relative;
  color: #fff;
  overflow: hidden;
  padding: 85px 0;
  border-top: 3px solid #1F1A2E;
  border-bottom: 3px solid #1F1A2E;
  margin: 85px 0!important;
}

#entry .sec-heading h2 {
  color: #1f1a2e;
}

#entry .sec-heading h2 .accent-ttl {
  background: #03C8FF;
  padding: 10px 0px 10px 18px;
}

#entry .entry-lead {
  font-size: 20px;
  color: #1f1a2e;
  padding: 32px 0 35px;
  transform: rotate(0.03deg);
}

#entry .entry-form-btn {
  display: block;
  text-align: center;
  background: #FA55A3;
  color: #fff;
  font-weight: 800;
  font-size: 21px;
  width: 100%;
  max-width: 332px;
  height: 100%;
  max-height: 95px;
  padding: 33px 0;
  line-height: 1.5;
  margin: 0 auto 35px;
  box-shadow: 10px 10px 0 #1f1a2e;
  transition: .3s;
}

#entry .entry-form-btn:hover {
  transform: translate(10px, 10px);
  box-shadow: 0 0 0 #1f1a2e;
}

#entry .entry-ddl {
  font-size: 20px;
  color: #1f1a2e;
  transform: rotate(0.03deg);
}

#entry .entry-xs {
  display: inline-block;
  color: #1f1a2e;
  margin: 0 auto;
  width: 100%;
  transform: rotate(0.03deg);
}

#entry .entry-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 20px;
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}

#entry .entry-list .entry-item {
  background: #1f1a2e;
  color: #fff;
  padding: 12px 22px 22px;
  text-align: left;
  transform: rotate(0.03deg);
}

#entry .entry-list .entry-item .entry-item-num {
  font-size: 32px;
  font-weight: 800;
  color: #FFD84D;
}

#entry .entry-list .entry-item .entry-item-ttl {
  font-size: 14px;
  font-weight: 800;
}

#entry .entry-list .entry-item .entry-item-lead {
  color: #CCCCCC;
  font-weight: 400;
}

@media screen and (max-width: 767px) {
  #entry .sec-heading h2 .accent-ttl {
    font-size: 21px;
  }

  #entry .entry-lead {
    padding: 0 0 20px;
    font-size: 14px;
  }

  #entry .entry-form-btn {
    max-width: 277px;
    max-height: 79px;
    line-height: 1;
    margin: 0 auto 20px;
  }

  #entry .entry-ddl {
    font-size: 14px;
  }

  #entry .entry-xs {
    font-size: 10px;
  }

  #entry .entry-list {
    grid-template-columns: 1fr;
  }
}

/* ========================================== */
/* Live bnr */
/* ========================================== */

.live-bnr {
  display: block;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

.live-bnr:hover {
  opacity: 0.8;
}

@media screen and (max-width: 767px) {
  .live-bnr {
    max-width: 345px;
  }
}

/* ========================================== */
/* ATTENTION */
/* ========================================== */

#attention .sec-heading h2 .accent-ttl {
  background: #F83635;
}

.attn-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.attn-grid .attn-item {
  padding: 22px;
  border: 2px solid #1f1a2e;
  max-width: 428px;
  background: #fff;
  transform: rotate(0.03deg);
}

.attn-grid .attn-item:nth-child(1) {
  border-bottom: none; 
}

.attn-grid .attn-item:nth-child(2) {
  border-bottom: none;  
  border-right: none;
  border-left: 1px solid #1f1a2e;
}

.attn-grid .attn-item:nth-child(3) {
  border-bottom: none;  
}

.attn-grid .attn-item:nth-child(5) {
  border-right: none;
  border-left: 1px solid #1f1a2e;
}


.attn-grid .attn-item:nth-child(7) {
  border-top: none;  
}

.attn-grid .attn-item .attn-item-ttl {
  font-weight: 900;
  margin-bottom: 8px;
  font-size: 14px;
}

.attn-grid .attn-item .attn-item-ttl:before {
  content: "■";
  color: #FA55A3;
}

.attn-grid .attn-item span {
  font-size: 12px;
  display: inline-block;
  line-height: 1.5;
  color: #7A7687;
}

@media screen and (min-width:768px) and ( max-width:1290px) {
  .attn-grid .attn-item:nth-child(2),
  .attn-grid .attn-item:nth-child(5) {
    border-left: none;
  }
}

@media screen and (max-width: 767px) {
  .attn-grid {
    grid-template-columns: 1fr;
  }

  .attn-grid .attn-item {
    padding: 22px 16px;
    border: 2px solid #1f1a2e;
    max-width: 100%;
    background: #fff;
  }

  .attn-grid .attn-item:nth-child(n+1) {
    border-right: 2px solid #1f1a2e;
    border-top: 2px solid #1f1a2e;
  }

  .attn-grid .attn-item:nth-child(2),
  .attn-grid .attn-item:nth-child(5) {
    border-left: 2px solid #1f1a2e!important;
  }

  .attn-grid .attn-item:nth-child(1),
  .attn-grid .attn-item:nth-child(2),
  .attn-grid .attn-item:nth-child(3),
  .attn-grid .attn-item:nth-child(4),
  .attn-grid .attn-item:nth-child(5),
  .attn-grid .attn-item:nth-child(6) {
    border-bottom: none;
  }
}

/* ========================================== */
/* FAQ */
/* ========================================== */

#faq .sec-heading h2 .accent-ttl {
  background: #FA55A3;
}

.faq-contents {
  transform: rotate(0.03deg);
}

.faq-content {
  position: relative;
  background-color: #fff;
  padding: 20px;
  cursor: pointer;
  margin-bottom: 20px;
  border: 2px solid #1F1A2E;
}

.faq-content .plus-box {
  width: 32px;
  height: 32px;
  display: block;
  position: absolute;
  border: 2px solid #000;
  top: 20px;
  right: 25px;
}

.faq-content .plus-box span {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  margin: auto;
  width: 14px;
  height: 2px;
  background-color: #1F1A2E;
  transition: all .3s;
}

.faq-content .plus-box .plus.active {
  transform: rotate(0);
}

.faq-content .plus-box span:nth-of-type(1) {
  transform: rotate(90deg);
}

.faq-content .title {
  font-size: 20px;
  font-weight: 500;
  color: #1F1A2E;
  position: relative;
}

.faq-content .title:before {
  content: "Q";
  width: 40px;
  height: 40px;
  display: inline-block;
  background: #FFD84D;
  text-align: center;
  margin-right: 16px;
  font-weight: 800;
  font-size: 28px;
  line-height: 1.3;
  border: 1px solid #1F1A2E;
}

.faq-content .content {
  display: none;
  font-size: 14px;
  margin-top: 32px;
  padding-left: 57px;
  color: #1F1A2E;
}

@media screen and (max-width: 767px) {
  #faq .sec-heading h2 .accent-ttl {
    margin-left: 15px;
  }

  .faq-content {
    padding: 20px 16px;
  }

  .faq-content .title {
    font-size: 14px;
    display: grid;
    width: 85%;
    align-items: center;
    grid-template-columns: 40px 1fr;
    gap: 10px;
  }

  .faq-content .content {
    margin-top: 15px;
    padding-left: 45px;
  }

  .faq-content .title:before {
    display: block;
  }
}

/* ========================================== */
/* フッター */
/* ========================================== */

footer {
  background: #1F1A2E;
  color: #fff;
  padding: 64px 0;
  font-size: 24px;
  margin-top: 140px;
}

footer .copy {
    display: block;
    margin: 0 auto;
}

@media screen and (max-width: 767px) {
  footer {
    font-size: 14px;
  }

  footer .text-center {
    padding-left: 15px;
    padding-right: 15px;
  }
}

/*-----------------------------
  fadein
-----------------------------*/

.fadein {
  opacity: 0;
  visibility: hidden;
  transform: translateY(40px);
  transition: all 1s;
}
.fadein.is-show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
}

@media screen and (max-width:768px) {
/* アニメーション用class */
.inview {
  animation-name: fade-in;
  animation-duration: .5s;
  animation-timing-function: ease-in-out;
  animation-delay: .4s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
}

.fade-in {
  opacity: 0;
  visibility: visible;
}

@keyframes fade-in {
  0% {
    transform: translateY(40px);
  }
  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}

}