@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 {
  max-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: #8D7440;
  --feiler-color: #CD9735;
  --primary-bg-color: #EBF6F8;
  --base-width: 1920;
  --content-width: min((1380 / var(--base-width) * 100vw), 1380px);
  /*
  --content-height: calc(100lvh - 80px);
  */
  --content-height: 100lvh;
  --content-padding-top: 80px;
  --fixed-padding-top: min((272 / var(--base-width)* 100vw), 272px);
}
@media screen and (max-width: 1600px) {
  :root {
    --content-padding-top: max(50px,5vw);
  }
}
@media screen and (max-width: 640px) {
  :root {
    --base-width: 375;
    --content-width: calc(310 / var(--base-width) * 100vw);
    --content-padding-top: 40px;
    --fixed-padding-top: calc(68 / var(--base-width) * 100vw);
  }
}
/*----------------------------------------------------------------------------

 base

----------------------------------------------------------------------------*/
html {
  font-size: 62.5%;
  -webkit-text-size-adjust: 100%;
}
body {
  position: relative;
  color: var(--primary-color);
  font-family: 'Noto sans JP', sans-serif;
  line-height: 1;
  font-size: 1.6rem;
  background: var(--primary-bg-color);
  overflow: hidden;
  -webkit-font-smoothing: antialiased;
}
body.opening_hidden {
  overflow: auto;
}
.sp,
.sp_inline {
  display: none;
}
.pc {
  display: block;
}
@media screen and (max-width: 640px) {
  .sp {
    display: block;
  }
  .sp_inline {
    display: inline;
  }
  .pc {
    display: none;
  }
}
.common_txt {
  font-size: min((20 / var(--base-width) * 100vw), 20px);
  font-weight: 400;
  line-height: calc(40 / 20);
  letter-spacing: normal;
  text-align: justify;
}
.common_txt_ttl {
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--feiler-color);
}
.common_txt_ttl .mark {
  position: relative;
  width: .7em;
  transform: translateY(5%);
}
@media screen and (max-width: 640px) {
  .common_txt {
    font-size: calc(13 / var(--base-width) * 100vw);
    line-height: calc(24 / 13);
  }
  .common_txt_ttl .mark {
    transform: translateY(0);
  }
}

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

 fadein

----------------------------------------------------------------------------*/
.fadein {
  opacity : 0;
  filter: blur(5px);
  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;
    filter: blur(5px);
  }
  100% {
    opacity : 1;
    filter: blur(0);
	}
}
.fadein_y,
.fadein_y02 {
  opacity : 0;
  transform : translate3d(0, 30px, 0);
  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, -30px, 0);
}
.fadein_y.scrollin,
.fadein_y02.scrollin {
  opacity : 1;
  transform : translate3d(0, 0, 0);
  filter: blur(0);
}
@-moz-document url-prefix() {
  .fadein_y {
    transform : translate3d(0, 30px, 0) rotate(0.0001deg);
  }
  .fadein_y02 {
    transform : translate3d(0, -30px, 0) rotate(0.0001deg);
  }
  .fadein_y.scrollin,
  .fadein_y02.scrollin {
    transform : translate3d(0, 0, 0) rotate(0.0001deg);
  }
}
@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);
    filter: blur(5px);
  }
  100% {
    opacity : 1;
    transform : translate3d(0, 0, 0);
    filter: blur(0);
	}
}
@-moz-document url-prefix() {
  @keyframes fadein_y {
    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);
    }
  }
}
.no_blur {
  filter: blur(0) !important;
}

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

 flower animation

----------------------------------------------------------------------------*/
:root {
  --flower-anim-start-opacity: 0;
  --flower-anim-end-opacity: 1.0;
  --flower-anim-start-scale: 0.6;
  --flower-anim-end-scale: 1.0;
  --flower-anim-transition-transform: transform .8s cubic-bezier(.175,.885,.32,1.275);
  --flower-anim-transition-opacity: opacity .8s cubic-bezier(.175,.885,.32,1.275);
  --flower-anim-fuwafuwa: fuwafuwa 5s ease-out infinite;
  --flower-anim-fuwafuwa-delay: 1.2s;
}
.obj img {
  opacity: var(--flower-anim-start-opacity);
  transform: scale(var(--flower-anim-start-scale));
  transition: var(--flower-anim-transition-transform), var(--flower-anim-transition-opacity);
}
@keyframes fuwafuwa {
  0% {
    translate: 0;
  }
  40% {
    translate: 0 10px;
  }
  50% {
    translate: 0 10px;
  }
  90% {
    translate: 0;
  }
}

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

fadeInUp title text anim

--------------------------------------------------*/
:root {
  --fadeInUp-anim: fadeInUp 0.5s cubic-bezier(0.33, 1, 0.68, 1) forwards;
  --fadeInUp-anim-delay: 0.2s;
  --fadeInUp-anim-interval: 0.1s;
}
.fadeInUp {
  display: inline-block;
  overflow: hidden;
}
.fadeInUp > span {
  display: inline-block;
  opacity: 0;
  transform: translateY(1em);
}
.fadeInUp.scrollin > span {
  animation: var(--fadeInUp-anim);
}
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeInUp > span:nth-child(1) { animation-delay: calc(var(--fadeInUp-anim-delay) + (var(--fadeInUp-anim-interval) * 0)) !important; }
.fadeInUp > span:nth-child(2) { animation-delay: calc(var(--fadeInUp-anim-delay) + (var(--fadeInUp-anim-interval) * 1)) !important; }
.fadeInUp > span:nth-child(3) { animation-delay: calc(var(--fadeInUp-anim-delay) + (var(--fadeInUp-anim-interval) * 2)) !important; }
.fadeInUp > span:nth-child(4) { animation-delay: calc(var(--fadeInUp-anim-delay) + (var(--fadeInUp-anim-interval) * 3)) !important; }
.fadeInUp > span:nth-child(5) { animation-delay: calc(var(--fadeInUp-anim-delay) + (var(--fadeInUp-anim-interval) * 4)) !important; }
.fadeInUp > span:nth-child(6) { animation-delay: calc(var(--fadeInUp-anim-delay) + (var(--fadeInUp-anim-interval) * 5)) !important; }
.fadeInUp > span:nth-child(7) { animation-delay: calc(var(--fadeInUp-anim-delay) + (var(--fadeInUp-anim-interval) * 6)) !important; }
.fadeInUp > span:nth-child(8) { animation-delay: calc(var(--fadeInUp-anim-delay) + (var(--fadeInUp-anim-interval) * 7)) !important; }
.fadeInUp > span:nth-child(9) { animation-delay: calc(var(--fadeInUp-anim-delay) + (var(--fadeInUp-anim-interval) * 8)) !important; }
.fadeInUp > span:nth-child(10) { animation-delay: calc(var(--fadeInUp-anim-delay) + (var(--fadeInUp-anim-interval) * 9)) !important; }
.fadeInUp > span:nth-child(11) { animation-delay: calc(var(--fadeInUp-anim-delay) + (var(--fadeInUp-anim-interval) * 10)) !important; }
.fadeInUp > span:nth-child(12) { animation-delay: calc(var(--fadeInUp-anim-delay) + (var(--fadeInUp-anim-interval) * 11)) !important; }
.fadeInUp > span:nth-child(13) { animation-delay: calc(var(--fadeInUp-anim-delay) + (var(--fadeInUp-anim-interval) * 12)) !important; }
.fadeInUp > span:nth-child(14) { animation-delay: calc(var(--fadeInUp-anim-delay) + (var(--fadeInUp-anim-interval) * 13)) !important; }
.fadeInUp > span:nth-child(15) { animation-delay: calc(var(--fadeInUp-anim-delay) + (var(--fadeInUp-anim-interval) * 14)) !important; }
.fadeInUp > span:nth-child(16) { animation-delay: calc(var(--fadeInUp-anim-delay) + (var(--fadeInUp-anim-interval) * 15)) !important; }
.fadeInUp > span:nth-child(17) { animation-delay: calc(var(--fadeInUp-anim-delay) + (var(--fadeInUp-anim-interval) * 16)) !important; }
.fadeInUp > span:nth-child(18) { animation-delay: calc(var(--fadeInUp-anim-delay) + (var(--fadeInUp-anim-interval) * 17)) !important; }
.fadeInUp > span:nth-child(19) { animation-delay: calc(var(--fadeInUp-anim-delay) + (var(--fadeInUp-anim-interval) * 18)) !important; }
.fadeInUp > span:nth-child(20) { animation-delay: calc(var(--fadeInUp-anim-delay) + (var(--fadeInUp-anim-interval) * 19)) !important; }
.fadeInUp > span:nth-child(21) { animation-delay: calc(var(--fadeInUp-anim-delay) + (var(--fadeInUp-anim-interval) * 20)) !important; }
.fadeInUp > span:nth-child(22) { animation-delay: calc(var(--fadeInUp-anim-delay) + (var(--fadeInUp-anim-interval) * 21)) !important; }
.fadeInUp > span:nth-child(23) { animation-delay: calc(var(--fadeInUp-anim-delay) + (var(--fadeInUp-anim-interval) * 22)) !important; }
.fadeInUp > span:nth-child(24) { animation-delay: calc(var(--fadeInUp-anim-delay) + (var(--fadeInUp-anim-interval) * 23)) !important; }
.fadeInUp > span:nth-child(25) { animation-delay: calc(var(--fadeInUp-anim-delay) + (var(--fadeInUp-anim-interval) * 24)) !important; }
.fadeInUp > span:nth-child(26) { animation-delay: calc(var(--fadeInUp-anim-delay) + (var(--fadeInUp-anim-interval) * 25)) !important; }
.fadeInUp > span:nth-child(27) { animation-delay: calc(var(--fadeInUp-anim-delay) + (var(--fadeInUp-anim-interval) * 26)) !important; }
.fadeInUp > span:nth-child(28) { animation-delay: calc(var(--fadeInUp-anim-delay) + (var(--fadeInUp-anim-interval) * 27)) !important; }
.fadeInUp > span:nth-child(29) { animation-delay: calc(var(--fadeInUp-anim-delay) + (var(--fadeInUp-anim-interval) * 28)) !important; }
.fadeInUp > span:nth-child(30) { animation-delay: calc(var(--fadeInUp-anim-delay) + (var(--fadeInUp-anim-interval) * 29)) !important; }

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

gide line

--------------------------------------------------*/
body {
  position: relative;
}
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: #fff;
  line-height: 1;
  z-index: 100;
}
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: 100dvh;
  z-index: 200;
  overflow: hidden;
}
#opening::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--primary-bg-color);
  transform: scale(1);
  filter: blur(0);
  animation: 2.0s opening_bg cubic-bezier(0.33, 1, 0.68, 1) 5.0s forwards;
}
@keyframes opening_bg {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  } 
}
#opening.hidden {
  display: none;
}
#opening .outer {
  position: relative;
  width: 100vw;
  height: 100%;
  opacity: 1;
  animation: 1.0s opening cubic-bezier(0.33, 1, 0.68, 1) 4.5s forwards;
}
@keyframes opening {
  from {
    opacity: 1; 
  }
  to {
    opacity: 0;
  } 
}
#opening .outer .inner {
  position: relative;
  display: grid;
  place-content: center;
  width: 100%;
  height: 100%;
  text-align: center;
}
#opening .outer .inner .logo_box {
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  width: clamp(300px, 26vw, 500px);
  container-type: inline-size;
}
#opening .outer .inner .logo_box img {
  width: 100%;
}
#opening .outer .inner .logo_box .LUKIA {
  width: 27.6cqi;
  opacity: var(--flower-anim-start-opacity);
  transform: scale(var(--flower-anim-start-scale));
  animation: .8s logo_move_FEILER cubic-bezier(.175,.885,.32,1.275) 1.3s forwards;
}
#opening .outer .inner .logo_box .space {
  position: relative;
  width: 12.6cqi;
  text-align: left;
  z-index: 2;
  opacity: var(--flower-anim-start-opacity);
  transform: scale(var(--flower-anim-start-scale));
  animation: .8s logo_move_FEILER cubic-bezier(.175,.885,.32,1.275) 1.6s forwards;
}
#opening .outer .inner .logo_box .space img {
  width: 58.73%;
}
@keyframes space_opacity {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  } 
}
#opening .outer .inner .logo_box .FEILER {
  width: 52.2cqi;
}
#opening .outer .inner .logo {
  position: relative;
}
#opening .outer .inner .logo.FEILER {
  position: relative;
  opacity: var(--flower-anim-start-opacity);
  transform: scale(var(--flower-anim-start-scale));
  animation: .8s logo_move_FEILER cubic-bezier(.175,.885,.32,1.275) 1s forwards; 
}
@keyframes logo_move_FEILER {
  from {
	  opacity: 0;
    transform: scale(.6);
  }
  to {
	  opacity: 1;
    transform: scale(1);
  } 
}
@media screen and (max-width: 640px) {
  #opening .outer .inner .logo_box {
    width: 65vw;
  }
}

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

main

--------------------------------------------------*/
.main {
  position: relative;
  display: block;
  padding-top: var(--content-padding-top);
}
@media screen and (max-width: 640px) {
  .main {

  }
}

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

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-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: 'Jost', sans-serif;
  */
  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(-25%) rotate(45deg);
  transition: all .1s ease-in-out;
}
@media (hover: hover) and (pointer: fine) {
  #store .btns a:hover {
    color: #fff;
    background: var(--feiler-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;
}
#kv .outer {
	position: relative;
	width: 100%;
	height: 100%;
  padding: calc(60 / var(--base-width) * 100vw) calc(90 / var(--base-width) * 100vw);
}
#kv .inner {
	position: relative;
  display: flex;
  align-items: center;
	width: 100%;
	height: 100%;
}
#kv .inner .txt_box {
  flex: 1;
}
#kv .inner .txt_box .main_ttl {
  position: relative;
  width: calc(324 / var(--base-width) * 100vw);
  container-type: inline-size;
  z-index: 5;
}
#kv .inner .txt_box .main_ttl .obj {
  position: absolute;
  top: 0;
  right: 0;
  width: calc(144 / 324 * 100cqi);
  transform: translate3d(50%, -55% ,0);
}
#kv .inner .txt_box .main_ttl .obj.obj02 {
  top: auto;
  right: auto;
  left: 0;
  bottom: 0;
  width: calc(108 / 324 * 100cqi);
  transform: translate3d(-70%, 70% ,0);
}
#kv.start .inner .txt_box .main_ttl .obj img {
  animation: var(--flower-anim-fuwafuwa);
  animation-delay: var(--flower-anim-fuwafuwa-delay);
  opacity: var(--flower-anim-end-opacity);
  transform: scale(var(--flower-anim-end-scale));
}
#kv.start .inner .txt_box .main_ttl .obj.obj01 img {
  transition-delay: 2.0s;
  animation-delay: calc(var(--flower-anim-fuwafuwa-delay) + 3.0s);
}
#kv.start .inner .txt_box .main_ttl .obj.obj02 img {
  transition-delay: 2.5s;
  animation-delay: calc(var(--flower-anim-fuwafuwa-delay) + 4.0s);
}
#kv .inner .txt_box .main_ttl .upper {
  position: relative;
  width: calc(251 / 324 * 100cqi);
  z-index: 2;
}
#kv .inner .txt_box .main_ttl .upper {
  opacity: 0;
} 
#kv.start .inner .txt_box .main_ttl .upper {
  animation: fadein 1.2s cubic-bezier(0.33, 1, 0.68, 1) 1.0s both;
} 
#kv .inner .txt_box .main_ttl .ttl {
  position: relative;
  margin-block: calc(60 / 324 * 100cqi) calc(30 / 324 * 100cqi);
  overflow: hidden;
}
#kv .inner .txt_box .main_ttl .ttl span {
  position: relative;
  display: inline-block;
}
#kv .inner .txt_box .main_ttl .ttl span::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--primary-bg-color);
  transform: scale(1.15, 1.6);
  filter: blur(5px);
  /*
  opacity: 0.5;
  background: #000;
  */
}
#kv.start .inner .txt_box .main_ttl .ttl span::after {
  animation: 1.5s kv_logo_slide_FEILER cubic-bezier(0.33, 1, 0.68, 1) 1.25s forwards;
}
@keyframes kv_logo_slide_FEILER {
  from {
    left: 0;
  }
  to {
    left: 115%;
  } 
}
#kv .inner .txt_box .main_ttl .lower {
  position: relative;
  width: calc(255 / 324 * 100cqi);
  margin-inline: auto;
  z-index: 2;
}
#kv .inner .txt_box .main_ttl .lower {
  opacity: 0;
}
#kv.start .inner .txt_box .main_ttl .lower {
  animation: fadein 1.2s cubic-bezier(0.33, 1, 0.68, 1) 1.5s both;
} 
#kv .inner .txt_box .main_ttl img {
  max-width: inherit;
  width: 100%;
}
#kv .inner .img_box {
  position: relative;
  width: calc(1370 / var(--base-width) * 100vw);
  aspect-ratio: 1370 / 791;
  container-type: inline-size;
}
#kv .img_box .frame_img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  outline: 2px solid var(--primary-bg-color);
  outline-offset: -1px;
}
#kv .img_box .main_img {
  background: #d7e7e7;
  background: radial-gradient(#d7e7e7, #b1c5c6);
  overflow: clip;
}
#kv .img_box .main_img .main_img_inner {
  position: relative;
}
#kv .img_box .main_img img {
  max-width: inherit;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  opacity: 0;
  transition: transform 2.5s cubic-bezier(0.33, 1, 0.68, 1) 0s, opacity 2.5s cubic-bezier(0.33, 1, 0.68, 1) 0.75s;
  /*
  will-change: opacity, transform;
  */
  backface-visibility: hidden;
	-webkit-backface-visibility: hidden;
  -webkit-filter: blur(0px);
}
#kv.start .img_box .main_img img {
  opacity: 1;
  transform: scale(1.32);
}
#kv .img_box .logo {
  position: absolute;
  left: 50%;
  bottom: calc(35 / 1370 * 100cqi);
  width: calc(318 / 1370 * 100cqi);
  transform: translateX(-50%);
  opacity: 0;
  z-index: 3;
  transition: opacity 1.5s cubic-bezier(0.33, 1, 0.68, 1) 1s;
}
#kv.start .img_box .logo {
  opacity: 1;
}
@media screen and (max-width: 640px) {
  #kv .outer {
    padding: calc(25 / var(--base-width) * 100vw) 0 0;
  }
  #kv .inner {
    flex-direction: column-reverse;
  }
  #kv .inner .txt_box {
    flex: auto;
    padding-block: calc(40 / var(--base-width) * 100vw) calc(90 / var(--base-width) * 100vw);
  }
  #kv .inner .txt_box .main_ttl {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: calc(212 / var(--base-width) * 100vw);
    text-align: center;
  }
  #kv .inner .txt_box .main_ttl .obj {
    width: 54cqi;
    transform: translate3d(30%, -88%, 0);
  }
  #kv .inner .txt_box .main_ttl .upper {
    width: calc(155 / var(--base-width) * 100vw);
  }
  #kv .inner .txt_box .main_ttl .ttl {
    width: 100%;
    margin-block: calc(30 / var(--base-width) * 100vw) calc(20 / var(--base-width) * 100vw);
  }
  #kv .inner .txt_box .main_ttl .lower {
    width: calc(166 / var(--base-width) * 100vw);
  }
  #kv .inner .img_box {
    width: calc(654 / 2 / var(--base-width) * 100vw);
    aspect-ratio: 654 / 660;
    margin-inline: auto;
    container-type: inline-size;
  }
  #kv .img_box .main_img img {
    transition: transform 2.5s cubic-bezier(0.33, 1, 0.68, 1) 0s, opacity 2.5s cubic-bezier(0.33, 1, 0.68, 1) 0s;
  }
  #kv.start .img_box .main_img img {
    transform: scale(1.07);
  }
  #kv .img_box .logo {
    bottom: calc(30 / var(--base-width) * 100vw);
    width: calc(97 / var(--base-width) * 100vw);
  }
}

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

wrapper

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

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

design

--------------------------------------------------*/
/*---------------------------
slick
-----------------------------*/
.slick {
  opacity: 0;
  transition: opacity .3s linear;
}
.slick.slick-initialized {
  opacity: 1;
}
#design {
  position: relative;
  padding-bottom: min(230 / var(--base-width)* 100vw, 230px);
}
#design .outer {
  position: relative;
  width: min(1560 / var(--base-width)* 100vw, 1560px);
  height: 100%;
  margin-inline: auto;
  container-type: inline-size;
}
#design .main_ttl {
  gap: calc(20 / 1560 * 100cqi);
  margin-bottom: 1em;
  width: calc(860 / 1560 * 100cqi);
  color: var(--feiler-color);
  font-weight: 400;
  font-family: 'Montserrat', sans-serif;
  font-size: calc(40 / 1560 * 100cqi);
  text-align: center;
  line-height: 1.15;
  letter-spacing: calc(80 / 1000 * 1em);
}
#design .main_ttl .ttl {
  width: calc(135 / 1560 * 100cqi);
}
#design .main_ttl .mark {
  transform: none;
}
#design .main_ttl .fadeInUp + img.mark {
  transition-delay: 0.9s;
}
#design .design_block {
  position: relative;
  width: 100%;
  height: 100%;
}
#design .design_block.SSQW090 {
  margin-top: calc(230 / 1560 * 100cqi);
}
#design .design_block .frame_img,
#design .design_block .frame_img.bg {
  position: absolute;
  top: 0;
  left: 0;
  width: calc(860 / 1560 * 100cqi);
  aspect-ratio: 1 / 1;
  z-index: 2;
}
#design .design_block .frame_img.bg {
  z-index: -1;
}
#design .design_block .frame_img {
  pointer-events: none;
}
#design .design_block .head_block {
  position: absolute;
  top: calc(30 / 1560 * 100cqi);
  right: 0;
  width: calc(532 / 1560 * 100cqi);
  text-align: center;
}
#design .design_block .head_block .name_ttl {
  margin-bottom: calc(25 / 1560 * 100cqi);
  font-size: calc(40 / 1560 * 100cqi);
  font-weight: 300;
  letter-spacing: calc(100 / 1000 * 1em);
}
#design .design_block .head_block .ttl {
  width: calc(255 / 1560 * 100cqi);
}
#design .design_block .head_block .sub_ttl {
  position: relative;
  font-size: calc(30 / 1560 * 100cqi);
  font-weight: 300;
  letter-spacing: calc(100 / 1000 * 1em);
}
#design .design_block .head_block .sub_ttl .serial {
  position: absolute;
  display: inline-block;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
#design .design_block .head_block .sub_ttl .serial img {
  width: calc(103 / 1560 * 100cqi);
}
#design .design_block .image_block {
  position: absolute;
  bottom: calc(30 / 1560 * 100cqi);
  right: 0;
  width: calc(532 / 1560 * 100cqi);
  aspect-ratio: 532 / 350;
  container-type: inline-size;
}
#design .image_block .obj {
  position: absolute;
  z-index: 2;
}
#design .image_block .obj.obj01 {
  bottom: calc(-50 / 532 * 100cqi);
  right: calc(-70 / 532 * 100cqi);
  width: calc(156 / 532 * 100cqi);
}
#design .image_block .obj.obj02 {
  bottom: calc(90 / 532 * 100cqi);
  right: calc(-115 / 532 * 100cqi);
  width: calc(70 / 532 * 100cqi);
}
#design .SSQW090 .image_block .obj.obj01 {
  bottom: calc(-30 / 532 * 100cqi);
  right: calc(-50 / 532 * 100cqi);
  width: calc(112 / 532 * 100cqi);
}
#design .image_block.scrollin > .obj img {
  animation: var(--flower-anim-fuwafuwa);
  animation-delay: var(--flower-anim-fuwafuwa-delay);
  opacity: var(--flower-anim-end-opacity);
  transform: scale(var(--flower-anim-end-scale));
}
#design .image_block.scrollin > .obj.obj01 img {
  transition-delay: 0.5s;
  animation-delay: calc(var(--flower-anim-fuwafuwa-delay) + 0.8s);
}
#design .image_block.scrollin > .obj.obj02 img {
  transition-delay: 0.8s;
  animation-delay: calc(var(--flower-anim-fuwafuwa-delay) + 1.5s);
}
#design .slider_nav_block {
  top: 50%;
  left: calc(875 / 1560 * 100cqi);
  display: flex;
  flex-direction: column;
  gap: calc(150 / 1560 * 100cqi);
  position: absolute;
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 5;
}
#design .slider_nav_block .slider_nav {
  display: grid;
  place-content: center;
  width: calc(25 / 1560 * 100cqi);
  height: calc(25 / 1560 * 100cqi);
  pointer-events: auto;
  cursor: pointer;
}
#design .slider_nav_block .slider_nav img {
  width: calc(15 / 1560 * 100cqi);
}
#design .slider_nav_block .slider_nav.next_link img {
  transform: rotate(180deg);
}
#design .content_wrap {
  position: relative;
  width: 100%;
  height: 100%;
}
#design .content_wrap .slider {
  position: relative;
  width: 100%;
  height: 100%;
  margin: 0 !important;
}
#design .content {
  position: relative;
  display: flex;
  justify-content: space-between;
}
#design .content .img_box {
  position: relative;
  width: calc(860 / 1560 * 100cqi);
  aspect-ratio: 1 / 1;
}
#design .img_box .main_img {
  overflow: clip;
}
#design .content .txt_box {
  position: relative;
  width: calc(532 / 1560 * 100cqi);
  padding-top: calc(188 / 1560 * 100cqi);
  container-type: inline-size;
}
#design .content .txt_box p.txt {
  margin-inline: -0.05em;
  font-size: calc(18 / 532 * 100cqi);
  line-height: calc(36 / 18);
  letter-spacing: calc(100 / 1000 * 1em);
  text-align: justify;
}
#design .content .txt_box .slide_num_box,
#design .total_num_box {
  position: absolute;
  top: calc(148 / 532 * 100cqi);
  left: 0;
  width: calc(35 / 532 * 100cqi);
  aspect-ratio: 35 / 30;
  font-size: calc(16 / 532 * 100cqi);
  font-weight: 500;
  font-family: 'Montserrat', sans-serif;
  line-height: 1;
  color: #CD9735;
}
#design .total_num_box {
  display: grid;
  place-content: end end;
  top: calc(148 / 1560 * 100cqi);
  left: calc(1023 / 1560 * 100cqi);
  width: calc(35 / 1560 * 100cqi);
  font-size: calc(16 / 1560 * 100cqi);
}
#design .total_num_box::before {
  content: '';
  position: absolute;
  top: 46%;
  left: 58%;
  width: 1px;
  height: 90%;
  background: var(--feiler-color);
  transform: translate3D(-50%,-50%,0) rotate(30deg);
}
#design .thumb_txt_box {
  display: none;
  pointer-events: none;
}
#design .slick-dots {
  top: 50%;
  left: calc(875 / 1560 * 100cqi);
  display: flex !important;
  flex-direction: column;
  gap: calc(12 / 1560 * 100cqi);
  position: absolute;
  bottom: auto !important;
  width: auto !important;
  font-size: 8px !important;
  text-align: left !important;
  transform: translateY(-50%);
}
#design .slick-dots li {
  width: calc(25 / 1560 * 100cqi) !important;
  height: calc(25 / 1560 * 100cqi) !important;
  margin: 0 !important;
  padding: calc(5 / 1560 * 100cqi) !important;
}
#design .slick-dots li button:before {
  display: none !important;
}
#design .slick-dots li button {
  position: relative;
  width: calc(15 / 1560 * 100cqi) !important;
  height: calc(15 / 1560 * 100cqi) !important;
  padding: 0;
  border-radius: 9999px;
  background: #D2E0DD !important;
  transition: background .1s ease-out;
}
#design .slick-dots li button::after {
  content: '';
	position: absolute;
  top: 0;
  left: 0;
	width: 100%;
  height: 100%;
  border: 1px solid var(--feiler-color);
  border-radius: 9999px;
	opacity: 0;
  transform: scale(1);
}
#design .slick-dots li.slick-active button::after {
  animation: pulsate 1.5s ease-out infinite;
  animation-delay: 0.5s;
  transition: opacity 1s ease-out;
}
#design .slick-dots li.slick-active button {
  background: var(--feiler-color) !important;
  transition: background .1s ease-out .1s;
}
@media (hover: hover) {
  #design .slick-dots li:hover button {
    background: var(--feiler-color) !important;
    transition: background .1s ease-out .1s;
  }
}
/*
#design .slick-dots li::before {
  content: '';
	position: absolute;
  display: grid;
  place-content: center;
  border: 1px solid var(--feiler-color);
  border-radius: 9999px;
	width: calc(15 / 1560 * 100cqi);
  aspect-ratio: 1 / 1;
	opacity: 0;
  transform: scale(1);
}
#design .slick-dots li.slick-active::before {
  animation: pulsate 1.5s ease-out infinite;
  animation-delay: 0.5s;
  transition: opacity 1s ease-out;
}
*/
@keyframes pulsate {
  0% {
    transform: scale(1);
    opacity: 0;
  }
  50% {
    opacity: 0.3;
  }
  100% {
    transform: scale(2.0);
    opacity: 0;
  }
}
@media screen and (orientation:portrait) {
  body.tablet #design .slider_nav_block,
  body.tablet #design .slick-dots {
    /*
    transform: translateY(-50%) scale(1.5);
    */
  }
  body.tablet #design .design_block .image_block {
    bottom: calc(-65 / 1560 * 100cqi);
  }
  body.tablet #design .content .txt_box {
    /*
    padding-top: calc(140 / 1560* 100cqi);
    */
  }
  body.tablet #design .content .txt_box p.txt {
    font-size: calc(24 / 532 * 100cqi);
    line-height: 1.65;
    letter-spacing: calc(50 / 1000 * 1em);
  }
  body.tablet #design .content .txt_box .slide_num_box, 
  body.tablet #design .total_num_box {
    transform: scale(1.5);
    transform-origin: left bottom;
  }
}
@media screen and (max-width: 640px) {
  #design {
    padding-bottom: calc(130 / var(--base-width) * 100vw);
  }
  #design .outer {
    width: 100%;
  }
  #design .main_ttl {
    gap: calc(10 / var(--base-width) * 100vw);
    margin-bottom: calc(30 / var(--base-width) * 100vw);
    width: 100%;
    font-size: calc(25 / var(--base-width) * 100vw);
  }
  #design .main_ttl .ttl {
    width: calc(90 / var(--base-width) * 100vw);
  }
  #design .design_block {
    padding-top: calc(120 / var(--base-width) * 100vw);
  }
  #design .design_block.SSQW089 {
    margin-bottom: calc(120 / var(--base-width) * 100vw);
  }
  #design .design_block .frame_img,
  #design .design_block .frame_img.bg {
    position: absolute;
    top: calc(120 / var(--base-width) * 100vw);
    left: calc(33 / var(--base-width) * 100vw);
    width: calc(310 / var(--base-width) * 100vw);
  }
  #design .design_block .frame_img::before,
  #design .design_block .frame_img::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 20vw;
    height: 100%;
    background: var(--primary-bg-color);
    transform: translate3d(-100%,0,0);
  }
  #design .design_block .frame_img::after {
    left: auto;
    right: 0;
    transform: translate3d(100%,0,0);
  }
  #design .design_block .head_block {
    top: 0;
    right: 0;
    width: 100%;
  }
  #design .design_block .head_block .name_ttl {
    margin-bottom: calc(15 / var(--base-width) * 100vw);
    font-size: calc(28 / var(--base-width) * 100vw);
  }
  #design .design_block .head_block .sub_ttl {
    padding-bottom: calc(40 / var(--base-width) * 100vw);
    font-size: calc(20 / var(--base-width) * 100vw);
  }
  #design .design_block .head_block .sub_ttl .serial {
    position: absolute;
    display: inline-block;
    top: auto;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
  }
  #design .design_block .head_block .sub_ttl .serial img {
    width: calc(77 / var(--base-width) * 100vw);
  }
  #design .slider_nav_block {
    width: 99%;
    top: calc(255 / var(--base-width) * 100vw);
    left: 50%;
    flex-direction: row;
    justify-content: space-between;
    gap: 0;
    transform: translate3d(-50%, 0, 0);
  }
  #design .slider_nav_block .slider_nav {
    width: calc(33 / var(--base-width) * 100vw);
    height: calc(40 / var(--base-width) * 100vw);
  }
  #design .slider_nav_block .slider_nav img {
    width: calc(20 / var(--base-width) * 100vw);
    transform: rotate(-90deg);
  }
  #design .slider_nav_block .slider_nav.next_link img {
    transform: rotate(90deg);
  }
  #design .content {
    flex-direction: column;
    justify-content: space-between;
  }
  #design .content .img_box {
    margin-left: calc(33 / var(--base-width) * 100vw);
    width: calc(310 / var(--base-width) * 100vw);
  }
  #design .image_block .obj {
    display: none;
  }
  #design .image_block .obj.obj01 {
    bottom: calc(-55 / 310 * 100cqi);
    right: calc(0 / 310 * 100cqi);
    width: calc(80 / 310 * 100cqi);
    display: block;
  }
  #design .image_block .obj.obj02,
  #design .SSQW090 .image_block .obj.obj01 {
    display: none;
  }
  #design .SSQW090 .image_block .obj.obj02 {
    bottom: calc(-55 / 532 * 100cqi);
    right: calc(10 / 532 * 100cqi);
    width: calc(142 / 532 * 100cqi);
    display: block;
  }
  #design .SSQW090 .image_block .obj.obj01 {
    bottom: calc(-30 / 532 * 100cqi);
    right: calc(-50 / 532 * 100cqi);
    width: calc(112 / 532 * 100cqi);
    display: none;
  }
  #design .content .txt_box {
    display: none;
  }
  #design .thumb_txt_box {
    display: block;
    width: calc(300 / var(--base-width) * 100vw);
    margin-inline: auto;
    margin-top: calc(18 / var(--base-width) * 100vw);
  }
  #design .thumb_txt_box .txt_box p.txt {
    margin-inline: -0.05em;
    font-size: calc(13 / var(--base-width)* 100vw);
    line-height: calc(26 / 13);
    letter-spacing: calc(100 / 1000 * 1em);
  }
  #design .slick-dots {
    top: calc(310 / var(--base-width) * 100vw);
    left: 50%;
    gap: 0;
    flex-direction: row;
    transform: translateX(-50%);
  }
  #design .slick-dots li {
    width: calc(28 / var(--base-width) * 100vw) !important;
    height: calc(28 / var(--base-width) * 100vw) !important;
    padding: calc(10 / var(--base-width) * 100vw) !important;
  }
  #design .slick-dots li button {
    width: calc(8 / var(--base-width) * 100vw) !important;
    height: calc(8 / var(--base-width) * 100vw) !important;
  }
  #design .design_block .image_block {
    position: relative;
    bottom: auto;
    right: auto;
    width: calc(310 / var(--base-width) * 100vw);
    margin-inline: auto;
    margin-top: calc(30 / var(--base-width) * 100vw);
    aspect-ratio: inherit;
  }
  #design .thumb_txt_box .slide_num_box,
  #design .total_num_box {
    position: relative;
    width: calc(20 / var(--base-width) * 100vw);
    aspect-ratio: 20 / 18;
    margin-bottom: calc(10 / var(--base-width) * 100vw);
    font-size: calc(11 / var(--base-width) * 100vw);
    font-weight: 500;
    font-family: 'Montserrat', sans-serif;
    line-height: 1;
    color: #CD9735;
  }
  #design .total_num_box {
    position: absolute;
    top: calc(450 / var(--base-width) * 100vw);
    left: calc(38 / var(--base-width) * 100vw);
    margin: 0;
    font-size: calc(11 / var(--base-width) * 100vw);
    transform: none;
  }
  #design .total_num_box::before {
    top: 44%;
    left: 52%;
  }
}

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

lead

--------------------------------------------------*/
#lead {
  position: relative;
}
#lead .outer {
  position: relative;
  width: min(1920 / var(--base-width)* 100vw, 1920px);
  margin-inline: auto;
  padding-top: min((70 / var(--base-width) * 100vw), 70px);
  container-type: inline-size;
}
#lead .inner {
  position: relative;
  width: 100%;
  aspect-ratio: 1920 / 900;
  display: grid;
  place-content: center;
  container-type: inline-size;
}
#lead .inner .obj {
  position: absolute;
}
#lead .inner .obj.obj01 {
  top: calc(33 / 1920 * 100cqi);
  left: calc(200 / 1920 * 100cqi);
  width: calc(55 / 1920 * 100cqi);
}
#lead .inner .obj.obj02 {
  top: calc(16 / 1920 * 100cqi);
  left: calc(570 / 1920 * 100cqi);
  width: calc(48 / 1920 * 100cqi);
}
#lead .inner .obj.obj03 {
  top: calc(98 / 1920 * 100cqi);
  left: calc(762 / 1920 * 100cqi);
  width: calc(90 / 1920 * 100cqi);
}
#lead .inner .obj.obj04 {
  top: calc(0 / 1920 * 100cqi);
  left: calc(958 / 1920 * 100cqi);
  width: calc(65 / 1920 * 100cqi);
}
#lead .inner .obj.obj05 {
  top: calc(55 / 1920 * 100cqi);
  left: calc(1155 / 1920 * 100cqi);
  width: calc(135 / 1920 * 100cqi);
}
#lead .inner .obj.obj06 {
  top: calc(10 / 1920 * 100cqi);
  left: calc(1550 / 1920 * 100cqi);
  width: calc(100 / 1920 * 100cqi);
}
#lead .inner .obj.obj07 {
  top: calc(267 / 1920 * 100cqi);
  left: calc(152 / 1920 * 100cqi);
  width: calc(70 / 1920 * 100cqi);
}
#lead .inner .obj.obj08 {
  top: calc(176 / 1920 * 100cqi);
  left: calc(378 / 1920 * 100cqi);
  width: calc(120 / 1920 * 100cqi);
}
#lead .inner .obj.obj09 {
  top: calc(176 / 1920 * 100cqi);
  left: calc(1360 / 1920 * 100cqi);
  width: calc(56 / 1920 * 100cqi);
}
#lead .inner .obj.obj10 {
  top: calc(193 / 1920 * 100cqi);
  left: calc(1706 / 1920 * 100cqi);
  width: calc(56 / 1920 * 100cqi);
}
#lead .inner .obj.obj11 {
  top: calc(398 / 1920 * 100cqi);
  left: calc(312 / 1920 * 100cqi);
  width: calc(100 / 1920 * 100cqi);
}
#lead .inner .obj.obj12 {
  top: calc(376 / 1920 * 100cqi);
  left: calc(1495 / 1920 * 100cqi);
  width: calc(143 / 1920 * 100cqi);
}
#lead .inner .obj.obj13 {
  top: calc(587 / 1920 * 100cqi);
  left: calc(1642 / 1920 * 100cqi);
  width: calc(120 / 1920 * 100cqi);
}
#lead .inner .obj.obj14 {
  top: calc(630 / 1920 * 100cqi);
  left: calc(100 / 1920 * 100cqi);
  width: calc(121 / 1920 * 100cqi);
}
#lead .inner .obj.obj15 {
  top: calc(670 / 1920 * 100cqi);
  left: calc(455 / 1920 * 100cqi);
  width: calc(60 / 1920 * 100cqi);
}
#lead .inner .obj.obj16 {
  bottom: 0;
  left: calc(652 / 1920 * 100cqi);
  width: calc(50 / 1920 * 100cqi);
}
#lead .inner .obj.obj17 {
  top: calc(709 / 1920 * 100cqi);
  left: calc(766 / 1920 * 100cqi);
  width: calc(50 / 1920 * 100cqi);
}
#lead .inner .obj.obj18 {
  bottom: 0;
  left: calc(1008 / 1920 * 100cqi);
  width: calc(98 / 1920 * 100cqi);
}
#lead .inner .obj.obj19 {
  top: calc(679 / 1920 * 100cqi);
  left: calc(1265 / 1920 * 100cqi);
  width: calc(90 / 1920 * 100cqi);
}
#lead .inner .obj.obj20 {
  top: calc(756 / 1920 * 100cqi);
  left: calc(1457 / 1920 * 100cqi);
  width: calc(70 / 1920 * 100cqi);
}
#lead .inner.scrollin > .obj.anim_start img {
  animation: var(--flower-anim-fuwafuwa);
  animation-delay: var(--flower-anim-fuwafuwa-delay);
  opacity: var(--flower-anim-end-opacity);
  transform: scale(var(--flower-anim-end-scale));
}
#lead .txt_box_inner {
  width: min(1040 / var(--base-width) * 100vw, 1040px);
  margin-inline: auto;
  text-align: center;
  container-type: inline-size;
}
#lead .lead_ttl {
  margin-bottom: 1.5em;
  font-size: calc(27 / 1040 * 100cqi);
  line-height: 2;
  letter-spacing: calc(100 / 1000 * 1em);
}
#lead .txt {
  font-size: calc(24 / 1040 * 100cqi);
  line-height: 2;
  letter-spacing: calc(100 / 1000 * 1em);
  white-space: nowrap;
}
@media screen and (orientation:portrait) {
  body.tablet #lead .lead_ttl {
    font-size: calc(32 / 1040 * 100cqi);
  }
  body.tablet #lead .txt {
    font-size: calc(28 / 1040* 100cqi);
  }
}
@media screen and (max-width: 640px) {
  #lead .outer {
    width: 100%;
    padding-top: 0;
  }
  #lead .inner {
    width: 100%;
    aspect-ratio: 375 / 560;
  }
  #lead .inner .obj.obj01,
  #lead .inner .obj.obj06,
  #lead .inner .obj.obj09,
  #lead .inner .obj.obj11,
  #lead .inner .obj.obj12,
  #lead .inner .obj.obj13,
  #lead .inner .obj.obj14,
  #lead .inner .obj.obj15,
  #lead .inner .obj.obj16,
  #lead .inner .obj.obj17,
  #lead .inner .obj.obj18
  {
    display: none;
  }
  #lead .inner .obj.obj02 {
    top: calc(25 / 375 * 100cqi);
    left: calc(220 / 375 * 100cqi);
    width: calc(30 / 375 * 100cqi);
    transform: rotate(-20deg);
  }
  #lead .inner .obj.obj03 {
    top: auto;
    bottom: calc(92 / 375 * 100cqi);
    left: calc(22 / 375 * 100cqi);
    width: calc(40 / 375 * 100cqi);
  }
  #lead .inner .obj.obj04 {
    top: auto;
    bottom: calc(90 / 375 * 100cqi);
    left: calc(310 / 375 * 100cqi);
    width: calc(40 / 375 * 100cqi);
    display: block !important;
  }
  #lead .inner .obj.obj05 {
    top: calc(45 / 375 * 100cqi);
    left: calc(100 / 375 * 100cqi);
    width: calc(85 / 375 * 100cqi);
  }
  #lead .inner .obj.obj07 {
    top: calc(92 / 375 * 100cqi);
    left: calc(15 / 375 * 100cqi);
    width: calc(33 / 375 * 100cqi);
  }
  #lead .inner .obj.obj08 {
    top: auto;
    bottom: 0;
    left: calc(240 / 375 * 100cqi);
    width: calc(64 / 375 * 100cqi);
  }
  #lead .inner .obj.obj10 {
    top: calc(14 / 375 * 100cqi);
    left: calc(304 / 375 * 100cqi);
    width: calc(40 / 375 * 100cqi);
  }
  #lead .inner .obj.obj19 {
    top: auto;
    bottom: calc(20 / 375 * 100cqi);
    left: calc(90 / 375 * 100cqi);
    width: calc(50 / 375 * 100cqi);
  }
  #lead .inner .obj.obj.obj20 {
    top: calc(20 / 375 * 100cqi);
    left: calc(40 / 375 * 100cqi);
    width: calc(55 / 375 * 100cqi);
  }
  #lead .inner .obj.obj.obj21 {
    top: calc(80 / 375 * 100cqi);
    left: calc(282 / 375 * 100cqi);
    width: calc(60 / 375 * 100cqi);
    display: block !important;
  }
  #lead .inner .obj.obj.obj22 {
    top: auto;
    bottom: calc(69 / 375 * 100cqi);
    left: calc(196 / 375 * 100cqi);
    width: calc(40 / 375 * 100cqi);
    display: block !important;
  }
  #lead .txt_box_inner {
    width: calc(375 / var(--base-width) * 100vw);
  }
  #lead .lead_ttl {
    margin-bottom: 1.5em;
    font-size: calc(15 / var(--base-width) * 100vw);
  }
  #lead .txt {
    font-size: calc(13 / var(--base-width) * 100vw);
    line-height: calc(26 / 13);
    white-space: wrap;
  }
}

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

about

--------------------------------------------------*/
#about {
  position: relative;
  padding-block: min((150 / var(--base-width) * 100vw), 150px);
}
#about .outer {
  position: relative;
  width: min(1720 / var(--base-width) * 100vw, 1720px);
  margin-inline: auto;
  container-type: inline-size;
}
#about .inner {
  position: relative;
  padding-top: calc(210 / 1720 * 100cqi);
  padding-left: calc(80 / 1720 * 100cqi);
  z-index: 1;
}
#about .inner .obj {
  position: absolute;
  z-index: 2;
}
#about .inner .obj.obj01 {
  top: calc(-160 / 1720 * 100cqi);
  left: calc(-20 / 1720 * 100cqi);
  width: calc(280 / 1720 * 100cqi);
}
#about .inner .obj.obj02 {
  top: calc(-80 / 1720 * 100cqi);
  right: calc(40 / 1720 * 100cqi);
  width: calc(180 / 1720 * 100cqi);
}
#about .inner .obj.obj03 {
  top: calc(298 / 1720 * 100cqi);
  left: calc(-35 / 1720 * 100cqi);
  width: calc(86 / 1720 * 100cqi);
}
#about .inner .obj.obj04 {
  top: calc(376 / 1720 * 100cqi);
  left: calc(21 / 1720 * 100cqi);
  width: calc(106 / 1720 * 100cqi);
}
#about .inner .obj.obj05 {
  top: calc(266 / 1720 * 100cqi);
  left: calc(782 / 1720 * 100cqi);
  width: calc(133 / 1720 * 100cqi);
}
#about .inner .obj.obj06 {
  top: calc(117 / 1720 * 100cqi);
  right: calc(18 / 1720 * 100cqi);
  width: calc(53 / 1720 * 100cqi);
}
#about .inner .obj.obj07 {
  top: calc(416 / 1720 * 100cqi);
  right: calc(230 / 1720 * 100cqi);
  width: calc(92 / 1720 * 100cqi);
}
#about .inner .obj.obj08 {
  top: calc(489 / 1720 * 100cqi);
  right: calc(164 / 1720 * 100cqi);
  width: calc(58 / 1720 * 100cqi);
}
#about .inner .obj.obj09 {
  top: calc(290 / 1720 * 100cqi);
  right: calc(28 / 1720 * 100cqi);
  width: calc(162 / 1720 * 100cqi);
}
#about .inner.scrollin > .obj img {
  animation: var(--flower-anim-fuwafuwa);
  animation-delay: var(--flower-anim-fuwafuwa-delay);
  opacity: var(--flower-anim-end-opacity);
  transform: scale(var(--flower-anim-end-scale));
}
#about .inner.scrollin > .obj.obj01 img {
  transition-delay: .5s;
  animation-delay: calc(var(--flower-anim-fuwafuwa-delay) + .5s);
}
#about .inner.scrollin > .obj.obj02 img {
  transition-delay: 1s;
  animation-delay: calc(var(--flower-anim-fuwafuwa-delay) + 1s);
}
#about .inner.scrollin > .obj.obj03 img {
  transition-delay: 2s;
  animation-delay: calc(var(--flower-anim-fuwafuwa-delay) + 2s);
}
#about .inner.scrollin > .obj.obj04 img {
  transition-delay: 1.7s;
  animation-delay: calc(var(--flower-anim-fuwafuwa-delay) + 1.7s);
}
#about .inner.scrollin > .obj.obj05 img {
  transition-delay: 1.5s;
  animation-delay: calc(var(--flower-anim-fuwafuwa-delay) + 1.5s);
}
#about .inner.scrollin > .obj.obj06 img {
  transition-delay: 1.25s;
  animation-delay: calc(var(--flower-anim-fuwafuwa-delay) + 1.25s);
}
#about .inner.scrollin > .obj.obj07 img {
  transition-delay: 2.7s;
  animation-delay: calc(var(--flower-anim-fuwafuwa-delay) + 2.7s);
}
#about .inner.scrollin > .obj.obj08 img {
  transition-delay: 2.25s;
  animation-delay: calc(var(--flower-anim-fuwafuwa-delay) + 2.25s);
}
#about .inner.scrollin > .obj.obj09 img {
  transition-delay: 2.5s;
  animation-delay: calc(var(--flower-anim-fuwafuwa-delay) + 2.5s);
}
#about .img_box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  border-radius: calc(50 / 1720 * 100cqi);
  overflow: clip;
}
#about .img_box img {
  opacity: 0;
  transition: transform 2s cubic-bezier(0.33, 1, 0.68, 1), all 2s cubic-bezier(0.33, 1, 0.68, 1);
  transform: scale(1.1);
}
#about .img_box.scrollin img {
  opacity: 1;
  transform: scale(1);
}
#about .txt_box {
  display: grid;
  place-content: center;
  width: calc(780 / 1720 * 100cqi);
  aspect-ratio: 780 / 400;
  background: url(../img/about_txt_box_bg.svg) center center no-repeat;
  background-size: contain;
  container-type: inline-size;
}
#about .main_ttl {
  margin-bottom: 2em;
  color: var(--feiler-color);
  font-size: calc(30 / 780 * 100cqi);
  font-weight: 400;
  font-family: 'Montserrat', sans-serif;
  text-align: center;
  letter-spacing: calc(80 / 1000 * 1em);
  --fadeInUp-anim-delay: 0s;
}
#about .txt_box.scrollin .fadeInUp > span {
  animation: var(--fadeInUp-anim);
}
#about .main_ttl .ttl {
  display: inline-block;
  width: calc(223 / 780 * 100cqi);
}
#about .lead {
  margin-bottom: 1em;
  font-size: calc(40 / 780 * 100cqi);
  font-weight: 300;
  text-align: center;
  letter-spacing: calc(150 / 1000 * 1em);
}
#about .txt_box .txt {
  width: calc(640 / 780 * 100cqi);
  margin-inline: auto;
  font-size: calc(18 / 780 * 100cqi);
  font-weight: 400;
  line-height: calc(35 / 18);
  letter-spacing: calc(100 / 1000 * 1em);
  text-align: justify;
}
@media screen and (orientation:portrait) {
  body.tablet #about .inner {
    padding-top: calc(250 / 1720* 100cqi);
  }
  body.tablet #about .inner .obj.obj05 {
    top: calc(280 / 1720 * 100cqi);
    left: calc(850 / 1720 * 100cqi);
  }
  body.tablet #about .txt_box {
    width: 50cqi;
  }
}
@media screen and (max-width: 640px) {
  #about {
    padding-block: calc(80 / var(--base-width) * 100vw) calc(135 / var(--base-width) * 100vw);
  }
  #about .outer {
    width: 100%
  }
  #about .inner {
    padding: 0;
  }
  #about .inner .obj {
    display: none;
  }
  #about .inner .obj.obj01 {
    top: calc(-60 / 375 * 100cqi);
    left: calc(-10 / 375 * 100cqi);
    width: calc(110 / 375 * 100cqi);
    display: block;
  }
  #about .inner .obj.obj03 {
    top: calc(380 / 375 * 100cqi);
    left: calc(257 / 375 * 100cqi);
    width: calc(36 / 375 * 100cqi);
    display: block;
  }
  #about .inner .obj.obj04 {
    top: calc(150 / 375 * 100cqi);
    left: calc(0 / 375 * 100cqi);
    width: calc(60 / 375 * 100cqi);
    display: block;
  }
  #about .inner .obj.obj05 {
    top: calc(-30 / 375 * 100cqi);
    left: auto;
    right: calc(12 / 375 * 100cqi);
    width: calc(53 / 375 * 100cqi);
    display: block;
  }
  #about .inner .obj.obj07 {
    top: calc(109 / 375 * 100cqi);
    left: calc(278 / 375 * 100cqi);
    width: calc(32 / 375 * 100cqi);
    display: block;
  }
  #about .inner .obj.obj10 {
    top: calc(400 / 375 * 100cqi);
    left: calc(298 / 375 * 100cqi);
    width: calc(34 / 375 * 100cqi);
    display: block !important;
  }
  #about .inner.scrollin > .obj.obj04 img {
    transition-delay: 1s;
    animation-delay: calc(var(--flower-anim-fuwafuwa-delay) + 1s);
  }
  #about .inner.scrollin > .obj.obj05 img {
    transition-delay: .5s;
    animation-delay: calc(var(--flower-anim-fuwafuwa-delay) + .5s);
  }
  #about .inner.scrollin > .obj.obj07 img {
    transition-delay: 1.2s;
    animation-delay: calc(var(--flower-anim-fuwafuwa-delay) + 1.2s);
  }
  #about .inner.scrollin > .obj.obj10 img {
    transition-delay: 1.5s;
    animation-delay: calc(var(--flower-anim-fuwafuwa-delay) + 1.5s);
  }
  #about .img_box {
    position: relative;
    top: auto;
    left: auto;
    border-radius: 0;
  }
  #about .txt_box {
    width: calc(312 / var(--base-width) * 100vw);
    aspect-ratio: 312 / 269;
    margin-top: calc(-75 / var(--base-width) * 100vw);
    margin-inline: auto;
    background: url(../img/about_txt_box_bg_sp.svg) center center no-repeat;
    background-size: contain;
  }
  #about .main_ttl {
    margin-bottom: calc(25 / var(--base-width) * 100vw);
    font-size: calc(15 / var(--base-width) * 100vw);
  }
  #about .main_ttl .ttl {
    width: calc(112 / var(--base-width) * 100vw);
  }
  #about .lead {
    margin-bottom: calc(25 / var(--base-width) * 100vw);
    font-size: calc(18 / var(--base-width) * 100vw);
  }
  #about .txt_box .txt {
    width: calc(250 / var(--base-width)* 100vw);
    margin-inline: auto;
    font-size: calc(13 / var(--base-width)* 100vw);
    line-height: calc(26 / 13);
    white-space: wrap;
    letter-spacing: calc(100 / 1000 * 1em);
  }
}

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

box

--------------------------------------------------*/
#box {
  position: relative;
}
#box .outer {
  position: relative;
  width: min(1920 / var(--base-width) * 100vw, 1920px);
  margin-inline: auto;
  container-type: inline-size;
}
#box .inner {
  position: relative;
  width: calc(1500 / 1920 * 100cqi);
  aspect-ratio: 1500 / 660;
  margin-inline: auto;
  container-type: inline-size;
}
#box .inner .obj {
  position: absolute;
  z-index: 1;
}
#box .inner .obj.obj01 {
  top: calc(-40 / 1500 * 100cqi);
  left: calc(601 / 1500 * 100cqi);
  width: calc(166 / 1500 * 100cqi);
}
#box .inner .obj.obj02 {
  top: calc(-15 / 1500 * 100cqi);
  left: calc(1340 / 1500 * 100cqi);
  width: calc(157 / 1500 * 100cqi);
}
#box .inner .obj.obj03 {
  top: calc(145 / 1500 * 100cqi);
  left: calc(1526 / 1500 * 100cqi);
  width: calc(56 / 1500 * 100cqi);
}
#box .inner .obj.obj04 {
  top: calc(272 / 1500 * 100cqi);
  left: calc(-120 / 1500 * 100cqi);
  width: calc(82 / 1500 * 100cqi);
}
#box .inner .obj.obj05 {
  top: calc(600 / 1500 * 100cqi);
  left: calc(-50 / 1500 * 100cqi);
  width: calc(190 / 1500 * 100cqi);
}
#box .inner .obj.obj06 {
  top: calc(791 / 1500 * 100cqi);
  left: calc(164 / 1500 * 100cqi);
  width: calc(45 / 1500 * 100cqi);
}
#box .inner .obj.obj07 {
  top: calc(632 / 1500 * 100cqi);
  left: calc(225 / 1500 * 100cqi);
  width: calc(82 / 1500 * 100cqi);
}
#box .inner .obj.obj08 {
  top: calc(868 / 1500 * 100cqi);
  left: calc(283 / 1500 * 100cqi);
  width: calc(50 / 1500 * 100cqi);
}
#box .inner .obj.obj09 {
  top: calc(724 / 1500 * 100cqi);
  left: calc(1177 / 1500 * 100cqi);
  width: calc(66 / 1500 * 100cqi);
}
#box .inner .obj.obj10 {
  top: calc(838 / 1500 * 100cqi);
  left: calc(1243 / 1500 * 100cqi);
  width: calc(70 / 1500 * 100cqi);
}
#box .inner .obj.obj11 {
  top: calc(722 / 1500 * 100cqi);
  left: calc(1426 / 1500 * 100cqi);
  width: calc(120 / 1500 * 100cqi);
}
#box .inner.scrollin > .obj.anim_start img {
  animation: var(--flower-anim-fuwafuwa);
  animation-delay: var(--flower-anim-fuwafuwa-delay);
  opacity: var(--flower-anim-end-opacity);
  transform: scale(var(--flower-anim-end-scale));
}
#box .common_txt_ttl {
  position: absolute;
  top: 0;
  left: calc(160 / 1500 * 100cqi);
  gap: calc(20 / 1500 * 100cqi);
  color: var(--feiler-color);
  font-size: min(40 / 1500 * 100cqi);
  font-weight: 400;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: calc(80 / 1000* 1em);
}
#box .common_txt_ttl .fadeInUp + img.mark {
  transition-delay: 1.2s;
}
#box .common_txt_ttl .ttl {
  width: calc(239 / 1500 * 100cqi);
}
#box .inner .img_box {
  position: absolute;
  bottom: calc(50 / 1500 * 100cqi);
  left: 0;
  width: calc(773 / 1500 * 100cqi);
}
#box .inner .img_box.SSQW090 {
  right: 0;
  left: auto;
  bottom: 0;
  width: calc(717 / 1500 * 100cqi);
}
#box .txt_box {
  display: grid;
  place-content: center;
  width: calc(712 / 1920 * 100cqi);
  aspect-ratio: 712 / 322;
  margin-inline: auto;
  background: url(../img/box_txt_box_bg.svg) center center no-repeat;
  background-size: contain;
  container-type: inline-size;
}
#box .txt_box .txt {
  width: calc(570 / 712 * 100cqi);
  font-size: calc(18 / 712 * 100cqi);
  line-height: calc(35 / 18);
  letter-spacing: calc(100 / 1000 * 1em);
  text-align: justify;
}
@media screen and (orientation:portrait) {
  body.tablet #design .design_block .head_block {
    top: 0;
  }
  body.tablet #box .txt_box {
    width: 45cqi;
  }
  body.tablet #box .txt_box .txt {
    font-size: calc(20 / 712* 100cqi);
  }
}
@media screen and (max-width: 640px) {
  #box .outer {
    width: 100%;
  }
  #box .inner {
    width: 100vw;
    aspect-ratio: inherit;
    z-index: 1;
  }
  #box .inner .obj {
    position: absolute;
    z-index: 1;
    display: none;
  }
  #box .inner .obj.obj01 {
    top: calc(510 / 375 * 100cqi);
    left: calc(82 / 375 * 100cqi);
    width: calc(90 / 375 * 100cqi);
    display: block;
  }
  #box .inner .obj.obj02 {
    top: calc(30 / 375 * 100cqi);
    left: calc(255 / 375 * 100cqi);
    width: calc(65 / 375 * 100cqi);
    display: block;
  }
  #box .inner .obj.obj03 {
    top: calc(70 / 375 * 100cqi);
    left: calc(336 / 375 * 100cqi);
    width: calc(25 / 375 * 100cqi);
    display: block;
  }
  #box .inner .obj.obj06 {
    top: calc(40 / 375 * 100cqi);
    left: calc(20 / 375 * 100cqi);
    width: calc(25 / 375 * 100cqi);
    display: block;
  }
  #box .inner .obj.obj10 {
    top: auto;
    bottom: calc(-340 / 375 * 100cqi);
    left: calc(262 / 375 * 100cqi);
    width: calc(48 / 375 * 100cqi);
    display: block;
    z-index: 2;
  }
  #box .inner .obj.obj12 {
    top: calc(290 / 375 * 100cqi);
    left: calc(280 / 375 * 100cqi);
    width: calc(28 / 375 * 100cqi);
    display: block !important;
  }
  #box .inner .obj.obj13 {
    top: calc(310 / 375 * 100cqi);
    left: calc(270 / 375 * 100cqi);
    width: calc(92 / 375 * 100cqi);
    display: block !important;
  }
  #box .inner .obj.obj07 {
    top: calc(490 / 375 * 100cqi);
    left: calc(10 / 375 * 100cqi);
    width: calc(60 / 375 * 100cqi);
    display: block;
  }
  #box .inner .obj.obj08 {
    top: calc(550 / 375 * 100cqi);
    left: calc(55 / 375 * 100cqi);
    width: calc(24 / 375 * 100cqi);
    display: block;
  }
  #box .common_txt_ttl {
    position: relative;
    top: auto;
    left: auto;
    gap: calc(10 / var(--base-width) * 100vw);
    margin-bottom: calc(50 / var(--base-width) * 100vw);;
    font-size: calc(25 / var(--base-width) * 100vw);
  }
  #box .common_txt_ttl .ttl {
    width: calc(153 / var(--base-width) * 100vw);
  }
  #box .inner .img_box {
    position: relative;
    bottom: auto !important;
    left: auto !important;
    right: auto !important;
    width: 90% !important;
    margin-inline: auto;
  }
  #box .inner .img_box.SSQW090 {
    width: 85% !important;
  }
  #box .txt_box {
    width: calc(312 / var(--base-width) * 100vw);
    aspect-ratio: 312 / 275;
    margin-top: calc(40 / var(--base-width) * 100vw);
    background: url(../img/box_txt_box_bg_sp.svg) center center no-repeat;
    background-size: contain;
  }
  #box .txt_box .txt {
    width: calc(260 / var(--base-width) * 100vw);
    margin-inline: auto;
    font-size: calc(13 / var(--base-width) * 100vw);
    line-height: calc(26 / 13);
    white-space: wrap;
  }
}

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

spec

--------------------------------------------------*/
#spec {
  position: relative;
  padding-block: min((230 / var(--base-width) * 100vw), 230px)
}
#spec > .outer {
  position: relative;
  width: min((1720 / var(--base-width) * 100vw), 1720px);
  margin-inline: auto;
  container-type: inline-size;
}
#spec .main_ttl {
  position: relative;
  margin-bottom: calc(60 / 1720 * 100cqi);
  text-align: center;
}
#spec .main_ttl .logo {
  display: inline-block;
  width: calc(264 / 1720 * 100cqi);
  margin-bottom: calc(60 / 1720 * 100cqi);
}
#spec .main_ttl .common_txt_ttl {
  gap: calc(20 / 1720 * 100cqi);
  color: var(--feiler-color);
  font-size: min(40 / 1720 * 100cqi);
  font-weight: 400;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: calc(30 / 1000 * 1em);
  --fadeInUp-anim-interval: 0.05s;
}
#spec .main_ttl .common_txt_ttl .ttl {
  width: calc(714 / 1720 * 100cqi);
}
#spec .main_ttl .fadeInUp + img.mark {
  transition-delay: 1.65s;
}
#spec > .outer > .inner {
  position: relative;
  display: grid;
  place-content: center;
  aspect-ratio: 1720 / 727;
  background: url(../img/lineup_bg.svg) center center no-repeat;
  background-size: contain;
}
#spec .lineup {
  position: relative;
  width: calc(1100 / 1720 * 100cqi);
  margin-inline: auto;
  padding-top: 5%;
  container-type: inline-size;
}
#spec .lineup .outer {
  position: relative;
  display: flex;
  justify-content: space-between;
  width: 100%;
  container-type: inline-size;
}
#spec .lineup .product {
  width: calc(506 / 1100 * 100cqi);
}
#spec .lineup .product .inner {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
#spec .lineup .product.SSQW089 .inner {
  flex-direction: row-reverse;
}
#spec .lineup .product .inner .img_box {
  width: calc(252 / 1100 * 100cqi);
}
#spec .lineup .product .inner .txt_box {
  position: relative;
  width: calc(205 / 1100 * 100cqi);
  font-size: calc(18 / 1100 * 100cqi);
  letter-spacing: calc(100 / 1000 * 1em);
  white-space: nowrap;
}
#spec .txt_box .serial {
  margin-top: 0.5em;
  margin-bottom: 1.25em;
  font-size: calc(20 / 18 * 100%);
}
#spec .txt_box .serial img {
  width: calc(112 / 1100 * 100cqi);
}
#spec .txt_box .price {
  margin-bottom: 1.25em;
  font-size: calc(28 / 18 * 100%);
  font-weight: 300;
  letter-spacing: calc(120 / 1000 * 1em);
}
#spec .txt_box .price .min {
  font-size: calc(16 / 28 * 100%);
}
#spec .txt_box .note {
  margin-bottom: 1.6em;
  font-weight: 400;
  line-height: 1.8;
}
#spec .txt_box .date {
  margin-bottom: 2.5em;
  font-weight: 400;
  white-space: nowrap;
}
#spec .txt_box .btn a {
  position: relative;
  display: block;
  margin-bottom: calc(15 / 1100 * 100cqi);
  color: var(--primary-bg-color);
  font-size: calc(16 / 1100 * 100cqi);
  font-weight: 400;
  text-decoration: none;
  text-align: center;
  line-height: 3.125em;
  letter-spacing: calc(150 / 1000 * 1em);
  background: var(--primary-color);
  border-radius: 8px;
  overflow: hidden;
  transition: all .1s ease-out;
}
@media (hover: hover) {
  #spec .txt_box .btn a:hover {
    background: var(--feiler-color);
    transition: all .1s ease-out .1s;
  }
}
@media screen and (orientation:portrait) {
  body.tablet #spec .lineup {
    width: 75cqi;
  }
}
@media screen and (max-width: 640px) {
  #spec {
    padding-block: calc(130 / var(--base-width) * 100vw);
  }
  #spec > .outer {
    width: calc(310 / var(--base-width) * 100vw);
    container-type: inline-size;
  }
  #spec .main_ttl {
    margin-bottom: calc(40 / var(--base-width) * 100vw);
  }
  #spec .main_ttl .logo {
    width: calc(138 / var(--base-width) * 100vw);
    margin-bottom: calc(40 / var(--base-width) * 100vw);
  }
  #spec .main_ttl .common_txt_ttl {
    gap: calc(10 / var(--base-width) * 100vw);
    font-size: calc(23 / var(--base-width) * 100vw);
    --fadeInUp-anim-interval: 0.05s;
  }
  #spec .main_ttl .fadeInUp + img.mark {
    transition-delay: 0.8s;
  }
  #spec .main_ttl .common_txt_ttl .fadeInUp > span:nth-child(n+10) {
    display: none;
  }
  #spec .main_ttl .common_txt_ttl + .sp {
    display: inline-block !important;
    margin-top: calc(20 / var(--base-width) * 100vw);
    color: var(--feiler-color);
    font-size: calc(23 / var(--base-width) * 100vw);
    font-weight: 400;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: calc(30 / 1000 * 1em);
    --fadeInUp-anim-interval: 0.05s;
  }
  #spec .main_ttl .common_txt_ttl + .sp .fadeInUp > span {
    display: inline-block !important;
  }
  #spec .main_ttl .common_txt_ttl .ttl {
    width: calc(138 / var(--base-width) * 100vw);
  }
  #spec > .outer > .inner {
    aspect-ratio: 312 / 719;
    background: url(../img/lineup_bg_sp.svg) center center no-repeat;
    background-size: contain;
  }
  #spec .lineup {
    width: calc(288 / var(--base-width) * 100vw);
    margin-inline: 0 auto;
    padding-top: 15%;
  }
  #spec .lineup .outer {
    flex-direction: column;
  }
  #spec .lineup .product {
    width: 100%;
  }
  #spec .lineup .product.SSQW089 {
    margin-bottom: calc(40 / var(--base-width) * 100vw);
  }
  #spec .lineup .product .inner {
    flex-direction: row !important;
    justify-content: flex-start;
  }
  #spec .lineup .product .inner .img_box {
    width: calc(150 / var(--base-width) * 100vw);
  }
  #spec .lineup .product .inner .txt_box {
    position: relative;
    width: calc(128 / var(--base-width) * 100vw);
    font-size: calc(12 / var(--base-width) * 100vw);
  }
  #spec .txt_box .serial {
    margin-top: 0;
    margin-bottom: calc(15 / var(--base-width) * 100vw);
  }
  #spec .txt_box .serial img {
    width: calc(85 / var(--base-width) * 100vw);
  }
  #spec .txt_box .price {
    margin-bottom: calc(15 / var(--base-width) * 100vw);
  }
  #spec .txt_box .note {
    margin-bottom: calc(15 / var(--base-width) * 100vw);
  }
  #spec .txt_box .date {
    margin-bottom: calc(20 / var(--base-width) * 100vw);
  }
  #spec .txt_box .btn a {
    margin-bottom: calc(10 / var(--base-width) * 100vw);
    font-size: calc(11 / var(--base-width) * 100vw);
    line-height: calc(33 / var(--base-width) * 100vw);
  }
}

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

 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;
  }
}
