@charset "UTF-8";
/*----------------------------------------------------------------------------

 reset

----------------------------------------------------------------------------*/
body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, fieldset, input, textarea, p, blockquote, th, td {
  margin: 0;
  padding: 0;
}
address, caption, cite, code, dfn, em, strong, th, var {
  font-style: normal;
}
ul, ol {
  list-style-type: none;
}
em, strong, th, address {
  font-style: normal;
  font-weight: normal;
  text-align: left;
}
h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
  font-size: 100%;
}
img,
object,
embed {
  border: 0;
  vertical-align: top;
}
img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}
hr {
  display: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
  font-size: 100%;
}
li {
  list-style-type: none;
}
strong {
  font-weight: bold;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}

/*----------------------------------------------------------------------------

 CSS Custom Properties 

----------------------------------------------------------------------------*/
:root {
  --primary-color: #7D2225;
  --primary-txt-color: var(--primary-color);
  --primary-bg-color: #FFF8F0;
  --white-color: #fff;
  --black-color: #000;
  --gray-color: #C2C1C1;
  --base-width: 1920;
  --section-padding-block: clamp(120px, 180 / var(--base-width) * 100vw, 180px);
  --content-padding-top: 80px;
  --opening-time: 4s;
  --scrollbar-size: 0px;
  --responsive-ratio: 1.0;
}
@media screen and (max-width: 1600px) {
  :root {
    --content-padding-top: max(50px,5vw);
  }
}
@media screen and (max-width: 640px) {
  :root {
    --base-width: 375;
    --section-padding-block: clamp(80px, 80 / var(--base-width) * 100vw, 120px);
    --content-padding-top: 40px;
    --responsive-ratio: 1.35;
  }
}

/*----------------------------------------------------------------------------

 base

----------------------------------------------------------------------------*/
html {
  font-size: 62.5%;
  -webkit-text-size-adjust: 100%;
}
body {
  position: relative;
  padding-top: var(--content-padding-top);
  color: var(--primary-txt-color);
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  line-height: 1;
  font-size: 1.6rem;
  background: var(--white-color);
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
  overflow: hidden;
  /*
  overflow: inherit;
  */
}
body.opening_fin {
  overflow: inherit;
  overflow-x: clip;
}
.sp,
.sp_inline {
  display: none !important;
}
.pc {
  display: block !important;
}
.pc_inline {
  display: inline !important;
}
@media screen and (max-width: 640px) {
  .sp {
    display: block !important;
  }
  .sp_inline {
    display: inline !important;
  }
  .pc,
  .pc_inline {
    display: none !important;
  }
}
.primary_title {
  margin-bottom: calc(150 / 80 * 1em);
  font-size: clamp(5.4rem, (80 / var(--base-width) * 100vw), 8.0rem);
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.05em;
}
.secondary_title {
  margin-bottom: 1em;
  font-size: clamp(2.6rem, (40 / var(--base-width) * 100vw), 4.0rem);
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0.05em;
}
.common_txt {
  margin-bottom: 1.8em;
  font-size: clamp(1.3rem, (20 / var(--base-width) * 100vw), 2.0rem);
  font-weight: 400;
  line-height: 180%;
  letter-spacing: 0.05em;
  text-align: justify;
}
.common_txt.ls_min {
  letter-spacing: 0.025em;
}
.common_txt:last-of-type {
  margin-bottom: 0;
}
p.indent {
  padding-left: 1em;
  text-indent: -1em;
}
p.indent > .indent_icon {
  display: inline-block;
  width: 1em;
  text-indent: 0;
}
@media screen and (max-width: 640px) {
  .primary_title {
    font-size: clamp(3.6rem, (36 / var(--base-width) * 100vw), 3.6rem * var(--responsive-ratio));
  }
  .secondary_title {
    font-size: clamp(2.2rem, (22 / var(--base-width) * 100vw), 2.2rem * var(--responsive-ratio));
  }
  .common_txt {
    font-size: clamp(1.4rem, (14 / var(--base-width) * 100vw), 1.4rem * var(--responsive-ratio));
  }
}
#onetrust-consent-sdk #onetrust-banner-sdk {
  font-family: 'Noto Sans JP', sans-serif;
}

/*----------------------------------------------------------------------------

 fadein

----------------------------------------------------------------------------*/
.fadein {
  opacity : 0;
  filter: blur(5px);
  transform: rotate(0.0001deg);
  transition : opacity 1.4s cubic-bezier(0.33, 1, 0.68, 1), filter 1.4s cubic-bezier(0.33, 1, 0.68, 1);
}
.fadein.scrollin {
  opacity : 1;
  filter: blur(0);
}
@keyframes fadein { /* animation: fadein 1.4s cubic-bezier(0.33, 1, 0.68, 1) both; */
  0% {
    opacity : 0;
    transform: rotate(0.0001deg);
    filter: blur(5px);
  }
  100% {
    opacity : 1;
    transform: rotate(0.0001deg);
    filter: blur(0);
	}
}

.fadein_x,
.fadein_x02 {
  opacity : 0;
  transform : translate3d(-30px, 0, 0) rotate(0.0001deg);
  filter: blur(5px);
  transition : transform 1.4s cubic-bezier(0.33, 1, 0.68, 1), opacity 1.4s cubic-bezier(0.33, 1, 0.68, 1), filter 1.4s cubic-bezier(0.33, 1, 0.68, 1);
}
.fadein_x02 {
  transform : translate3d(-60px, 0, 0) rotate(0.0001deg);
  transition-duration: 2s;
}
.fadein_x.scrollin,
.fadein_x02.scrollin {
  opacity : 1;
  transform : translate3d(0, 0, 0) rotate(0.0001deg);
  filter: blur(0);
}
@keyframes fadein_x { /* animation: fadein_y 1.4s cubic-bezier(0.33, 1, 0.68, 1) both; */
  0% {
    opacity : 0;
    transform : translate3d(-30px, 0, 0) rotate(0.0001deg);
    filter: blur(5px);
  }
  100% {
    opacity : 1;
    transform : translate3d(0, 0, 0) rotate(0.0001deg);
    filter: blur(0);
	}
}

.fadein_y,
.fadein_y02 {
  opacity : 0;
  transform : translate3d(0, 30px, 0) rotate(0.0001deg);
  filter: blur(5px);
  transition : transform 1.4s cubic-bezier(0.33, 1, 0.68, 1), opacity 1.4s cubic-bezier(0.33, 1, 0.68, 1), filter 1.4s cubic-bezier(0.33, 1, 0.68, 1);
}
.fadein_y02 {
  transform : translate3d(0, 60px, 0) rotate(0.0001deg);
  transition-duration: 2s;
}
.fadein_y.scrollin,
.fadein_y02.scrollin {
  opacity : 1;
  transform : translate3d(0, 0, 0) rotate(0.0001deg);
  filter: blur(0);
}
@keyframes fadein_y { /* animation: fadein_y 1.4s cubic-bezier(0.33, 1, 0.68, 1) both; */
  0% {
    opacity : 0;
    transform : translate3d(0, 30px, 0) rotate(0.0001deg);
    filter: blur(5px);
  }
  100% {
    opacity : 1;
    transform : translate3d(0, 0, 0) rotate(0.0001deg);
    filter: blur(0);
	}
}

.scale_down {
  opacity : 0;
  filter: blur(5px);
  transform: scale(1.05) rotate(0.0001deg);
  transition : opacity 1.4s cubic-bezier(0.33, 1, 0.68, 1), transform 1.4s cubic-bezier(0.33, 1, 0.68, 1), filter 1.4s cubic-bezier(0.33, 1, 0.68, 1);
}
.scale_down.scrollin {
  opacity : 1;
  transform: scale(1) rotate(0.0001deg);
  filter: blur(0);
}
@keyframes scale_down { /* animation: scale_down 1.4s cubic-bezier(0.33, 1, 0.68, 1) both; */
  0% {
    opacity : 0;
    transform: scale(1.05) rotate(0.0001deg);
    filter: blur(5px);
  }
  100% {
    opacity : 1;
    transform: scale(1) rotate(0.0001deg);
    filter: blur(0);
	}
}

.scale_up {
  opacity : 0;
  filter: blur(5px);
  transform: scale(0.5) rotate(0.0001deg);
  transition : opacity 1.0s cubic-bezier(0.33, 1, 0.68, 1), transform 1.0s cubic-bezier(0.33, 1, 0.68, 1), filter 1.0s cubic-bezier(0.33, 1, 0.68, 1);
}
.scale_up.scrollin {
  opacity : 1;
  transform: scale(1) rotate(0.0001deg);
  filter: blur(0);
}
@keyframes scale_up { /* animation: scale_up 1.0s cubic-bezier(0.33, 1, 0.68, 1) both; */
  0% {
    opacity : 0;
    transform: scale(0.5) rotate(0.0001deg);
    filter: blur(5px);
  }
  100% {
    opacity : 1;
    transform: scale(1) rotate(0.0001deg);
    filter: blur(0);
	}
}

@keyframes scale_up2 { /* animation: scale_up 1.0s cubic-bezier(0.33, 1, 0.68, 1) both; */
  0% {
    opacity : 0;
    transform: scale(0.5) rotate(0.0001deg);
    filter: blur(5px);
  }
  70% {
    opacity : 1;
    transform: scale(1.1) rotate(0.0001deg);
	}
  100% {
    opacity : 1;
    transform: scale(1) rotate(0.0001deg);
    filter: blur(0);
	}
}

.no_blur {
  filter: blur(0) !important;
}

.fadein_title {
  display: inline-block;
  line-height: 1;
  overflow: hidden;
}
.fadein_title > img {
  opacity: 0;
}
.fadein_title > .slide_txt {
  display: inline-block;
  opacity: 0;
}
.fadein_title.scrollin > img,
.fadein_title.scrollin > .slide_txt {
  animation: 1.0s slide_up cubic-bezier(.2,1,.28,.92) forwards;
}
@keyframes slide_up {
  0% {
      transform: translate3d(0, calc(100% + .25em), 0) rotate(0.0001deg);
      opacity: 0;
  }
  100% {
      transform: translate3d(0, 0, 0) rotate(0.0001deg);
      opacity: 1;
  }
}

.text_wipe_x {
  clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
  transform: translateX(-2.5%);
  transition: clip-path 2.0s cubic-bezier(.2,1,.28,.92) 0.5s, transform 1.5s cubic-bezier(.2,1,.28,.92) 0.5s;
}
.text_wipe_x.scrollin {
  transform: translateX(0);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}
@keyframes text_wipe_x { /* animation: text_wipe_x 2.0s cubic-bezier(.2,1,.28,.92) both; */
  0% {
      transform: translateX(-2.5%) rotate(0.0001deg);
      clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
  }
  100% {
      transform: translateX(0) rotate(0.0001deg);
      clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
}

/*-------------------------------------------------

gide line

--------------------------------------------------*/
body.debug {
  position: relative;
  overflow: inherit !important;
}
body.debug #opening {
  display: none;
}
body.debug::before {
  display: block;
  content: '';
  width: 1px;
  height: 100%;
  position: fixed;
  top: 0;
  left: 50%;
  background: magenta;
  pointer-events: none;
  z-index: 9999;
}
body.debug #onetrust-consent-sdk #onetrust-banner-sdk {
  display: none !important;
}

/*-------------------------------------------------

header

--------------------------------------------------*/
header {
  position: fixed;
  display: flex;
  justify-content: space-between;
  align-items: center;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  padding: 0 30px;
  background: rgba(255,255,255,0);
  line-height: 1;
  z-index: 300;
}
header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: 0 3px 6px rgba(0, 0, 0, .16);
  opacity: 0;
  transition: opacity 0.5s ease-out;
  transition: opacity 0s ease-out;
  pointer-events: none;
}
header.shadow::before {
  opacity: 1;
}
header .seiko_logo img {
  width: 105px;
  height: 34px;
}
header .lukia_store {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
}
header .lukia_logo {
  padding-right: 37px;
  border-right: 2px solid #a4a0a1;
}
header .lukia_logo img {
  width: 46px;
  height: 48px;
}
header .store {
  padding-left: 27px;
}
header .store img {
  width: 32px;
  height: 40px;
}
@media screen and (max-width: 1600px) {
  header {
    height: max(50px,5vw);
    padding: 0 max(15px,1.875vw);
  } 
  header .seiko_logo img {
    width: 6.5625vw;
    height: auto;
  }
  header .lukia_logo img {
    width: 2.875vw;
    height: auto;
  }
  header .store img {
    width: 2vw;
    height: auto;
  }
  header .lukia_logo {
    padding-right: 2.3125vw;
  }
  header .store {
    padding-left: 1.6875vw;
  }
}
@media screen and (max-width: 991px) {
  header .seiko_logo img {
    width: 66px;
    height: 21px;
  }
  header .lukia_logo img {
    width: 29px;
    height: 30px;
  }
  header .store img {
    width: 20px;
    height: 25px;
  }
  header .lukia_logo {
    padding-right: 22px;
  }
  header .store {
    padding-left: 16px;
  }
}
@media screen and (max-width: 640px) {
  header {
    height: 40px;
    padding: 0 15px;
  }
  header .seiko_logo img {
    width: 52px;
    height: 17px;
  }
  header .lukia_logo {
    padding-right: 14px;
  }
  header .lukia_store {
    padding: 6px 0;
  } 
  header .lukia_logo img {
    width: 23px;
    height: 24px;
  }
  header .store {
    padding-left: 15px;
  }
  header .store img {
    width: 16px;
    height: 20px;
  }
}

/*-------------------------------------------------

opening

--------------------------------------------------*/
#opening {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100lvh;
  padding-inline-end: var(--scrollbar-size);
  z-index: 999;
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  transition: clip-path 1.0s cubic-bezier(.8,0,.15,1);
}
#opening.fin {
  padding-inline-end: 0;
  pointer-events: none;
  /*
  clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
  */
  clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
}
#opening.hidden {
  display: none;
}
#opening::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--primary-color);
  /*
  transform: scale(1, 1);
  transform-origin: left top;
  transition: transform 1.0s cubic-bezier(.8,0,.15,1);
  */
}
#opening.fin::before {
  /*
  transform: scale(1, 0);
  */
}
#opening .outer {
  position: relative;
  width: 100%;
  height: 100%;
  /*
  transform: translateY(0);
  transform-origin: left top;
  transition: transform 1.0s cubic-bezier(.8,0,.15,1);
  */
}
#opening.fin .outer {
  /*
  transform: translateY(-100%);
  */
}
#opening .outer .inner {
  position: relative;
  width: 100%;
  height: 100dvh;
}
#opening .opening_cont {
  position: absolute;
  top: 50%;
  left: calc(50% + var(--scrollbar-size));
  transform: translateX(-50%) translateY(-50%);
}
#opening .opening_cont.cont1 {
  width: clamp(140 * 0.75px, 140 / var(--base-width) * 100vw, 140px);
}
#opening .opening_cont.cont2 {
  width: clamp(224 * 0.75px, 224 / var(--base-width) * 100vw, 224px);
}
#opening .opening_cont img {
  width: 100%;
  opacity: 0;
  animation: 4.5s openingCont1Img cubic-bezier(.8,0,.15,1) 0s forwards;
}
#opening .opening_cont.cont2 img {
  animation: 4.5s openingCont2Img cubic-bezier(.8,0,.15,1) 0s forwards;
  animation-delay: 2.75s;
}
@keyframes openingCont1Img {
  0% {
    opacity: 0;
  }
  5% {
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  45% {
    opacity: 1;
  }
  60% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes openingCont2Img {
  0% {
    opacity: 0;
  }
  15% {
    opacity: 1;
  } 
  100% {
    opacity: 1;
  }

}
@media screen and (max-width: 640px) {
  #opening .opening_cont.cont1 {
    width: clamp(76px, 76 / var(--base-width) * 100vw, 76px * var(--responsive-ratio));
  }
  #opening .opening_cont.cont2 {
    width: clamp(122px, 122 / var(--base-width) * 100vw, 122px * var(--responsive-ratio));
  }
}

/* ステータスバー透過防止
.for-status-bars {
  position: fixed;
  top: 0;
  pointer-events: none;
  height: 5px;
  width: 100%;
  background-color: #000;
  mix-blend-mode: lighten;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  transition: clip-path 1.0s cubic-bezier(.8,0,.15,1);
}
#opening.fin .for-status-bars {
  clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
}
*/

/* タブバー透過防止
.for-tab-bars {
  position: fixed;
  bottom: 0;
  pointer-events: none;
  height: 4px;
  width: 100%;
  background-color: #000;
  mix-blend-mode: lighten;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  transition: clip-path 1.0s cubic-bezier(.8,0,.15,1);
}
#opening.fin .for-tab-bars {
  clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
}
*/

/*-------------------------------------------------

main

--------------------------------------------------*/
main.main {
  position: relative;
  background: var(--primary-bg-color);
  overflow-x: clip;
}

/*-------------------------------------------------

store

--------------------------------------------------*/
#store {
  position: fixed;
  bottom: 135px;
  right: 0;
  line-height: 1;
  z-index: 10;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  perspective: 1000;
  pointer-events: none;
}
:root {
  --store_wrap_width: auto;
}
#store .wrap {
  position: relative;
  display: flex;
  align-items: center;
  height: 186px;
  background: rgba(255,255,255,.80);
  box-shadow: 0px 0px 7px 0px rgba(0,0,0,0.2);
  border-radius: 5px 0 0 5px;
  transform: translateX(calc(100% - 46px));
  transition: transform .1s ease-in-out, box-shadow .1s ease-in-out;
  will-change: transform;
  cursor: pointer;
  pointer-events: auto;
}
body:not(.tablet):not(.mobile) #store .wrap:hover,
body.tablet #store .wrap.open,
body.mobile #store .wrap.open {
  transform: translateX(0%);
  transition: transform .1s ease-in-out .1s, box-shadow .1s ease-in-out .1s;
}

/* 展開なし */
/*
body:not(.tablet):not(.mobile) #store .wrap {
  transition: background .2s ease-in-out, box-shadow .1s ease-in-out;
}
body:not(.tablet):not(.mobile) #store .wrap:hover {
  background: rgba(255,255,255,1);
  background: rgba(246,246,246,1);
  box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.3);
  transition: background .2s ease-in-out .1s, box-shadow .1s ease-in-out .1s;
}
*/

body #store .wrap > a {
  display: block;
  width: 100%;
  height: 100%;
}
#store .ttl {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 100%;
  text-align: center;
  letter-spacing: .05em;
}
#store .ttl a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
#store .ttl img {
  width: 16px;
  height: 115px;
}
#store .btns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  /*
  grid-auto-flow: column;
  */
  gap: 20px 10px;
  padding: 0 30px 0 20px;
}
#store .btns a {
  position: relative;
  display: inline-block;
  min-width: 7.8em;
  padding: 0.2em 1.666em 0.2em 1em;
  color: #000;
  font-size: 1.8rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  letter-spacing: .05em;
  text-decoration: none;
  text-align: center;
  line-height: 1.666em;
  transition: all .1s ease-in-out;
  background: transparent;
}
#store .btns a::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 1em;
  width: .35em;
  height: .35em;
  border-top: 1px solid var(--primary-bg-color);
  border-right: 1px solid var(--primary-bg-color);
  border-color: var(--primary-color);
  transform: translateY(-50%) rotate(45deg);
  transition: all .1s ease-in-out;
}
@media (hover: hover) and (pointer: fine) {
  #store .btns a:hover {
    color: #fff;
    background: var(--primary-color);
    transition: all .1s ease-in-out .1s;
  }
  #store .btns a:hover::after {
    border-color: #fff;
    transition: all .1s ease-in-out .1s;
  }
}
@media screen and (max-width: 1600px) {
  #store {
    bottom: 8.4375vw;
  }
  #store .wrap {
    height: max(120px,11.625vw);
    transform: translateX(calc(100% - min(2.875vw,46px)));
  }
  #store .ttl {
    width: max(28px,2.875vw);
  }
  #store .ttl img {
    width: 1vw;
    height: auto;
  } 
  #store .btns a {
    font-size: max(1.125vw,1.2rem);
  }
}
@media screen and (max-width: 991px) {
  #store {
    bottom: 83px;
  }
  #store .wrap {
    height: 120px;
    transform: translateX(calc(100% - 28px));
  }
  #store .ttl img {
    width: 10px;
    height: 71px;
  } 
}
@media screen and (max-width: 640px) {
  #store {
    top: auto;
    bottom: 70px;
  }
  #store .wrap {
    height: 100px;
    transform: translateX(calc(100% - 27px));
  }
  #store .btns {
    gap: 15px 5px;
    padding: 0 15px 0 10px;
  }
  #store .ttl {
    width: 27px;
  }
  #store .ttl img {
    width: 11px;
    height: 79px;
  }
  #store .btns a {
    font-size: 1.2rem;
  }
}
body.tablet #store .wrap,
body.mobile #store .wrap {
  transition-duration: .2s;
}
body.tablet #store .wrap.open,
body.mobile #store .wrap.open {
  transition-duration: .2s;
}

/*-------------------------------------------------

 kv

--------------------------------------------------*/
#kv {
  position: relative;
  overflow: hidden;
  background-color: var(--white-color);
}
#kv .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /*
  transform: translate3d(0, var(--applyParallax), 0);
  will-change: transform;
  */
}
#kv .bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
}
#kv.start .bg img {
  animation: scale_down 2.0s cubic-bezier(0.33, 1, 0.68, 1) both;
}
#kv .frame {
  position: absolute;
  top: 50%;
  left: 50%;
  width: calc(1888 / var(--base-width) * 100%);
  aspect-ratio: 1888 / 935;
  transform: translate(-50%, -50%);
}
#kv .frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
#kv .outer {
	position: relative;
	width: 100%;
	aspect-ratio: 1920 / 967;
}
#kv .inner {
	position: relative;
  width: 100%;
  height: 100%;
  container-type: inline-size;
}
#kv .inner .txt_block {
  position: absolute;
  top: calc(250 / var(--base-width) * 100cqi);
  left: calc(123 / var(--base-width) * 100cqi);
}
#kv .inner .txt_block .main_title {
  position: relative;
  width: calc(var(--main_title_width) / var(--base-width) * 100cqi);
  container-type: inline-size;
  z-index: 2;
  background-color: #fff;
  --main_title_width: 337;
}
#kv .inner .txt_block .main_title span {
  display: inline-block;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
#kv .inner .txt_block .main_title span img {
  opacity: 0;
}
#kv.start .inner .txt_block .main_title span img {
  animation: fadein 1.0s cubic-bezier(0.33, 1, 0.68, 1) both;
}
#kv .inner .txt_block .main_title span.hc {
  top: 0;
  width: calc(337 / var(--main_title_width)  * 100cqi);
  aspect-ratio: 337 / 76;
}
#kv.start .inner .txt_block .main_title span.hc img {
  animation-delay: 0.5s;
}
#kv .inner .txt_block .main_title span.mw {
  top: calc(85 / var(--main_title_width)  * 100cqi);
  width: calc(171 / var(--main_title_width)  * 100cqi);
  aspect-ratio: 171 / 60;
}
#kv.start .inner .txt_block .main_title span.mw img {
  animation-delay: 1.0s;
}
#kv .inner .txt_block .main_title span.lf {
  top: calc(135 / var(--main_title_width)  * 100cqi);
  width: calc(305 / var(--main_title_width)  * 100cqi);
  aspect-ratio: 305 / 193;
}
#kv.start .inner .txt_block .main_title span.lf img {
  animation: scale_down 2.0s cubic-bezier(0.33, 1, 0.68, 1) both;
  animation-delay: 1.5s;
}
#kv .inner .txt_block .main_title span.le {
  top: calc(335 / var(--main_title_width)  * 100cqi);
  width: calc(302 / var(--main_title_width)  * 100cqi);
  aspect-ratio: 302 / 68;
}
#kv.start .inner .txt_block .main_title span.le img {
  animation-delay: 2.0s;
}
@media screen and (max-width: 640px) {
  #kv {
    overflow-x: clip;
  }
  #kv .frame {
    width: calc(360 / var(--base-width) * 100%);
    aspect-ratio: 360 / 635;
  }
  #kv .outer {
    aspect-ratio: 375 / 652;
  }
  #kv .inner .txt_block {
    position: absolute;
    top: calc(38 / var(--base-width) * 100cqi);
    left: calc(48 / var(--base-width) * 100cqi);
  }
  #kv .inner .txt_block .main_title {
    --main_title_width: 136;
  }
  #kv .inner .txt_block .main_title span {
    font-size: 10px;
  }
  #kv .inner .txt_block .main_title span.hc {
    width: calc(136 / var(--main_title_width)  * 100cqi);
    aspect-ratio: 268 / 34;
  }
  #kv .inner .txt_block .main_title span.mw {
    top: calc(40 / var(--main_title_width)  * 100cqi);
    width: calc(70 / var(--main_title_width)  * 100cqi);
    aspect-ratio: 140 / 22;
  }
  #kv .inner .txt_block .main_title span.lf {
    top: calc(63 / var(--main_title_width)  * 100cqi);
    width: calc(113 / var(--main_title_width)  * 100cqi);
    aspect-ratio: 226 / 130;
  }
  #kv .inner .txt_block .main_title span.le {
    top: calc(142 / var(--main_title_width)  * 100cqi);
    width: calc(118 / var(--main_title_width)  * 100cqi);
    aspect-ratio: 236 / 26;
  }
}

/*-------------------------------------------------

wrapper

--------------------------------------------------*/
.main > .wrapper {
  position: relative;
  overflow-x: clip;
}

/*-------------------------------------------------

lead

--------------------------------------------------*/
#lead {
  position: relative;
  padding-block: calc(380 / var(--base-width) * 100vw);
}
#lead .outer {
  position: relative;
}
#lead .inner {
  position: relative;
}
#lead .txt_box p.txt {
  position: relative;
  margin-bottom: 1.5em;
  font-size: clamp(1.6rem, (24 / var(--base-width) * 100vw), 2.4rem);
  line-height: 240%;
  letter-spacing: 0.05em;
  text-align: center;
}
#lead .txt_box p.txt:last-of-type {
  margin-bottom: 0;
}
#lead > .flower_object_block.object_block1,
#lead > .flower_object_block.object_block2 {
  width: calc(200 / var(--base-width) * 100vw);
  height: calc(840 / var(--base-width) * 100vw);
  top: 50%;
  left: calc(50 / var(--base-width) * 100vw);
  transform: translateY(-50%);
}
#lead > .flower_object_block.object_block1 .object,
#lead > .flower_object_block.object_block2 .object {
  position: absolute;
  width: calc(50 / 200 * 100%);
}
#lead > .flower_object_block.object_block1 .object img,
#lead > .flower_object_block.object_block2 .object img,
#lead > .flower_object_block.object_block1 .object svg,
#lead > .flower_object_block.object_block2 .object svg {
  opacity: 0;
}
#lead > .flower_object_block.object_block1 .object.scrollin img,
#lead > .flower_object_block.object_block2 .object.scrollin img,
#lead > .flower_object_block.object_block1 .object.scrollin svg,
#lead > .flower_object_block.object_block2 .object.scrollin svg {
  animation: scale_up2 0.5s cubic-bezier(0.33, 1, 0.68, 1) both;
}
#lead > .flower_object_block.object_block1 .object svg path,
#lead > .flower_object_block.object_block2 .object svg path {
  stroke: var(--primary-color);
  stroke-width: 1.0;
  stroke-linejoin: round;
}
#lead > .flower_object_block.object_block1 .object.object1 {
  top: 0;
  right: 0;
}
#lead > .flower_object_block.object_block1 .object.object2 {
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
#lead > .flower_object_block.object_block1 .object.object3 {
  bottom: 0;
  right: 0;
}
#lead > .flower_object_block.object_block2 {
  left: auto;
  right: calc(50 / var(--base-width) * 100vw);
}
#lead > .flower_object_block.object_block2 .object.object1 {
  top: 0;
  right: auto;
  left: 0;
}
#lead > .flower_object_block.object_block2 .object.object2 {
  top: 50%;
  left: auto;
  right: 0;
  transform: translateY(-50%);
}
#lead > .flower_object_block.object_block2 .object.object3 {
  bottom: 0;
  right: auto;
  left: 0;
}
#lead > .flower_object_block.object_block3 {
  width: calc(218 / var(--base-width) * 100vw);
  aspect-ratio: 218 / 195;
  top: calc(200 / var(--base-width) * 100vw);
  left: calc(280 / var(--base-width) * 100vw);
}
#lead > .flower_object_block.object_block3 .object.object1 {
  position: absolute;
  width: calc(105 / 218 * 100%);
  aspect-ratio: 105 / 160;
  left: 0;
  bottom: 0;
}
#lead > .flower_object_block.object_block3 .object.object2 {
  position: absolute;
  width: calc(70 / 218 * 100%);
  aspect-ratio: 70 / 110;
  top: 0;
  right: 0;
}
#lead > .flower_object_block.object_block3 .object.object2 svg path {
  stroke: var(--primary-color);
  stroke-width: 0.8;
  stroke-linejoin: round;
}
#lead > .flower_object_block.object_block3 .object.object2 .flower_type2_stem {
  animation-delay: 0.15s;
}
#lead > .flower_object_block.object_block3 .object.object2 .flower_type2_leaf {
  animation-delay: 0.30s;
}
#lead > .flower_object_block.object_block3 .object.object2 .flower_type2_flower {
  animation-delay: 0.45s;
}
#lead > .flower_object_block.object_block4 {
  width: calc(220 / var(--base-width) * 100vw);
  aspect-ratio: 220 / 198;
  top: calc(200 / var(--base-width) * 100vw);
  right: calc(280 / var(--base-width) * 100vw);
}
#lead > .flower_object_block.object_block4 .object.object1 {
  position: absolute;
  width: calc(130 / 220 * 100%);
  top: 0;
  left: 0;
}
#lead > .flower_object_block.object_block4 .object.object2 {
  position: absolute;
  width: calc(70 / 220 * 100%);
  right: 0;
  bottom: 0;
}
#lead > .flower_object_block.object_block4 .object.object2 svg path {
  stroke: var(--primary-color);
  stroke-width: 1.2;
  stroke-linejoin: round;
}
#lead > .flower_object_block.object_block4 .object.object2 .flower_type3_stem {
  animation-delay: 0.15s;
}
#lead > .flower_object_block.object_block4 .object.object2 .flower_type3_leaf {
  animation-delay: 0.30s;
}
#lead > .flower_object_block.object_block4 .object.object2 .flower_type3_flower {
  animation-delay: 0.45s;
}
#lead > .flower_object_block.object_block5 {
  width: calc(220 / var(--base-width) * 100vw);
  aspect-ratio: 220 / 198;
  bottom: calc(200 / var(--base-width) * 100vw);
  left: calc(280 / var(--base-width) * 100vw);
}
#lead > .flower_object_block.object_block5 .object.object1 {
  position: absolute;
  width: calc(110 / 220 * 100%);
  top: 0;
  left: 0;
}
#lead > .flower_object_block.object_block5 .object.object2 {
  position: absolute;
  width: calc(70 / 220 * 100%);
  right: 0;
  bottom: 0;
}
#lead > .flower_object_block.object_block5 .object.object2 svg path {
  stroke: var(--primary-color);
  stroke-width: 1.0;
  stroke-linejoin: round;
}
#lead > .flower_object_block.object_block5 .object .flower_type4_leaf {
  animation-duration: 0.20s;
}
#lead > .flower_object_block.object_block5 .object .flower_type4_stem1,
#lead > .flower_object_block.object_block5 .object .flower_type4_stem2,
#lead > .flower_object_block.object_block5 .object .flower_type4_stem3 {
  animation-duration: 0.10s;
}
#lead > .flower_object_block.object_block5 .object .flower_type4_flower {
  animation-duration: 0.30s;
}
#lead > .flower_object_block.object_block5 .object.object2 .flower_type4_leaf {
  animation-delay: 0.10s;
}
#lead > .flower_object_block.object_block5 .object.object2 .flower_type4_stem1 {
  animation-delay: 0.20s;
}
#lead > .flower_object_block.object_block5 .object.object2 .flower_type4_stem2 {
  animation-delay: 0.30s;
}
#lead > .flower_object_block.object_block5 .object.object2 .flower_type4_stem3 {
  animation-delay: 0.40s;
}
#lead > .flower_object_block.object_block5 .object.object2 .flower_type4_flower {
  animation-delay: 0.50s;
}
#lead > .flower_object_block.object_block6 {
  width: calc(220 / var(--base-width) * 100vw);
  aspect-ratio: 220 / 198;
  bottom: calc(200 / var(--base-width) * 100vw);
  right: calc(280 / var(--base-width) * 100vw);
}
#lead > .flower_object_block.object_block6 .object.object1 {
  position: absolute;
  width: calc(110 / 220 * 100%);
  bottom: 0;
  left: 0;
}
#lead > .flower_object_block.object_block6 .object.object2 {
  position: absolute;
  width: calc(70 / 220 * 100%);
  top: 0;right: 0;
}
#lead > .flower_object_block.object_block6 .object.object2 svg path {
  stroke: var(--primary-color);
  stroke-width: 1.2;
  stroke-linejoin: round;
}
#lead > .flower_object_block.object_block6 .object.object2 .flower_type5_leaf {
  animation-delay: 0.15s;
}
#lead > .flower_object_block.object_block6 .object.object2 .flower_type5_flower {
  animation-delay: 0.30s;
}
@media screen and (max-width: 991px) {
  #lead > .flower_object_block.object_block1,
  #lead > .flower_object_block.object_block2 {
    width: calc(200 / var(--base-width) * 100vw);
    height: calc(980 / var(--base-width) * 100vw);
  }
  #lead > .flower_object_block.object_block1 .object,
  #lead > .flower_object_block.object_block2 .object {
    width: calc(60 / 200 * 100%);
  }
  #lead .txt_box p.txt:last-of-type {
    margin-bottom: 1.5em;
  }
}
@media screen and (max-width: 767px) {
  #lead > .flower_object_block.object_block1,
  #lead > .flower_object_block.object_block2 {
    width: calc(180 / var(--base-width) * 100vw);
    height: calc(1100 / var(--base-width) * 100vw);
  }
  #lead > .flower_object_block.object_block3,
  #lead > .flower_object_block.object_block4,
  #lead > .flower_object_block.object_block5,
  #lead > .flower_object_block.object_block6 {
    width: calc(180 / var(--base-width) * 100vw);
  }
}
@media screen and (max-width: 640px) {
  #lead {
    width: min(var(--lead-width) / var(--base-width) * 100vw, 400px);
    margin-block: min(80 / var(--base-width) * 100vw, 102px);
    margin-inline: auto;
    padding: 0;
    aspect-ratio: 375 / 594;
    container-type: inline-size;
    --lead-width: 314;
  }
  #lead .outer {
    position: relative;
    padding: calc(175 / var(--lead-width) * 100cqi) 0;
  }
  #lead > .flower_object_block.object_block1,
  #lead > .flower_object_block.object_block2 {
    display: flex;
    justify-content: space-between;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: calc(240 / var(--lead-width) * 100cqi);
    height: calc(24 / var(--lead-width) * 100cqi);
  }
  #lead > .flower_object_block.object_block2 {
    top: auto;
    bottom: 0;
  }
  #lead > .flower_object_block.object_block1 .object,
  #lead > .flower_object_block.object_block2 .object {
    position: relative;
    width: calc(24 / var(--lead-width) * 100cqi);
  }
  #lead > .flower_object_block.object_block1 .object svg path,
  #lead > .flower_object_block.object_block2 .object svg path {
    stroke-width: 1.5;
  }
  #lead > .flower_object_block.object_block3 {
    width: calc(96 / var(--lead-width) * 100cqi);
    aspect-ratio: 96 / 90;
    top: calc(53 / var(--lead-width) * 100cqi);
    left: 0;
    right: auto;
  }
  #lead > .flower_object_block.object_block3 .object.object1 {
    width: calc(46 / 96 * 100%);
  }
  #lead > .flower_object_block.object_block3 .object.object2 {
    width: calc(32 / 96 * 100%);
  }
  #lead > .flower_object_block.object_block4 {
    width: calc(96 / var(--lead-width) * 100cqi);
    aspect-ratio: 96 / 90;
    top: calc(53 / var(--lead-width) * 100cqi);
    right: 0;
  }
  #lead > .flower_object_block.object_block4 .object.object1 {
    width: calc(58 / 96 * 100%);
  }
  #lead > .flower_object_block.object_block4 .object.object2 {
    width: calc(31 / 96 * 100%);
  }
  #lead > .flower_object_block.object_block5 {
    width: calc(96 / var(--lead-width) * 100cqi);
    aspect-ratio: 96 / 90;
    bottom: calc(53 / var(--lead-width) * 100cqi);
    left: 0;
  }
  #lead > .flower_object_block.object_block5 .object.object1 {
    width: calc(49 / 96 * 100%);
  }
  #lead > .flower_object_block.object_block5 .object.object2 {
    width: calc(32 / 96 * 100%);
  }
  #lead > .flower_object_block.object_block6 {
    width: calc(96 / var(--lead-width) * 100cqi);
    aspect-ratio: 96 / 90;
    bottom: calc(53 / var(--lead-width) * 100cqi);
    right: 0;
  }
  #lead > .flower_object_block.object_block6 .object.object1 {
    width: calc(47 / 96 * 100%);
  }
  #lead > .flower_object_block.object_block6 .object.object2 {
    width: calc(33 / 96 * 100%);
  }
  #lead .txt_box p.txt {
    font-size: calc(14 / var(--lead-width) * 100cqi);
  }
  #lead .txt_box p.txt:last-of-type {
    margin-bottom: 0;
  }  
}

/*-------------------------------------------------

about_libertyfabric

--------------------------------------------------*/
#about_libertyfabric {
  position: relative;
  padding-block: var(--section-padding-block);
  color: var(--primary-bg-color);
  background-color: var(--primary-color);
}
#about_libertyfabric .outer {
  position: relative;
}
#about_libertyfabric .main_title {
  margin-bottom: clamp(100px, 150 / var(--base-width) * 100vw, 150px);
  text-align: center;
  line-height: 1;
}
#about_libertyfabric .main_title .main_txt {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  margin-top: 0.35em;
  font-size: clamp(3.3rem, (50 / var(--base-width) * 100vw), 5.0rem);
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  line-height: 1;
}
#about_libertyfabric .main_title .main_txt .object {
  width: calc(40 / 50 * 1em);
  transform: translateY(5%);
  opacity: 0;
}
#about_libertyfabric .main_title .main_txt.scrollin .object {
  animation: scale_up 1.0s cubic-bezier(0.33, 1, 0.68, 1) both;
}
#about_libertyfabric .main_title .main_txt .txt {
  display: inline-block;
  opacity: 0;
}
#about_libertyfabric .main_title .main_txt.scrollin .txt {
  animation: fadein 1.5s cubic-bezier(0.33, 1, 0.68, 1) both;
  animation-delay: 0.5s;
}
#about_libertyfabric .inner {
  position: relative;
  display: flex;
  justify-content: space-between;
  width: calc(var(--about_libertyfabric_inner) / var(--base-width) * 100vw);
  margin-inline: auto;
  container-type: inline-size;
  --about_libertyfabric_inner: 1500;
}
#about_libertyfabric .inner .img_block {
  width: calc(762 / var(--about_libertyfabric_inner) * 100cqi);
}
#about_libertyfabric .inner .img_block .img {
  position: relative;
  width: calc(762 / var(--about_libertyfabric_inner) * 100cqi);
  aspect-ratio: 762 / 552;
}
#about_libertyfabric .inner .img_block .img .frame {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#about_libertyfabric .inner .img_block .img .frame img {
  opacity: 0;
}
#about_libertyfabric .inner .img_block .img.scrollin .frame img {
  animation: fadein 1.4s cubic-bezier(0.33, 1, 0.68, 1) both;
}
#about_libertyfabric .inner .img_block .img {
  position: relative;
  display: grid;
  width: 100%;
}
#about_libertyfabric .inner .img_block .img .img_wrap {
  align-self: center;
  justify-self: center;
  width: calc(700 / 762 * 100%);
  border-radius: 20px;
  overflow: hidden;
}
#about_libertyfabric .inner .img_block .img .img_wrap img {
  opacity: 0;
}
#about_libertyfabric .inner .img_block .img.scrollin .img_wrap img {
  animation: scale_down 1.4s cubic-bezier(0.33, 1, 0.68, 1) both;
  animation-delay: 0.4s;
}
#about_libertyfabric .inner .txt_block {
  width: calc(610 / var(--about_libertyfabric_inner) * 100cqi);
  padding-top: calc(20 / var(--about_libertyfabric_inner) * 100cqi);
}
@media screen and (max-width: 640px) {
  #about_libertyfabric .main_title {
    margin-bottom: clamp(50px, 50 / var(--base-width) * 100vw, 50px * var(--responsive-ratio));
    text-align: center;
    line-height: 1;
  }
  #about_libertyfabric .main_title .main_txt {
    display: inline-flex;
    align-items: center;
    gap: 0.5em;
    margin-top: 0.5em;
    font-size: clamp(2.0rem, (20 / var(--base-width) * 100vw), 2.0rem * var(--responsive-ratio));
  }
  #about_libertyfabric .inner {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: calc(40 / var(--about_libertyfabric_inner) * 100cqi);
    width: clamp(var(--about_libertyfabric_inner) * 1px, var(--about_libertyfabric_inner) / var(--base-width) * 100vw, var(--about_libertyfabric_inner) * var(--responsive-ratio) * 1px);
    margin-inline: auto;
    --about_libertyfabric_inner: 310;
  }
  #about_libertyfabric .inner .img_block {
    width: 100%;
  }
  #about_libertyfabric .inner .img_block .img .img_wrap {
    border-radius: 6px;
  }
  #about_libertyfabric .inner .txt_block {
    width: calc(290 / var(--about_libertyfabric_inner) * 100cqi);
    padding-top: 0;
  }
}

/*-------------------------------------------------

design

--------------------------------------------------*/
#design {
  position: relative;
  padding-block: var(--section-padding-block);
  z-index: 1;
}
#design .main_title {
  position: relative;
  text-align: center;
  line-height: 1.2;
}
#design .design_block {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: calc(var(--design_design_block) / var(--base-width) * 100vw);
  margin-inline: auto;
  margin-bottom: clamp(180px, 280 / var(--base-width) * 100vw, 280px);
  container-type: inline-size;
  --design_design_block: 1500;
}
#design .design_block.design_SSQW104 {
  flex-direction: row-reverse;
  margin-bottom: 0;
}
#design .design_block .txt_block {
  position: relative;
  width: calc(540 / var(--design_design_block) * 100cqi);
  margin-right: calc(90 / var(--design_design_block) * 100cqi);
  container-type: inline-size;
}
#design .design_block.design_SSQW104 .txt_block {
  margin-right: 0;
  margin-left: calc(90 / var(--design_design_block) * 100cqi);
}
#design .design_block .txt_block .serial {
  display: flex !important;
  align-items: center;
  gap: calc(20 / 40 * 1em);
}
#design .design_block .txt_block .serial .object {
  width: calc(35 / 40 * 1em);
}
#design .design_block .txt_block .serial.scrollin .object {
  animation: scale_up 1.0s cubic-bezier(0.33, 1, 0.68, 1) both;
}
#design .design_block.design_SSQW103 .txt_block .img {
  position: relative;
  margin-top: calc(40 / 540 * 100cqi);
}
#design .design_block .txt_block .img {
  margin-top: calc(50 / 540 * 100cqi) !important;
}
#design .design_block .txt_block .img a {
  position: relative;
  display: block;
  background-color: var(--primary-bg-color);
  border-radius: 10px;
  overflow: hidden;
}
#design .design_block .txt_block .img a > img {
  opacity: 1;
  transition: opacity .3s cubic-bezier(0.33, 1, 0.68, 1);
}
@media (hover: hover) {
  #design .design_block .txt_block .img a:hover > img {
    opacity: 0.75;
  }
}
#design .design_block .txt_block .img a .icon {
  display: block;
  position: absolute;
  right: calc(20 / 540 * 100cqi);
  bottom: calc(20 / 540 * 100cqi);
  width: calc(50 / 540 * 100cqi);
  aspect-ratio: 1 / 1;
}
#design .design_block.design_SSQW103 .txt_block .flower_object_block {
  align-items: flex-end;
  justify-content: space-between;
  width: calc(200 / 540 * 100cqi);
  bottom: calc(-183 / 540 * 100cqi);
  right: calc(-180 / 540 * 100cqi);
}
#design .design_block.design_SSQW103 .txt_block .flower_object_block .object1 {
  width: calc(70 / 200 * 100%);
}
#design .design_block.design_SSQW103 .txt_block .flower_object_block .object2 {
  width: calc(100 / 200 * 100%);
}
#design .design_block.design_SSQW103 .txt_block .flower_object_block .object1 svg path {
  stroke: var(--primary-color);
  stroke-width: 1.0;
  stroke-linejoin: round;
}
#design .design_block.design_SSQW103 .txt_block .flower_object_block .object2 .flower_type4_leaf {
  animation-delay: 0.15s;
}
#design .design_block.design_SSQW103 .txt_block .flower_object_block .object2 .flower_type4_stem1 {
  animation-delay: 0.30s;
}
#design .design_block.design_SSQW103 .txt_block .flower_object_block .object2 .flower_type4_stem2 {
  animation-delay: 0.45s;
}
#design .design_block.design_SSQW103 .txt_block .flower_object_block .object2 .flower_type4_stem3 {
  animation-delay: 0.60s;
}
#design .design_block.design_SSQW103 .txt_block .flower_object_block .object2 .flower_type4_flower {
  animation-delay: 0.75s;
}

#design .design_block.design_SSQW104 .txt_block .flower_object_block {
  align-items: flex-end;
  justify-content: space-between;
  width: calc(180 / 540 * 100cqi);
  bottom: calc(-176 / 540 * 100cqi);
  left: calc(-180 / 540 * 100cqi);
}
#design .design_block.design_SSQW104 .txt_block .flower_object_block .object1 {
  width: calc(90 / 180 * 100%);
}
#design .design_block.design_SSQW104 .txt_block .flower_object_block .object2 {
  width: calc(60 / 180 * 100%);
}
#design .design_block.design_SSQW104 .txt_block .flower_object_block .object2 svg path {
  stroke: var(--primary-color);
  stroke-width: 0.8;
  stroke-linejoin: round;
}
#design .design_block.design_SSQW104 .txt_block .flower_object_block .object2 .flower_type2_stem {
  animation-delay: 0.25s;
}
#design .design_block.design_SSQW104 .txt_block .flower_object_block .object2 .flower_type2_leaf {
  animation-delay: 0.5s;
}
#design .design_block.design_SSQW104 .txt_block .flower_object_block .object2 .flower_type2_flower {
  animation-delay: 0.75s;
}
#design .design_block .txt_block .img a > img {

}
#design .img_block {
  position: relative;
  width: calc(745 / var(--design_design_block) * 100cqi);
}
#design .img_block .img {
  position: relative;
  display: grid;
  width: 100%;
  aspect-ratio: 1 / 1;
}
#design .img_block .img .img_wrap {
  position: relative;
  align-self: center;
  justify-self: center;
  width: calc(700 / 745 * 100%);
  border-radius: 20px;
  overflow: hidden;
}
#design .img_block .img .img_wrap > img {
  opacity: 0;
}
#design .img_block .img.scrollin .img_wrap > img {
  animation: scale_down 1.4s cubic-bezier(0.33, 1, 0.68, 1) both;
  animation-delay: 0.4s;
}
#design .img_block .img .frame {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#design .img_block .img .frame img {
  opacity: 0;
}
#design .img_block .img.scrollin .frame img {
  animation: fadein 1.4s cubic-bezier(0.33, 1, 0.68, 1) both;
}
#design .img_block .img .watch {
  position: absolute;
  display: grid;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#design .img_block .img .watch > img {
  align-self: center;
  justify-self: center;
  width: calc(300 / 745 * 100%);
  opacity: 0;
}
#design .img_block .img.scrollin .img_wrap .watch > img {
  animation: scale_down 1.4s cubic-bezier(0.33, 1, 0.68, 1) both;
  animation-delay: 0.8s;
}
body.modal_open {
  padding-right: var(--scrollbar-size);
  overflow: hidden;
}
#design_modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  min-height: 100lvh;
  visibility: hidden;
  opacity: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  z-index: 9999;
  pointer-events: none;
  transition: visibility .5s ease-out .5s, opacity .5s ease-out .5s;
}
#design_modal.show {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transition: visibility .5s ease-out, opacity .5s ease-out;
}
#design_modal .modal_bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,.85);
}
#design_modal .close_btn {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 42px;
  height: 42px;
  cursor: pointer;
  z-index: 2;
}
#design_modal .close_btn span {
  position: absolute;
  top: 20px;
  left: 0;
  width: 42px;
  height: 2px;
  background: var(--primary-color);
  transform: rotate(45deg);
}
#design_modal .close_btn span:nth-child(2) {
  transform: rotate(-45deg);
}
#design_modal .wrap {
  position: relative;
  display: grid;
  place-content: center;
  width: 100%;
  height: 100dvh;
  opacity: 0;
  transition: opacity .5s ease-out 0.15s;
  pointer-events: none;
}
#design_modal.show .wrap {
  opacity: 1;
  transition: opacity .5s ease-out .35s;
}
#design_modal .wrap .modal_img {
  max-width: 75vw;
  max-height: 75dvh;
  width: auto;
  height: auto;
  border-radius: 20px;
  pointer-events: auto;
}
@media screen and (max-width: 640px) {
  #design {
    padding-bottom: clamp(50px, 50 / var(--base-width) * 100vw, 50px * var(--responsive-ratio));
  }
  #design .main_title {
    margin-bottom: clamp(120px, 120 / var(--base-width) * 100vw, 120px * var(--responsive-ratio));
  }
  #design .design_block {
    flex-direction: column !important;
    justify-content: center;
    align-items: center;
    gap: 0;
    width: clamp(var(--design_design_block) * 1px, var(--design_design_block) / var(--base-width) * 100vw, var(--design_design_block) * var(--responsive-ratio) * 1px);
    margin-inline: auto;
    margin-bottom: clamp(100px, 100 / var(--base-width) * 100vw, 100px * var(--responsive-ratio));
    --design_design_block: 310;
  }
  #design .design_block.design_SSQW103 {
    margin-bottom: clamp(120px, 120 / var(--base-width) * 100vw, 120px * var(--responsive-ratio));
  }
  #design .img_block {
    width: 100%;
  }
  #design .img_block .img .img_wrap {
    border-radius: 8px;
  }
  #design .img_block .img .watch {
    top: 1%;
    left: 2%;
  }
  #design .img_block .img .watch > img {
    width: calc(150 / var(--design_design_block) * 100cqi);
  }
  #design .design_block .txt_block {
    width: 100%;
    margin: 0 !important;
  }
  #design .design_block .txt_block .serial.pc,
  #design .design_block .txt_block .flower_object_block.pc {
    display: none !important;
  }
  #design .design_block .txt_block .serial {
    width: calc(290 / var(--design_design_block) * 100cqi);
    margin-inline: auto;
    margin-bottom: clamp(25px, 25 / var(--base-width) * 100vw, 25px * var(--responsive-ratio));
  }
  #design .txt_block .txt {
    width: calc(290 / var(--design_design_block) * 100cqi);
    margin-inline: auto !important;
    margin-top: clamp(25px, 25 / var(--base-width) * 100vw, 25px * var(--responsive-ratio));
    padding: 0 !important;
  }
  #design .design_block.design_SSQW103 .txt_block .flower_object_block {
    width: calc(107 / var(--design_design_block) * 100cqi);
    top: calc(-65 / var(--design_design_block) * 100cqi);
    bottom: auto;
    right: calc(15 / var(--design_design_block) * 100cqi);
  }
  #design .design_block.design_SSQW103 .txt_block .flower_object_block .object1 {
    width: calc(36 / 107 * 100%);
  }
  #design .design_block.design_SSQW103 .txt_block .flower_object_block .object2 {
    width: calc(56 / 107 * 100%);
  }
  #design .design_block.design_SSQW104 .txt_block .flower_object_block {
    width: calc(102 / var(--design_design_block) * 100cqi);
    top: calc(-65 / var(--design_design_block) * 100cqi);
    bottom: auto;
    left: auto;
    right: calc(15 / var(--design_design_block) * 100cqi);
  }
  #design .design_block.design_SSQW104 .txt_block .flower_object_block .object1 {
    width: calc(52 / 102 * 100%);
  }
  #design .design_block.design_SSQW104 .txt_block .flower_object_block .object2 {
    width: calc(35 / 102 * 100%);
  }
  #design .design_block .txt_block .img a {
    border-radius: 6px;
  }
  #design_modal .close_btn {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 32px;
    height: 32px;
    cursor: pointer;
    z-index: 2;
  }
  #design_modal .close_btn span {
    top: 15px;
    left: 0;
    width: 32px;
  }
  #design_modal .wrap .modal_img {
    max-width: 90vw;
    max-height: 90dvh;
    border-radius: 6px;
  }
}

/*-------------------------------------------------

box

--------------------------------------------------*/
#box {
  position: relative;
  padding-block: var(--section-padding-block);
}
#box .outer {
  position: relative;
  z-index: 2;
}
#box .outer > .flower_object_block {
  align-items: flex-end;
  justify-content: space-between;
  width: calc(330 / var(--base-width) * 100vw);
  bottom: calc(-165 / var(--base-width) * 100vw);
  left: calc(120 / var(--base-width) * 100vw);
}
#box .outer > .flower_object_block .object1,
#box .outer > .flower_object_block .object3 {
  width: calc(120 / 330 * 100%);
}
#box .outer > .flower_object_block .object2 {
  width: calc(60 / 330 * 100%);
}
#box .outer > .flower_object_block .object2 svg path {
  stroke: var(--primary-color);
  stroke-width: 1.4;
  stroke-linejoin: round;
}
#box .outer > .flower_object_block .object2 .flower_type3_stem {
  animation-delay: 0.25s;
}
#box .outer > .flower_object_block .object2 .flower_type3_leaf {
  animation-delay: 0.5s;
}
#box .outer > .flower_object_block .object2 .flower_type3_flower {
  animation-delay: 0.75s;
}
#box .outer > .flower_object_block .object3 .flower_type3_stem {
  animation-delay: 0.5s;
}
#box .outer > .flower_object_block .object3 .flower_type3_leaf {
  animation-delay: 0.75s;
}
#box .outer > .flower_object_block .object3 .flower_type3_flower {
  animation-delay: 1.0s;
}
#box .main_title {
  text-align: center;
}
#box .lead_block {
  position: relative;
  width: calc(var(--box_lead_block) / var(--base-width) * 100vw);
  margin-inline: auto;
  margin-bottom: clamp(30px, 60 / var(--base-width) * 100vw, 60px);
  container-type: inline-size;
  --box_lead_block: 1460;
}
#box .lead_block p {
  text-align: center;
}
#box .lead_block .common_txt .ctl0,
#box .lead_block .common_txt .ctl1,
#box .lead_block .common_txt .ctl2 {
  display: none;
}
#box .lead_block .flower_object_block {
  align-items: flex-end;
  justify-content: space-between;
  width: calc(315 / var(--box_lead_block) * 100cqi);
  bottom: calc(10 / var(--box_lead_block) * 100cqi);
  right: calc(-110 / var(--box_lead_block) * 100cqi);
}
#box .lead_block .flower_object_block .object1,
#box .lead_block .flower_object_block .object3 {
  width: calc(74 / 315 * 100%);
}
#box .lead_block .flower_object_block .object2 {
  width: calc(107 / 315 * 100%);
}
#box .lead_block .flower_object_block .object1 svg path,
#box .lead_block .flower_object_block .object3 svg path {
  stroke: var(--primary-color);
  stroke-width: 0.8;
  stroke-linejoin: round;
}
#box .lead_block .flower_object_block .object2 .flower_type5_leaf {
  animation-delay: 0.25s;
}
#box .lead_block .flower_object_block .object2 .flower_type5_flower {
  animation-delay: 0.5s;
}
#box .lead_block .flower_object_block .object3 .flower_type5_leaf {
  animation-delay: 0.5s;
}
#box .lead_block .flower_object_block .object3 .flower_type5_flower {
  animation-delay: 0.75s;
}
#box .note {
  margin-top: calc(30 / 18 * 1em);
  font-size: clamp(1.2rem, 18 / var(--base-width) * 100vw, 1.8rem);
  letter-spacing: 0em;
  text-align: center;
}
#box .img_block {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: calc(var(--box_img_block) / var(--base-width) * 100vw);
  margin-inline: auto;
  container-type: inline-size;
  --box_img_block: 1460;
  aspect-ratio: 1460 / 692;
}
#box .img_block .frame {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
}
#box .img_block.scrollin .frame {
  animation: fadein 1.0s cubic-bezier(0.33, 1, 0.68, 1) both;
}
#box .img_block .img {
  width: calc(670 / var(--box_img_block) * 100cqi);
  opacity: 0;
}
#box .img_block.scrollin .img {
  animation: fadein 1.5s cubic-bezier(0.33, 1, 0.68, 1) both;
  animation-delay: 0.5s;
}
#box .img_block.scrollin .img.img2 {
  animation-delay: 1.0s;
}
@media screen and (max-width: 900px) {
  #box .lead_block .flower_object_block {
    width: calc(300 / var(--box_lead_block) * 100cqi);
    right: calc(-170 / var(--box_lead_block) * 100cqi);
  }
}
@media screen and (max-width: 767px) {
  #box .note {
    width: 75vw;
    margin-inline: auto;
    line-height: 2;
  }
}
@media screen and (max-width: 730px) {
  #box .lead_block .common_txt .ctl0,
  #box .lead_block .common_txt .ctl2 {
    display: inline;
  }
  #box .lead_block .flower_object_block {
    right: calc(-70 / var(--box_lead_block) * 100cqi);
  }
}
@media screen and (max-width: 640px) {
  #box {
    padding-block: clamp(50px, 50 / var(--base-width) * 100vw, 50px * var(--responsive-ratio));
  }
  #box .main_title {
    margin-bottom: clamp(30px, 30 / var(--base-width) * 100vw, 30px * var(--responsive-ratio));
    text-align: center;
  }
  #box .lead_block {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column-reverse;
    gap: clamp(30px, 30 / var(--base-width) * 100vw, 30px * var(--responsive-ratio));
    width: clamp(var(--box_lead_block) * 1px, var(--box_lead_block) / var(--base-width) * 100vw, var(--box_lead_block) * var(--responsive-ratio) * 1px);
    margin-inline: auto;
    margin-bottom: clamp(40px, 40 / var(--base-width) * 100vw, 40px * var(--responsive-ratio));
    --box_lead_block: 310;
  }
  #box .lead_block .flower_object_block {
    position: relative;
    width: calc(187 / var(--box_lead_block) * 100cqi);
    margin-inline: auto;
    bottom: auto;
    right: auto;
  }
  #box .lead_block .flower_object_block .object1,
  #box .lead_block .flower_object_block .object3 {
    width: calc(37 / 187 * 100%);
  }
  #box .lead_block .flower_object_block .object2 {
    width: calc(53 / 187 * 100%);
  }
  #box .img_block {
    flex-direction: column;
    gap: clamp(10px, 10 / var(--base-width) * 100vw, 10px * var(--responsive-ratio));
    width: clamp(var(--box_img_block) * 1px, var(--box_img_block) / var(--base-width) * 100vw, var(--box_img_block) * var(--responsive-ratio) * 1px);
    margin-inline: auto;
    container-type: inline-size;
    --box_img_block: 310;
    aspect-ratio: 310 / 425;
  }
  #box .img_block .img {
    width: calc(288 / var(--box_img_block) * 100cqi);
  }
  #box .img_block .img.img1 img {
    transform: translateX(-2%);
  }
  #box .img_block .img.img2 img {
    transform: translateX(2%);
  }
  #box .note {
    width: clamp(290px, (290 / var(--base-width) * 100vw), 290px * var(--responsive-ratio));
    line-height: 2;
    margin-top: clamp(20px, 20 / var(--base-width) * 100vw, 20px * var(--responsive-ratio));
    margin-bottom: clamp(30px, 30 / var(--base-width) * 100vw, 30px * var(--responsive-ratio));
    font-size: clamp(1.2rem, 12 / var(--base-width) * 100vw, 1.2rem * var(--responsive-ratio));
    text-align: left;
  }
  #box .outer > .flower_object_block {
    position: relative;
    width: clamp(240px, 240 / var(--base-width) * 100vw, 240px * var(--responsive-ratio));
    margin-inline: auto;
    bottom: auto;
    left: auto;
  }
  #box .outer > .flower_object_block .object1,
  #box .outer > .flower_object_block .object3 {
    width: calc(70 / 240 * 100%);
  }
  #box .outer > .flower_object_block .object2 {
    width: calc(41 / 240 * 100%);
  }
}

/*-------------------------------------------------

lineup

--------------------------------------------------*/
#lineup {
  position: relative;
  padding-top: clamp(80px, 150 / var(--base-width) * 100vw, 150px);
  padding-bottom: 0;
  --primary-width: 1600;
}
#lineup > .outer {
  position: relative;
}
#lineup .main_title {
  text-align: center;
}
#lineup > .outer > .inner {
  position: relative;
  /*
  display: flex;
  justify-content: space-between;
  width: clamp(560px, (var(--primary-width) / var(--base-width) * 100vw), var(--primary-width) * 1px);
  margin-inline: auto;
  container-type: inline-size;
  */
}
#lineup > .outer > .inner.limited {
  margin-bottom: min(80 / 1300 * 100vw, 80px);
}
#lineup > .outer > .inner.regular {
  padding-top: clamp(120px, 180 / var(--base-width) * 100vw, 180px);
  padding-bottom: clamp(55px, 80 / var(--base-width) * 100vw, 80px);
  background: var(--primary-color);
}
#lineup .category_name {
  margin-bottom: calc(30 / 20 * 1em);
  font-size: clamp(1.3rem, (20 / var(--base-width) * 100vw), 2.0rem);
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-align: center;
}
#lineup .category_name.en {
  font-family: 'Poppins', sans-serif;
}
#lineup .inner.regular .category_name {
  color: #fff;
}
#lineup .sub_ttl {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: calc(20 / 28 * 1em);
  margin-bottom: calc(100 / 28 * 1em);
  font-size: clamp(1.8rem, (28 / var(--base-width) * 100vw), 2.8rem);
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 500;
  line-height: 1;
}
#lineup .sub_ttl .en {
  font-size: calc(30 / 28 * 1em);
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
}
#lineup .inner.regular .sub_ttl {
  color: #fff;
}
#lineup .sub_ttl .object {
  width: calc(25 / 28 * 1em);
  transform: translateY(5%);
  opacity: 0;
}
#lineup .sub_ttl.scrollin .object {
  animation: scale_up 1.0s cubic-bezier(0.33, 1, 0.68, 1) both;
}
#lineup .sub_ttl .txt {
  display: inline-block;
  opacity: 0;
}
#lineup .sub_ttl.scrollin .txt {
  animation: fadein 1.5s cubic-bezier(0.33, 1, 0.68, 1) both;
  animation-delay: 0.25s;
}
#lineup .product_block {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: min(32 / 1300 * 100vw, 32px);
  width: min(var(--lineup_product_block) / var(--primary-width) * 100vw, var(--lineup_product_block) * 1px);
  margin-inline: auto;
  container-type: inline-size;
  --lineup_product_block: 1000;
}
#lineup .product {
  position: relative;
}
#lineup .product .inner {
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
  width: 100%;
}
#lineup .product.SSQW104 .inner,
#lineup .product.SSQW101 .inner {
  flex-direction: row;
}
#lineup .product .inner .img_box {
  position: relative;
  width: calc(271 / var(--lineup_product_block) * 100cqi);
  z-index: 1;
}
#lineup .product .inner .img_box .ladygold {
  position: absolute;
  width: calc(91 / var(--lineup_product_block) * 100cqi);
  top: 0;
  right: calc(-10 / var(--lineup_product_block) * 100cqi);
  z-index: 1;
}
#lineup .product.SSQW100 .inner .img_box .ladygold {
  right: auto;
  left: calc(-10 / var(--lineup_product_block) * 100cqi);
}
#lineup .product .inner .txt_box {
  position: relative;
  width: calc(180 / var(--lineup_product_block) * 100cqi);
  letter-spacing: 0.05em;
  white-space: nowrap;
  
  /* for chrome  */
  filter: contrast(1);
}
#lineup .product .inner .txt_box .txt_box_inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding-bottom: 40%;
}
#lineup .inner.regular .product .inner .txt_box .txt_box_inner {
  color: var(--white-color);
}
#lineup .txt_box .serial {
  margin-bottom: calc(35 / 30 * 1em);
  font-size: min(30 / var(--primary-width) * 100vw, 3.0rem);
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  letter-spacing: 0.05em;
}
#lineup .txt_box .price {
  margin-bottom: calc(20 / 24 * 1em);
  font-size: min(24 / var(--primary-width) * 100vw, 2.4rem);
  font-weight: 400;
  letter-spacing: 0.05em;
}
#lineup .txt_box .price .min {
  font-size: calc(15 / 24 * 100%);
}
#lineup .txt_box .note {
  margin-bottom: calc(10 / 18 * 1em);
  font-size: min(18 / var(--primary-width) * 100vw, 1.8rem);
  font-weight: 400;
  line-height: 2.0;
}
#lineup .txt_box .date {
  font-size: min(18 / var(--primary-width) * 100vw, 1.8rem);
  font-weight: 400;
}
#lineup .txt_box .btns {
  width: 100%;
  margin-top: auto;
}
#lineup .txt_box .btn a {
  position: relative;
  display: grid;
  place-content: center;
  width: 100%;
  aspect-ratio: 180 / 50;
  padding-right: 3.6%;
  padding-top: 1%;
  color: var(--white-color);
  font-family: 'Poppins', sans-serif;
  font-size: min(16 / var(--primary-width) * 100vw, 1.6rem);
  font-weight: 400;
  text-decoration: none;
  letter-spacing: 0.1em;
  background: var(--primary-color);
  border: 1px solid var(--primary-color);
  border-radius: 6px;
  overflow: hidden;
  transition: all .1s ease-out;
}
#lineup .inner.regular .txt_box .btn a {
  color: var(--primary-color);
  background: var(--white-color);
  border-color: var(--white-color);
}
#lineup .txt_box .btn.store a {
  margin-top: min(10 / var(--primary-width) * 100vw, 10px);
  padding-top: 0;
  padding-bottom: 0.05em;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: min(15 / var(--primary-width) * 100vw, 1.5rem);
  font-weight: 500;
  letter-spacing: 0.05em;
}
#lineup .txt_box .btn a::before {
  content: '';
  position: absolute;
  top: 50%;
  right: 6%;
  width: 3.4%;
  aspect-ratio: 6 / 11;
  background: url(../img/arrow_white.svg) no-repeat;
  background-size: contain;
  transform: translateY(-50%);
  transition: all .1s ease-out;
}
#lineup .inner.regular .txt_box .btn a::before {
  background: url(../img/arrow_red.svg) no-repeat;
  background-size: contain;
}
@media (hover: hover) {
  #lineup .txt_box .btn a:hover {
    background: var(--white-color);
    color: var(--primary-color);
    transition: all .1s ease-out .1s;
  }
  #lineup .inner.regular .txt_box .btn a:hover {
    background: var(--primary-color);
    color: var(--white-color);
  }
  #lineup .txt_box .btn a:hover::before {
    background: url(../img/arrow_red.svg) no-repeat;
    background-size: contain;
    transition: all .1s ease-out .1s;
  }
  #lineup .inner.regular .txt_box .btn a:hover::before {
    background: url(../img/arrow_white.svg) no-repeat;
    background-size: contain;
  }
}
#lineup .bg {
  position: relative;
  width: 100%;
  aspect-ratio: 1920 / 610;
  overflow: hidden;
}
#lineup .bg .frame {
  position: absolute;
  top: 50%;
  left: 50%;
  width: calc(1888 / var(--base-width) * 100%);
  aspect-ratio: 1888 / 578;
  transform: translate(-50%, -50%);
}
#lineup .bg .img {
  position: absolute;
  top: -6%;
  left: 0;
  width: 100%;
  height: 112%;
}
#lineup .bg .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: translate3d(0, var(--applyParallax), 0);
  will-change: transform;
}
@media screen and (max-width: 991px) {
  #lineup {
    --primary-width: 1300;
  }
  #lineup > .outer > .inner.regular {
    padding-top: clamp(80px, 180 / var(--base-width) * 100vw, 180px);
  }
}
@media screen and (max-width: 640px) {
  #lineup {
    padding-top: clamp(50px, 50 / var(--base-width) * 100vw, 50px * var(--responsive-ratio));
  }
  #lineup > .outer {
    width: 100%;
    container-type: inline-size;
    padding-bottom: 0;
  }
  #lineup > .outer > .inner {

  }
  #lineup > .outer > .inner.limited {
    margin-bottom: clamp(50px, 50 / var(--base-width) * 100vw, 50px * var(--responsive-ratio));
  }
  #lineup > .outer > .inner.regular {
    padding-top: clamp(100px, 100 / var(--base-width) * 100vw, 100px * var(--responsive-ratio));
    padding-bottom: clamp(40px, 40 / var(--base-width) * 100vw, 40px * var(--responsive-ratio));
  }
  #lineup .main_title {
    margin-bottom: clamp(50px, 50 / var(--base-width) * 100vw, 50px * var(--responsive-ratio));
  }
  #lineup .category_name {
    margin-bottom: calc(10 / 14 * 1em);
    font-size: clamp(1.4rem, (14 / var(--base-width) * 100vw), 1.4rem * var(--responsive-ratio));
  }
  #lineup .inner.regular .category_name {
    margin-bottom: calc(12 / 14 * 1em);
  }
  #lineup .category_name span.sp_inline {
    display: inline-block !important;
    margin-top: 1em;
    font-size: calc(12 / 14 * 1em);
  }
  #lineup .sub_ttl {
    gap: calc(10 / 18 * 1em);
    margin-bottom: calc(60 / 18 * 1em);
    font-size: clamp(1.8rem, (18 / var(--base-width) * 100vw), 1.8rem * var(--responsive-ratio));
  }
  #lineup .sub_ttl .en {
    font-size: calc(17 / 18 * 1em);
  }
  #lineup .product_block {
    grid-template-columns: 1fr;
    gap: 0;
    width: 100%;
    max-width: calc(375 * var(--responsive-ratio) * 1px);
    margin-inline: auto;
    container-type: inline-size;
    --lineup_product_block: 375;
  }
  #lineup .product .inner {
    justify-content: flex-start;
    flex-direction: row !important;
  }
  #lineup .product .inner .img_box {
    position: relative;
    width: calc(209 / var(--lineup_product_block) * 100cqi);
  }
  #lineup .product .inner .img_box .ladygold {
    width: calc(56 / var(--lineup_product_block) * 100cqi);
    top: calc(5 / var(--lineup_product_block) * 100cqi);
    right: calc(12 / var(--lineup_product_block) * 100cqi) !important;
    left: auto !important;
  }
  #lineup .product .inner .txt_box {
    width: calc(130 / var(--lineup_product_block) * 100cqi);
    padding-top: 2%;
  }
  #lineup .product .inner .txt_box .txt_box_inner {
    display: block;
    height: auto;
    padding-bottom: 0;
  }
  #lineup .txt_box .serial {
    margin-bottom: calc(25/ 20 * 1em);
    font-size: clamp(2.0rem, 20 / var(--base-width) * 100vw, 2.0rem * var(--responsive-ratio));
  }
  #lineup .txt_box .price {
    margin-bottom: calc(15 / 20 * 1em);
    font-size: clamp(2.0rem, 20 / var(--base-width) * 100vw, 2.0rem * var(--responsive-ratio));
  }
  #lineup .txt_box .price .min {
    font-size: calc(12 / 20 * 100%);
  }
  #lineup .txt_box .note {
    margin-bottom: calc(5 / 14 * 1em);
    font-size: clamp(1.4rem, 14 / var(--base-width) * 100vw, 1.4rem * var(--responsive-ratio));
    line-height: 180%;
  }
  #lineup .txt_box .date {
    font-size: clamp(1.4rem, 14 / var(--base-width) * 100vw, 1.4rem * var(--responsive-ratio));
  }
  #lineup .txt_box .btns {
    margin-top: calc(55 / var(--lineup_product_block) * 100cqi);
  }
  #lineup .inner.limited .txt_box .btns {
    margin-top: calc(30 / var(--lineup_product_block) * 100cqi);
  }
  #lineup .txt_box .btn a {
    aspect-ratio: 130 / 35;
    padding-right: 3.6%;
    padding-bottom: 0;
    font-size: clamp(1.2rem, 12 / var(--base-width) * 100vw, 1.2rem * var(--responsive-ratio));
  }
  #lineup .txt_box .btn.store a {
    margin-top: 10px;
    font-size: clamp(1.1rem, 11 / var(--base-width) * 100vw, 1.1rem * var(--responsive-ratio));
  }
  #lineup .txt_box .btn a::before {
    transform: translateY(-40%);
  }
  #lineup .bg {
    aspect-ratio: 375 / 286;
  }
  #lineup .bg .frame {
    width: calc(360 / var(--base-width) * 100%);
    aspect-ratio: 360 / 269;
  }
}

/*-------------------------------------------------

 footer

--------------------------------------------------*/
footer {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 140px;
  padding: 0 30px;
  background: #262627;
}
footer .logo_copy {
  display: flex;
  align-items: center;
}
footer .seiko_logo {
  margin-right: 30px;
}
footer .seiko_logo img {
  width: 90px;
  height: 29px;
}
footer .copyright {
  color: #fff;
  font-weight: 400;
  font-size: 1.0rem;
  font-family: 'Noto Sans JP', sans-serif;
  line-height: 1;
  letter-spacing: .05em;
}
footer .other {
  display: flex;
  align-items: center;
}
footer .brand a {
  display: block;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 300px;
  height: 44px;
  font-size: 0.9rem;
  background: #d8d2c5;
  border-radius: 5px;
  transition: filter .1s ease-in-out;
}
@media (hover: hover) and (pointer: fine) {
  footer .brand a:hover {
    filter: brightness(1.1);
    transition: filter .1s ease-in-out .1s;
  }
}
footer .brand a .logo {
  width: 30px;
  height: 31px;
  margin-right: 14px;
}
footer .brand a .ttl {
  width: 206px;
  height: 15px;
}
footer .insta {
  display: flex;
  align-items: center;
  margin-left: 40px;
}
footer .insta a {
  display: flex;
  align-items: center;
  color: #fff;
  font-weight: 400;
  font-size: 1.2rem;
  font-family: 'Noto Sans JP', sans-serif;
  line-height: 1;
  letter-spacing: .05em;
  text-decoration: none;
  transition: opacity .1s ease-in-out;
}
@media (hover: hover) and (pointer: fine) {
  footer .insta a:hover {
    opacity: 0.75;
    transition: opacity .1s ease-in-out .1s;
  }
}
footer .insta .icon_instagram {
  width: 40px;
  height: 40px;
}
footer .insta .txt {
  margin-left: 15px;
}
@media (max-width: 1600px) {
  footer {
    height: max(88px,8.75vw);
    padding: 0 max(15px,1.875vw);
  }
  footer .seiko_logo {
    margin-right: 1.875vw;
  }
  footer .seiko_logo img {
    width: 5.625vw;
    height: auto;
  }
  footer .brand a {
    width: 18.75vw;
    height: auto;
    aspect-ratio: 300 / 44;
  }
  footer .brand a .logo {
    width: 1.875vw;
    height: auto;
    margin-right: .875vw;
  }
  footer .brand a .ttl {
    width: 12.875vw;
    height: auto;
  }
  footer .insta .icon_instagram {
    width: 2.5vw;
    height: auto;
  }
  footer .insta a {
    font-size: 1.1rem;
  }
}
@media (max-width: 991px) {
  footer .seiko_logo {
    margin-right: 18px;
  }
  footer .seiko_logo img {
    width: 60px;
    height: 19px;
  } 
  footer .insta .txt {
    display: none;
  }
  footer .brand a {
    width: 112px;
    height: 33px;
  }
  footer .brand a .logo {
    width: 19px;
    height: 20px;
    margin-right: 10px;
  }
  footer .brand a .ttl {
    width: 60px;
    height: 17px;
  }
  footer .insta {
    margin-left: 20px;
  }
  footer .insta .icon_instagram {
    width: 30px;
    height: 30px;
  }
}
@media (max-width: 640px) {
  footer {
    height: 60px;
    padding: 0 15px;
  }
  footer .seiko_logo img {
    width: 52px;
    height: 17px;
  }
  footer .seiko_logo {
    margin-right: 10px;
  }
  footer .copyright {
    width: 110px;
    transform: scale(.7);
    transform-origin: 0 center;
    /*
    font-size: 7px;
    */
    white-space: nowrap;
  }
  footer .brand a {
    width: 112px;
    height: 33px;
  }
  footer .insta {
    margin-left: 10px;
  }
  footer .insta .icon_instagram {
    width: 25px;
    height: 25px;
  }
}

/*-------------------------------------------------

flower_object

--------------------------------------------------*/
.flower_object_block {
  position: absolute;
  display: flex !important;
}
.flower_object_block svg {
  display: block;
  width: 100%;
  height: auto;
  overflow: visible;
}

/* --- flower_type2 --- */

  /* 茎のアニメーション */
  .flower_type2 .flower_type2_stem {
    transform: scaleY(0);
    transform-origin: bottom;
  }
  .flower_type2.scrollin .flower_type2_stem {
    animation: growStem2 0.375s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  }

  /* 葉っぱのアニメーション */
  .flower_type2 .flower_type2_leaf {
    transform-origin: 45.5px 140px;
    opacity: 0;
  }
  .flower_type2.scrollin .flower_type2_leaf {
    animation: growLeaf2 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.15s forwards;
  }

  /* 花のアニメーション */
  .flower_type2 .flower_type2_flower {
    transform-origin: center;
    opacity: 0;
  }
  .flower_type2.scrollin .flower_type2_flower {
    animation: bloomFlower2 1.2s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.30s forwards;
  }

  @keyframes growStem2 {
    0% {
      transform: scaleY(0);
    }
    100% {
      transform: scaleY(1);
    }
  }

  @keyframes growLeaf2 {
    0% {
      opacity: 0;
      transform: scaleX(0);
    }
    60% {
      transform: scaleX(1.05);
    }
    100% {
      opacity: 1;
      transform: scaleX(1);
    }
  }

  @keyframes bloomFlower2 {
    0% {
      opacity: 0;
      transform: scale(0) rotate(-15deg);
    }
    50% {
      opacity: 1;
      transform: scale(1.05) rotate(3deg);
    }
    100% {
      opacity: 1;
      transform: scale(1) rotate(0deg);
    }
  }

/* --- flower_type3 --- */

    /* 茎のアニメーション */
    .flower_type3 .flower_type3_stem {
      transform: scaleY(0);
      transform-origin: bottom;
    }
    .flower_type3.scrollin .flower_type3_stem {
      animation: growStem3 0.375s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    }

    
    /* 葉っぱのアニメーション */
    .flower_type3 .flower_type3_leaf {
      transform-origin: 67.6px 112px;
      opacity: 0;
    }
    .flower_type3.scrollin .flower_type3_leaf {
      animation: growLeaf3 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.15s forwards;
    }
    
    /* 花のアニメーション */
    .flower_type3 .flower_type3_flower {
      transform-origin: center;
      opacity: 0;
    }
    .flower_type3.scrollin .flower_type3_flower {
      animation: bloomFlower3 0.6s cubic-bezier(0.34, 0, 0.25, 1) 0.30s forwards;
    }
    
    @keyframes growStem3 {
      0% {
        transform: scaleY(0);
      }
      100% {
        transform: scaleY(1);
      }
    }
    
    @keyframes growLeaf3 {
      0% {
        opacity: 0;
        transform: scaleX(0);
      }
      60% {
        transform: scaleX(1.05);
      }
      100% {
        opacity: 1;
        transform: scaleX(1);
      }
    }
    
    @keyframes bloomFlower3 {
      0% {
        opacity: 0;
        transform: scale(0) rotate(-15deg);
      }
      100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
      }
    }

/* --- flower_type4 --- */

    /* 葉っぱのアニメーション */
    .flower_type4 .flower_type4_leaf {
      transform-origin: center;
      opacity: 0;
    }
    .flower_type4.scrollin .flower_type4_leaf {
      animation: growLeaf4 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0s forwards;
    }
    
    /* 茎1のアニメーション */
    .flower_type4 .flower_type4_stem1 {
      opacity: 0;
    }
    .flower_type4.scrollin .flower_type4_stem1 {
      animation: popStem4 0.2s cubic-bezier(0.34, 1.56, 0.64, 1) 0.15s forwards;
    }
    
    /* 茎2のアニメーション */
    .flower_type4 .flower_type4_stem2 {
      opacity: 0;
    }
    .flower_type4.scrollin .flower_type4_stem2 {
      animation: popStem4 0.2s cubic-bezier(0.34, 1.56, 0.64, 1) 0.30s forwards;
    }
    
    /* 茎3のアニメーション */
    .flower_type4 .flower_type4_stem3 {
      opacity: 0;
    }
    .flower_type4.scrollin .flower_type4_stem3 {
      animation: popStem4 0.2s cubic-bezier(0.34, 1.56, 0.64, 1) 0.45s forwards;
    }
    
    /* 花のアニメーション */
    .flower_type4 .flower_type4_flower {
      transform-origin: center;
      opacity: 0;
    }
    .flower_type4.scrollin .flower_type4_flower {
      animation: bloomFlower4 0.4s cubic-bezier(0.34, 0, 0.25, 1) 0.40s forwards;
    }
    
    @keyframes growLeaf4 {
      0% {
        opacity: 0;
        transform: scale(0);
      }
      60% {
        transform: scale(1.05);
      }
      100% {
        opacity: 1;
        transform: scale(1);
      }
    }
    
    @keyframes popStem4 {
      0% {
        opacity: 0;
      }
      100% {
        opacity: 1;
      }
    }
    
    @keyframes bloomFlower4 {
      0% {
        opacity: 0;
        transform: scale(0) rotate(-15deg);
      }
      100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
      }
    }

/* --- flower_type5 --- */

    /* 葉っぱのアニメーション */
    .flower_type5 .flower_type5_leaf {
      transform-origin: center;
      opacity: 0;
    }
    .flower_type5.scrollin .flower_type5_leaf {
      animation: growLeaf5 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0s forwards;
    }
    
    /* 花のアニメーション */
    .flower_type5 .flower_type5_flower {
      transform-origin: center;
      opacity: 0;
    }
    .flower_type5.scrollin .flower_type5_flower {
      animation: bloomFlower5 0.6s cubic-bezier(0.34, 0, 0.25, 1) 0.15s forwards;
    }
    
    @keyframes growLeaf5 {
      0% {
        opacity: 0;
        transform: scale(0);
      }
      60% {
        transform: scale(1.05);
      }
      100% {
        opacity: 1;
        transform: scale(1);
      }
    }
    
    @keyframes bloomFlower5 {
      0% {
        opacity: 0;
        transform: scale(0) rotate(-15deg);
      }
      100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
      }
    }