/* ===============================================
  * COMMON *
=============================================== */
:root {
  --lp-bg-color-fv-sec03: #FCE7A9;
  --lp-bg-color-sec01: #FFFDEA;
  --lp-bg-color-sec02: #ECD1D4;
  --font-color: #250D00;
}




.header .header__inner {
  --color-a: #FCE7A9;
  background-image: linear-gradient(to bottom, transparent, var(--color-a) 0, transparent);
  transition-property: --color-a;
  transition-duration: .5s;
  transition-timing-function: ease;
}
.header .header__inner.sec1show {
    --color-a: #FFFDEA;
}
.header .header__inner.sec2show{
    --color-a: #ECD1D4;
}
.header .header__inner.sec3show{
    --color-a: #FCE7A9;
}
@property --color-a {
  syntax: "<color>";
  inherits: false;
  initial-value: transparent;
}





.main-area.lp {
  margin-bottom: 0 !important;
  background-color: var(--lp-bg-color-fv-sec03);
}
.main-area.lp a{
  display: inline-block;
}

.lp_area img {
  width: 100%;
  height: auto;
}

.maivsiual {
  position: relative;
}

.lp_area .slick-slide {
  height: fit-content;
}

.slider-container {
  position: relative;
}

.main-container {
  overflow: clip;
  font-family: "a-otf-ryumin-pr6n", serif;
  font-weight: 300;
  font-style: normal;
  color: var(--font-color);
  font-size: calc(14* (100vw /375));
  line-height: 2;
  letter-spacing: 0.08em;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .main-container {
    font-size: 1.6rem;
  }
}

.font_en {
  font-family: "Mucha_font";
}

@font-face {
  font-family: "Mucha_font";
  src:
    url("../font/Mucha_font-Regular.woff") format("woff");
}
@font-face {
  font-family: "SilkSerif";
  src:
    url("../font/SilkSerif-ExtraLight.woff") format("woff");
}
/* pc */
body,
html {
  height: 100%;
  margin: 0 auto;
}

/* ===============================================
* 背景画像・背景色 *
=============================================== */
body:before,
body:after {
  content: "";
  display: block;
  width: 100%;
  height: 100vh;
  position: fixed;
  z-index: -1;
}

body:after {
  background: linear-gradient(0deg, #FCFDFF 8%, transparent 50%);
  top: 0;
}
.block-bg{
	position: relative;
  transition: all 0.5s ease;
  background-color: var(--lp-bg-color-fv-sec03);
}
.block-bg::after {
	content: "";
	position: fixed;
	background: url(../img/bg.png) center/cover no-repeat;
	z-index: 1;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	pointer-events: none;
}


/* ===============================================
* nav *
=============================================== */

span.nav00.show + ul .nav__inner {
  background-color: var(--lp-bg-color-fv-sec03);
}

span.nav00.show + ul .nav__inner.active {
  background-color: #250D00;
}

span.nav00.show + ul .nav__inner.active p{
  color: var(--lp-bg-color-fv-sec03);
}

.main-container .nav li a {
  width: 100%;
}

.main-container .nav {
  position: sticky;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 999;
}

.main-container .nav ul {
  display: flex;
  margin-left: auto;
  margin-right: auto;
}

.main-container .nav li {
  display: flex;
  justify-content: center;
  width: 100%;
  color: #250D00;
  border-width: 1px;
  border-style: solid solid none none;
  background-color:var(--lp-bg-color-fv-sec03);
  /* backdrop-filter: blur(5px); */
  will-change: backdrop-filter;
  -webkit-backdrop-filter: blur(5px);
  transition: all 0.5s ease;
  transition: all 0.5s ease;}

.nav01.active ~ .nav__inner{
  background-color: var(--lp-bg-color-sec01);
}

.nav02.active ~ .nav__inner{
  background-color: var(--lp-bg-color-sec02);
}
.nav01:has(+ .nav02.active){
  background-color: var(--lp-bg-color-sec02);
}


.main-container li.nav03 {
  border-style: solid none none none;
}

.main-container .nav p {
  width: 100%;
  height: calc(50* (100vw /375));
  font-size: calc(14* (100vw /375));
  font-family: bodoni-urw, serif;
  font-style: normal;
  font-weight: 300;
  letter-spacing: 0.08em;
  display: flex;
  text-align: center;
  flex-direction: column;
  justify-content: center;
  line-height: 1.0714285714;
}

.main-container .nav .nav01.active p{
  color: #FFFDEA;
}

.main-container .nav .nav02.active p{
  color: #ECD1D4;
}

.main-container .nav .nav03.active p{
  color: #FCE7A9;
}

.main-container .nav li.active p {
  color: #FCE7A9;
}

.main-container .nav li.active {
  background-color: #250D00;
}

@media screen and (min-width: 768px) {
  .main-container .nav {
    font-size: 1.8rem;
  }

  .main-container .nav p {
    width: 100%;
    height: 6rem;
    font-size: 2rem;
  }
}

/* ===============================================
* credit *
=============================================== */
.credit-wrap{
  margin: calc(35* (100vw /375)) auto 0;
}

.credit_li {
  margin-bottom: calc(20* (100vw /375));
  letter-spacing: 0.05em;
  line-height: 1;
}
.credit_li:last-child{
  margin-bottom: 0;
}

.main-area .credit_li a {
  display: inline-block;
  text-align: center;
  line-height: 2;
  white-space: nowrap;
  letter-spacing: 0.05em;
  text-decoration: underline;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .credit_li{
    font-size: calc(13* (100vw /375));
    letter-spacing: 0.05em;
  }
  .main-area .credit_li a{
    font-size: calc(12* (100vw /375));
    padding-top: calc(10*(100vw / 375));
  }
}
@media screen and (min-width: 768px) {
  .credit-wrap{
    margin: 0;
    /* padding-bottom: 0.5rem; */
  }

  .credit_li {
    font-size: 1.3rem;
    line-height: 1;
    margin-bottom: 2rem;
  }

  .main-area .credit_li a {
    font-size: 1.2rem;
    line-height: 1;
    padding-top: 1rem;
  }

}

.maivsiual+p {
  margin-top: calc(53* (100vw /375));
}

.fv_ttl{
  font-size:  calc(16* (100vw /375));
  line-height: 2;
  letter-spacing: 0.08em;
  margin-bottom: calc(25* (100vw /375));
  margin-top: calc(50* (100vw /375));
}

.lead_txt{
  font-size: calc(14* (100vw /375));
  line-height: 2;
}

.sales-info{
  display: inline-block;
  border: 1px solid #250D00;
  padding: calc(28*(100vw / 375)) calc(18*(100vw / 375)) calc(24*(100vw / 375));
  margin-top: calc(44*(100vw / 375));
  /* margin-bottom: calc(50* (100vw /375)); */
}

.sales-info__ttl{
  position: relative;
  display: inline-block;
  font-size: calc(22* (100vw /375));
  padding-bottom: calc(18*(100vw / 375));
  line-height: 1;
}

.sales-info__ttl::before {
  content: "";
  position: absolute;
  background-image: url(../img/img_ttlStar_pc.svg);
  background-repeat: no-repeat;
  background-size: cover;
  top: calc(3* (100vw /375));
  /* transform: translateY(50%); */
  left: calc(-29* (100vw /375));
  width: calc(18* (100vw /375));
  height: calc(18* (100vw /375));
}

.sales-info__ttl::after {
  content: "";
  position: absolute;
  background-image: url(../img/img_ttlStar_pc.svg);
  background-repeat: no-repeat;
  background-size: cover;
  top: calc(3* (100vw /375));
  /* transform: translateY(50%); */
  right: calc(-28* (100vw /375));
  width: calc(18* (100vw /375));
  height: calc(18* (100vw /375));
}

.sales-info__detail{
  font-size: calc(15* (100vw /375));
  line-height: 1.8;
}
.sec .ttl--wrap{
  position: relative;
}

.sec .ttl--wrap::before {
  content: "";
  position: absolute;
  background: url(../img/img_ttlStar_pc.svg) center/100% no-repeat;
  width: calc(30 * (100vw / 375));
  height: calc(30 * (100vw / 375));
  top: calc(-55* (100vw /375));
  left: 50%;
  transform: translateX(-50%);
}


@media screen and (min-width: 768px) {

  .fv_ttl{
    font-size: 1.8rem;
    line-height: 1;
    margin-bottom: 3.1rem;
    margin-top: 8rem;
  }

  .lead_txt{
    font-size: 1.5rem;
    /* margin-bottom: 6rem; */
  }

  .sales-info{
    padding: 3.9rem 8rem 3.1rem;
    margin-top: 5.3rem;
  }

  .sales-info__ttl{
    font-size: 2.6rem;
    padding-bottom: 1.9rem;
  }

  .sales-info__detail{
    font-size: 1.8rem;
  }

  .sales-info__ttl::before {
    left: -2.9rem;
    width: 1.8rem;
    height: 1.8rem;
    top: 0.3rem;
  }

  .sales-info__ttl::after {
    right: -2.7rem;
    width: 1.8rem;
    height: 1.8rem;
    top: 0.3rem;
  }

  .sec .ttl--wrap::before {
    width: 3.8rem;
    height: 3.8rem;
    top: -7.3rem;
  }
}
/* ===============================================
* sec 共通 *
=============================================== */
.main-container .sec__inner {
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.main-container .lp--btn {
  width: calc(250*(100vw / 375));
  margin: calc(60*(100vw / 375)) auto 0;
  display: block;
}

.section--separator {
  display: block;
  margin: calc(60*(100vw / 375)) auto calc(57*(100vw / 375));
  width: calc(350* (100vw /375));
}
.sec{
  position: relative;
  z-index: 10;
  padding-top: calc(60*(100vw / 375));
  padding-bottom: calc(115*(100vw / 375));
}

.sec_ttl{
  font-size: calc(48* (100vw /375));
  line-height: 1;
  letter-spacing: 0;
}

.sec_ttl02{
  font-size: calc(40* (100vw /375));
  line-height: 1;
  letter-spacing: 0;
}

.sec_txt01{
  font-size: calc(16* (100vw /375));
  margin-top: calc(16*(100vw / 375));
  letter-spacing: 0.08em;
  line-height: 2;
}

.sec_txt02{
  font-size: calc(14* (100vw /375));
  letter-spacing: 0.08em;
  line-height: 1.8;
}

@media screen and (max-width: 767px) {
  .sponly{
    display: block;
  }
  .main-container .sec__inner {
    flex-direction: column;
    width: calc(345* (100vw /375));
    margin: calc(32* (100vw /375)) auto 0;
    gap: calc(34* (100vw /375));
  }

  .main-container .sec__inner+.sec__inner {
    margin-top: calc(80* (100vw /375));
  }
}

@media screen and (min-width: 768px) {
  .sponly{
    display: none;
  }
  .main-container .sec__inner {
    column-gap: 12rem;
    margin-top: 7rem;
    justify-content: flex-start;
  }

  .main-container .sec__inner:nth-child(even) {
    flex-direction: row-reverse;
    justify-content: flex-end;
  }

  .main-container .sec__inner .inner_img {
    width: 45.3rem;
  }

  .main-container .sec__inner .inner_textArea {
    display: flex;
    justify-content: center;
    flex-direction: column;
  }

  .main-container .sec__inner .inner_textArea * {
    text-align: left;
  }

  .main-container .lp--btn {
    width: 25rem;
    margin: 8.2rem auto 0;
  }

  .section--separator {
    margin: 10.2rem auto 0;
    width: 100rem;
  }

  .main-container .sec01,
  .main-container .sec02,
  .main-container .sec03 {
    width: 100rem;
    margin-left: auto;
    margin-right: auto;
  }

  .sec{
    padding-top: 8rem;
    padding-bottom: 8rem;
  }

  .sec_ttl{
    margin-top: 7.3rem;
    font-size: 6.4rem;
  }

  .sec_ttl02{
    font-size: 5.6rem;
    margin-top: 7.7rem;
  }

  .sec_txt01{
    font-size: 1.8rem;
    margin-top: 2.2rem;
  }

  .sec_txt02{
    font-size: 1.6rem;
    margin-bottom: 7.5rem;
    /* padding-top: 0.5rem; */
  }

}
/* ===============================================
* sec00 *
=============================================== */
.sec00{
  padding-top: 0;
  padding-bottom: calc(50* (100vw /375));
}
.block-bg{
  background-color: var(--lp-bg-color-fv-sec03);
}
@media screen and (min-width: 768px) {
  .sec00{
    padding-bottom: 5rem;
  }
}
/* ===============================================
* sec01 *
=============================================== */
.sec01{
  padding-top: calc(105* (100vw /375));
}

@media screen and (min-width: 768px) {
  .sec01{
    padding-top: 8rem;
  }
  .sec01 .credit-wrap{
    padding-bottom: 0.5rem;
  }
  .sec01 .sec_txt02{
    font-size: 1.5rem;
  }
  .sec01 .sec01inner_01.sec__inner {
    flex-direction: row;
    justify-content: flex-start;
  }
}
/* ===============================================
* sec02 *
=============================================== */
@media screen and (max-width: 767px) {
  .sec02 .sec02inner_02 .ttl--wrap{
    margin: calc(60* (100vw /375)) 0 calc(40* (100vw /375));
  }
  /* .sec02 .section--separator{
    margin: calc(60*(100vw / 375)) auto calc(57*(100vw / 375));
  } */
  .main-container .sec02inner_02 .sec__inner{
    margin: calc(34*(100vw / 375)) auto 0;
  }
  .sec02 .sales-info{
    margin-top: calc(50*(100vw / 375));
  }
}
@media screen and (min-width: 768px) {
  .sec02 .sec02inner_01.sec__inner{
    flex-direction: row-reverse;
    justify-content: flex-start;
    /* gap: 14rem; */
  }
  .sec02 .sec02inner_02 .ttl--wrap{
    margin: 10rem 0 8rem;
  }
  .sec02 .sec02inner_02 .sec__inner {
    flex-direction: row;
    justify-content: flex-start;
  }
  .sec02 .sales-info {
    margin-top: 8.3rem;
  }
}
/* ===============================================
* sec03 *
=============================================== */

@media screen and (max-width: 767px) {
  .sec03 {
    padding-bottom: calc(35*(100vw / 375));
  }
  .sec03 .sec__inner{
    margin: calc(33*(100vw / 375)) auto 0;
  }
}
@media screen and (min-width: 768px) {
  .sec03{
    padding-bottom: 7rem;
  }
  .sec03 .sec03inner_04 .sec__inner{
    flex-direction: row;
  }
  .sec03 .sec03inner_01.sec__inner {
    justify-content: flex-start;
  }
  .sec03 .sec03inner_02,
  .sec03 .sec03inner_03{
    margin-top: 10rem;
  }
  .main-container .sec03 .sec03inner_03{
    justify-content: flex-start;
    column-gap: 12.8rem;
  }
  .sec03 .sec03inner_04 .sec__inner{
    justify-content: flex-start;
  }
}

.footer {
  z-index: 999;
}


/* ===============================================
* info--wrap *
=============================================== */
.info--wrap h3 {
  position: relative;
  width: fit-content;
  margin: calc(79* (100vw /375)) auto 0;
  font-size: calc(25* (100vw /375));
  line-height: 1;
}

.info--wrap h3::before,
.info--wrap h3::after {
  content: "";
  position: absolute;
  background: url(../img/img_ttlStar_pc.svg) center/contain no-repeat;
  width: calc(13* (100vw /375));
  height: calc(13* (100vw /375));
  top: calc(6* (100vw /375));
}

.info--wrap h3::before {
  left: calc(-17* (100vw /375));
}

.info--wrap h3::after {
  right: calc(-17* (100vw /375));
}

.info--wrap h3+p {
  font-size: calc(14* (100vw /375));
  margin-top: calc(18* (100vw /375));
}

.info--wrap h3+p+p {
  font-size: calc(12* (100vw /375));
  line-height: 1.75;
  margin-top: calc(5* (100vw /375));
}

.info--wrap .lp--btn {
  margin: calc(55*(100vw / 375)) auto calc(80* (100vw /375));
}

@media screen and (min-width: 768px) {
  .info--wrap h3 {
    margin: 11.3rem auto 0;
    font-size: 3.4rem;
  }

  .info--wrap h3::before,
  .info--wrap h3::after {
    width: 2rem;
    height: 2rem;
    top: 0.7rem;
  }

  .info--wrap h3::before {
    left: -3.2rem;
  }

  .info--wrap h3::after {
    right: -3.2rem;
  }

  .info--wrap h3+p {
    font-size: 1.8rem;
    margin-top: 2.1rem;
  }

  .info--wrap h3+p+p {
    font-size: 1.4rem;
    margin-top: 0.7rem;
  }

  .info--wrap .lp--btn {
    margin: 7.5rem auto 13rem;
  }
}

/* ===============================================
  * アニメーション - 1 *
=============================================== */
.animation {
  opacity: 0;
  transform: translateY(40px);
  transition: all 1.0s;
  transition-delay: .3s;
}

.animation.onView {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1400px) and (min-width: 768px) {
  html {
    font-size: calc(10 * (100vw / 1400));
  }
}


