@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: #845851;
  --primary-txt-color: var(--primary-color);
  --primary-bg-color: #F3EFEA;
  --secondary-bg-color: #FDFBF8;
  --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,
.sp_flex {
  display: none !important;
}
.pc {
  display: block !important;
}
.pc_inline {
  display: inline !important;
}
.pc_flex {
  display: flex !important;
}
@media screen and (max-width: 640px) {
  .sp {
    display: block !important;
  }
  .sp_inline {
    display: inline !important;
  }
  .sp_flex {
    display: flex !important;
  }
  .pc,
  .pc_inline,
  .pc_flex {
    display: none !important;
  }
}
.primary_title {
  margin-bottom: calc(150 / 80 * 1em);
  font-size: clamp(4.0rem, (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.5em;
  font-size: clamp(1.3rem, (20 / var(--base-width) * 100vw), 2.0rem);
  font-weight: 400;
  line-height: 180%;
  letter-spacing: 0.03em;
  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 {
    margin-bottom: calc(60 / 36 * 1em);
    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: var(--secondary-bg-color);
  line-height: 1;
  z-index: 300;
}
header::after {
  content: '';
  position: absolute;
  bottom: 1px;
  left: 0;
  width: 100%;
  aspect-ratio: 1920 / 17;
  background: url(../img/section_line_btm.png) center top no-repeat;
  background-size: 100% auto;
  pointer-events: none;
  translate: 0 100%;
}
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;
  }
  header::after {
    aspect-ratio: 375 / 8;
    background: url(../img/section_line_btm_sp.png) center top no-repeat;
    background-size: 100% auto;
  }
}

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

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(110 * 0.75px, 110 / var(--base-width) * 100vw, 110px);
}
#opening .opening_cont.cont2 {
  width: clamp(476 * 0.75px, 500 / var(--base-width) * 100vw, 476px);
}
#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: min(64 / var(--base-width) * 100vw, 64px * var(--responsive-ratio));
  }
  #opening .opening_cont.cont2 {
    width: min(240 / var(--base-width) * 100vw, 240px * var(--responsive-ratio));
  }
}

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

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;
}
#kv .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /*
  transform: translate3d(0, var(--applyParallax), 0);
  will-change: transform;
  */
}
#kv .bg_wrap {
  position: absolute;
  top: -5%;
  left: 0;
  width: 100%;
  height: 110%;
}
#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 .outer {
	position: relative;
	width: 100%;
  padding-block: calc(60 / var(--base-width) * 100vw);
}
#kv .inner {
	position: relative;
  width: calc(1800 / var(--base-width) * 100vw);
  height: 100%;
	aspect-ratio: 1800 / 820;
  margin-inline: auto;
  border-radius: min(32 / var(--base-width) * 100vw, 32px);
  border-top-left-radius: 0;
  container-type: inline-size;
  overflow: clip;
}
#kv .inner .txt_block {
  position: absolute;
  width: calc(575 / 1800 * 100cqi);
	aspect-ratio: 1150 / 358;
  top: 0;
  left: 0;
  background: url(../img/kv_main_obj.png) 0 0 no-repeat;
  background-size: contain;
}
#kv .inner .txt_block .main_title {
  position: absolute;
  top: calc(12 / 1800 * 100cqi);
  left: calc(12 / 1800 * 100cqi);
  width: calc(476 / 1800 * 100cqi);
  height: calc(104 / 1800 * 100cqi);
  aspect-ratio: 476 / 104;
  container-type: inline-size;
  z-index: 2;
  --main_title_width: 476;
}
#kv .inner .txt_block .main_title span {
  position: absolute;
  display: inline-block;
  font-size: 10px;
}
#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.lg {
  position: absolute;
  top: calc(0 / 476 * 100cqi);
  left: calc(0 / 476 * 100cqi);
  width: calc(476 / 476 * 100cqi);
  height: calc(43 / 476 * 100cqi);
  aspect-ratio: 476 / 43;
}
#kv.start .inner .txt_block .main_title span.lg img {
  animation-delay: 0.5s;
}
#kv .inner .txt_block .main_title span.lf {
  top: calc(70 / 476 * 100cqi);
  left: calc(0 / 476 * 100cqi);
  width: calc(415 / 476 * 100cqi);
  height: calc(33 / 476 * 100cqi);
  aspect-ratio: 415 / 33;
}
#kv.start .inner .txt_block .main_title span.lf img {
  animation-delay: 1.0s;
  animation-duration: 2.0s;
}
#kv .inner .txt_block .main_title span.le {
  top: calc(58 / var(--main_title_width)  * 100cqi);
  right: 0;
  width: calc(70 / var(--main_title_width)  * 100cqi);
  aspect-ratio: 74 / 40;
}
#kv.start .inner .txt_block .main_title span.le img {
  animation-delay: 1.5s;
}
@media screen and (max-width: 640px) {
  #kv {
    overflow-x: clip;
  }
  #kv .bg {
    top: auto;
    bottom: 0;
    left: 0;
    height: auto;
    aspect-ratio: 340 / 509;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    overflow: hidden;
  }
  #kv .bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0;
  }
  #kv .outer {
    position: relative;
    width: 100%;
    padding-top: calc(34 / var(--base-width) * 100vw);
    padding-bottom: 0;
  }
  #kv .inner {
    width: calc(340 / var(--base-width) * 100vw);
    aspect-ratio: 340 / 574;
    border-radius: 0px;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
  }
  #kv .inner .txt_block {
    position: absolute;
    width: auto;
    top: auto;
    left: auto;
    background: none;
  }
  #kv .inner .txt_block .main_title {
    top: calc(0 / 340 * 100cqi);
    left: calc(7 / 340 * 100cqi);
    width: calc(239 / 340 * 100cqi);
    height: calc(53 / 340 * 100cqi);
    aspect-ratio: 239 / 53;
    --main_title_width: 239;
  }
  #kv .inner .txt_block .main_title span {
    font-size: 10px;
  }
  #kv .inner .txt_block .main_title span.lg {
    top: calc(0 / 239 * 100cqi);
    left: calc(0 / 239 * 100cqi);
    width: calc(239 / 239 * 100cqi);
    height: calc(22 / 239 * 100cqi);
    aspect-ratio: 239 / 22;
  }
  #kv .inner .txt_block .main_title span.lf {
    top: calc(35 / 239 * 100cqi);
    left: calc(0 / 239 * 100cqi);
    width: calc(208 / 239 * 100cqi);
    height: calc(17 / 239 * 100cqi);
    aspect-ratio: 208 / 17;
  }
}

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

wrapper

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


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

lead

--------------------------------------------------*/
#lead {
  position: relative;
  padding-top: min(500 / var(--base-width) * 100vw, 500px);
  padding-bottom: min(540 / var(--base-width) * 100vw, 540px);
}
#lead .flower_object_block {
  justify-content: space-between;
  align-items: center;
  gap: min(120 / var(--base-width) * 100vw, 120px);
  top: min(120 / var(--base-width) * 100vw, 120px);
  left: 50%;
  width: min(1638 / var(--base-width) * 100vw, 1638px);
  translate: -50% 0;
  aspect-ratio: 1638 / 217;     
  container-type: inline-size;
}
#lead .flower_object_block.object_block_btm {
  top: auto;
  bottom: min(140 / var(--base-width) * 100vw, 140px);
}
#lead .flower_object_block > .object {
  width: calc(41 / 1638 * 100cqi);
}
#lead .flower_object_wrap  {
  justify-content: space-between;
  gap: calc(40 / 1638 * 100cqi);
  width: calc(223 / 1638 * 100cqi);
  height: 100%;
}
#lead .flower_object_wrap .object:first-of-type {
  align-self: start;
  width: calc(68 / 1638 * 100cqi);
}
#lead .flower_object_wrap .object:last-of-type {
  align-self: end;
  width: calc(115 / 1638 * 100cqi);
}
#lead .flower_object_wrap2  {
  gap: calc(61 / 1638 * 100cqi);
  width: calc(260 / 1638 * 100cqi);
}
#lead .flower_object_wrap2 .object:first-of-type {
  width: calc(117 / 1638 * 100cqi);
}
#lead .flower_object_wrap2 .object:last-of-type {
  width: calc(82 / 1638 * 100cqi);
}
#lead .flower_object_wrap.flower_object_wrap3  {
  gap: calc(61 / 1638 * 100cqi);
  width: calc(240 / 1638 * 100cqi);
}
#lead .flower_object_wrap.flower_object_wrap3 .object:first-of-type {
  align-self: end;
  width: calc(95 / 1638 * 100cqi);
}
#lead .flower_object_wrap.flower_object_wrap3 .object:last-of-type {
  align-self: start;
  width: calc(84 / 1638 * 100cqi);
}
#lead .object_block_btm .flower_object_wrap  {
  gap: calc(61 / 1638 * 100cqi);
  width: calc(240 / 1638 * 100cqi);
}
#lead .object_block_btm .flower_object_wrap .object:first-of-type {
  align-self: start;
  width: calc(84 / 1638 * 100cqi);
}
#lead .object_block_btm .flower_object_wrap .object:last-of-type {
  align-self: end;
  width: calc(95 / 1638 * 100cqi);
}
#lead .object_block_btm .flower_object_wrap2  {
  gap: calc(61 / 1638 * 100cqi);
  width: calc(260 / 1638 * 100cqi);
}
#lead .object_block_btm .flower_object_wrap2 .object:first-of-type {
  align-self: end;
  width: calc(82 / 1638 * 100cqi);
}
#lead .object_block_btm .flower_object_wrap2 .object:last-of-type {
  align-self: start;
  width: calc(117 / 1638 * 100cqi);
}
#lead .object_block_btm .flower_object_wrap.flower_object_wrap3  {
  gap: calc(40 / 1638 * 100cqi);
  width: calc(223 / 1638 * 100cqi);
}
#lead .object_block_btm .flower_object_wrap.flower_object_wrap3 .object:first-of-type {
  align-self: end;
  width: calc(115 / 1638 * 100cqi);
}
#lead .object_block_btm .flower_object_wrap.flower_object_wrap3 .object:last-of-type {
  align-self: start;
  width: calc(68 / 1638 * 100cqi);
}
#lead .outer {
  position: relative;
}
#lead .inner {
  position: relative;
}
#lead .txt_box p.txt {
  position: relative;
  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;
}
@media screen and (max-width: 991px) {
  #lead .txt_box p.txt {
    font-size: clamp(1.4rem, (24 / var(--base-width) * 100vw), 2.4rem);
  }
}
@media screen and (max-width: 767px) {
  #lead .txt_box p.txt {
    font-size: clamp(1.2rem, (24 / var(--base-width) * 100vw), 2.4rem);
  }
}
@media screen and (max-width: 640px) {
  #lead {
    width: 100%;
    padding: 0;
    container-type: inline-size;
  }
  #lead .outer {
    position: relative;
    padding-block: min(238 / var(--base-width) * 100vw, 238px * var(--responsive-ratio));
  }
  #lead .txt_box p.txt {
    font-size: min(1.4rem, (14 / var(--base-width) * 100vw), 1.4rem * var(--responsive-ratio));
    line-height: 240%;
    letter-spacing: 0.05em;
    text-align: center;
  }
  #lead .flower_object_block {
    justify-content: space-between;
    align-items: center;
    gap: 0;
    top: min(72 / var(--base-width) * 100vw, 72px * var(--responsive-ratio));
    left: 50%;
    width: min(326 / var(--base-width) * 100vw, 326px * var(--responsive-ratio));
    translate: -50% 0;
    aspect-ratio: 326 / 102;
    z-index: 1;
  } 
  #lead .flower_object_block > .object {
    width: calc(14 / 326 * 100cqi);
  }
  #lead .flower_object_block > .object {
    flex-shrink: 0;
  }
  #lead .flower_object_block > .object1,
  #lead .flower_object_block > .object10 {
    align-self: end;
  }
  #lead .flower_object_block > .object4,
  #lead .flower_object_block > .object8 {
    align-self: center;
  }
  #lead .flower_object_block > .object7 {
    translate: calc(14 / 326 * 100cqi) 0;
  }
  #lead .flower_object_block .flower_object_wrap > .object {
    flex-shrink: 0;
  }
  #lead .flower_object_wrap.flower_object_wrap1 {
    width: calc(84 / 326 * 100cqi);
    translate: calc(-14 / 326 * 100cqi) 0;
  }
  #lead .flower_object_wrap.flower_object_wrap1 .object:first-of-type {
    align-self: start;
    width: calc(27 / 326 * 100cqi);
  }
  #lead .flower_object_wrap.flower_object_wrap1 .object:last-of-type {
    align-self: end;
    width: calc(57 / 326 * 100cqi);
    margin-left: calc(-18 / 326 * 100cqi);
  }
  #lead .flower_object_wrap.flower_object_wrap2 {
    gap: 0;
    width: calc(76 / 326 * 100cqi);
  }
  #lead .flower_object_wrap.flower_object_wrap2 .object:first-of-type {
    align-self: start;
    width: calc(59 / 326 * 100cqi);
  }
  #lead .flower_object_wrap.flower_object_wrap2 .object:last-of-type {
    align-self: end;
    width: calc(34 / 326 * 100cqi);
    margin-left: calc(-18 / 327 * 100cqi);
  }
  #lead .flower_object_wrap.flower_object_wrap3 {
    gap: 0;
    width: calc(83 / 326 * 100cqi);
    translate: calc(5 / 326 * 100cqi) 0;
  }
  #lead .flower_object_wrap.flower_object_wrap3 .object:first-of-type {
    align-self: end;
    width: calc(48 / 326 * 100cqi);
    margin-left: calc(18 / 326 * 100cqi);
  }
  #lead .flower_object_wrap.flower_object_wrap3 .object:last-of-type {
    align-self: start;
    width: calc(33 / 326 * 100cqi);
  }
  #lead .flower_object_block.object_block_btm {
    top: auto;
    bottom: min(72 / var(--base-width) * 100vw, 72px * var(--responsive-ratio));
  }
  #lead .flower_object_block.object_block_btm .flower_object_wrap.flower_object_wrap1 {
    width: calc(83 / 326 * 100cqi);
    translate: calc(-14 / 326 * 100cqi) 0;
  }
  #lead .flower_object_block.object_block_btm .flower_object_wrap.flower_object_wrap1 .object:first-of-type {
    align-self: start;
    width: calc(34 / 326 * 100cqi);
  }
  #lead .flower_object_block.object_block_btm .flower_object_wrap.flower_object_wrap1 .object:last-of-type {
    align-self: end;
    width: calc(48 / 326 * 100cqi);
    margin-left: calc(-18 / 326 * 100cqi);
  }
  #lead .flower_object_block.object_block_btm .flower_object_wrap.flower_object_wrap2 {
    gap: 0;
    width: calc(76 / 326 * 100cqi);
  }
  #lead .flower_object_block.object_block_btm .flower_object_wrap.flower_object_wrap2 .object:first-of-type {
    align-self: start;
    width: calc(33 / 326 * 100cqi);
  }
  #lead .flower_object_block.object_block_btm .flower_object_wrap.flower_object_wrap2 .object:last-of-type {
    align-self: end;
    width: calc(59 / 326 * 100cqi);
    margin-left: calc(-18 / 327 * 100cqi);
  }
  #lead .flower_object_block.object_block_btm .flower_object_wrap.flower_object_wrap3 {
    gap: 0;
    width: calc(83 / 326 * 100cqi);
    translate: calc(0 / 326 * 100cqi) 0;
  }
  #lead .flower_object_block.object_block_btm .flower_object_wrap.flower_object_wrap3 .object:first-of-type {
    align-self: end;
    width: calc(57 / 326 * 100cqi);
    margin-left: calc(18 / 326 * 100cqi);
  }
  #lead .flower_object_block.object_block_btm .flower_object_wrap.flower_object_wrap3 .object:last-of-type {
    align-self: start;
    width: calc(27 / 326 * 100cqi);
  }
}

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

about_libertyfabric

--------------------------------------------------*/
#about_libertyfabric {
  position: relative;
  padding-block: var(--section-padding-block);
  background-color: var(--secondary-bg-color);
  z-index: 2;
}
#about_libertyfabric::before,
#about_libertyfabric::after {
  content: '';
  position: absolute;
  top: 1px;
  left: 0;
  width: 100%;
  aspect-ratio: 1920 / 17;
  background: url(../img/section_line_top.png) center top no-repeat;
  background-size: 100% auto;
  pointer-events: none;
  translate: 0 -100%;
}
#about_libertyfabric::after {
  top: auto;
  bottom: 1px;
  background: url(../img/section_line_btm.png) center top no-repeat;
  background-size: 100% auto;
  translate: 0 100%;
}
#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;
  animation-delay: 0.25s;
}
#about_libertyfabric .main_title .main_txt .txt {
  display: inline-block;
  opacity: 0;
}
#about_libertyfabric .main_title .main_txt.scrollin .txt {
  animation: fadein 1.0s cubic-bezier(0.33, 1, 0.68, 1) both;
}
#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: 1492;
}
#about_libertyfabric .inner .img_block {
  width: calc(700 / 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 / 700 * 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(680 / 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: 312;
  }
  #about_libertyfabric .inner .img_block {
    width: 100%;
  }
  #about_libertyfabric .inner .img_block .img .img_wrap {
    border-radius: 20px;
  }
  #about_libertyfabric .inner .txt_block {
    width: calc(300 / var(--about_libertyfabric_inner) * 100cqi);
    padding-top: 0;
  }
  #about_libertyfabric::before,
  #about_libertyfabric::after {
    aspect-ratio: 375 / 8;
    background: url(../img/section_line_top_sp.png) center top no-repeat;
    background-size: 100% auto;
  }
  #about_libertyfabric::after {
    background: url(../img/section_line_btm_sp.png) center top no-repeat;
    background-size: 100% auto;
  }
}

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

design

--------------------------------------------------*/
#design {
  position: relative;
  padding-top: var(--section-padding-block);
  padding-bottom: clamp(66px, 100 / var(--base-width) * 100vw, 100px);
  z-index: 1;
}
#design .main_title {
  position: relative;
  text-align: center;
  line-height: 1.2;
}
#design .design_content {
  margin-bottom: clamp(133px, 200 / var(--base-width) * 100vw, 200px);
}
#design .design_content:last-of-type {
  margin-bottom: 0;
}
#design .design_block {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: calc(var(--design_design_block) / var(--base-width) * 100vw);
  margin-inline: auto;
  margin-bottom: clamp(80px, 120 / var(--base-width) * 100vw, 120px);
  container-type: inline-size;
  --design_design_block: 1560;
}
#design .design_block .flower_object_wrap {
  position: absolute;
  top: calc(-30 / var(--design_design_block) * 100cqi);
  left: calc(50% + (580 / var(--design_design_block) * 100cqi));
  width: calc(230 / var(--design_design_block) * 100cqi);
  aspect-ratio: 230 / 140;
  justify-content: space-between;
}
#design .design_block .flower_object_wrap .object1 {
  align-self: flex-end;
  width: calc(68 / var(--design_design_block) * 100cqi);
  padding-bottom: calc(10 / var(--design_design_block) * 100cqi);
}
#design .design_block .flower_object_wrap .object2 {
  width: calc(95 / var(--design_design_block) * 100cqi);
}
#design .design_block .flower_object_wrap2 {
  top: auto;
  bottom: calc(-50 / var(--design_design_block) * 100cqi);
  left: calc(50% + (100 / var(--design_design_block) * 100cqi));
  width: calc(347 / var(--design_design_block) * 100cqi);
  aspect-ratio: 347 / 180;
  justify-content: space-between;
}
#design .design_block .flower_object_wrap2 .object1 {
  align-self: flex-start;
  width: calc(95 / var(--design_design_block) * 100cqi);
  padding-bottom: 0;
}
#design .design_block .flower_object_wrap2 .object2 {
  align-self: flex-end;
  width: calc(54 / var(--design_design_block) * 100cqi);
}
#design .design_block .flower_object_wrap2 .object3 {
  padding-top: calc(10 / var(--design_design_block) * 100cqi);
  width: calc(68 / var(--design_design_block) * 100cqi);
}
#design .design_block.design_HEG004J .flower_object_wrap1 {
  top: calc(-20 / var(--design_design_block) * 100cqi);
  left: calc(50% + (550 / var(--design_design_block) * 100cqi));
  width: calc(269 / var(--design_design_block) * 100cqi);
  aspect-ratio: 269 / 140;
}
#design .design_block.design_HEG004J .flower_object_wrap1 .object1 {
  width: calc(84 / var(--design_design_block) * 100cqi);
}
#design .design_block.design_HEG004J .flower_object_wrap1 .object2 {
  width: calc(117 / var(--design_design_block) * 100cqi);
}
#design .design_block.design_HEG004J .flower_object_wrap2 {
  top: auto;
  bottom: calc(-50 / var(--design_design_block) * 100cqi);
  left: calc(50% + (100 / var(--design_design_block) * 100cqi));
  width: calc(398 / var(--design_design_block) * 100cqi);
  aspect-ratio: 398 / 180;
  justify-content: space-between;
}
#design .design_block.design_HEG004J .flower_object_wrap2 .object1 {
  width: calc(117 / var(--design_design_block) * 100cqi);
}
#design .design_block.design_HEG004J .flower_object_wrap2 .object2 {
  width: calc(67 / var(--design_design_block) * 100cqi);
}
#design .design_block.design_HEG004J .flower_object_wrap2 .object3 {
  padding-top: calc(10 / var(--design_design_block) * 100cqi);
  width: calc(84 / var(--design_design_block) * 100cqi);
}
#design .design_block.design_HEA005J .flower_object_wrap1 {
  top: 0;
  left: calc(50% + (550 / var(--design_design_block) * 100cqi));
  width: calc(266 / var(--design_design_block) * 100cqi);
  aspect-ratio: 266 / 140;
}
#design .design_block.design_HEA005J .flower_object_wrap1 .object1 {
  width: calc(82 / var(--design_design_block) * 100cqi);
}
#design .design_block.design_HEA005J .flower_object_wrap1 .object2 {
  width: calc(115 / var(--design_design_block) * 100cqi);
}
#design .design_block.design_HEA005J .flower_object_wrap2 {
  top: auto;
  bottom: calc(-50 / var(--design_design_block) * 100cqi);
  left: calc(50% + (100 / var(--design_design_block) * 100cqi));
  width: calc(392 / var(--design_design_block) * 100cqi);
  aspect-ratio: 392 / 180;
  justify-content: space-between;
}
#design .design_block.design_HEA005J .flower_object_wrap2 .object1 {
  width: calc(115 / var(--design_design_block) * 100cqi);
}
#design .design_block.design_HEA005J .flower_object_wrap2 .object2 {
  width: calc(66 / var(--design_design_block) * 100cqi);
}
#design .design_block.design_HEA005J .flower_object_wrap2 .object3 {
  padding-top: calc(10 / var(--design_design_block) * 100cqi);
  width: calc(82 / var(--design_design_block) * 100cqi);
}
#design .design_block .txt_block {
  position: relative;
  width: calc(706 / var(--design_design_block) * 100cqi);
  padding-right: calc(46 / var(--design_design_block) * 100cqi);
  padding-bottom: 5%;
  container-type: inline-size;
}
#design .design_block .serial {
  display: flex !important;
  align-items: center;
  gap: calc(20 / 40 * 1em);
}
#design .design_block .serial.sp {
  display: none !important;
}
#design .design_block .serial .object {
  width: calc(35 / 40 * 1em);
  opacity: 0;
}
#design .design_block .serial.scrollin .object {
  animation: scale_up 1.0s cubic-bezier(0.33, 1, 0.68, 1) both;
  animation-delay: 0.25s;
}
#design .img_block {
  position: relative;
  width: calc(714 / var(--design_design_block) * 100cqi);
  overflow: hidden;
}
#design .img_block .img {
  position: relative;
  display: grid;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}
#design .img_block .img .img_wrap {
  position: relative;
  align-self: center;
  justify-self: center;
  width: 100%;
}
#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.6s;
}
#design .img_block .img .frame {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}
#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(240 / 714 * 100%);
  opacity: 0;    
  translate: 5% 0;
}
#design .design_HEG004J .img_block .img .watch > img {
  width: calc(216 / 714 * 100%);
}
#design .design_HEA005J .img_block .img .watch > img {
  width: calc(280 / 714 * 100%);
}
#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: 1.2s;
}

#design .image_block {
  position: relative;
  display: flex;
  justify-content: space-between;
  width: calc(var(--design_image_block) / var(--base-width) * 100vw);
  margin-inline: auto;
  margin-bottom: clamp(80px, 120 / var(--base-width) * 100vw, 120px);
  container-type: inline-size;
  --design_image_block: 1462;
}
#design .image_block .flower_object_wrap {
  position: absolute;
  top: calc(40 / var(--design_image_block) * 100cqi);
  left: 0;
  translate: -100% 0;
  width: calc(95 / var(--design_image_block) * 100cqi);
  aspect-ratio: 95 / 140;
}
#design .image_block .flower_object_wrap .object1 {
  width: 100%;
}
#design .image_block .flower_object_wrap2 {
  position: absolute;
  top: auto;
  bottom: calc(40 / var(--design_image_block) * 100cqi);
  left: 50%;
  translate: -110% 0;
  width: calc(170 / var(--design_image_block) * 100cqi);
  aspect-ratio: 170 / 140;
  justify-content: space-between;
}
#design .image_block .flower_object_wrap2 .object1 {
  align-self: flex-end;
  width:  calc(54 / var(--design_image_block) * 100cqi);
}
#design .image_block .flower_object_wrap2 .object2 {
  width: calc(68 / var(--design_image_block) * 100cqi);
}
#design .image_block.image_HEG004J .flower_object_wrap {
  position: absolute;
  top: calc(40 / var(--design_image_block) * 100cqi);
  left: 0;
  translate: -80% 0;
  width: calc(117 / var(--design_image_block) * 100cqi);
  aspect-ratio: 117 / 140;
}
#design .image_block.image_HEG004J .flower_object_wrap2 {
  position: absolute;
  top: auto;
  bottom: calc(40 / var(--design_image_block) * 100cqi);
  left: 50%;
  translate: -110% 0;
  width: calc(199 / var(--design_image_block) * 100cqi);
  aspect-ratio: 199 / 140;
  justify-content: space-between;
}
#design .image_block.image_HEG004J .flower_object_wrap2 .object1 {
  align-self: flex-end;
  width:  calc(67 / var(--design_image_block) * 100cqi);
}
#design .image_block.image_HEG004J .flower_object_wrap2 .object2 {
  width: calc(84 / var(--design_image_block) * 100cqi);
}
#design .image_block.image_HEA005J .flower_object_wrap {
  position: absolute;
  top: calc(40 / var(--design_image_block) * 100cqi);
  left: 0;
  translate: -80% 0;
  width: calc(115 / var(--design_image_block) * 100cqi);
  aspect-ratio: 115 / 140;
}
#design .image_block.image_HEA005J .flower_object_wrap2 {
  position: absolute;
  top: auto;
  bottom: calc(30 / var(--design_image_block) * 100cqi);
  left: 50%;
  translate: -110% 0;
  width: calc(195 / var(--design_image_block) * 100cqi);
  aspect-ratio: 195 / 140;
  justify-content: space-between;
}
#design .image_block.image_HEA005J .flower_object_wrap2 .object1 {
  align-self: flex-end;
  width:  calc(66 / var(--design_image_block) * 100cqi);
}
#design .image_block.image_HEA005J .flower_object_wrap2 .object2 {
  width: calc(82 / var(--design_image_block) * 100cqi);
}
#design .image_block .model_image,
#design .image_block .strap_image {
  width: calc(660 / var(--design_image_block) * 100cqi);
}
#design .image_block .strap_image {
  display: flex;
  justify-content: center;
  align-items: center;
}
#design .image_block .model_image_wrap {
  border-radius: clamp(22px, 32 / var(--base-width) * 100vw, 32px);
  overflow: hidden;
}
#design .image_block .strap_image .img {
  width: calc(436 / 660 * 100%);
}
#design .flower_obj_block {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: calc(var(--flower_obj_block) / var(--base-width) * 100vw);
  aspect-ratio: 1680 / 80;
  margin-inline: auto;
  container-type: inline-size;
  --flower_obj_block: 1680;
}
#design .flower_obj_block .object svg {
  width: 100%;
}
#design .flower_obj_block .object {
  width: calc(54 / var(--flower_obj_block) * 100cqi);
}
#design .flower_obj_block .object:nth-child(2n+1) {
  width: calc(29 / var(--flower_obj_block) * 100cqi);
}
#design .flower_obj_block.obj_HEG004J .object {
  width: calc(67 / var(--flower_obj_block) * 100cqi);
}
#design .flower_obj_block.obj_HEG004J .object:nth-child(2n+1) {
  width: calc(29 / var(--flower_obj_block) * 100cqi);
}
#design .flower_obj_block.obj_HEA005J .object {
  width: calc(66 / var(--flower_obj_block) * 100cqi);
}
#design .flower_obj_block.obj_HEA005J .object:nth-child(2n+1) {
  width: calc(29 / var(--flower_obj_block) * 100cqi);
}
@media screen and (max-width: 1200px) {
  #design .design_block .flower_object_wrap {
    top: calc(-60 / var(--design_design_block) * 100cqi) !important;
  }
  #design .design_block .flower_object_wrap2 {
    top: auto !important;
    bottom: calc(-130 / var(--design_design_block) * 100cqi) !important;
  }
}
@media screen and (max-width: 991px) {
  #design .design_block {
    align-items: flex-start;
  }
}
@media screen and (max-width: 640px) {
  #design {
    padding-bottom: min(35 / var(--base-width) * 100vw, 35px * var(--responsive-ratio));
  }
  #design .design_block {
    flex-direction: column !important;
    justify-content: center;
    align-items: center;
    gap: 0;
    width: min(320 / var(--base-width) * 100vw, 320px * var(--responsive-ratio));
    margin-inline: auto;
    margin-bottom: clamp(100px, 100 / var(--base-width) * 100vw, 100px * var(--responsive-ratio));
    --design_design_block: 320;
  }
  #design .design_block .serial.sp {
    display: flex !important;
    align-items: center;
    justify-content: flex-start;
    gap: calc(20 / 40 * 1em);
    width: 100%;
    margin-bottom: min(15 / var(--base-width) * 100vw, 15px * var(--responsive-ratio));
  }
  #design .design_block .serial.pc {
    display: none !important;
  }
  #design .design_block .txt_block {
    width: min(305 / var(--design_design_block) * 100cqi, 305px * var(--responsive-ratio));
    margin-top: min(40 / var(--base-width) * 100vw, 40px * var(--responsive-ratio));
    padding-right: 0;
    padding-bottom: 0;
  }
  #design .img_block {
    width: min(320 / var(--design_design_block) * 100cqi, 320px * var(--responsive-ratio));
  }
  #design .image_block {
    flex-direction: column !important;
    justify-content: center;
    align-items: center;
    gap: min(50 / var(--base-width) * 100vw, 50px * var(--responsive-ratio));
    width: min(300 / var(--base-width) * 100vw, 300px * var(--responsive-ratio));
    margin-inline: auto;
    margin-bottom: min(40 / var(--base-width) * 100vw, 40px * var(--responsive-ratio));
    container-type: inline-size;
    --design_image_block: 300;
  }
  #design .image_block .model_image {
    width: 100%;
  }
  #design .image_block .strap_image {
    position: relative;
    width: calc(220 / var(--design_image_block) * 100cqi);
    container-type: inline-size;
  }
  #design .image_block .flower_object_wrap {
    top: calc(-60 / 220 * 100cqi);
    translate: -110% 0;
    width: calc(48 / 220 * 100cqi);
  }
  #design .image_block .flower_object_wrap.flower_object_wrap2 {
    top: auto;
    bottom: 0;
    translate: 100% 50%;
    width: calc(76 / 220 * 100cqi);
  }
  #design .image_block.image_HEG004J .flower_object_wrap {
    top: calc(-60 / 220 * 100cqi);
    translate: -100% 0;
    width: calc(59 / 220 * 100cqi);
  }
  #design .image_block.image_HEG004J .flower_object_wrap2 {
    top: auto;
    bottom: 0;
    translate: 100% 40%;
    width: calc(84 / 220 * 100cqi);
    aspect-ratio: 84 / 70;
  }
  #design .image_block.image_HEA005J .flower_object_wrap {
    top: calc(-60 / 220 * 100cqi);
    translate: -100% 0;
    width: calc(57 / 220 * 100cqi);
  }
  #design .image_block.image_HEA005J .flower_object_wrap2 {
    top: auto;
    bottom: 0;
    translate: 100% 40%;
    width: calc(82 / 220 * 100cqi);
    aspect-ratio: 82 / 70;
  }
  #design .image_block .strap_image .img {
    width: 100%;
  }
  #design .design_content {
    margin-bottom: min(115 / var(--base-width) * 100vw, 115px * var(--responsive-ratio));
  }
  #design .flower_obj_block {
    width: min(340 / var(--base-width) * 100vw, 340px * var(--responsive-ratio));
    aspect-ratio: 340 / 40;
    --flower_obj_block: 340;
  }
  #design .flower_obj_block .object:nth-child(n+12) {
    display: none;
  }
  #design .flower_obj_block .object {
    width: calc(27 / var(--flower_obj_block) * 100cqi);
  }
  #design .flower_obj_block .object:nth-child(2n+1) {
    width: calc(14 / var(--flower_obj_block) * 100cqi);
  }
  #design .flower_obj_block.obj_HEG004J .object {
    width: calc(33 / var(--flower_obj_block) * 100cqi);
  }
  #design .flower_obj_block.obj_HEG004J .object:nth-child(2n+1) {
    width: calc(14 / var(--flower_obj_block) * 100cqi);
  }
  #design .flower_obj_block.obj_HEA005J .object {
    width: calc(33 / var(--flower_obj_block) * 100cqi);
  }
  #design .flower_obj_block.obj_HEA005J .object:nth-child(2n+1) {
    width: calc(14 / var(--flower_obj_block) * 100cqi);
  }
  #design .design_block .flower_object_wrap {
    top: 0 !important;
    left: auto;
    right: calc(20 / var(--design_design_block) * 100cqi);
    translate: 0 -55%;
    width: calc(102 / var(--design_design_block) * 100cqi);
  }
  #design .design_block .flower_object_wrap2 {
    display: none !important;
  }
  #design .design_block .flower_object_wrap .object1 {
    width: calc(34 / var(--design_design_block) * 100cqi);
    padding-bottom: calc(5 / var(--design_design_block) * 100cqi);
  }
  #design .design_block .flower_object_wrap .object2 {
    width: calc(48 / var(--design_design_block) * 100cqi);
  }
  #design .design_block.design_HEG004J .flower_object_wrap1 {
    top: 0 !important;
    left: auto;
    right: calc(20 / var(--design_design_block) * 100cqi);
    translate: 0 -65%;
    width: calc(120 / var(--design_design_block) * 100cqi);
  }
  #design .design_block.design_HEG004J .flower_object_wrap .object1 {
    width: calc(42 / var(--design_design_block) * 100cqi);
    padding-bottom: calc(5 / var(--design_design_block) * 100cqi);
  }
  #design .design_block.design_HEG004J .flower_object_wrap .object2 {
    width: calc(59 / var(--design_design_block) * 100cqi);
  }
  #design .design_block.design_HEA005J .flower_object_wrap1 {
    top: 0 !important;
    left: auto;
    right: calc(20 / var(--design_design_block) * 100cqi);
    translate: 0 -65%;
    width: calc(118 / var(--design_design_block) * 100cqi);
  }
  #design .design_block.design_HEA005J .flower_object_wrap .object1 {
    width: calc(41 / var(--design_design_block) * 100cqi);
    padding-bottom: calc(5 / var(--design_design_block) * 100cqi);
  }
  #design .design_block.design_HEA005J .flower_object_wrap .object2 {
    width: calc(58 / var(--design_design_block) * 100cqi);
  }
}

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

box

--------------------------------------------------*/
#box {
  position: relative;
  padding-top: clamp(66px, 100 / var(--base-width) * 100vw, 100px);
  padding-bottom: var(--section-padding-block);
}
#box .outer {
  position: relative;
  z-index: 2;
}
#box .main_title {
  text-align: center;
}
#box .lead_block {
  position: relative;
  margin-bottom: clamp(54px, 80 / var(--base-width) * 100vw, 80px);
}
#box .lead_block .flower_object_wrap {
  position: absolute;
  top: 0;
  left: 50%;
  translate: -200% -75%;
  width: min(422 / var(--base-width) * 100vw, 422px);
  aspect-ratio: 422 / 190;
  display: block;
  container-type: inline-size;
}
#box .lead_block .flower_object_wrap .object1 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: calc(29 / 422 * 100cqi);
}
#box .lead_block .flower_object_wrap .object2 {
  position: absolute;
  top: calc(10 / 422 * 100cqi);
  left: calc(60 / 422 * 100cqi);
  width: calc(95 / 422 * 100cqi);
}
#box .lead_block .flower_object_wrap .object3 {
  position: absolute;
  bottom: calc(0 / 422 * 100cqi);
  left: calc(213 / 422 * 100cqi);
  width: calc(54 / 422 * 100cqi);
}
#box .lead_block .flower_object_wrap .object4 {
  position: absolute;
  top: 0;
  left: calc(277 / 422 * 100cqi);
  width: calc(29 / 422 * 100cqi);
}
#box .lead_block .flower_object_wrap .object5 {
  position: absolute;
  bottom: calc(40 / 422 * 100cqi);
  right: 0;
  width: calc(68 / 422 * 100cqi);
}
#box .lead_block .flower_object_wrap2 {
  left: auto;
  right: 50%;
  translate: 200% -85%;
}
#box .lead_block .flower_object_wrap2 .object1 {
  position: absolute;
  top: calc(50 / 422 * 100cqi);
  left: 0;
  width: calc(84 / 422 * 100cqi);
}
#box .lead_block .flower_object_wrap2 .object2 {
  position: absolute;
  top: 0;
  left: calc(115 / 422 * 100cqi);
  width: calc(29 / 422 * 100cqi);
}
#box .lead_block .flower_object_wrap2 .object3 {
  position: absolute;
  bottom: 0;
  left: calc(153 / 422 * 100cqi);
  width: calc(67 / 422 * 100cqi);
}
#box .lead_block .flower_object_wrap2 .object4 {
  position: absolute;
  top: calc(10 / 422 * 100cqi);
  right: calc(38 / 422 * 100cqi);
  width: calc(117 / 422 * 100cqi);
}
#box .lead_block .flower_object_wrap2 .object5 {
  position: absolute;
  bottom: 0;
  right: 0;
  width: calc(29 / 422 * 100cqi);
}
#box .lead_block p {
  text-align: center;
}
#box .lead_block p.note {
  margin-top: 1.5em;
  color: #7C7571;
  font-size: calc(16 / 20 * 1em);
  line-height: 180%;
  letter-spacing: 0.02em;
}
#box .img_block {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(40px, 120 / var(--base-width) * 100vw, 120px);
  width: clamp(75vw, 1340 / var(--base-width) * 100vw, 1340px);
  margin-inline: auto;
  margin-bottom: clamp(80px, 120 / var(--base-width) * 100vw, 120px);
  container-type: inline-size;
}
#box .img_block .img {
  /*
  width: calc(670 / var(--box_img_block) * 100cqi);
  */
  opacity: 0;
}
#box .img_block .img {
  position: relative;
  container-type: inline-size;
}
#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;
}
#box .img_block.scrollin .img.img3 {
  animation-delay: 1.5s;
}
#box .flower_obj_block.object_block_btm {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: min(120 / var(--base-width) * 100vw, 120px);
  width: min(1680 / var(--base-width) * 100vw, 1680px);
  aspect-ratio: 1680 / 180;
  margin-inline: auto;
  container-type: inline-size;
}
#box .flower_obj_block.object_block_btm > .object {
  width: calc(29 / 1680 * 100cqi);
}
#box .flower_obj_block.object_block_btm .flower_object_wrap {
  justify-content: space-between;
  gap: calc(60 / 1680 * 100cqi);
  width: calc(198 / 1680 * 100cqi);
  height: 100%;
}
#box .flower_obj_block.object_block_btm .flower_object_wrap .object:first-of-type {
  align-self: start;
  width: calc(84 / 1680 * 100cqi);
}
#box .flower_obj_block.object_block_btm .flower_object_wrap .object:last-of-type {
  align-self: end;
  width: calc(54 / 1680 * 100cqi);
}
#box .flower_obj_block.object_block_btm .flower_object_wrap2 {
  gap: calc(62 / 1680 * 100cqi);
  width: calc(392 / 1680 * 100cqi);
}
#box .flower_obj_block.object_block_btm .flower_object_wrap2 .object:first-of-type {
  align-self: start;
  width: calc(115 / 1680 * 100cqi);
}
#box .flower_obj_block.object_block_btm .flower_object_wrap2 .object:nth-of-type(2) {
  align-self: end;
  width: calc(65 / 1680 * 100cqi);
}
#box .flower_obj_block.object_block_btm .flower_object_wrap2 .object:last-of-type {
  align-self: start;
  width: calc(82 / 1680 * 100cqi);
}
#box .flower_obj_block.object_block_btm .flower_object_wrap3 {
  gap: calc(60 / 1680 * 100cqi);
  width: calc(195 / 1680 * 100cqi);
}
#box .flower_obj_block.object_block_btm .flower_object_wrap3 .object:first-of-type {
  align-self: end;
  width: calc(67 / 1680 * 100cqi);
}
#box .flower_obj_block.object_block_btm .flower_object_wrap3 .object:last-of-type {
  align-self: start;
  width: calc(68 / 1680 * 100cqi);
}
@media screen and (max-width: 991px) {
  #box .lead_block .flower_object_wrap {
    translate: -200% -105%;
  }
  #box .lead_block .flower_object_wrap2 {
    translate: 200% -105%;
  }
}
@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 .flower_object_block {
    right: calc(-70 / var(--box_lead_block) * 100cqi);
  }
}
@media screen and (max-width: 640px) {
  #box {
    padding-top: min(35 / var(--base-width) * 100vw, 35px * var(--responsive-ratio));
    padding-bottom: clamp(80px, 80 / var(--base-width) * 100vw, 80px * 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 {
    width: min(300 / var(--base-width) * 100vw, 300px * var(--responsive-ratio));
    margin-inline: auto;
    margin-bottom: clamp(40px, 40 / var(--base-width) * 100vw, 40px * var(--responsive-ratio));
    --box_lead_block: 300;
  }
  #box .lead_block p {
    text-align: justify;
  }
  #box .lead_block p.note {
    width: 100%;
    margin-top: 1em;
    font-size: calc(12 / 14 * 1em);
    line-height: 180%;
    letter-spacing: 0.02em;
  }
  #box .img_block {
    grid-template-columns: 1fr;
    gap: min(30 / var(--base-width) * 100vw, 30px * var(--responsive-ratio));
    width: min(220 / var(--base-width) * 100vw, 220px * var(--responsive-ratio));
    margin-inline: auto;
    margin-bottom: min(70 / var(--base-width) * 100vw, 70px * var(--responsive-ratio));
    --box_img_block: 220;
  }
  #box .img_block .img {
    width: 100%;
  }
  #box .img_block .object {
    position: absolute;
  }
  #box .img_block .HEE007J .object1 {
    top: calc(-10 / 220 * 100cqi);
    left: calc(-60 / 220 * 100cqi);
    width: calc(41 / 220 * 100cqi);
  }
  #box .img_block .HEE007J .object2 {
    top: calc(214 / 220 * 100cqi);
    right: calc(-20 / 220 * 100cqi);
    width: calc(28 / 220 * 100cqi);
  }
  #box .img_block .HEE007J .object3 {
    top: calc(176 / 220 * 100cqi);
    right: calc(-55 / 220 * 100cqi);
    width: calc(42 / 220 * 100cqi);
  }
  #box .img_block .HEG004J .object1 {
    bottom: calc(18 / 220 * 100cqi);
    left: calc(-65 / 220 * 100cqi);
    width: calc(48 / 220 * 100cqi);
  }
  #box .img_block .HEA005J .object1 {
    top: calc(30 / 220 * 100cqi);
    left: calc(-55 / 220 * 100cqi);
    width: calc(34 / 220 * 100cqi);
  }
  #box .img_block .HEA005J .object2 {
    bottom: calc(-10 / 220 * 100cqi);
    right: calc(-30 / 220 * 100cqi);
    width: calc(33 / 220 * 100cqi);
  }
  #box .flower_obj_block.object_block_btm {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: min(3 / var(--base-width) * 100vw, 3px * var(--responsive-ratio));
    width: min(327 / var(--base-width) * 100vw, 327px * var(--responsive-ratio));
    aspect-ratio: 327 / 102;
    --flower_obj_block: 327;
  }
  #box .flower_obj_block.object_block_btm > .object {
    width: calc(14 / 327 * 100cqi);
    flex-shrink: 0;
  }
  #box .flower_obj_block.object_block_btm > .object4,
  #box .flower_obj_block.object_block_btm > .object8 {
    align-self: center;
  }
  #box .flower_obj_block.object_block_btm .flower_object_wrap {
    gap: 0;
    width: calc(83 / 327 * 100cqi);
    height: 100%;
  }
  #box .flower_obj_block.object_block_btm .flower_object_wrap > .object {
    flex-shrink: 0;
  }
  #box .flower_obj_block.object_block_btm .flower_object_wrap1 {
    translate: calc(-14 / 327 * 100cqi) 0;
  }
  #box .flower_obj_block.object_block_btm .flower_object_wrap .object:first-of-type {
    align-self: start;
    width: calc(34 / 327 * 100cqi);
  }
  #box .flower_obj_block.object_block_btm .flower_object_wrap .object:last-of-type {
    align-self: end;
    width: calc(48 / 327 * 100cqi);
  }
  #box .flower_obj_block.object_block_btm .flower_object_wrap2 {
    gap: 0;
    width: calc(76 / 327 * 100cqi);
  }
  #box .flower_obj_block.object_block_btm .flower_object_wrap2 .object:first-of-type {
    align-self: end;
    width: calc(33 / 327 * 100cqi);
  }
  #box .flower_obj_block.object_block_btm .flower_object_wrap2 .object:last-of-type {
    align-self: start;
    width: calc(59 / 327 * 100cqi);
    margin-left: calc(-18 / 327 * 100cqi);
  }
  #box .flower_obj_block.object_block_btm .flower_object_wrap3 {
    gap: 0;
    width: calc(84 / 327 * 100cqi);
    translate: calc(14 / 327 * 100cqi) 0;
  }
  #box .flower_obj_block.object_block_btm .flower_object_wrap3 .object:first-of-type {
    align-self: end;
    width: calc(57 / 327 * 100cqi);
  }
  #box .flower_obj_block.object_block_btm .flower_object_wrap3 .object:last-of-type {
    align-self: start;
    width: calc(27 / 327 * 100cqi);
  }
}

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

lineup

--------------------------------------------------*/
#lineup {
  position: relative;
  padding-block: clamp(120px, 180 / var(--base-width) * 100vw, 180px);
  --primary-width: 1600;
  background-color: var(--secondary-bg-color);
}
#lineup::before {
  content: '';
  position: absolute;
  top: 1px;
  left: 0;
  width: 100%;
  aspect-ratio: 1920 / 17;
  background: url(../img/section_line_top.png) center top no-repeat;
  background-size: 100% auto;
  pointer-events: none;
  translate: 0 -100%;
}
#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 > .series_title {
  position: relative;
  margin-bottom: calc(80 / 32 * 1em);
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: clamp(2.1rem, (32 / var(--base-width) * 100vw), 3.2rem);
  letter-spacing: 0.05em;
  text-align: center;
}
#lineup > .outer > .series_title .txt {

}
#lineup > .outer > .series_title .main_txt {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
}
#lineup > .outer > .series_title .main_txt .object {
  width: calc(26 / 32 * 1em);
  opacity: 0;
}
#lineup > .outer > .series_title .main_txt.scrollin .object {
  animation: scale_up 1.0s cubic-bezier(0.33, 1, 0.68, 1) both;
  animation-delay: 0.25s;
}
#lineup .product_block {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: min(60 / 1332 * 100vw, 60px);
  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: 1392;
}
#lineup .product {
  position: relative;
}
#lineup .product .inner {
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  height: 100%;
}
#lineup .product .inner .img_box {
  position: relative;
  width: calc(223 / 424 * 100%);
  z-index: 1;
}
#lineup .product .inner .txt_box {
  position: relative;
  width: calc(180 / 424 * 100%);
  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;
  height: 100%;
  padding-top: 15%;
  padding-bottom: 32%;
}
#lineup .product.HEE007J .inner .txt_box .txt_box_inner {
  padding-top: 2.5%;
}
#lineup .product .inner .txt_box .ladygold {
  position: relative;
  width: calc(86 / var(--lineup_product_block) * 100cqi);
  margin-bottom: calc(25 / var(--lineup_product_block) * 100cqi);
}
#lineup .txt_box .serial {
  margin-bottom: calc(25 / 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(15 / 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(6 / 16 * 1em);
  font-size: min(16 / var(--primary-width) * 100vw, 1.6rem);
  font-weight: 400;
  line-height: 180%;
}
#lineup .txt_box .date {
  font-size: min(16 / var(--primary-width) * 100vw, 1.6rem);
  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;
  }
}
@media screen and (max-width: 991px) {
  #lineup > .outer > .series_title {
    font-size: clamp(1.6rem, (32 / var(--base-width) * 100vw), 3.2rem);
  }
}
@media screen and (max-width: 640px) {
  #lineup {
    padding-top: min(70 / var(--base-width) * 100vw, 70px * var(--responsive-ratio));
    padding-bottom: min(70 / var(--base-width) * 100vw, 70px * var(--responsive-ratio));
  }
  #lineup > .outer {
    width: 100%;
    container-type: inline-size;
    padding-bottom: 0;
  }
  #lineup > .outer > .series_title {
    font-size: min(16 / var(--base-width) * 100vw, 1.6rem * var(--responsive-ratio));
    font-weight: 400;
    line-height: 160%;
  }
  #lineup > .outer > .series_title .main_txt .object {
    width: calc(18 / 16 * 1em);
    translate: 0 -25%;
  }
  #lineup > .outer > .series_title .main_txt {
    align-items: flex-end;
    gap: 0.4em;
  }
  #lineup > .outer > .series_title .min {
    font-size: calc(12 / 16 * 1em);
  }
  #lineup > .outer > .inner {

  }
  #lineup .product_block {
    grid-template-columns: 1fr;
    gap: 0;
    width: min(300 / var(--base-width) * 100vw, 300px * var(--responsive-ratio));
    margin-inline: auto;
    container-type: inline-size;
    --lineup_product_block: 300;
  }
  #lineup .product.HEG004J {
    margin-top: min(20 / var(--base-width) * 100vw, 20px * var(--responsive-ratio));
  }
  #lineup .product.HEA005J {
    margin-top: max(-10 / var(--base-width) * 100vw, -10px * var(--responsive-ratio));
  }
  #lineup .product .inner {
    justify-content: space-between;
    align-items: flex-end;
    flex-direction: row !important;
  }
  #lineup .product .inner .img_box {
    position: relative;
    width: calc(170 / var(--lineup_product_block) * 100cqi);
    translate: calc(-20 / var(--lineup_product_block) * 100cqi) 0;
  }
  #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: 0 !important;
    padding-bottom: 14.5%;
  }
  #lineup .product .inner .txt_box .txt_box_inner {
    display: block;
    height: auto;
    padding-top: 0;
    padding-bottom: 0;
  }
  #lineup .product .inner .txt_box .ladygold {
    width: calc(65 / var(--lineup_product_block) * 100cqi);
    margin-bottom: calc(20 / var(--lineup_product_block) * 100cqi);
  }
  #lineup .txt_box .serial {
    margin-bottom: calc(20 / 24 * 1em);
    font-size: calc(24 / var(--lineup_product_block) * 100cqi);
  }
  #lineup .txt_box .price {
    margin-bottom: 0.75em;
    font-size: calc(16 / var(--lineup_product_block) * 100cqi);
  }
  #lineup .txt_box .price .min {
    font-size: calc(12 / 16 * 100%);
  }
  #lineup .txt_box .note {
    margin-bottom: calc(6 / 12 * 1em);
    font-size: calc(12 / var(--lineup_product_block) * 100cqi);
    line-height: 180%;
  }
  #lineup .txt_box .date {
    font-size: calc(12 / var(--lineup_product_block) * 100cqi);
  }
  #lineup .txt_box .btns {
    margin-top: calc(35 / 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;
  }
  #lineup::before {
    aspect-ratio: 375 / 8;
    background: url(../img/section_line_top_sp.png) center top no-repeat;
    background-size: 100% auto;
  }
}

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

 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_wrap {
  display: flex !important;
}
.flower_object_block svg {
  display: block;
  width: 100%;
  height: auto;
  overflow: visible;
}
.flower1 svg {
  aspect-ratio: 41 / 42;
}
.flower2 svg {
  aspect-ratio: 68 / 100;
}
.flower3 svg {
  aspect-ratio: 115 / 140;
}
.flower4 svg {
  aspect-ratio: 117 / 140;
}
.flower > img,
.flower > .object > img {
  scale: 1.1;
}
.flower svg {
  stroke: #7c7571;
  stroke-width: var(--stroke-width);
  stroke-linejoin: round;
  --stroke-width: 0;
}
.flower.width05 svg {
  --stroke-width: 0.5;
}
.flower.width06 svg {
  --stroke-width: 0.6;
}
.flower.width07 svg {
  --stroke-width: 0.7;
}
.flower.width08 svg {
  --stroke-width: 0.8;
}
.flower.width09 svg {
  --stroke-width: 0.9;
}
.flower.width10 svg {
  --stroke-width: 1.0;
}
.flower.width12 svg {
  --stroke-width: 1.2;
}
.flower.width15 svg {
  --stroke-width: 1.5;
}

/* --- 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);
      }
    }