@charset "utf-8";

html{
  font-size: 62.5%;
  -webkit-font-smoothing: antialiased;
  /* scroll-snap-type: y proximity; */
  scroll-padding-top: 26.67vw;
}
body{
-webkit-print-color-adjust: exact;
background-color: #52162d;
color:#b8a072;
font-family: "Shippori Mincho", serif;
font-size: clamp( 1.3rem, calc( 0.5666666666666667rem + 2.9333333333333336vw ), 3.5rem );
font-weight: 700;
-webkit-text-size-adjust: 100%;
line-height:1.5em;
letter-spacing: .275em;
text-align:center;
}

/* color */
.-color_maroon {
  color: #52162d;
}

/* リンク */
a:link{
color:#b8a072;
}
a:visited{
color:#b8a072;
}
a:hover {
color:#b8a072;
}
a:active {
color:#b8a072;
}
a img {
  transition: opacity .2s ease-in;
}
a:hover img {
  opacity: .75;
}

b,strong {
  font-weight: 700;
  font-style: normal;
}

#wrapper{
  width:100%;
  overflow-x: hidden;
  padding-bottom: 60px;
}

.show{display: block !important;}
.hide{display: none !important;}
.align_left{text-align: left;}
.align_center{text-align: center;}
.align_right{text-align: right;}

.mt1em{margin-top: 1em !important;}
.mt10{margin-top: 10px !important;}
.mt20{margin-top: 20px !important;}
.mt30{margin-top: 30px !important;}
.mt40{margin-top: 40px !important;}
.mt50{margin-top: 50px !important;}
.mt60{margin-top: 60px !important;}
.mt70{margin-top: 70px !important;}
.mt80{margin-top: 80px !important;}
.mt0{margin-top: 0 !important;}

/* btn */
.btn {
  display: inline-block;
  padding: 3px 30px;
  border: 1px solid #b8a072;
  border-radius: 20px;
  color: #b8a072;
  letter-spacing: .1em;
  line-height: 1.2;
  transition: all .2s ease-in;
}
.btn:hover {
  border-color: #52162d;
  background-color: #b8a072;
  color: #52162d;
}

@media screen and (min-width: 751px) {
.btn {
  padding: 6px clamp( 40px, calc( 26.842105263157897px + 3.289473684210526vw ), 90px );
  border-width: 3px;
  border-radius: 35px;
}
}

/* ========================================================
#header
======================================================== */
#header{
  position: sticky;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  background-color: #52162d;
  padding: 0 2rem;
  z-index: 2;
  height: 13.33vw;
  display: flex;
  align-items: center;
}
.header_inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  line-height: 1;
  width: 100%;
}
.header_logo img {
  height: 9.07vw;
  width: auto;
}
#header .nav_toggle {
  position: relative;
  background: transparent;
  border: 2px solid #b8a072;
  border-radius: 10px;
  width: 9.07vw;
  height: 9.07vw;
  cursor: pointer;
  z-index: 9999;
}
#header .nav_toggle span {
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
  background: #b8a072;
  border-radius: 2px;
  height: 2px;
  width: 4.8vw;
  transform: translateX(-50%);
}
#header .nav_toggle span:nth-of-type(1) {
  transform: translate(-50%, calc(-50% - .65rem));
  transition: transform 0.5s ease;
}
#header .nav_toggle span:nth-of-type(2) {
  transform: translate(-50%, -50%);
  transition: opacity 0.5s ease;
}
#header .nav_toggle span:nth-of-type(3) {
  transform: translate(-50%, calc(-50% + .65rem));
  transition: transform 0.5s ease;
}

/* active */
#header .nav_toggle.active span:nth-of-type(1) {
  transform: translate(-50%, -50%) rotate(-45deg);
}
#header .nav_toggle.active span:nth-of-type(2) {
  opacity: 0;
}
#header .nav_toggle.active span:nth-of-type(3) {
  transform: translate(-50%, -50%) rotate(45deg);
}

@media screen and (min-width: 751px) {
#header{
  height: 8rem;
  padding: 0 4.4rem;
}
.header_logo img {
  height: 54px;
}
#header .nav_toggle {
  border-width: 3px;
  width: 54px;
  height: 54px;
}
#header .nav_toggle span {
  height: 3px;
  width: 30px;
}
#header .nav_toggle span:nth-of-type(1) {
  transform: translate(-50%, calc(-50% - 1rem));
}
#header .nav_toggle span:nth-of-type(2) {
  transform: translate(-50%, -50%);
}
#header .nav_toggle span:nth-of-type(3) {
  transform: translate(-50%, calc(-50% + 1rem));
}
}

/* global-nav */
.global-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background-color: #52162d;
  transition: opacity 0.5s ease;
  opacity: 0;
  pointer-events: none;
  /* visibility: hidden; */
}

/* active */
.global-nav.active {
  opacity: 1;
  /* visibility: visible; */
  pointer-events: auto;
}

ul.global-nav_inner {
  width: 100%;
  height: 100%;
  padding: 15rem 2rem 20.5vw;
  margin-bottom: 0;
  /* font-size: clamp( 1.6rem, calc( 0.8rem + 3.2vw ), 4rem ); */
}
ul.global-nav_inner li:not(:first-of-type) {
  margin-top: 3rem;
}

@media screen and (min-width: 751px) {
ul.global-nav_inner {
  padding: 180px 2rem;
}
ul.global-nav_inner a:hover {
  text-decoration: none;
}
}

/* ========================================================
swiper
======================================================== */
.swiper {
  width: 100%;
  height: auto;
}
.swiper-slide img {
  height: auto;
  width: 100%;
}
.slide_wrap {
  position: relative;
}

/* message */
.slide_message {
  text-align: left;
  line-height: 2;
}
.slide_message span {
  background-color: #b8a072;
  color: #52162d;
  box-decoration-break: clone;
	-webkit-box-decoration-break: clone;
  padding-left: 6px;
}

/* ========================================================
#home
======================================================== */
#home {
  padding: 6.67vw 8vw 66.67vw;
  text-align: center;
  background: url(../img/bg_window_01.png) left bottom no-repeat;
  background-size: 140vw;
}

/* kvSwiper */
#home .slide_wrap {
  padding: 0 1.33vw;
  opacity: 0;
  animation-name: fadeIn;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
  animation-delay: 1s;
}
.kvSwiper .slide_message {
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-size: clamp( 11.5px, calc( 4px + 1.875vw ), 40px );
}

.home_logo {
  margin: 10.67vw auto 0;
  width: 38.67vw;
  opacity: 0;
  animation-name: fadeIn;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  animation-delay: 1.75s;
}

@keyframes fadeIn {
  0% {
  }
  100% {
      opacity: 1;
  }
}

.home_copy {
  margin: 18.67vw auto 0;
  width: 70.8vw;
  opacity: 0;
  animation-name: fadeIn;
  animation-duration: 1.75s;
  animation-fill-mode: forwards;
  animation-delay: 1.75s;
}
.home_lead {
  font-size: clamp( 13px, calc( 7.2105263157894735px + 1.4473684210526316vw ), 35px );
  line-height: 2.5;
  letter-spacing: .275em;
}
.home_lead:nth-of-type(1) {
  margin-top: 10.67vw;
}

@media screen and (min-width: 751px) {
#home {
  padding: 2rem 10rem 45.31vw;
  background-size: 86.3vw;
}

/* kvSwiper */
#home .slide_wrap {
  padding: 0;
}
.kvSwiper .slide_message {
  top: 2.86vw;
  left: 2.86vw;
}

.home_logo {
  margin: -9.64vw 0 0 6rem;
  width: 18.96vw;
}
.home_copy {
  margin-top: 8.65vw;
  width: 50.5vw;
}
.home_lead {
  font-size: clamp( 13px, calc( 7.2105263157894735px + 1.4473684210526316vw ), 35px );
  line-height: 2.5;
}
.home_lead:nth-of-type(1) {
  margin-top: 10.5rem;
}
.home_lead + .home_lead {
  margin-top: 4rem;
}
}

/* ========================================================
special
======================================================== */
.special {
  background: url(../img/bg_window_02.png) right bottom no-repeat;
  background-size: 140vw;
  margin-top: 13.33vw;
  padding: 0 0 66.67vw;
  position: relative;
}

.special_ttl {
  font-size: 4.8vw;
  font-weight: 700;
  position: relative;
}
.special_ttl span {
  position: relative;
  display: inline-block;
}
.special_ttl span:before,
.special_ttl span:after {
  content: '';
  display: inline-block;
  background: url(../img/ttl_movie.png) center no-repeat;
  background-size: contain;
  width: 100%;
  height: 4.27vw;
}
.movie_wrap {
  margin-top: 8.53vw;
}
/* .movie_inner */
.movie_inner {
  line-height: 1;
  padding: 0 5.33vw;
}
.movie_inner iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
}

@media screen and (min-width: 751px) {
.special {
  background-size: 88.44vw;
  margin-top: 7.92vw;
  padding: 0 0 39.31vw;
}

.special_ttl {
  font-size: 4.8vw;
}
.special_ttl span:before,
.special_ttl span:after {
  height: 4.27vw;
}
.movie_wrap {
  margin-top: 7.92vw;
}
/* .movie_inner */
.movie_inner {
  padding: 0 15rem;
}
}

/* special_info */
.special_info {
  margin: 10.67vw auto 8vw;
  padding: 4vw;
  border-radius: 20px;
  border: 2px solid #b8a072;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  width: 84.67vw;
}
.info_img {
  width: 100%;
}
.info_txt {
  width: 100%;
  text-align: left;
  line-height: 1;
}
.info_ttl_tip {
  font-size: 2.93vw;
}
.info_ttl_tip span {
  font-size: 115%;
}
.info_ttl {
  font-size: 4.27vw;
  margin-top: 1.33vw;
}
.info_lead {
  font-size: 2.67vw;
  letter-spacing: .075em;
  line-height: 1.7;
  margin: 0;
}
.special_btn {
  margin-top: 5.33vw;
}
.special_btn .btn {
  font-size: clamp( 16px, calc( 7.052631578947368px + 2.236842105263158vw ), 50px );
}

@media screen and (min-width: 751px) {
.special_info {
  margin: 6.25vw auto;
  padding: 3.5rem;
  border-radius: 35px;
  border-width: 3px;
  width: 82vw;
  display: flex;
  justify-content: space-between;
  flex-direction: row;
}
.info_img {
  width: 40vw;
}
.info_txt {
  width: calc(100% - 40vw - 2rem);
}
.info_ttl_tip {
  font-size: clamp( 14px, calc( -1.384615384615385px + 2.051282051282051vw ), 38px );
}
.info_ttl {
  font-size: clamp( 16px, calc( 6px + 2.5vw ), 54px );
}
.info_lead {
  font-size: clamp( 10px, calc( -5.384615384615385px + 2.051282051282051vw ), 34px );
}
.special_btn {
  margin-top: 5.21vw;
}
.special_btn + .special_btn {
  margin-top: 4.17vw;
}
}

/* ========================================================
modal
======================================================== */
.modal_content {
  display: none;
  height: 100vh;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1500;
}
.modal__bg{
  background: rgba(0,0,0,0.8);
  height: 100vh;
  position: absolute;
  width: 100%;
}

/* close */
.modal_close {
  cursor: pointer;
  margin-top: 4rem;
}
.modal_close span {
  display: inline-block;
  padding: 3px 30px;
  border: 1px solid #b8a072;
  border-radius: 20px;
  letter-spacing: .1em;
  line-height: 1.5;
}
.modal_close:hover span {
  background-color: #b8a072;
  border-color: #52162d;
  color: #52162d;
}

/* modal_contentWrap */
.modal_contentWrap {
  overflow: auto;
  height: 100vh;
  padding: 2rem;
  position: absolute;
  width: 100%;
}
.modal_inner {
  border: 2px solid #b8a072;
  border-radius: 9.33vw;
  padding: 12vw 5.33vw;
}
.spacial_ttl {
  font-size: clamp( 18px, calc( 9.052631578947368px + 2.236842105263158vw ), 52px );
}
.modal_inner p {
  margin-top: 8.53vw;
  font-size: clamp( 13px, calc( 7.2105263157894735px + 1.4473684210526316vw ), 35px );
  letter-spacing: .275em;
}
.spacial_name {
  font-size: clamp( 16px, calc( 9.157894736842104px + 1.710526315789474vw ), 42px );
}

@media screen and (min-width: 751px) {
/* close */
.modal_close {
  margin-top: 4.17vw;
}
.modal_close span {
  padding: 6px clamp( 40px, calc( 26.842105263157897px + 3.289473684210526vw ), 90px );
  border-width: 3px;
  border-radius: 35px;
  font-size: clamp( 13px, calc( 7.2105263157894735px + 1.4473684210526316vw ), 35px );
  transition: all .2s ease-in;
}

/* modal_contentWrap */
.modal_contentWrap {
  padding: 4rem;
  top: 5rem;
  left: calc(50% - 39vw);
  height: 90vh;
  width: 78.13vw;
}
.modal_inner {
  border-width: 3px;
  border-radius: 70px;
  padding: 10rem 8rem;
}
.modal_inner p {
  margin-top: 4.17vw;
}
.spacial_txt {
  margin: 0 auto;
}
}

/* music */
#music .modal_contentWrap {
  background-color: #52162d;
  background-image: url(../img/logo_bg_beige@2x.png);
  background-position: center, center;
  background-size: 73.33vw;
  background-repeat: no-repeat;
}
#music p {
  text-align: left;
}

@media screen and (min-width: 751px) {
#music .modal_contentWrap {
  background-size: 38.54vw;
}
#music .spacial_txt {
  width: 43.76vw;
}
}

/* thought */
#thought .modal_contentWrap {
  background: #b8a072;
}
#thought .modal_inner {
  border-color: #52162d;
}
.spacial_name + p {
  margin-top: 2.13vw;
}
.spacial_name.-line {
  border-top: 1px solid #52162d;
  padding-top: 8.53vw;
}
#thought .modal_close span {
  border-color: #52162d;
}
#thought .modal_close:hover span {
  background-color: #52162d;
  border-color: #b8a072;
  color: #b8a072;
}
.thought_item {
  background-image: url(../img/logo_bg_maroon@2x.png);
  background-position: center, center;
  background-size: 73.33vw;
  background-repeat: no-repeat;
}

@media screen and (min-width: 751px) {
.spacial_name + p {
  margin-top: 2.13vw;
}
.spacial_name.-line {
  border-width: 2px;
  padding-top: 4.17vw;
}
.thought_item {
  background-size: 38.54vw;
}
}

/* ========================================================
#photo
======================================================== */
#photo {
  margin-top: 13.33vw;
  padding: 0 0 20vw;
}
.photo_ttl {
  margin: 0 auto 8.53vw;
  width: 32.8vw;
}

@media screen and (min-width: 751px) {
#photo {
  margin-top: 7.92vw;
  padding: 0 0 17.71vw;
}
.photo_ttl {
  margin: 0 auto 5.21vw;
  width: 18.44vw;
}
}

/* Swiper */
.photoSwiper .swiper-slide {
  display: flex;
  flex-direction: column-reverse;
}
.photoSwiper .slide_message {
  padding: 1rem 1rem 0;
  margin: 0 auto;
  font-size: clamp( 11.5px, calc( 7.157894736842105px + 1.0855263157894737vw ), 28px );
}

@media screen and (min-width: 751px) {
.photoSwiper .slide_message {
  padding: 1rem 0 0;
  font-size: clamp( 12px, calc( -1.8461538461538467px + 1.8461538461538463vw ), 24px );
  letter-spacing: .2em;
}
}

@media screen and (min-width: 1400px) {
.photoSwiper .slide_message {
  padding: 1rem 0 0;
  font-size: clamp( 12px, calc( 4.3076923076923075px + 1.0256410256410255vw ), 24px );
  letter-spacing: .1em;
}
}

/* arrow */
#photo .swiper-button-next,
#photo .swiper-button-prev {
  font-family: inherit;
  font-size: 1rem;
  top: inherit;
  bottom: -9.07vw;
  width: auto;
  height: auto;
  border-radius: 12px;
  border: 1px solid #b8a072;
  color: #b8a072;
  padding: 6px;
  z-index: inherit;
  transition: all .2s ease-in;
}
#photo .swiper-button-next:hover,
#photo .swiper-button-prev:hover {
  background-color: #b8a072;
  border-color: #52162d;
  color: #52162d;
}
#photo .swiper-button-next {
  right: 30.4vw;
  left: inherit;
  padding-left: 10px;
}
#photo .swiper-button-prev {
  left: 30.4vw;
  right: inherit;
  padding-right: 10px;
}
#photo .swiper-button-next:after,
#photo .swiper-button-prev:after {
  font-family: inherit;
  font-size: 2.67vw;
  letter-spacing: .05em;
}
#photo .swiper-button-next:after {
  content: 'NEXT ▶';
}
#photo .swiper-button-prev:after {
  content: '◀ PREV';
}

@media screen and (min-width: 751px) {
#photo .swiper-button-next,
#photo .swiper-button-prev {
  padding: 6px clamp( 6px, calc( 2.315789473684211px + 0.9210526315789472vw ), 20px );
  border-width: 2px;
  border-radius: 30px;
}
#photo .swiper-button-next {
  right: 35.42vw;
  padding-left: clamp( 10px, calc( 5.7894736842105265px + 1.0526315789473684vw ), 26px );
}
#photo .swiper-button-prev {
  left: 35.42vw;
  padding-right: clamp( 10px, calc( 5.7894736842105265px + 1.0526315789473684vw ), 26px );
}

#photo .swiper-button-next:after,
#photo .swiper-button-prev:after {
  font-size: clamp( 12px, calc( 5.684210526315789px + 1.5789473684210527vw ), 36px );
}
}

/* ========================================================
#campaign
======================================================== */
#campaign {
  margin-top: 13.33vw;
}
.campaign_lead {
  font-size: clamp( 16px, calc( 10.174757281553397px + 1.5533980582524272vw ), 40px );
  letter-spacing: .275em;
  line-height: 2.5;
}
.campaign_lead span {
  font-size: 135%;
}
.tl_wrap {
  margin: 8vw auto 0;
  width: 90vw;
}
.tl_wrap > div {
  height: 35rem;
}

@media screen and (min-width: 751px) {
#campaign {
  margin-top: 7.92vw;
  /* padding: 0 0 10vw; */
}
.tl_wrap {
  margin: 4vw auto 0;
  width: 80vw;
}
.tl_wrap > div {
  height: 50rem;
}
}

/* ========================================================
#footer
======================================================== */
#footer {
  padding-top: 10vw;
}
.footer_sns {
  margin-bottom: 20vw;
}
.footer_sns a {
  display: block;
  width: 8vw;
  margin: 0 auto;
}
.about_alt {
  position: absolute;
  clip-path: inset(100%);
  overflow: hidden;
  height: 0;
}
.copyright {
  font-size: clamp( 10px, calc( 8.947368421052632px + 0.2631578947368421vw ), 14px );
  letter-spacing: .1em;
}

@media screen and (min-width: 751px) {
#footer {
  padding-top: 10vw;
}
.footer_sns {
  margin-bottom: 20vw;
}
.footer_sns a {
  width: 8vw;
}
.copyright {
  font-size: clamp( 10px, calc( 8.947368421052632px + 0.2631578947368421vw ), 14px );
  letter-spacing: .1em;
}
}

/* ========================================================
#animatin
======================================================== */
.fadein {
  opacity : 0;
  transform : translate(0, 30px);
  transition : all .8s;
}
.fadein.active{
  opacity : 1;
  transform : translate(0, 0);
}