@charset "UTF-8";
/*=======================================
 	             SMACSS  base
 ========================================*/

/*=======================================
	         SMACSS  layout　　　　　　　       ( style.scss ) ( header.scss / main.scss / footer.scss ...) 
========================================*/
/*=======================================
 	        animation
 ========================================*/

.js-fadeIn-load {
  opacity: 0;
  transform: translateY(15px);
}

.js-fadeIn-load.active {
  animation: fadeIn-load 1s forwards;
}

@keyframes fadeIn-load {
  0% {
    opacity: 0;
    transform: translateY(15px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.js-fade {
  opacity: 0;
  /* transform: translateY(30px); */
}

.js-fade.active {
  animation: fadeIn 1s forwards;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    /* transform: translateY(30px); */
  }
  100% {
    opacity: 1;
    /* transform: translateY(0); */
  }
}

.js-u-fade {
  opacity: 0;
  filter: blur(5px);
  transition: opacity 1.2s ease, filter 1.2s ease;
  will-change: opacity, filter;
}
.js-u-fade.active{
    opacity: 1;
    filter: blur(0px);
}

.js-animation-trigger.mainContents__heading {
  transition: all 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.js-animation-trigger.mainContents__heading01 {
  -webkit-clip-path: inset(0 0 100% 0);
          clip-path: inset(0 0 100% 0);
}
.js-animation-trigger.mainContents__heading01 .mainContents__heading--body {
  -webkit-clip-path: inset(0 100% 0 0);
          clip-path: inset(0 100% 0 0);
}

.CE251031AW2nd .s-view {
  display: none;
}
.CE251031AW2nd .css-hover {
  display: block;
  position: relative;
  cursor: pointer;
}
.CE251031AW2nd .css-credit_all {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: block;
}
.CE251031AW2nd .js-hover {
  position: absolute;
  top: 0;
  left: 0;
  background-color: transparent;
  opacity: 0;
  width: calc(100% + 1px);
  height: calc(100% + 1px);
  z-index: 3;
  transition: ease-in, background-color 0.5s, opacity 0.5s;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
}
.CE251031AW2nd .js-hover--active {
  background-color: rgba(96, 96, 96, 0.5); 
  opacity: 1;
}

.CE251031AW2nd .js-hover .css-bk_credit,
.CE251031AW2nd .js-hover .css-credit {
  width: 100%;
  height: fit-content;
  position: relative;
  text-align: center;
  top: calc(468 * var(--formula));
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
}
.CE251031AW2nd .top-space02 {
  margin-top: calc(18*var(--variable)*var(--ratio));
}
.CE251031AW2nd .js-hover .css-bk_credit .css-credit_link,
.CE251031AW2nd .js-hover .css-credit .css-credit_link {
  position: relative;
  z-index: 5;
  display: inline-block;
  font-family: var(--font-futura);
  font-weight: var(--fw-light);
  font-size: calc(18*var(--variable)*var(--ratio));
  line-height: 1;
  letter-spacing: 0.06em;
  text-align: center;
  color: var(--color-white);
  padding: 0 calc(7 * var(--formula)) 0 calc(4 * var(--formula));
}
.CE251031AW2nd .top-space {
  margin-top: calc(14 * var(--formula));
}

/* for SP */
    /*=======================================
                    SP    
  ========================================*/

    /* ===================
	　　 General
=================== */
.header {
  display: block;
}

.btn-search {
  display: none;
}

.htest.open .btn-search {
  display: block;
}

.btn-cart {
  display: none;
}

.htest.open .btn-cart {
  display: block;
}

.header .header-logo img {
  display: none;
  margin: auto;
}

.htest.open .header-logo img {
  display: block;
}

.header .header-logo a {
    /*display: inline-block;*/
    display: block;
}

main {
  padding: 0 !important;
}

.header .btn-menu.open .border::before {
  background: #000;
}

.header .btn-menu.open .border::after {
  background: #000;
}

.header .btn-menu {
  will-change: transform;
  -webkit-transition: ease-in, -webkit-transform 1000ms;
  transition: ease-in, -webkit-transform 1000ms;
  transition: ease-in, transform 1000ms;
  transition: ease-in, transform 1000ms, -webkit-transform 1000ms;
  transform: translate3d(0, -10rem, 0);
}

.header .btn-menu.hide {
  transform: translate3d(0, 0, 0);
}

.header .btn-menu .border {
  width: calc(54 *(100vw / 750));
}

.header .btn-menu .border::before,
.header .btn-menu .border::before {
  width: calc(54 *(100vw / 750));
  top: calc(-20 *(100vw / 750));
}

.header .btn-menu .border::before,
.header .btn-menu .border::after {
  width: calc(54 *(100vw / 750));
  bottom: calc(-20 *(100vw / 750));
}

#breadcrumb .cateList {
  margin: 0 auto !important;
}

.main-area .main-inner {
  width: 100%;
}

#CE251031AW2nd {
  margin: 0 auto;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/* ===================
　　  common
=================== */

.CE251031AW2nd {
  margin: 0 auto 12rem;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-family: "baskerville-display-pt", serif;
  font-weight: 400;
  font-style: italic;
  --color-black: #000000;
  --color-white: #ffffff;
  --color-gray: #6A6A6A;
  --color-red: #C70012;
  overflow: visible;
  scroll-behavior: smooth;
  color: var(--color-red);
  text-align: center;
  position: relative;
}
#wrapper {
  overflow: clip;
  position: relative;
  background-color: #fff;
}
#CE251031AW2nd img {
    width: 100%;
    height: auto;
    image-rendering: -webkit-optimize-contrast;
}

#CE251031AW2nd .sp_only {
  display: block;
}

#CE251031AW2nd .pc_only {
  display: none;
}

/* ▼ -----------可変設定---------- ▼ */
.lp {
  --pc-width: 1200;/*PCデザイン幅*/
  --sp-width: 750;/*SPデザイン幅*/
  --pc-artboard-width: 430;/*SP共通デザイン幅*/
  --sp-artboard-width: 750;/*PC共通デザイン幅*/
  --formula: calc(var(--variable) * var(--ratio)); /*SP→PC 可変設定*/
  --formula_pc: calc(var(--variable) * 1); /*PC 1400以上は固定*/
}

/* PC画面幅 1200px以上 固定 */
@media (min-width: 1200px) {
  .lp {
  --ratio: calc(var(--pc-artboard-width) / var(--sp-artboard-width)); /* PCとSPのデザイン幅の比率 */
  --variable: 1px; /* 固定値（可変しない） */
  }
}

 /* PC画面幅 768～1200px 可変 */
@media (min-width: 768px) and (max-width: 1200px) {
  .lp {
  --ratio: calc(var(--pc-artboard-width) / var(--sp-artboard-width)); /* PCとSPのデザイン幅の比率 */
  --variable: calc(100vw / var(--pc-width)); /* 画面幅に基づく可変値 */
  }
}

 /* SP画面幅 767px以下 可変 */
@media (max-width: 767px) {
  .lp {
  --ratio: 1; /* 比率は1（変わらない） */
  --variable: calc(100vw / var(--sp-width)); /* 画面幅に基づく可変値 */
  }
}
/* ▲ -----------可変設定---------- ▲ */

/*# sourceMappingURL=style.css.map */

/*=======================================
                  PC   
========================================*/
/* ===================
	　　 General
=================== */
/* html {
    font-size: 62.5%;
} */

* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
@media screen and (min-width: 768px) {
#breadcrumb.edit_lp .cateList {
    margin: 0 auto 30px 120px;
}

.header {
    display: none;
}

}
/* ===================
	　　  common
=================== */

@media screen and (min-width: 768px) {
#CE251031AW2nd .sp_only {
    display: none;
}

#CE251031AW2nd .pc_only {
    display: block;
}

}
.price {
    font-family: var(--font-futura);
    font-size: calc(18* var(--formula));
    letter-spacing: 0.02em;
    font-weight: var(--fw-extralight);
    white-space: nowrap;
    line-height: 1.2;
}

#CE251031AW2nd .flex {
    display: flex;
}

.row-reverse {
    flex-direction: row-reverse;
    justify-content: flex-end;
}


/* ===================
	　 firstview
=================== */
#CE251031AW2nd .sticky_top {
  position: sticky;
  /*top: calc(-1650* var(--formula));*/
  top: 0;
}

#CE251031AW2nd .firstview {
  width: calc(750* var(--formula));
  position: relative;
  padding-top: calc(70 * var(--formula));
}

#CE251031AW2nd .main_visual_logo {
  width: calc(507.5 * var(--formula));
  margin: calc(45 * var(--formula)) auto calc(40 * var(--formula));
}

#CE251031AW2nd .main_visual {
  width: 100%;
  margin: 0 auto;
}

#CE251031AW2nd .main_visual_svg01 {
  width: calc(79* var(--formula));
  position: absolute;
  left: calc(35 * var(--formula));
  top: calc(226 * var(--formula));
  z-index: 5;
  pointer-events: none;
}

#mainview a {
    width: 100%;
    height: 100%;
    display: block;
}

/* ===================
	　　 credits
=================== */
.landing-page__credits {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.landing-page__credits-button {
  position: absolute;
  right: calc(20 * var(--formula));
  bottom: calc(20 * var(--formula));
  z-index: 10;
  width: calc(50 * var(--formula));
  height: calc(50 * var(--formula));
  pointer-events: auto;
  cursor: pointer;
}

.landing-page__credits-button::before,
.landing-page__credits-button::after {
  position: absolute;
  content: '';
  background-color: var(--color-red);
}

.landing-page__credits-button::before {
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  margin-block: auto;
}

.landing-page__credits-button::after {
  top: 0;
  right: 0;
  left: 0;
  width: 1px;
  height: 100%;
  margin-inline: auto;
}

.landing-page__credits-list {
  --letter-spacing: 0;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  row-gap: calc(13 * var(--formula));
  justify-content: center;
  /* padding-inline: calc(105 * var(--formula)) calc(120 * var(--formula)); */
  margin-inline: auto;
  pointer-events: auto;
}

.landing-page__credit {
  font-size: calc(24 * var(--formula));
  color: var(--color-red);
}

.animation-switch::after {
  transition: transform 0.6s ease;
}

.animation-switch.is-clicked::after {
  transform: rotate(90deg);
}

.animation-overlay {
  transition: background-color 0.6s ease;
}

.animation-overlay > *:not(.animation-switch) {
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.animation-overlay.is-clicked {
  background-color: rgba(255, 255, 255, 0.7);
}

.animation-overlay.is-clicked > *:not(.animation-switch) {
  visibility: visible;
  opacity: 1;
}

.js-typewriter {
  /* カーソルのスタイル */
  border-right: 2px solid var(--color-red); 
  
  white-space: nowrap; /* テキストを一行に保つ */
  /* overflow: hidden; */
  display: inline-block; /* 幅をテキストに合わせる */

  /* カーソルの点滅アニメーション */
  animation: blink-caret .75s step-end infinite;
}

/* タイピングが完了した後にJSが追加するクラス */
.js-typewriter.typing-done {
  border-right: none; /* カーソルを消す */
  animation: none;      /* 点滅を停止 */
}

/* カーソルの点滅を定義 */
@keyframes blink-caret {
  from, to { border-color: transparent }
  50% { border-color: var(--color-red) }
}

.typewriter01 {
  padding-top: calc(62 * var(--formula));
}
.sec_title {
  font-size: calc(32 * var(--formula));
}
.sec_sub_title {
  font-size: calc(24 * var(--formula));
  margin-top: calc(12 * var(--formula));
}

/* ===================
	　　 section01
=================== */
#sec01 .product_content01{
  width: calc(600* var(--formula));
  position: relative;
  margin: calc(26 * var(--formula)) auto calc(102 * var(--formula));
}

/* ===================
	　　 section02
=================== */
#sec02 .product_content01{
  position: relative;
  width: calc(750* var(--formula));
  margin: 0 auto;
}

/* ===================
	　　 section03
=================== */
#sec03 .product_content01{
  width: calc(750* var(--formula));
  margin: 0 auto;
}
#sec03 .product_content02{
  width: calc(600* var(--formula));
  margin: calc(112 * var(--formula)) auto 0;
}

/* ===================
	　　  section04
=================== */
#sec04 {
  margin: calc(10 * var(--formula)) auto 0;
}

#sec04 .product_content01{
  width: calc(600* var(--formula));
  margin: 0 auto;
  position: relative;
}

#sec04 .product_content01 .typewriter01 {
  width: calc(215 * var(--formula));
  position: absolute;
  bottom: calc(-43 * var(--formula));
  left: calc(-30 * var(--formula));
  z-index: 5;
  pointer-events: none;
}

#sec04 .product_content01 .sec_title {
  font-size: calc(28 * var(--formula));
  margin-top: calc(8 * var(--formula));
}

#sec04 .product_content02{
  width: calc(750* var(--formula));
  margin: calc(114 * var(--formula)) auto 0;
}

/* ===================
	　　 section05
=================== */
#sec05 .product_content01{
  width: calc(750* var(--formula));
  margin: 0 auto;
}

/* ===================
	　　 section06
=================== */
#sec06 .product_content01{
  width: calc(750* var(--formula));
  margin: 0 auto;
}

/* ===================
	　　  section07
=================== */
#sec07 .product_content01{
  width: calc(600* var(--formula));
  margin: calc(112 * var(--formula)) auto 0;
  position: relative;
}
#sec07 .product_content01 .typewriter01{
  width: calc(435 * var(--formula));
  position: absolute;
  top: calc(-20 * var(--formula));
  left: calc(84 * var(--formula));
  z-index: 5;
  pointer-events: none;
}
#sec07 .product_content01 .typewriter02{
  width: calc(330 * var(--formula));
  position: absolute;
  bottom: calc(32 * var(--formula));
  left: calc(138 * var(--formula));
  z-index: 5;
  pointer-events: none;
}
#sec07 .product_content01 .sec_title{
  font-size: calc(28* var(--formula));
}

/* ===================
	　　 section08
=================== */
#sec08 .product_content01{
  width: calc(750* var(--formula));
  margin: calc(114* var(--formula)) auto 0;
}

/* ===================
	　　  section09
=================== */
#sec09 .product_content01{
  width: calc(750* var(--formula));
  margin: 0 auto;
}

/* ===================
	　　 section10
=================== */
#sec10 .product_content01{
  width: calc(750* var(--formula));
  margin: 0 auto;
}

/* ===================
	　　 section11
=================== */
#sec11 .product_content01{
  width: calc(600* var(--formula));
  margin: calc(112 * var(--formula)) auto 0;
}

/* ===================
	　　 section12
=================== */
#sec12 .product_content01{
  width: calc(750* var(--formula));
  margin: calc(112 * var(--formula)) auto 0;
}

/* ===================
	　　  section13
=================== */
#sec13 .product_content01{
  width: calc(750* var(--formula));
  margin: 0 auto;
}

/* ===================
	　　 section14
=================== */
#sec14 .product_content01{
  width: calc(600* var(--formula));
  margin: calc(114 * var(--formula)) auto 0;
  position: relative;
}
#sec14 .product_content01 .typewriter01{
  width: calc(375 * var(--formula));
  position: absolute;
  top: calc(-106 * var(--formula));
  left: calc(-23 * var(--formula));
  z-index: 5;
  pointer-events: none;
}
#sec14 .product_content01 .sec_title{
  font-size: calc(28* var(--formula));
}


/* ===================
	　　 section15
=================== */
#sec15{
  background-color: var(--color-white);
}
#sec15 .product_content01{
  width: calc(750* var(--formula));
  margin: calc(112 * var(--formula)) auto 0;
}
#sec15 .product_content02{
  width: calc(750* var(--formula));
  margin: 0 auto;
  position: relative;
}
#sec15 .product_content02 .typewriter01{
  width: calc(350 * var(--formula));
  position: absolute;
  top: calc(448 * var(--formula));
  left: calc(208 * var(--formula));
  z-index: 5;
}
#sec15 .product_content02 .sec_title:nth-of-type(2){
  font-size: calc(23 * var(--formula));
  margin-top: calc(23 * var(--formula));
}


/* ===================
	　　  staff
=================== */
.staff_contents {
  width: calc(750 * var(--formula));
  margin: 0 auto;
}
.staff_contents .staff_logo {
  width: calc(507* var(--formula));
  margin: 0 auto;
}
.staff_contents .staff_lead {
  font-size: calc(23 * var(--formula));
  text-align: center;
  line-height: 2.1739130435;
  margin-top: calc(135 * var(--formula));
  padding-bottom: calc(85 * var(--formula));
  color: var(--color-black);
}

/* ===================
	　　section16
=================== */
#sec16 {
  margin: 0 auto;
}
#sec16 .product_content01{
  width: 100%;
  display: flex;
  justify-content: space-between;
}
#sec16 .product_content01 .product_content01{
  width: 50%;
}
#sec16 .product_content01 .product_content02{
  width: 50%;
}

/*=======================================
               Responsive   
========================================*/
@media (max-width: 767px) {
  .CE251031AW2nd .sticky-contents-left {
    display: none;
  }
  .CE251031AW2nd .sticky-contents-right {
    display: none;
  }
  .left_txt {
    display: none;
  }
  .right_txt {
    display: none;
  }
  .sp_sticky {
    position: sticky;
    top: calc(-100 * var(--formula));
  }
  .staff_contents {
    position: relative;
    z-index: 70;
    margin: 0 auto;
    padding-top: calc(45 * var(--formula));
    background-color: var(--color-white);
  }
}
@media (min-width: 768px) {
  .CE251031AW2nd .sticky-container {
    display: flex;
  }
  .CE251031AW2nd .sticky-contents-center {
    width: 35.833%;
    display: grid;
    justify-content: center;
    overflow: clip;
  }
  .CE251031AW2nd .sticky-contents-left {
    width: 32.083%;
    height: 100vh;
    position: sticky;
    left: 0px;
    top: 0px;
    display: flex;
    justify-content: center;
  }
  .CE251031AW2nd .sticky-contents-right {
    width: 32.083%;
    height: 100vh;
    position: sticky;
    right: 0px;
    top: 0px;
    display: flex;
    justify-content: center;
  }

  .flex_txt {
    width: 100%;
    display: flex;
    position: sticky;
    top: 50%;
    transform: translateY(-50%);
    z-index: 70;
    justify-content: space-between;
    margin-bottom: calc(1550 * var(--formula));
    pointer-events: none;
  }
  /* .left_txt {
    display: flex;
    position: sticky;
    top: 50%;
    transform: translateY(-50%);
    z-index: 70;
    justify-content: flex-start;
    margin-bottom: calc(1540 * var(--formula));
  } */
  .left_txt .pc_txt_left {
    font-size: calc(14*(100vw / 1200));
    margin-left: calc(60*(100vw / 1200));
  }
  .right_txt {
    /* display: flex;
    position: sticky;
    top: 50%;
    transform: translateY(-50%);
    z-index: 70;
    justify-content: flex-end;
    margin-bottom: calc(1540 * var(--formula)); */
    pointer-events: auto;
  }
  .right_txt .pc_all_btn {
    font-size: calc(14*(100vw / 1200));
    margin-right: calc(60*(100vw / 1200));
  }


  #CE251031AW2nd .firstview {
    width: 100%;
    padding-top: calc(0 * var(--formula));
  }
  #CE251031AW2nd .sec {
    width: calc(750 * var(--formula));
    margin: 0 auto;
  }
  #CE251031AW2nd .main_visual_logo {
    width: calc(320 * var(--formula_pc));
    margin: calc(78 * var(--formula)) auto calc(90 * var(--formula));
  }
  #CE251031AW2nd .main_visual {
    margin: 0 auto;
  }
  #CE251031AW2nd .main_visual_svg01 {
    left: calc(31 * var(--formula));
    top: calc(256 * var(--formula));
  }
  #sec16 .product_content02{
    margin-bottom: calc(86 * var(--formula));
  }

  .sticky-contents-right .right_text_box {
    width: calc(335 * (100vw / 1200));
    position: absolute;
    bottom: calc(86 * var(--formula));
    z-index: 50;
  }
  .sticky-contents-right .pc_logo {
    width: calc(282 * (100vw / 1200));
    margin-left: 0;
  }
  .sticky-contents-right .pc_txt {
    width: 100%;
    margin-top: calc(110 * (100vw / 1200));
  }
  .sticky-contents-right .pc_staff_title {
    width: calc(48 * (100vw / 1200));
    margin-left: 0;
  }
  .sticky-contents-right .staff_lead {
    font-size: calc(11 * (100vw / 1200));
    text-align: left;
    font-weight: var(--fw-light);
    letter-spacing: 0.06em;
    line-height: 2.63;
    margin-top: calc(35 * (100vw / 1200));
  }

  .sticky-center-pc {
    position: sticky;
    top: calc(-11600 * (100vw / 1200));
    padding-bottom: calc(112 * var(--formula));
    background-color: var(--color-white);
  }
  .sticky_bottom {
    position: relative;
    background-color: var(--color-white);
    z-index: 60;
    top: 0;
  }
}

/* .js-view {
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
}

.js-view.inview {
  visibility: visible;
  opacity: 1;
} */
.area-inview {
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
}

.area-inview.inview {
  visibility: visible;
  opacity: 1;
}

.slick-dots li button {
  width: calc(13* var(--variable)* var(--ratio));
  height: calc(13* var(--variable)* var(--ratio));
  border: 1px solid var(--color-gray);
  border-radius: 50%;
  background-color: inherit;
}

.slick-dots li {
  margin: calc(8* var(--variable)* var(--ratio)) 0;
  display: block;
}

.slick-dots li.slick-active button {
  background: var(--color-gray);
}

.slick-dots {
  position: absolute;
  top: calc(12 * var(--variable) * var(--ratio));
  left: calc(20 * var(--variable) * var(--ratio));
}

/* for Tablet */
@media screen and (min-width: 768px) and (max-width: 1280px) {

/*=======================================
              Tablet    
========================================*/

/* ===================
　　 General
=================== */

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

}
@media (min-width: 1281px) {

}