@charset "UTF-8";
/*
	Base
*/
html {
  font-size: 1rem;
  scroll-behavior: smooth;
}

body {
  font-family: "Zen Old Mincho", serif;
  font-optical-sizing: auto;
  font-size: 1rem;
  font-weight: normal;
  font-style: normal;
  font-feature-settings: "palt" 1;
  color: #333333;
  line-height: 1;
  -webkit-text-size-adjust: 100%;
	text-size-adjust: 100%;
	line-break: strict;
  word-break: normal;
	overflow-wrap: break-word;
}

a:hover {
  opacity: 0.8;
}

a {
  transition: opacity 0.3s ease-out;
}


body#page-top.fixed {
  height: 100%;
  overflow: hidden;
}

body :where(a) {
  color: inherit;
  text-decoration: none;
}

body :where(ul, ol) {
  list-style-type: '';
  padding: unset;
}

body :where(img) {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

body :where(button) {
  color: inherit;
  letter-spacing: 0.1em;
  touch-action: manipulation;
}

/*
	Layouts
*/
:root {
  --color-base-white: 255 255 255;
  --color-base-black: 51 51 51;
  --color-base-text: 34 34 34;
  --color-base-brown: 120 23 32;
  --color-base-button: 242 231 203;
  --font-mincho: "Zen Old Mincho", serif;
  --font-serif: "Sorts Mill Goudy", serif;
}

.pc-only{
  display: none;
}
.sp-only {
  display: block;
}
@media (min-width: 768px) {
  .pc-only {
    display: block;
  }
  .sp-only {
    display: none;
  }
}

.l-section {
  position: relative;
  padding-inline: 0;
  overflow-x: hidden;
  z-index: 2;
}

.c-btn{
  width: 100%;
  height: 11.46667vw;
  background-color: rgb(var(--color-base-brown));
  color: rgb(var(--color-base-white));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.05em;
  position: relative;
}

.c-btn::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: 3.2vw;
  margin: auto 0;
  background: url('../img/common/icon_link.svg') no-repeat;
  background-size: 100% auto;
  background-position: center center;
  width: 1.6vw;
  height: auto;
  aspect-ratio: 1 / 2;
}

@media (min-width: 768px) {
  .c-btn{
    height: 64px;
  }

  .c-btn::after {
    right: 20px;
    width: 8px;
  }
}

/* 
  header
*/
.l-header{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 12.8vw;
}

.l-header .l-header__wrapper{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.l-header .l-header__wrapper a{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 49.333vw;
  height: auto;
  aspect-ratio: 152 / 16;
}

@media print, screen and (min-width: 768px) and (max-width: 959px) {
  .l-header{
    height: 96px;
  }

  .l-header .l-header__wrapper{
    justify-content: flex-start;
    width: 90%;
  }

  .l-header .l-header__wrapper a{
    justify-content: flex-start;
    width: 304px;
    height: 32px;
  }
}

@media print, screen and (min-width: 960px) {
  .l-header{
    height: 96px;
  }

  .l-header .l-header__wrapper{
    justify-content: flex-start;
    max-width: 960px;
    width: 100%;
    padding: 0 0;
  }

  .l-header .l-header__wrapper a{
    justify-content: flex-start;
    width: 304px;
    height: 32px;
  }
}

/* 
  kv
*/
.l-kv{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  background: url('../img/kv-sp.png') no-repeat;
  background-size: 100% auto;
  background-position: center center;
}

.l-kv__title{
  width: 33.6vw;
  height: 36.667vw;
  aspect-ratio: 252 / 275;
}

@media print, screen and (min-width: 768px){
  .l-kv{
    aspect-ratio: 8 / 3;
    background: url('../img/kv-pc.png') no-repeat;
    background-size: 100% auto;
    background-position: center center;
    /* max-width: 1200px; */
    margin: 0 auto;
  }

  .l-kv__title{
    width: auto;
    height: 55.5556%;
    max-width: 252px;
    max-height: 275px;
    aspect-ratio: 252 / 275;
  }
}

/* 
  about
*/
.l-about__inner{
  padding: 12.8vw 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: auto;
  text-align: center;
}

.l-about__title{
  color: rgb(var(--color-base-brown));
  font-size: 6.6667vw;
  font-weight: 900;
  letter-spacing: 0.075em;
  line-height: 1;
}

.l-about__subtitle{
  color: rgb(var(--color-base-brown));
  font-size: 4.2667vw;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.5625;
  margin-top: 2.1333vw;
}

.l-about__text{
  font-size: 3.7333vw;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.7143;
  margin-top: 7.46667vw;
  text-align: center;
}

@media print, screen and (min-width: 768px){
  .l-about__inner{
    padding: 96px 0;
  }

  .l-about__title{
    font-size: 40px;
  }

  .l-about__subtitle{
    font-size: 20px;
    margin-top: 16px;
  }

  .l-about__text{
    font-size: 14px;
    margin-top: 32px;
  }
}

/* 
  loop
*/
.l-loop {
  width: 100%;
  overflow: hidden;
  margin-bottom: 15.7vw;
  position: relative;
}

.l-loop .carousel-swiper {
  width: 100%;
  height: auto;
}

.l-loop .swiper-wrapper {
  transition-timing-function: linear;
}

.l-loop .swiper-slide {
  width: 166.667px;
  height: 125px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.l-loop .swiper-slide img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
}

@media print, screen and (min-width: 768px){
  .l-loop {
    margin-bottom: 96px;
  }

  .l-loop .swiper-slide {
    width: 280px;
    height: 210px;
  }
}

/* 
  campaign
*/
.l-campaign{
  background: rgb(var(--color-base-brown));
  color: rgb(var(--color-base-white));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 16vw 0;
}

.l-campaign h2{
  font-family: var(--font-serif);
  font-size: 6.4vw;
  line-height: 1.5;
  letter-spacing: 0.075em;
}

.l-campaign__subtitle{
  font-size: 4.26667vw;
  font-weight: 600;
  margin-top: 2.1333vw;
  line-height: 1;
  letter-spacing: 0.075em;
}

.l-campaign__list_wrap{
  width: 82.9333%;
  height: auto;
  margin: 5.333vw auto 0;
}

.l-campaign__list{
  width: 100%;
  background-color: rgb(var(--color-base-white));
  color: rgb(var(--color-base-black));
  display: flex;
  flex-direction: column;
  margin: 4.26667vw auto 0;
  padding: 6.4vw;
}

.l-campaign__list h3{
  color: rgb(var(--color-base-brown));
  font-size: 4vw;
  font-weight: 700;
  line-height: 1.5625;
  letter-spacing: 0.05em;
  margin-top: 6.66667vw;
}

.l-campaign__list h3 span{
  font-weight: 400;
}

.l-campaign__list__read{
  color: rgb(var(--color-base-black));
  font-size: 3.46667vw;
  font-weight: 700;
  line-height: 1.615;
  letter-spacing: 0.05em;
  margin-top: 3.2vw;  
}

.l-campaign__list__read span{
    margin-left: 0;
  }

.l-campaign__price_wrap{
  display: flex;
  flex-direction: column;
  gap: 1.6vw;
  padding: 3.2vw 0;
  border-bottom: 1px solid #707070;
  white-space: nowrap;
}

.l-campaign__list figure{
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
}

.l-campaign__text{
  color: rgb(var(--color-base-black));
  font-size: 2.6667vw;
  font-weight: 700;
  letter-spacing: 0.025em;
  white-space: nowrap;
}

.l-campaign__price{
  color: rgb(var(--color-base-brown));
  font-family: var(--font-mincho);
  font-size: 5.333vw;
  font-weight: 700;
  line-height: 1;
  /* white-space: nowrap; */
}

.l-campaign__price span{
  font-size: 3.2vw;
}

.l-campaign__date{
  font-size: 3.4667vw;
  font-weight: 700;
  line-height: 1.6154;
  margin-top: 3.2vw;
}

.l-campaign__date span{
  font-weight: 400;
}

.l-campaign__btn{
  margin-top: 6.4vw;
}

.l-campaign__detail_wrap{
  display: flex;
  flex-direction: column;
  margin-top: 6.4vw;
  background-color: rgb(var(--color-base-button));
}

#campaign-03 .l-campaign__detail_wrap{
  margin-top: 3.2vw;
}

.l-campaign__detail_button {
  width: 100%;
  height: 11.46667vw;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: .5rem;
  background: none;
  border: none;
  padding: 0;
  color: inherit;
  font: inherit;
  cursor: pointer;
  position: relative;
}

.l-campaign__detail_button::before {
  display: block;
  content: '';
  position: absolute;
  top: 50%;
  right: 3.2vw;
  width: 3.2vw;
  height: 1px;
  background-color: rgb(var(--color-base-black));
  transition: 0.2s;
  transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
}

.l-campaign__detail_button::after {
  display: block;
  content: '';
  position: absolute;
  top: 50%;
  right: 3.2vw;
  width: 3.2vw;
  height: 1px;
  background-color: rgb(var(--color-base-black));
  transition: 0.2s;
}

.l-campaign__detail_wrap.is-open .l-campaign__detail_button::before {
  transform: rotate(0);
  -webkit-transform: rotate(0);
}

.l-campaign__detail_wrap .l-campaign__detail_open{
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  padding: 0 4vw 0;
  transition: max-height 300ms ease-in-out, opacity 300ms ease-in-out, padding 300ms ease-in-out;
}

.l-campaign__detail_wrap.is-open .l-campaign__detail_open {
  margin-top: 2.1333vw;
  max-height: 1500px;
  opacity: 1;
  padding: 0 4vw 4vw;
  transition: max-height 300ms ease-in-out, opacity 300ms ease-in-out 50ms, padding 300ms ease-in-out;
}

.l-campaign__detail_button_text{
  font-size: 3.46667vw;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.05em;
}

#campaign-03 .l-campaign__detail_button_text{
  margin-left: -1em;
}

.l-campaign__detail_text,
.l-campaign__detail_lists li{
  font-size: 3.4667vw;
  font-weight: 500;
  line-height: 1.6154;
  letter-spacing: 0.025em;
  text-indent: -1em;
  padding-left: 1em;
}
.l-campaign__detail_lists li span{
  font-size: 2.6667vw;
}

.l-campaign__detail_more{
  font-size: 3.4667vw;
  font-weight: 500;
  line-height: 1.6154;
  letter-spacing: 0.025em;
  margin-top: 1em;
}

.l-campaign__detail_more li{
  text-indent: -1.25em;
  padding-left: 1em;
}

.l-campaign__detail_schedule{
  margin-top: 1em;
}

.l-campaign__note{
  font-size: 2.6667vw;
  font-weight: 500;
  line-height: 2.1;
  margin-top: 6.4vw;
}

@media print, screen and (min-width: 768px) and (max-width: 960px) {
  .l-campaign__list{
    flex-direction: column;
  }

  .l-campaign__list_inner{
    width: 100%;
  }
}

@media print, screen and (min-width: 961px){
  .l-campaign__list{
    flex-direction: row;
  }

  .l-campaign__list_inner{
    width: 432px;
  }
}

@media print, screen and (min-width: 768px){
  .l-campaign{
    padding: 120px 0;
  }

  .l-campaign h2{
    font-size: 40px;
  }

  .l-campaign__subtitle{
    font-size: 20px;
    margin-top: 8px;
  }

  .l-campaign__list_wrap{
    max-width: 960px;
    width: 90%;
    height: auto;
    margin: 24px auto 0;
  }

  .l-campaign__list{
    width: 100%;
    background-color: rgb(var(--color-base-white));
    color: rgb(var(--color-base-black));
    display: flex;
    gap: 32px;
    margin: 24px auto 0;
    padding: 56px 40px;
  }

  .l-campaign__list figure{
    width: auto;
    flex: 1;
  }

  .l-campaign__list_inner{
    flex-shrink: 0;
  }

  .l-campaign__list__read{
    color: rgb(var(--color-base-black));
    font-size: 14px;
    line-height: 1.615;
    letter-spacing: 0.05em;
    margin-top: 16px;
  }

  .l-campaign__list__read span{
    margin-left: 4.25em;
  }

  .l-campaign__list h3{
    font-size: 20px;
    line-height: 1.7;
    margin-top: 0;
  }

  /* .l-campaign__list span{
    font-weight: 400;
  } */

  .l-campaign__price_wrap{
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-end;
    padding: 16px 0 8px;
    border-bottom: 1px solid #707070;
    white-space: nowrap;
    gap: 4px;
  }

  .l-campaign__price_wrap.list_04{
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 16px 0 16px;
  }

  .l-campaign__text{
      font-size: 14px;
      line-height: 1.7143;
      font-weight: 700;
      letter-spacing: 0.025em;
      white-space: nowrap;
    }

  .l-campaign__price{
    color: rgb(var(--color-base-brown));
    font-family: var(--font-mincho);
    font-size: 32px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0;
    white-space: nowrap;
  }

  .l-campaign__price span{
    font-size: 14px;
    font-weight: 400;
  }

  .l-campaign__date{
    font-size: 14px;
    font-weight: 700;
    margin-top: 16px;
  }

  .l-campaign__date span{
    font-weight: 400;
  }

  .l-campaign__btn{
    margin-top: 32px;
  }

  .l-campaign__detail_wrap{
    display: flex;
    flex-direction: column;
    margin-top: 32px;
    background-color: rgb(var(--color-base-button));
  }

  #campaign-03 .l-campaign__detail_wrap{
    margin-top: 16px;
  }

  .l-campaign__detail_button {
    width: 100%;
    height: 64px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: .5rem;
    background: none;
    border: none;
    padding: 0;
    color: inherit;
    font: inherit;
    cursor: pointer;
    position: relative;
  }

  .l-campaign__detail_button::before {
    display: block;
    content: '';
    position: absolute;
    top: 50%;
    right: 20px;
    width: 16px;
    height: 1px;
    background-color: rgb(var(--color-base-black));
    transition: 0.2s;
    transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
  }

  .l-campaign__detail_button::after {
    display: block;
    content: '';
    position: absolute;
    top: 50%;
    right: 20px;
    width: 16px;
    height: 1px;
    background-color: rgb(var(--color-base-black));
    transition: 0.2s;
  }

  .l-campaign__detail_wrap.is-open .l-campaign__detail_button::before {
    transform: rotate(0);
    -webkit-transform: rotate(0);
  }

   .l-campaign__detail_wrap .l-campaign__detail_open{
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    padding: 0 26px 0;
    transition: max-height 300ms ease-in-out, opacity 300ms ease-in-out, padding 300ms ease-in-out;
  }

  .l-campaign__detail_wrap.is-open .l-campaign__detail_open {
    margin-top: 12px;
    max-height: 900px;
    opacity: 1;
    padding: 0 26px 26px;
    transition: max-height 300ms ease-in-out, opacity 200ms ease-in-out 50ms, padding 300ms ease-in-out;
  }

  .l-campaign__detail_button_text{
    font-size: 14px;
    font-weight: 500;
  }

  #campaign-03 .l-campaign__detail_button_text{
    margin-left: 0;
  }

  /* .l-campaign__detail_button:focus {
    outline: 1px solid rgba(66, 139, 202, 0.25);
    outline-offset: 2px;
  } */

  .l-campaign__detail_text,
  .l-campaign__detail_lists li{
    font-size: 14px;
    font-weight: 500;
    line-height: 1.7143;
  }

  .l-campaign__detail_lists li span{
    font-size: 10px;
    margin-top: 0.5em;
  }

  .l-campaign__detail_more{
    font-size: 14px;
    font-weight: 500;
    line-height: 1.7143;
  }

  .l-campaign__note{
    font-size: 12px;
    font-weight: 400;
    line-height: 2;
    margin-top: 32px;
  }

}

/* 
  coming soon
*/
.l-cos{
  background: url('../img/bg-cos_sp.png') no-repeat;
  background-size: 100% auto;
  color: rgb(var(--color-base-white));
  width: 100%;
  height: 53.333vw;
  aspect-ratio: 15 /8;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.l-cos__title{
  font-size: 6.4vw;
  font-family: var(--font-serif);
  line-height: 1.8;
  letter-spacing: 0.075em;
  text-align: center;
}

.l-cos__text{
  font-size: 3.46667vw;
  font-weight: 600;
  line-height: 1.75;
  letter-spacing: 0.075em;
  margin-top: 2.1333vw;
}

@media print, screen and (min-width: 768px){
  .l-cos{
    background: url('../img/bg-cos_pc.png') no-repeat;
    background-size: 100% auto;
    width: 100%;
    /* max-width: 1200px; */
    height: auto;
    aspect-ratio: 3 /1;
  }

  .l-cos__title{
    font-size: 40px;
  }

  .l-cos__text{
    font-size: 20px;
    line-height: 1.7;
    margin-top: 8px;
  }
}

/* 
  footer
*/
.l-footer{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 9.6vw 0 5.333vw;
  position: relative;
}

.l-footer p{
  width: 60.8vw;
  height: 6.4vw;
}

.l-footer p img{
  width: 100%;
  height: 100%;
}

.l-footer small{
  font-size: 2.4vw;
  font-family: var(--font-serif);
  line-height: 1.889;
  letter-spacing: 0.075em;
  margin-top: 7.333vw;
}

/* pagetop */
.pagetop {
  position: absolute;
  right: 5.333vw;
  bottom: 15.2vw;
  z-index: 10;
  width: 7.733vw;
  height: 12.8vw;
  aspect-ratio: 29 / 48;
  border: none;
  cursor: pointer;
  pointer-events: auto;
  font-family: var(--font-serif);
  background: url(../img/common/icon_pagetop.svg) no-repeat;
  background-size: 100% auto;
  background-position: center center;
}

@media print, screen and (min-width: 768px){
  .l-footer{
    padding: 72px 0 56px;
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
  }

  .l-footer p{
    width: 456px;
    height: 48px;
  }

  .l-footer small{
    font-size: 12px;
    margin-top: 48px;
  }
  .pagetop {
    width: 58px;
    height: 96px;
    right: 0;
    bottom: 90px;
  }
}

/*
	Accessibility
*/
*:focus-visible {
  outline-width: 2px !important;
  outline-style: solid !important;
  outline-color: #428bca;
}

.sr-only {
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  width: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
}
