@charset "UTF-8";
@font-face {
  font-family: "〇〇";
  src: url("../font/〇〇") format("truetype");
  font-weight: normal;
  font-style: normal;
}
/* リセットCSS
===================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  padding: 0;
  margin: 0;
}

body {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  line-height: 1.6;
  font-weight: 500;
  background: #fff;
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, button, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  border: 0;
  font: inherit;
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

li, dd {
  list-style-type: none;
}

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

caption, th, td {
  font-weight: normal;
  text-align: left;
  vertical-align: middle;
}

q, blockquote {
  quotes: none;
}

q:before, q:after, blockquote:before, blockquote:after {
  content: "";
  content: none;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block;
}

img {
  border: none;
  vertical-align: bottom;
  width: 100%;
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
}
@media (hover: hover) {
  a:hover {
    opacity: 0.7;
  }
}

input, select {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  background: #fff;
}

/*------------------------------
common
------------------------------*/
body {
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  background: #000;
}
body.is-active {
  position: fixed;
  width: 100%;
  height: 100%;
  overflow-y: scroll; /* スクロールバー補完 */
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

/* スマホ用の表示の時はis-pcは非表示 */
@media (max-width: 767px) {
  .pc {
    display: none !important;
  }
}
/* PC用の表示の時はis-spは非表示 */
@media (min-width: 768px) {
  .sp {
    display: none !important;
  }
}
/* コンテンツ幅
------------------------------*/
.inner {
  width: 1100px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 16px;
}

.u-inner-1330 {
  width: 1330px;
}

/* タイトル
------------------------------*/
.c-section-title {
  font-size: 1.6rem;
  font-weight: 400;
  font-family: "Noto Serif JP", serif;
  text-align: center;
}
.c-section-title img {
  display: block;
  height: min(48px, 4.3636363636vw);
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
  margin: 0 auto;
  margin-bottom: 25px;
}
@media (max-width: 767px) {
  .c-section-title {
    font-size: 2.4rem;
  }
  .c-section-title img {
    height: min(70px, 9.3333333333vw);
    margin-bottom: 7%;
  }
}

/*  自動スライド
------------------------------*/
.autoSwiper .swiper-wrapper {
  transition-timing-function: linear;
}

/*  ボタン反転
------------------------------*/
.entry-btn {
  position: relative;
  border: 3px solid;
    transition : all 0.5s ease 0s;
}
.entry-btn::after {
  content: "";
  position: absolute;
  aspect-ratio: 160/34;
  width: 50%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -webkit-mask-image: url(../img/button_entry.svg);
          mask-image: url(../img/button_entry.svg);
  -webkit-mask-size: 100%;
          mask-size: 100%;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
}
.entry-btn.entry-btn-ye {
  background: #FFFF00;
  border-color: #FFFF00;
}
.entry-btn.entry-btn-ye::after {
  background: #000;
}
.entry-btn.entry-btn-bk {
  background: #000;
  border-color: #FFFF00;
}
.entry-btn.entry-btn-bk::after {
  background: #FFFF00;
}
.entry-btn.entry-btn-type2 {
  aspect-ratio: 1068/140;
}
.entry-btn.entry-btn-type2::after {
  width: 15%;
}
@media (hover: hover) {
  .entry-btn:hover {
    opacity: 1;
  }
  .entry-btn:hover.entry-btn-ye {
    background: #000;
  }
  .entry-btn:hover.entry-btn-ye::after {
    background: #FFFF00;
  }
  .entry-btn:hover.entry-btn-bk {
    background: #FFFF00;
  }
  .entry-btn:hover.entry-btn-bk::after {
    background: #000;
  }
}
@media (max-width: 767px) {
  .entry-btn.entry-btn.entry-btn-type2 {
    width: 91%;
    aspect-ratio: 1068/180;
    margin: 0 auto;
    display: block;
  }
  .entry-btn.entry-btn.entry-btn-type2::after {
    width: 25%;
  }
}

/*  fade
------------------------------*/
.fade {
  opacity: 0;
}

/*------------------------------
header
------------------------------*/
header {
  padding-top: 35px;
  padding-bottom: 10px;
  z-index: 500;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 500;
  background-color: #000;
}
@media (max-width: 767px) {
  header {
    height: min(134px, 24vw);
    position: static;
  }
}

.header__content {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .header__content {
    padding: 0 2%;
  }
}

.header__logo {
  width: min(290px, 26.3636363636vw);
}
@media (max-width: 767px) {
  .header__logo {
    width: min(544px, 72.5333333333vw);
  }
}

.header__nav {
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .header__nav {
    display: none;
  }
}

.header__menu {
  display: flex;
}
.header__menu li:nth-child(n+2) {
  margin-left: min(25px, 1.7857142857vw);
}
.header__menu li a {
  display: inline-block;
  font-size: min(1.5rem, 1.5625vw);
  font-weight: 500;
  line-height: 1.7333333333;
  letter-spacing: 0.06em;
  font-family: "Noto Serif JP", serif;
}

.header__sns {
  display: flex;
  margin-left: min(25px, 1.7857142857vw);
}
.header__sns li {
  width: 17px;
}
.header__sns li:nth-child(n+2) {
  margin-left: 10px;
}
.header__sns li a {
  display: inline-block;
  width: 100%;
  height: 100%;
}

.header__button {
  width: min(151px, 10.7857142857vw);
  margin-left: min(30px, 2.1428571429vw);
  aspect-ratio: 150/50;
}
.header__button a {
  display: inline-block;
  width: 100%;
  height: 100%;
}

.drawer-icon {
  width: min(94px, 12.5333333333vw);
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: #fff;
  z-index: 300;
  display: none;
  transition: transform 0.5s ease 0s;
  cursor: pointer;
}
@media (max-width: 767px) {
  .drawer-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}
.drawer-icon.is-active .drawer-icon__bar1 {
  transform: translateY(-50%) rotate(-35deg);
  top: 50%;
  background: #000;
}
.drawer-icon.is-active .drawer-icon__bar2 {
  display: none;
}
.drawer-icon.is-active .drawer-icon__bar3 {
  bottom: unset;
  transform: translateY(-50%) rotate(35deg);
  top: 50%;
  background: #000;
}

.drawer-icon__bars {
  width: min(48px, 6.4vw);
  aspect-ratio: 48/30;
  display: block;
  position: relative;
  z-index: 400;
}

.drawer-icon__bar1,
.drawer-icon__bar2,
.drawer-icon__bar3 {
  position: absolute;
  width: 100%;
  aspect-ratio: 48/3;
  background: #000;
  left: 0;
}

.drawer-icon__bar1 {
  top: 0;
  transition: transform 0.3s;
}

.drawer-icon__bar2 {
  top: 50%;
  transform: translateY(-50%);
}

.drawer-icon__bar3 {
  bottom: 0;
  transition: transform 0.3s;
}

.drawer-content {
  width: 100%;
  height: 100%;
  position: fixed;
  top: min(134px, 24vw);
  right: 0;
  background: #000;
  padding: 50px 20px;
  z-index: 299;
  transform: translateX(105%);
  transition: transform 0.5s ease 0s;
  overflow-y: auto;
  overscroll-behavior: contain; /* scroll伝番防止 */
  max-height: calc(100svh - min(134px, 24vw));
}
.drawer-content.is-active {
  transform: translateX(0);
}
@media (min-width: 768px) {
  .drawer-content {
    display: none;
  }
}

.drawer-button a {
  display: inline-block;
  width: 100%;
  background: #ffff00;
  text-align: center;
  border-radius: 4px;
  padding: 5% 0;
}
.drawer-button a img {
  width: min(161px, 21.4666666667vw);
}

.drawer-menu {
  width: 83%;
  margin: 0 auto;
  margin-top: 15px;
}
.drawer-menu li a {
  display: block;
  padding: 0.8em 0;
  padding-left: 0.5em;
  font-size: min(3.3rem, 4.4vw);
  font-weight: 500;
  line-height: 1.7878787879;
  border-bottom: 1px solid #dad9d6;
  position: relative;
}
.drawer-menu li a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0.3em;
  transform: translateY(-50%);
  background: url(../img/icon_arrow.png) no-repeat center center/contain;
  width: min(56px, 7.4666666667vw);
  aspect-ratio: 1/1;
}
.drawer-menu li a img {
  display: block;
  height: min(15px, 2vw);
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
  margin-top: 5px;
}

.sns__list-drawer[class] {
  margin-top: 8%;
}
.sns__list-drawer[class] li {
  width: 18%;
}
.sns__list-drawer[class] li:nth-child(2) {
  margin-left: 7.5%;
}

/*------------------------------
fv
------------------------------*/
.fv {
  background: url(../img/bg1.webp) no-repeat center center/cover;
  position: relative;
  overflow: hidden;
}
.fv .decL {
  content: "";
  position: absolute;
  background: url(../img/dec_fvL.png) no-repeat center center/100%;
  aspect-ratio: 2386/3141;
  width: 67%;
  left: 0%;
  top: 35%;
  transform: translate(-52%, -50%);
  max-width: 1152px;
}
.fv .decR {
  content: "";
  position: absolute;
  background: url(../img/dec_fvR.png) no-repeat center center/100%;
  aspect-ratio: 2639/2660;
  width: 76%;
  right: 0;
  top: 44%;
  transform: translate(68%, -50%);
  max-width: 1307px;
}
@media (max-width: 767px) {
  .fv .decL, .fv .decR {
    display: none;
  }
}

.fv__content {
  position: relative;
  padding: 180px 0 300px;
}
.fv__content p {
  font-size: min(2.8rem, 2.1052631579vw);
  font-weight: 500;
  line-height: 2.5;
  letter-spacing: 0.09em;
  text-align: center;
  font-family: "Noto Serif JP", serif;
}
@media (max-width: 767px) {
  .fv__content {
    width: 97%;
    margin: 0 auto;
    padding: min(187px, 6vw) 0 40%;
  }
  .fv__content p {
    font-size: min(2.8rem, 4.2666666667vw);
  }
}

.fv__main {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  margin-top: 40px;
  position: relative;
}
.fv__main::after {
  content: "";
  position: absolute;
  background: url(../img/fv_scroll.svg) no-repeat center center/100%;
  aspect-ratio: 1403/1226;
  width: 7%;
  left: 50%;
  bottom: -25%;
  transform: translate(-50%, 100%);
  display: none;
}
@media (max-width: 767px) {
  .fv__main::after {
    bottom: -29%;
    width: 18%;
  }
}

.fv__round {
  position: absolute;
  bottom: 15%;
  right: 0;
  transform: translateX(-10%);
  width: min(260px, 20.7142857143vw);
}
@media (min-width: 1025px) and (max-width: 1440px){
.fv__round {
  position: absolute;
  bottom: 30%;
  right: 0;
  transform: translateX(-40%);
  width: min(170px, 19.7142857143vw);
}
}
@media (max-width: 767px) {
  .fv__round {
    bottom: 2.9%;
    right: 0;
    transform: unset;
    width: 32%;
  }
}

/* fv scroll */
#scroll{
  position: absolute;
  width: 7%;
  left: 50%;
  bottom: -25%;
  transform: translate(-50%, 100%);
}

#scroll .sign{
  width: 6px;
  height: 43px;
  margin: 0 auto;
  position: relative;
}
#scroll .sign .dot{
  width: 6px;
  height: 6px;
  position: absolute;
  top: 0px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #ffffff;
  border-radius: 50%;
  opacity: 1;
  animation: scroll-wheel 2s infinite;
}
#scroll .sign .line{
  width: 1px;
  height: 0%;
  background-color: #ffffff;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  opacity: 1;
  animation: scroll-line 2s infinite;
}

.scroll-text{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: scroll-text 2s 1.2s infinite;
  opacity: 1;
}
@media screen and (max-width:768px) {
  #scroll{
    bottom: -29%;
    width: 18%;
  }
}
@keyframes scroll-wheel {
  0% {
    opacity: 0;
    top: 0%;
  }
  10% {
    opacity: 1;
    top: 0%;
  }
  80% {
    opacity: 1;
    top: 80%;
  }
  100% {
    opacity: 0;
    top: 100%;
  }
}
@keyframes scroll-line {
  30% {
    top: 0%;
    height: 100%;
    opacity: 1;
  }
  100% {
    height: 0;
    top: 100%;
    opacity: 0;
  }
}
@keyframes scroll-text {
  80% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/* ./fv scroll */


/*------------------------------
concept
------------------------------*/
.concept {
  background: url(../img/concept_bg.jpg) no-repeat center center/cover;
  padding: min(140px, 10vw) 0;
  position: relative;
}
.concept::before, .concept::after {
  content: "";
  position: absolute;
  background: #000;
  width: 100%;
  height: 3px;
  left: 0;
}
.concept::before {
  top: 1.8%;
}
.concept::after {
  bottom: 1.8%;
}
@media (max-width: 767px) {
  .concept {
    padding: 23% 0;
  }
}

.concept__title {
  max-width: 748px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .concept__title {
    width: 84%;
  }
}

.concept__content {
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.06em;
  color: #000;
  text-align: center;
  margin-top: 5.6%;
}
@media (max-width: 767px) {
  .concept__content {
    margin-top: 14%;
  }
}

.concept__heading {
  font-size: min(4.2rem, 3.8181818182vw);
  font-weight: 600;
  line-height: 1.9285714286;
}
@media (max-width: 767px) {
  .concept__heading {
    font-size: min(4.5rem, 6vw);
  }
}

.concept__text {
  font-size: min(2.4rem, 2.1818181818vw);
  font-weight: 500;
  line-height: 1.95;
  margin-top: 1em;
}
@media (max-width: 767px) {
  .concept__text {
    font-size: min(3.6rem, 4.8vw);
    margin-top: 1.4em;
  }
}

/*------------------------------
movie
------------------------------*/
.movie {
  margin-top: 110px;
}
.movie p {
  font-size: 3.2rem;
  font-weight: 500;
  line-height: 2.0416666667;
  letter-spacing: -0.01em;
  text-align: center;
}
@media (max-width: 767px) {
  .movie {
    margin-top: min(300px, 40vw);
  }
  .movie p {
    font-size: min(3.6rem, 4.8vw);
  }
}

.video-button {
  position: relative;
  margin: 2% auto 0;
  width: 75%;
  cursor: pointer;
}
.video-button::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
  transition: background-color 0.3s;
}

@media (hover: hover) {
  .video-button:hover::before {
    background-color: rgba(0, 0, 0, 0.3);
  }
}

.video-button::after {
  content: "";
  position: absolute;
  background: url(../img/icon_arrow2.png) no-repeat center center/100%;
  aspect-ratio: 1/1;
  width: 10%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
}
@media (max-width: 767px) {
  .video-button {
    width: 89%;
  }
  .video-button::after {
    width: 15%;
  }
}

/*------------------------------
voice
------------------------------*/
.voice {
  margin-top: 250px;
  position: relative;
}
.voice::before {
  content: "";
  position: absolute;
  background: url(../img/dec_voiceL.png) no-repeat center center/100%;
  aspect-ratio: 702/3723;
  left: 0%;
  width: 20%;
  top: 14%;
  transform: translate(0%, -50%);
  max-width: 344px;
}
.voice::after {
  content: "";
  position: absolute;
  background: url(../img/dec_voiceR.png) no-repeat center center/100%;
  aspect-ratio: 865/5843;
  transform: translate(0, -50%);
  width: 24%;
  right: 0;
  top: 63%;
  max-width: 413px;
}
.voice .inner {
  position: relative;
  z-index: 100;
}
@media (max-width: 767px) {
  .voice {
    margin-top: 54%;
  }
  .voice::before {
    background: url(../img/dec_voiceL_sp.png) no-repeat center center/100%;
    aspect-ratio: 329/1206;
    width: 20%;
    top: -7%;
  }
  .voice::after {
    background: url(../img/dec_voiceR_sp.png) no-repeat center center/100%;
    aspect-ratio: 359/2699;
    width: 24%;
    top: -9.2%;
  }
}

.voice__stats {
  background: url(../img/voice_bg.jpg) no-repeat center center/cover;
  margin-top: 105px;
  padding: 3.2%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #000;
}
@media (max-width: 767px) {
  .voice__stats {
    display: block;
    width: 88%;
    margin: 18% auto 0;
    padding: 5% 6% 8%;
  }
}

.voice__stats-title {
  width: 40%;
  font-size: min(2.9rem, 2.6363636364vw);
  line-height: 1.4482758621;
  font-weight: 500;
  letter-spacing: 0.08em;
  font-family: "Noto Serif JP", serif;
  text-align: center;
  border: 1px solid #000;
  padding: 1.7em 0;
}
@media (max-width: 767px) {
  .voice__stats-title {
    width: 100%;
    font-size: min(2.9rem, 3.8666666667vw);
    padding: 1em 0;
  }
}

.voice__stats-list {
  width: 58%;
  display: flex;
}
@media (max-width: 767px) {
  .voice__stats-list {
    width: 120%;
    margin-top: 3%;
    margin-left: 50%;
    transform: translateX(-50%);
  }
}

.voice__stats-item {
  width: 50%;
  text-align: center;
}
.voice__stats-item:first-child {
  border-right: 1px solid #000;
}

.stats__stats-label {
  font-family: "Noto Serif JP", serif;
  font-size: min(3.1rem, 2.8181818182vw);
  font-weight: 500;
  line-height: 2.7419354839;
  letter-spacing: 0.08em;
}
@media (max-width: 767px) {
  .stats__stats-label {
    font-size: min(3.1rem, 4.1333333333vw);
  }
}

.voice__stats-value {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  font-size: min(4rem, 3.6363636364vw);
  font-weight: 500;
  letter-spacing: 0.08em;
}
.voice__stats-value img {
  height: min(70px, 7.8125vw);
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 767px) {
  .voice__stats-value img {
    height: min(80px, 10.6666666667vw);
  }
}

.voice__list {
  margin-top: 10%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .voice__list {
    display: block;
    width: 92%;
    margin: 17% auto 0;
  }
}

.voice__item {
  width: 46%;
  letter-spacing: 0.08em;
  font-family: "Noto Serif JP", serif;
  position: relative;
  padding: 4%;
  aspect-ratio: 942/780;
  background: #000;
}
.voice__item::before, .voice__item::after {
  content: "";
  position: absolute;
  width: 92%;
  aspect-ratio: 942/885;
  background: url(../img/voice_border.png) no-repeat center center/contain;
}
.voice__item::before {
  top: 0%;
  left: 0;
  transform: translateY(-3%);
}
.voice__item::after {
  bottom: 0%;
  right: 0;
  transform: translateY(3%) rotate(180deg);
}
@media (min-width: 768px) {
  .voice__item:nth-child(n+3) {
    margin-top: 8%;
  }
}
@media (max-width: 767px) {
  .voice__item {
    width: 100%;
    padding: 7%;
  }
  .voice__item::before, .voice__item::after {
    aspect-ratio: 1220/1123;
    background: url(../img/voice_border_sp.png) no-repeat center center/contain;
    width: 93%;
  }
  .voice__item:nth-child(n+2) {
    margin-top: 18%;
  }
}

.voice__item-heading {
  font-size: min(3rem, 2.7272727273vw);
  line-height: 1.6333333333;
  font-weight: 500;
}
@media (max-width: 767px) {
  .voice__item-heading {
    font-size: min(4rem, 5.3333333333vw);
    text-align: center;
  }
}

.voice__text {
  font-size: min(2rem, 1.8181818182vw);
  font-weight: 400;
  line-height: 1.9;
  margin-top: 1em;
  letter-spacing: -0.01em;
}
@media (max-width: 767px) {
  .voice__text {
    font-size: min(2.8rem, 3.7333333333vw);
    margin-top: 1.5em;
  }
}

.voice__text--emphasis {
  color: #ffff00;
  font-weight: 700;
}

/*------------------------------
program
------------------------------*/
.program {
  margin-top: 360px;
  /* overflow: hidden; */
}
@media (max-width: 767px) {
  .program {
    position: relative;
    overflow: visible;
  }
  .program::after {
    content: "";
    position: absolute;
    background: url(../img/dec_programR_sp.png) no-repeat center center/100%;
    aspect-ratio: 372/1331;
    transform: translate(0, -50%);
    width: 24%;
    right: 0;
    top: -8%;
  }
  .program .inner {
    position: relative;
    z-index: 100;
  }
}

.program__text {
  font-size: min(4rem, 2.8571428571vw);
  font-weight: 300;
  line-height: 2;
  letter-spacing: 0.08em;
  font-family: "Noto Serif JP", serif;
  text-align: center;
  margin-top: 1.5em;
}
@media (max-width: 767px) {
  .program__text {
    font-size: min(4rem, 5.3333333333vw);
    margin-top: 2.5em;
  }
}

.programSwiper {
  overflow: hidden;
}

.program__content-wrap {
  margin-top: 4%;
  position: relative;
}
@media (max-width: 767px) {
  .program__content-wrap {
    margin-top: 10%;
  }
}

.program__item {
  background: #fff;
  padding: 2%;
  position: relative;
  aspect-ratio: 852/370;
  opacity: 0.3;
}
.program__item::after {
  content: "";
  position: absolute;
  bottom: -1px;
  right: -1px;
  background: #000;
  width: 35px;
  aspect-ratio: 35/35;
  -webkit-clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  clip-path: polygon(100% 0, 0% 100%, 100% 100%);
}
.program__item.swiper-slide-active {
  opacity: 1;
}
@media (max-width: 767px) {
  .program__item {
    aspect-ratio: 852/1400;
    padding: 0 2%;
  }
}

.program__item-num {
  display: block;
  width: 14.6%;
  min-width: 114px;
}
@media (max-width: 767px) {
  .program__item-num {
    display: block;
    width: 45%;
    margin: 13% auto 0;
  }
}

.program__wrapper {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  justify-content: space-between;
  margin-top: 3.5%;
}
@media (max-width: 767px) {
  .program__wrapper {
    flex-direction: column;
    margin-top: 9.5%;
  }
}

.program__content {
  color: #000;
  font-family: "Noto Serif JP", serif;
  width: 54%;
  padding-left: 2.5%;
  letter-spacing: -0.08em;
}
.program__content h3 {
  font-size: 1.976744186vw;
  font-weight: 500;
  line-height: 1.4705882353;
  letter-spacing: 0.08em;
  height: 2lh;
  letter-spacing: -0.08em;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.program__content p {
  font-size: 1.2790697674vw;
  font-weight: 400;
  line-height: 2;
  margin-top: 1em;
  letter-spacing: -0.02em;
}
@media (max-width: 767px) {
  .program__content {
    padding-left: 0;
    text-align: center;
    width: 100%;
  }
  .program__content h3 {
    font-size: min(4.3rem, 5.7333333333vw);
  }
  .program__content p {
    font-size: min(2.8rem, 3.7333333333vw);
    line-height: 1.8;
    height: 3lh;
  }
}

.program__image {
  width: 45%;
}
.program__image img {
  aspect-ratio: 361/270;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 767px) {
  .program__image {
    width: 86%;
    margin: 11% auto 0;
  }
  .program__image img {
    aspect-ratio: 361/294;
  }
}

.swiper-button-next, .swiper-button-prev {
  right: unset;
  left: unset;
  top: unset;
  bottom: unset;
  margin-top: 0;
  height: auto;
  position: absolute;
  top: 50%;
  background: url(../img/icon_arrow3.png) no-repeat center center/100%;
  aspect-ratio: 1/1;
  width: min(5%, 86px);
}
.swiper-button-next::after, .swiper-button-prev::after {
  display: none;
}
@media (max-width: 767px) {
  .swiper-button-next, .swiper-button-prev {
    width: 11%;
  }
}

.swiper-button-prev {
  left: 20%;
  transform: translate(-50%, -50%);
}
@media (max-width: 767px) {
  .swiper-button-prev {
    left: 12%;
  }
}

.swiper-button-next {
  left: 80%;
  transform: translate(-50%, -50%) scale(-1, 1);
}
@media (max-width: 767px) {
  .swiper-button-next {
    left: 88%;
  }
}

.swiper-pagination-bullet[class][class] {
  background: #505050;
  width: 10px;
  height: auto;
  aspect-ratio: 1/1;
  margin: 0 8px;
  top: unset;
  bottom: 0;
  transform: translateY(50px);
}
.swiper-pagination-bullet[class][class].swiper-pagination-bullet-active {
  background: #fff;
}
@media (max-width: 767px) {
  .swiper-pagination-bullet[class][class] {
    width: 2%;
    height: auto;
    aspect-ratio: 1/1;
    margin: 0 1.4%;
    top: unset;
    bottom: 0;
    transform: translateY(87px);
  }
}

.project__slider {
  overflow: hidden;
  margin-top: 10%;
}
@media (max-width: 767px) {
  .project__slider {
    margin-top: 165px;
  }
}

.project__slider-body {
  width: 120%;
  margin-left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 767px) {
  .project__slider-body {
    width: 290%;
  }
}

/*------------------------------
flow
------------------------------*/
.flow {
  margin-top: min(19%, 330px);
  position: relative;
}
.flow::before {
  content: "";
  position: absolute;
  background: url(../img/dec_flowL.png) no-repeat center center/100%;
  aspect-ratio: 510/2293;
  transform: translate(0%, -50%);
  left: 0%;
  width: 14%;
  top: 74%;
  max-width: 240px;
}
.flow::after {
  content: "";
  position: absolute;
  background: url(../img/dec_flowR.png) no-repeat center center/100%;
  aspect-ratio: 861/2236;
  transform: translate(0, -50%);
  right: 0;
  width: 24%;
  top: 134%;
  max-width: 413px;
}
.flow .inner {
  position: relative;
  z-index: 100;
}
@media (max-width: 767px) {
  .flow {
    margin-top: min(48%, 360px);
  }
  .flow::before {
    background: url(../img/dec_flowL_sp.png) no-repeat center center/100%;
    aspect-ratio: 433/1146;
    width: 28%;
    top: 0%;
  }
  .flow::after {
    display: none;
  }
}

.flow__list {
  margin-top: 9%;
  display: flex;
  align-items: flex-start;
}
@media (max-width: 767px) {
  .flow__list {
    display: block;
    width: 91%;
    margin: 17% auto 0;
  }
}

.flow__bottom{
  position: relative;
}
.flow__bottom h3{
    position: absolute;
    font-size: min(2.4rem, 1.7142857143vw);
    font-weight: 500;
    line-height: 2.2083333333;
    letter-spacing: 0.08em;
    text-align: center;
    color: #000;
    bottom: 30%;
    left: 8%;
    transform: translateY(50%);
}
.flow__bottom p{
  position: absolute;
  font-size: min(1.6rem, 1.4545454545vw);
  font-weight: 400;
  line-height: 1.9;
  letter-spacing: 0.04em;
  word-break: break-all;
  letter-spacing: -0.01em;
  color: #000;
  bottom: 29%;
  left: 22%;
  transform: translateY(50%);
}
.flow-notice{
  font-size: min(1.4rem,1.25vw);
  margin-top: 1em;
  text-align: right;
  display: block;
}
@media screen and (max-width:768px) {
  .flow-notice{
    font-size: 1.4rem;
    text-align: left;
    line-height: 1.4;
    width: 91%;
    margin: 2em auto 0;
  } 
}


.flow__item {
  width: 22%;
  border: 1px solid #fff;
  aspect-ratio: 239/321;
  padding: 4% 2% 0;
  font-family: "Noto Serif JP", serif;
  color: #fff;
}
.flow__item:nth-child(n+2) {
  margin-left: 4%;
  position: relative;
}
.flow__item:nth-child(n+2)::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -5%;
  transform: translate(-100%, -50%);
  background: #fff;
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 50%);
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
  width: 9%;
  aspect-ratio: 20/27;
}
.flow__item:last-child {
  background: url(../img/program_bg.png) no-repeat center center/cover;
  border: none;
  color: #000;
  padding: 4% 1.5% 0;
}
.flow__item h3 {
  font-size: min(2.4rem, 1.7142857143vw);
  font-weight: 500;
  line-height: 2.2083333333;
  letter-spacing: 0.08em;
  text-align: center;
}
.flow__item h3._two_line{
  line-height: 1.2;
}
.flow__item p {
  font-size: min(1.6rem, 1.4545454545vw);
  font-weight: 400;
  line-height: 1.9;
  letter-spacing: 0.04em;
  margin-top: 1em;
  word-break: break-all;
  letter-spacing: -0.01em;
}
@media (max-width: 767px) {
  .flow__item {
    width: 100%;
    aspect-ratio: unset;
    padding: 7% 2% 6%;
  }
  .flow__item:nth-child(n+2) {
    margin-left: 0;
    margin-top: 10%;
  }
  .flow__item:nth-child(n+2)::before {
    top: -3%;
    left: 50%;
    width: 5%;
    transform: translate(-50%, -100%) rotate(90deg);
  }
  .flow__item:last-child {
    background: url(../img/program_bg_sp.png) no-repeat center center/cover;
    border: none;
    padding: 0% 5%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    aspect-ratio: 1316/565;
  }
  .flow__item h3 {
    font-size: min(4.4rem, 5.8666666667vw);
  }
  .flow__item h3._two_line{
    line-height: 1.2;
  }
  .flow__item p {
    font-size: min(2.8rem, 3.7333333333vw);
  }
}

/*------------------------------
event
------------------------------*/
.event {
  margin-top: 170px;
}
@media (max-width: 767px) {
  .event {
    margin-top: 50%;
    position: relative;
  }
  .event::before {
    content: "";
    position: absolute;
    background: url(../img/dec_eventL_sp.png) no-repeat center center/100%;
    aspect-ratio: 230/438;
    transform: translate(0%, -50%);
    left: 0%;
    width: 15%;
    top: -10%;
  }
  .event::after {
    content: "";
    position: absolute;
    background: url(../img/dec_eventR_sp.png) no-repeat center center/100%;
    aspect-ratio: 514/1330;
    transform: translate(0, -50%);
    right: 0;
    width: 34%;
    top: 9%;
  }
  .event .inner {
    position: relative;
    z-index: 100;
  }
}

.event-info {
  margin-top: 115px;
  display: flex;
  flex-wrap: wrap;
}
.event-info dt, .event-info dd {
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.08em;
  font-family: "Noto Serif JP", serif;
  padding: 1.6em 0;
  border-bottom: 1px solid #323232;
}
.event-info dt {
  width: 28%;
  padding-left: 2em;
}
.event-info dd {
  width: 72%;
}
@media (max-width: 767px) {
  .event-info {
    display: block;
    width: 90%;
    margin: 7% auto 0;
  }
  .event-info dt, .event-info dd {
    width: 100%;
    font-size: min(3rem, 4vw);
    padding: 0;
  }
  .event-info dt {
    border-bottom: unset;
    padding-top: 5%;
  }
  .event-info dd {
    margin-top: 10px;
    padding-bottom: 1.6em;
  }
}

.event-info__wrapper {
  display: flex;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .event-info__wrapper {
    display: block;
    margin-top: 30px;
  }
}

.event-info__date {
  /* width: 48%; */
  width: 100%;
}
.event-info__date li {
  font-size: 2.2rem;
}
.event-info__date li span {
  display: inline-block;
}
.event-info__date li span:first-child {
  width: 7.2em;
}
.event-info__date li span:nth-child(2) {
  width: 8em;
}
@media (max-width: 767px) {
  .event-info__date {
    width: 100%;
  }
  .event-info__date li {
    font-size: min(3.3rem, 4.4vw);
    /* line-height: 2.15; */
    line-height: 1.6;
    margin-bottom:10px;
  }
}

.event__button {
  margin-top: 5%;
}
.event__button a {
  display: inline-block;
  width: 100%;
  background: #ffff00;
  text-align: center;
  border-radius: 4px;
}
.event__button a img {
  width: 162px;
}
@media (max-width: 767px) {
  .event__button a img {
    width: min(165px, 22vw);
  }
}

/*------------------------------
sns
------------------------------*/
.sns {
  overflow: hidden;
}

.sns__text {
  font-size: min(4rem, 2.8571428571vw);
  font-weight: 300;
  line-height: 2;
  letter-spacing: 0.08em;
  text-align: center;
  font-family: "Noto Serif JP", serif;
}
@media (max-width: 767px) {
  .sns__text {
    font-size: min(3rem, 4vw);
  }
}

.sns__list {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}
.sns__list li {
  width: 100px;
}
.sns__list li:nth-child(n+2) {
  margin-left: 3.5%;
}
.sns__list li a {
  display: inline-block;
  width: 100%;
  height: 100%;
}
@media (max-width: 767px) {
  .sns__list {
    margin-top: 50px;
  }
  .sns__list li {
    width: min(190px, 25.3333333333vw);
  }
  .sns__list li:nth-child(n+2) {
    margin-left: 11.5%;
  }
}

.sns__button {
  margin-top: 6.5%;
}
.sns__button a {
  display: inline-block;
  width: 100%;
  border: 2px solid #ffff00;
  border-radius: 4px;
  background: #000;
  text-align: center;
}
.sns__button a img {
  width: 162px;
}
@media (max-width: 767px) {
  .sns__button {
    margin-top: 15.5%;
  }
  .sns__button a img {
    width: min(165px, 22vw);
  }
}

.footer__slider {
  margin-top: 80px;
}

@media (max-width: 767px) {
  .footer__slider-body {
    width: 250%;
    margin-left: 50%;
    transform: translateX(-50%);
  }
}

/*------------------------------
slider-ja
------------------------------*/
/*------------------------------
footer
------------------------------*/
footer {
  padding-bottom: 40px;
  padding-top: 110px;
  background: url(../img/bg1.webp) no-repeat center center/cover;
  margin: min(19%, 325px) 0 0;
  position: relative;
}
footer::after {
  content: "";
  position: absolute;
  background: url(../img/dec_footerR.png) no-repeat center center/100%;
  aspect-ratio: 524/1626;
  transform: translate(0, -50%);
  right: 0;
  width: 14%;
  top: 1%;
  max-width: 240px;
}
footer .inner {
  position: relative;
  z-index: 100;
}
@media (max-width: 767px) {
  footer {
    padding-top: 27%;
  }
  footer::after {
    display: none;
  }
}

.footer__copyright {
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.75;
  letter-spacing: 0.06em;
  text-align: center;
  margin-top: 5.5em;
}
@media (max-width: 767px) {
  .footer__copyright {
    font-size: min(2rem, 2.6666666667vw);
    margin-top: 4em;
  }
}

/*------------------------------
ポップアップ
------------------------------*/
body.fixed {
  position: fixed;
  width: 100%;
  overflow-y: scroll; /* スクロールバー補完 */
  /* height: 100%; */
  height: auto;
}

.modalItem { /* modal共通処理 */
  position: fixed;
  z-index: -100;
  opacity: 0;
  transition: opacity 0.7s linear, z-index 0.1s linear 1s; /* クローズ時。透明度を先に処理、z-indexは遅延&一瞬で遷移 */
  pointer-events: none;
}
.modalItem.active {
  opacity: 1;
  z-index: 100;
  transition: opacity 0.5s linear;
  pointer-events: auto;
}

#modalBg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
}

#modalBody {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 900px;
  width: 98vw;
  height: auto;
  max-height: 100svh;
  aspect-ratio: 560/315;
  scrollbar-width: none;
}
#modalBody::-webkit-scrollbar {
  display: none;
}
#modalBody iframe {
  width: 100%;
  height: 100%;
}

#modalCloseBtn {
  position: absolute;
  top: 0;
  right: 5px;
  width: 40px;
  aspect-ratio: 1/1;
  cursor: pointer;
  transform: translateY(-100%);
}
#modalCloseBtn::before, #modalCloseBtn::after {
  content: "";
  position: absolute;
  background: #fff;
  width: 3px;
  height: 100%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(55deg);
}
#modalCloseBtn::after {
  transform: translate(-50%, -50%) rotate(-55deg);
}

/*------------------------------
アンカー
------------------------------*/
.anc{
  scroll-margin-top: 86px;
}
@media screen and (max-width:999px) {
  .anc{
    scroll-margin-top: 86px;
  }
}
@media screen and (max-width:768px) {
  .anc{
    scroll-margin-top: min(134px, 24vw);
  }
}
