@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: #212B52;
  --primary-txt-color: #212B52;
  --primary-bg-color: #D6D6D6;
  --gray-color: #C2C1C1;
  --base-width: 1920;
  --content-padding-top: 80px;
  --opening-time: 4s;
  --scrollbar-size: 0px;
}
@media screen and (max-width: 1600px) {
  :root {
    --content-padding-top: max(50px,5vw);
  }
}
@media screen and (max-width: 640px) {
  :root {
    --base-width: 375;
    --content-padding-top: 40px;
  }
}

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

 base

----------------------------------------------------------------------------*/
html {
  font-size: 62.5%;
  -webkit-text-size-adjust: 100%;
}
body {
  position: relative;
  color: var(--primary-txt-color);
  font-family: 'Zen Old Mincho', 'Noto Serif JP', serif;
  line-height: 1;
  font-size: 1.6rem;
  background: var(--primary-bg-color);
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
  overflow: hidden;
}
body.opening_fin {
  overflow: inherit;
  overflow-x: clip;
}
.sp,
.sp_inline {
  display: none;
}
.pc {
  display: block;
}
.pc_inline {
  display: inline;
}
@media screen and (max-width: 640px) {
  .sp {
    display: block;
  }
  .sp_inline {
    display: inline;
  }
  .pc,
  .pc_inline {
    display: none;
  }
}
.common_txt {
  font-size: clamp(12px, (22 / var(--base-width) * 100vw), 22px);
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0em;
  text-align: justify;
}
@media screen and (max-width: 640px) {
  .common_txt {
    font-size: 1.4rem;
    line-height: calc(30 / 13);
  }
}
#onetrust-consent-sdk #onetrust-banner-sdk {
  font-family: 'Noto Sans JP', sans-serif;
}

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

 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_x,
.fadein_x02 {
  opacity : 0;
  transform : translate3d(-30px, 0, 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_x02 {
  transform : translate3d(-60px, 0, 0);
  transition-duration: 2s;
}
.fadein_x.scrollin,
.fadein_x02.scrollin {
  opacity : 1;
  transform : translate3d(0, 0, 0);
  filter: blur(0);
}

/* for Firefox */
@-moz-document url-prefix() {
  .fadein_x {
    transform : translate3d(-30px, 0, 0) rotate(0.0001deg);
  }
  .fadein_x02 {
    transform : translate3d(-60px, 0, 0) rotate(0.0001deg);
  }
  .fadein_x.scrollin,
  .fadein_x02.scrollin {
    transform : translate3d(0, 0, 0) rotate(0.0001deg);
  }
}

@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);
    filter: blur(5px);
  }
  100% {
    opacity : 1;
    transform : translate3d(0, 0, 0);
    filter: blur(0);
	}
}

/* for Firefox */
@-moz-document url-prefix() {
  @keyframes fadein_x {
    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);
  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);
  transition-duration: 2s;
}
.fadein_y.scrollin,
.fadein_y02.scrollin {
  opacity : 1;
  transform : translate3d(0, 0, 0);
  filter: blur(0);
}

/* for Firefox */
@-moz-document url-prefix() {
  .fadein_y {
    transform : translate3d(0, 30px, 0) rotate(0.0001deg);
  }
  .fadein_y02 {
    transform : translate3d(0, 60px, 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);
	}
}

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

.scale_down {
  opacity : 0;
  filter: blur(5px);
  transform: scale(1.05);
  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);
  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);
      opacity: 0;
  }
  100% {
      transform: translate3d(0, 0, 0);
      opacity: 1;
  }
}

/* for Firefox */
@-moz-document url-prefix() {
  @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;
    }
  }
}

.border_anim::before {
  height: 0;
  transition: height 1.5s cubic-bezier(.2,1,.28,.92);
}
.border_anim.scrollin::before {
  height: 100%;
}
.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%);
}

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

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

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

opening

--------------------------------------------------*/
#opening {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100dvh;
  padding-inline-end: var(--scrollbar-size);
  z-index: 200;
  overflow: hidden;
}
#opening.fin {
  padding-inline-end: 0;
  pointer-events: none;
}
#opening.hidden {
  display: none;
}
#opening::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--primary-bg-color);
  background: #C2C1C1;
  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);
  pointer-events: none;
}
#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: 100%;
}
#opening .opening_cont {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}
#opening .opening_cont.cont1 {
  width: clamp(230 * 0.75px, 230 / var(--base-width) * 100vw, 230px);
}
#opening .opening_cont.cont2 {
  width: clamp(350 * 0.75px, 350 / var(--base-width) * 100vw, 350px);
}
#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: 130px;
  }
  #opening .opening_cont.cont2 {
    width: 188px;
  }
}

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

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: 'Forum', 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(--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;
}
#kv .outer {
	position: relative;
	width: 100%;
  padding-top: var(--content-padding-top);
	aspect-ratio: 1920 / 1070;
}
#kv .inner {
	position: relative;
  display: flex;
  align-items: flex-start;
  gap: calc(40/ var(--base-width) * 100vw);
  width: calc(var(--primary-width) / var(--base-width) * 100vw);
  margin-inline: auto;
  container-type: inline-size;
  --primary-width: 1780;
}
#kv .inner .visual_block {
  position: relative;
  width: calc(865 / var(--primary-width) * 100cqi);
  aspect-ratio: 865 / 950;
  overflow: hidden;
}
#kv .inner .visual_block .splide__slide {
  opacity: 1 !important;
}
#kv .inner .visual_block .splide__slide span {
  display: block;
  opacity: 0;
}
#kv .inner .visual_block .splide__slide.is-active span,
#kv .inner .visual_block .splide__slide.is-prev span,
#kv .inner .visual_block .splide__slide span.is-prev {
  animation: animeIn 10s cubic-bezier(0.16, 1, 0.3, 1);
  opacity: 1;
}
@keyframes animeIn {
  0% {
    transform: translateX(-20%) scale(1.2);
    clip-path: inset(0 100% 0 0);  /* 右からマスク */
    filter: brightness(3) blur(30px);
  }
  20% {
    transform: translateX(0%) scale(1);
    clip-path: inset(0);
    filter: brightness(1) blur(0px);
  }
  42.5% {
    transform: translateX(0%) scale(1);
    clip-path: inset(0);
    filter: brightness(1);
  }
  60% {
    transform: translateX(20%) scale(1.1);
    clip-path: inset(0);
    filter: brightness(0.5) blur(10px);
  }
  100% {
    transform: translateX(20%) scale(1.1);
    clip-path: inset(0);
    filter: brightness(0.5) blur(10px);
  }
}
#kv .inner .visual_block .splide__slide.is-active span img,
#kv .inner .visual_block .splide__slide.is-prev span img,
#kv .inner .visual_block .splide__slide span.is-prev img {
  transform: scale(1.05);
  animation: animeImgScale 10s;
}
@keyframes animeImgScale {
  0% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1.0);
  }
}

/* for Firefox */
@-moz-document url-prefix() {
  #kv .inner .visual_block .splide__slide.is-active span img,
  #kv .inner .visual_block .splide__slide.is-prev span img,
  #kv .inner .visual_block .splide__slide span.is-prev img {
    transform: scale(1.0);
  }
  @keyframes animeImgScale {
    0% {
      transform: scale(1.0);
    }
    100% {
      transform: scale(1.0);
    }
  }
}

#kv .inner .txt_block {
  position: relative;
  width: calc(853 / var(--primary-width) * 100cqi);
  container-type: inline-size;
}
#kv .inner .txt_block .main_ttl {
  position: relative;
  z-index: 2;
}
#kv .inner .txt_block .main_ttl span.lg {
  display: block;
  width: calc(138 / 853 * 100cqi);
  margin-bottom: calc(25 / 853 * 100cqi);
  margin-left: calc(6 / 853 * 100cqi);
}
#kv .inner .txt_block .main_ttl span.main {
  display: block;
  margin-bottom: calc(35 / 853 * 100cqi);
}
#kv .inner .txt_block .main_ttl span.le {
  display: block;
  width: calc(308 / 853 * 100cqi);
  margin-left: calc(6 / 853 * 100cqi);
}
#kv .inner .txt_block .main_ttl span img {
  transition: clip-path 1.5s cubic-bezier(.2,1,.28,.92), transform 1.5s cubic-bezier(.2,1,.28,.92);
  transform: translateX(-2.5%);
  clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
}
#kv .inner .txt_block .main_ttl span.main img {
  transition-delay: 0.2s;
  transition-duration: 1.0s;
}
#kv .inner .txt_block .main_ttl span.le img {
  transition-delay: 0.4s;
}
#kv.start .inner .txt_block .main_ttl span img {
  transform: translateX(0%);
  clip-path: polygon(100% 0, 0 0, 0 100%, 100% 100%);
}
#kv .inner .txt_block .watch_img {
  position: absolute;
  top: calc(277 / 853 * 100cqi);
  left: calc(302 / 853 * 100cqi);
  width: calc(588 / 853 * 100cqi);
  aspect-ratio: 588 / 750;
}
#kv .inner .txt_block .watch_img .splide {
  opacity: 0;
  transition: opacity 1.0s ease-out 0.5s;
}
#kv .inner .txt_block .watch_img .splide.is-initialized {
  opacity: 1;
}
#kv .inner .txt_block .watch_img .splide__slide span {
  position: relative;
  display: block;
  background-color: var(--primary-bg-color);
  z-index: 1;
}
#kv .inner .txt_block .watch_img .splide__slide span::before {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../img/kv_watch_SSVW241_sh.webp) no-repeat;
  background-size: contain;
  mix-blend-mode: multiply;
  z-index: -1;
}
@media screen and (max-width: 640px) {
  #kv {
    overflow-x: clip;
  }
  #kv .outer {
    aspect-ratio: 310 / 663;
  }
  #kv .inner {
    flex-direction: column;
    gap: calc(10 / var(--base-width) * 100vw);
    width: calc(310 / var(--base-width) * 100vw);
    padding-top: calc(10 / var(--base-width) * 100vw);
  }
  #kv .inner .visual_block {
    width: 100%;
    aspect-ratio: 310 / 345;
  }
  #kv .inner .txt_block {
    width: 100%;
  }
  #kv .inner .main_ttl {
    width: calc(136 / var(--base-width) * 100vw);
  }
  #kv .inner .txt_block .main_ttl span.lg {
    width: calc(61 / var(--base-width) * 100vw);
    margin-bottom: calc(12 / var(--base-width) * 100vw);
    margin-left: calc(2 / var(--base-width) * 100cqi);
  }
  #kv .inner .txt_block .main_ttl span.main {
    width: 100%;
    margin-bottom: calc(10 / var(--base-width) * 100vw);
    margin-left: calc(-2 / var(--base-width) * 100cqi);
  }
  #kv .inner .txt_block .main_ttl span.le {
    width: calc(113 / var(--base-width) * 100vw);
    margin-left: 0;
  }
  #kv .inner .txt_block .watch_img {
    top: calc(-60 / var(--base-width) * 100vw);
    left: calc(156 / var(--base-width) * 100vw);
    width: calc(320 / var(--base-width) * 100vw);
    aspect-ratio: 320 / 410;
  }
  #kv .inner .txt_block .watch_img .splide {
    opacity: 0;
    transition: opacity 1.0s ease-out 0.5s;
  }
  #kv .inner .txt_block .watch_img .splide.is-initialized {
    opacity: 1;
  }
  #kv .inner .txt_block .watch_img .splide__slide span {
    background-color: transparent
  }
  #kv .inner .txt_block .watch_img .splide__slide span::after {
    position: absolute;
    content: '';
    bottom: 0;
    left: 0;
    width: 100%;
    height: calc(100% - (55 / var(--base-width) * 100vw));
    background: var(--primary-bg-color);
    z-index: -2;
  }
}

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

wrapper

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

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

lead

--------------------------------------------------*/
#lead {
  position: relative;
  padding-top: min(160 / var(--base-width) * 100vw, 160px);
  padding-bottom: min(200 / var(--base-width) * 100vw, 200px);
}
#lead .outer {
  position: relative;
  --primary-width: 1540;
}
#lead .inner {
  position: relative;
  display: flex;
  width: min(var(--primary-width) / var(--base-width) * 100vw, var(--primary-width) * 1px);
  margin-inline: auto;
  container-type: inline-size;
}
#lead .inner .title_block {
  width: calc(785 / var(--primary-width) * 100cqi);
  padding-left: calc(140 / var(--primary-width) * 100cqi);
}
#lead .inner .main_title {
  font-size: min(52 / var(--base-width) * 100vw, 52px);
  line-height: 210%;
}
#lead .inner .main_title .fadein_title.l2 .slide_txt {
  animation-delay: 0.25s;
}
#lead .inner .txt_box {
  position: relative;
  width: calc(755 / var(--primary-width) * 100cqi);
  padding-left: calc(30 / var(--primary-width) * 100cqi);
  font-size: clamp(12px, 22 / var(--base-width) * 100vw, 22px);
  line-height: 300%;
}
#lead .inner .txt_box::before,
#lead .inner .txt_box::after {
  content: '';
  position: absolute;
  top: calc((200 / var(--base-width) * -100vw) + (160 / var(--base-width) * -100vw));
  left: 0;
  width: 1px;
  height: calc((200 / var(--base-width) * 100vw) + (160 / var(--base-width) * 100vw));
  background: var(--primary-color);
  opacity: 0;
  transition: opacity .5s ease-out;
}
#lead .inner .txt_box::after {
  transition: height .5s ease-out, opacity .5s ease-out;
}
#lead .inner .txt_box.start::before {
  opacity: 1;
  animation: mainScrollAnim 2s cubic-bezier(1,0,0,1) infinite;
}
@keyframes mainScrollAnim {
  0%{transform:scale(1,0);transform-origin:0 0}
  35%{transform:scale(1,1);transform-origin:0 0}
  35.1%{transform:scale(1,1);transform-origin:0 100%}
  100%,80%{transform:scale(1,0);transform-origin:0 100%}
}
#lead .inner .txt_box.scrollin::before {
  opacity: 0;
}
#lead .inner .txt_box.scrollin::after {
  opacity: 1;
  height: calc(100% + (200 / var(--base-width) * 100vw) + (160 / var(--base-width) * 100vw));
}
#lead .inner .txt_box .fadein_x {
  transition-delay: 0.5s;
}
@media screen and (max-width: 640px) {
  #lead {
    padding-block: 0 120px;
  }
  #lead .inner {
    flex-direction: column;
    gap: 35px;
    width: calc(310 / var(--base-width) * 100vw);
    margin-inline: auto;
  }
  #lead .inner .title_block {
    width: 100%;
    padding: 0;
  }
  #lead .inner .main_title {
    padding-left: 0.1em;
    font-size: 2.5rem;
    line-height: 200%;
  }
  #lead .inner .txt_box {
    width: 100%;
    padding: 0;
  }
  #lead .inner .txt_box {
    width: 100%;
    padding-left: 15px;
    font-size: 1.4rem;
    line-height: 230%;
  }
  #lead .inner .txt_box {
    overflow: hidden;
  }
  #lead .inner .txt_box::before {
    display: none;
  }
  #lead .inner .txt_box::after {
    top: 0;
    height: 0;
  }
  #lead .inner .txt_box.scrollin::after {
    height: 100%;
  }
}

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

lead_gallery

--------------------------------------------------*/
#lead_gallery {
  position: relative;
  /*
  padding-bottom: min(120 / var(--base-width) * 100vw, 120px);
  */
  overflow: hidden;
}
#lead_gallery.start {
  overflow: inherit;
}
#lead_gallery .outer {
  position: relative;
  --img_wrap_offset: 0;
  --img_offset: 0;
  --img_translateY: 0;
  --img_scale: 1.0;
}
#lead_gallery .img_wrap {
  position: absolute;
  overflow: hidden;
}
/*
#lead_gallery .main_ttl {
  position: absolute;
  bottom: calc(80 / var(--primary-width) * 100cqi);
  right: calc(100 / var(--primary-width) * 100cqi);
  width: calc(1163 / var(--primary-width) * 100cqi);
  transform: translateY(calc(var(--img_wrap_offset) * 1px));
}
*/
#lead_gallery .img_wrap.main {
  /*
  top: calc(150 / var(--primary-width) * 100cqi);
  width: calc(650 / var(--primary-width) * 100cqi);
  aspect-ratio: 1 / 1;
  top: 0;
  width: 100%;
  left: 50%;
  transform: translate3d(-50%, calc(var(--img_translateY) * 1%), 0);
  */
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  z-index: 10;
}
#lead_gallery .img_wrap.main .main_img {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
#lead_gallery .img_wrap.main .main_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(var(--img_scale));
}
#lead_gallery .inner {
  display: flex;
  align-items: center;
  height: 100vh;
}
#lead_gallery .img_block {
  position: relative;
  width: 100%;
  aspect-ratio: var(--primary-width) / 970;
  container-type: inline-size;
  --primary-width: 1920;
}
#lead_gallery .img_block .img_wrap {
  transform: translateY(calc(var(--img_wrap_offset) * 1px));
}
#lead_gallery .img_wrap.img_wrap1 {
  top: 0;
  left: calc(140 / var(--primary-width) * 100cqi);
  width: calc(400 / var(--primary-width) * 100cqi);
  aspect-ratio: 400 / 400;
}
#lead_gallery .img_wrap.img_wrap2 {
  top: calc(20 / var(--primary-width) * 100cqi);
  right: calc(243 / var(--primary-width) * 100cqi);
  width: calc(195 / var(--primary-width) * 100cqi);
  aspect-ratio: 195 / 420;
}
#lead_gallery .img_wrap.img_wrap3 {
  top: calc(520 / var(--primary-width) * 100cqi);
  left: calc(270 / var(--primary-width) * 100cqi);
  width: calc(270 / var(--primary-width) * 100cqi);
  aspect-ratio: 270 / 450;
}
#lead_gallery .img_wrap.img_wrap4 {
  top: calc(540 / var(--primary-width) * 100cqi);
  right: calc(140 / var(--primary-width) * 100cqi);
  width: calc(400 / var(--primary-width) * 100cqi);
  aspect-ratio: 400 / 400;
}
/*
#lead_gallery .img_wrap.img_wrap5 {
  bottom: 0;
  left: calc(140 / var(--primary-width) * 100cqi);
  width: calc(314 / var(--primary-width) * 100cqi);
  aspect-ratio: 314 / 314;
}
*/
#lead_gallery .img_wrap .img {
  position: absolute;
  top: -10%;
  width: 100%;
  height: 120%;
}
#lead_gallery .img_wrap.img_wrap3 .img {
  top: -5%;
  height: 110%;
}
#lead_gallery .img_wrap .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#lead_gallery .img_wrap .img img.img2 {
  display: none;
}
#lead_gallery .img_wrap.img_wrap1 .img img {
  transition: transform 1.2s ease-out;
  transform: translateY(calc(var(--img_offset) * 1px * 4));
}
#lead_gallery .img_wrap.img_wrap2 .img img {
  transition: transform 0.8s ease-out;
  transform: translateY(calc(var(--img_offset) * 1px * 5));
}
#lead_gallery .img_wrap.img_wrap3 .img img {
  transition: transform 0.8s ease-out;
  transform: translateY(calc(var(--img_offset) * 1px * 3));
}
#lead_gallery .img_wrap.img_wrap4 .img img {
  transition: transform 0.4s ease-out;
  transform: translateY(calc(var(--img_offset) * 1px * 4));
}
/*
#lead_gallery .img_wrap.img_wrap5 .img img {
  transition: transform 0.8s ease-out;
  transform: translateY(calc(var(--img_offset) * 1px * 4));
}
*/
@media screen and (min-width: 641px) {
  body.pc_portrait #lead_gallery .img_block {
    width: 80vw;
    height: 125vw;
    aspect-ratio: inherit;
    margin-inline: auto;
  }
  body.pc_portrait #lead_gallery .img_wrap .img img.img1 {
    display: none;
  }
  body.pc_portrait #lead_gallery .img_wrap .img img.img2 {
    display: block;
  }
  body.pc_portrait #lead_gallery .img_wrap.img_wrap1 {
    left: 5vw;
    width: 32vw;
  }
  body.pc_portrait #lead_gallery .img_wrap.img_wrap2 {
    top: 3.5vw;
    right: 0;
    width: 36vw;
    aspect-ratio: 160 / 95;
  }
  body.pc_portrait #lead_gallery .img_wrap.img_wrap3 {
    top: auto;
    bottom: 5vw;
    left: 0;
    width: 34vw;
    aspect-ratio: 170 / 80;
  }
  body.pc_portrait #lead_gallery .img_wrap.img_wrap4 {
    top: auto;
    bottom: 0;
    right: 2.5vw;
    width: 32vw;
  }
  body.pc_portrait #lead_gallery .img_wrap.img_wrap3 .img {
    top: -10%;
    height: 120%;
  }
  body.pc_portrait #lead_gallery .img_wrap.img_wrap2 .img img {
    /*
    transform: none !important;
    */
    transform: translateY(calc(var(--img_offset) * 1px * 2));
  }
  body.pc_portrait #lead_gallery .img_wrap.img_wrap3 .img img {
    /*
    transform: none !important;
    */
  }
}
@media screen and (max-width: 640px) {
  #lead_gallery {
    min-height: 270vw;
  }
  #lead_gallery .img_block {
    position: relative;
    width: 100%;
    aspect-ratio:  375 / 630;
  }
  #lead_gallery .img_wrap .img img.img1 {
    display: none;
  }
  #lead_gallery .img_wrap .img img.img2 {
    display: block;
  }
  #lead_gallery .img_wrap.img_wrap1 {
    top: 0;
    left: calc(20 / var(--base-width) * 100vw);
    width: calc(150 / var(--base-width) * 100vw);
  }
  #lead_gallery .img_wrap.img_wrap2 {
    top: calc(20 / var(--base-width) * 100vw);
    left: auto;
    right: 0;
    width: calc(160 / var(--base-width) * 100vw);
    aspect-ratio: 160 / 95;
  }
  #lead_gallery .img_wrap.img_wrap3 {
    top: auto;
    bottom: calc(50 / var(--base-width) * 100vw);
    left: 0;
    right: auto;
    width: calc(170 / var(--base-width) * 100vw);
    aspect-ratio: 170 / 80;
  }
  #lead_gallery .img_wrap.img_wrap4 {
    top: auto;
    bottom: 0;
    left: auto;
    right: calc(10 / var(--base-width) * 100vw);
    width: calc(150 / var(--base-width) * 100vw);
  }
  #lead_gallery .img_wrap.img_wrap3 .img {
    top: -10%;
    height: 120%;
  }
  #lead_gallery .img_wrap.img_wrap1 .img img {
    transform: translateY(calc(var(--img_offset) * 1px * 3));
  }
  #lead_gallery .img_wrap.img_wrap2 .img img {
    transform: translateY(calc(var(--img_offset) * 1px * 1));
  }
  #lead_gallery .img_wrap.img_wrap3 .img img {
    transform: translateY(calc(var(--img_offset) * 1px * 1));
  }
  #lead_gallery .img_wrap.img_wrap4 .img img {
    transform: translateY(calc(var(--img_offset) * 1px * 3));
  }
}

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

design

--------------------------------------------------*/
#design {
  position: relative;
  padding-top: min(180 / var(--base-width) * 100vw, 180px);
  z-index: 1;
}
#design .main_ttl {
  position: relative;
  width: calc(1396 / var(--base-width) * 100vw);
  margin-bottom: calc(60 / var(--base-width) * 100vw);
  margin-left: calc(140 / var(--base-width) * 100vw);
}
#design .main_ttl .text_wipe_x {
  display: inline-block;
  width: 100%;
  transform: translateX(0);
  transition-duration: 1.5s;
}
#design .txt_block {
  position: relative;
  margin-left: calc(270 / var(--base-width) * 100vw);
  margin-bottom: calc(50 / var(--base-width) * 100vw);
}
#design .txt_block .sub_ttl {
  margin-bottom: 1.25em;
  padding-top: 0.5em;
  font-size: clamp(25px,(35 / var(--base-width)* 100vw), 35px);
}
#design .txt_block .sub_ttl .min {
  display: inline-block;
  margin-left: 1em;
  font-size: calc(15 / 35 * 100%);
  letter-spacing: 0.3em;
}
#design .txt_block .txt {
  position: relative;
  margin-left: calc(10 / var(--base-width) * 100vw);
  padding-bottom: 0.5%;
  padding-left: calc(30 / var(--base-width) * 100vw);
}
#design .txt_block .txt::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 1px;
  background-color: var(--primary-color);
}
#design .txt_block .txt .common_txt {
  display: inline-block;
}
#design_pin_block {
  position: relative;
}
#design_pin_block .wrap {
  position: relative;
  display: flex;
}
#design_pin_block .main_img_block {
  position: sticky;
  top: 0;
  left: 0;
  width: 50%;
  height: 100vh;
}
#design_pin_block .main_img_block .main_img_outer {
  position: relative;
  width: 100%;
  height: 100%; 
}
#design_pin_block .main_img_block .main_img_inner {
  position: absolute;
  top: 57%;
  left: calc(95 / var(--base-width) * 100vw);
  width: calc(1012 / var(--base-width) * 100vw);
  aspect-ratio: 1012 / 840;
  container-type: inline-size;
  opacity: 0;
  transform: translateY(-50%);
  visibility: hidden;
  transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
}
#design_pin_block .main_img_block .main_img_inner.active {
  opacity: 1;
  visibility: visible;
}
#design_pin_block .main_img_block .main_img_inner .img {
  position: absolute;
  top: 0;
  right: 0;
  width: calc(660 / 1012 * 100cqi);
  background-color: var(--primary-bg-color);
  z-index: 1;
}
#design_pin_block .main_img_block .main_img_inner .img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../img/design_block_SSVW241_main_sh.webp) no-repeat;
  background-size: contain;
  mix-blend-mode: multiply;
  z-index: -1;
}
#design_pin_block .main_img_block.SSVW242 .main_img_inner .img::before {
  background: url(../img/design_block_SSVW242_main_sh.webp) no-repeat;
  background-size: contain;
}
#design_pin_block .main_img_block .main_img_inner .serial {
  position: absolute;
  top: calc(260 / 1012 * 100cqi);
  left: 0;
  width: calc(288 / 1012 * 100cqi);
  container-type: inline-size;
}
#design_pin_block .main_img_block .main_img_inner .serial .num {
  display: block;
  width: calc(220 / 288 * 100cqi);
  margin-right: calc(13 / 288 * 100cqi);
  margin-left: auto;
  overflow: hidden;
}
#design_pin_block .main_img_block .main_img_inner .serial .num img {
  opacity: 0;
}
#design_pin_block .main_img_block .main_img_inner.active .serial .num img {
  animation: 1.0s main_slide_up cubic-bezier(.16,1,.3,1) forwards;
}
@keyframes main_slide_up {
  0% {
      transform: translateY(101%);
      opacity: 0;
  }
  100% {
      transform: translate3d(0, 0, 0);
      opacity: 1;
  }
}

/* for Firefox */
@-moz-document url-prefix() {
  @keyframes main_slide_up {
    0% {
        transform: translateY(101%) rotate(0.0001deg);
        opacity: 0;
    }
    100% {
        transform: translate3d(0, 0, 0) rotate(0.0001deg);
        opacity: 1;
    }
  }
}

#design_pin_block .main_img_block .main_img_inner.SSVW242 .serial .num {
  width: calc(233 / 288 * 100cqi);
  margin-right: 0;
}
#design_pin_block .main_img_block .main_img_inner .serial .obj {
  position: absolute;
}
#design_pin_block .main_img_block .main_img_inner .serial .obj.obj1 {
  top: calc(-30 / 288 * 100cqi);
  left: calc(18 / 288 * 100cqi);
  width: calc(25 / 288 * 100cqi);
}
#design_pin_block .main_img_block .main_img_inner .serial .obj.obj2 {
  top: 0;
  left: 0;
  width: calc(15 / 288 * 100cqi);
}
#design_pin_block .main_img_block .main_img_inner .serial .obj.obj3 {
  top: calc(-30 / 288 * 100cqi);
  left: calc(6 / 288 * 100cqi);
  width: calc(20 / 288 * 100cqi);
}
#design_pin_block .main_img_block .main_img_inner .serial .obj.obj1 img {
	animation: flashing 4s infinite;
}
#design_pin_block .main_img_block .main_img_inner .serial .obj.obj2 img {
	animation: flashing 3s infinite 2s;
}
@keyframes flashing {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
#design_pin_block .main_img_block .main_img_inner .serial .obj.obj3 img {
	animation: updown 4s infinite;
}
@keyframes updown {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
  100% {
    transform: translateY(0);
  }
}
#design_pin_block .main_img_block .main_img_inner .outline {
  position: absolute;
  top: calc(352 / 1012 * 100cqi);
  left: calc(20 / 1012 * 100cqi);
  padding-bottom: 0.5%;
  padding-left: calc(30 / var(--base-width) * 100vw);
  z-index: 2;
}
/*
#design_pin_block .main_img_block .main_img_inner .outline::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 1px;
  height: 0;
  background-color: var(--primary-color);
  transition: height 1.5s cubic-bezier(.2,1,.28,.92) 0.25s;
}
#design_pin_block .main_img_block .main_img_inner.active .outline::before {
  height: 100%;
}
*/
#design_pin_block .main_img_block .main_img_inner .outline p {
  clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
  transform: translateX(-2.5%);
  opacity: 0;
  transition: clip-path 1.5s cubic-bezier(.2,1,.28,.92) 0.5s, transform 1.0s cubic-bezier(.2,1,.28,.92) 0.5s, opacity 0s cubic-bezier(.2,1,.28,.92) 0.5s;
}
#design_pin_block .main_img_block .main_img_inner.active .outline p {
  transform: translateX(0);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  opacity: 1;
}
#design_pin_block .detail_block {
  position: relative;
  width: 50%;
}
#design_pin_block .detail_block .detail_wrap {
  position: sticky; 
  top: 0; 
  width: 100%; 
  height: 100vh; 
  z-index: 10;
  container-type: inline-size;
}
#design_pin_block .detail_outer > .detail_wrap {
  display: none;
}
#design_pin_block .detail_block .parts {
  position: absolute;
  top: 50%;
  left: calc(26 / var(--base-width) * 100vw);
  width: calc(44 / var(--base-width) * 100vw);
  height: calc(650 / var(--base-width) * 100vw);
  transform: translateY(-50%);
}
#design_pin_block .bar {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 1px;
  height: calc(150 / var(--base-width) * 100vw);
  background-color: var(--gray-color);
  transform: translateX(-50%);
}
#design_pin_block .bar::after{
  content: '';
  position:absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:var(--primary-color);
  animation: scrollAnim 2s cubic-bezier(1,0,0,1) infinite
}
@keyframes scrollAnim {
  0%{transform:scale(1,0);transform-origin:0 0}
  35%{transform:scale(1,1);transform-origin:0 0}
  35.1%{transform:scale(1,1);transform-origin:0 100%}
  100%,80%{transform:scale(1,0);transform-origin:0 100%}
}
#design_pin_block .item_title {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
#design_pin_block .item_title > span {
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transition: opacity 0.5s ease-out;
}
#design_pin_block .item_title > span.current {
  opacity: 1;
}
#design_pin_block .dots_list {
  position: absolute;
  bottom: calc(180 / var(--base-width) * 100vw);
  left: 50%;
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 10px;
  height: 60px;
  transform: translateX(-50%);
}
#design_pin_block .dots_list li a {
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 9999px;
  background: var(--gray-color);
  transition: background 0.5s ease-out;
}
#design_pin_block .dots_list li.current a {
  background: var(--primary-color);
}
#design_pin_block .detail_outer {
  margin-top: -100vh;
  /*
  padding-top: calc(200 / var(--base-width) * 100vw);
  */
}
#design_pin_block #pin_SSVW241.detail_outer {
  padding-bottom: calc(300 / var(--base-width) * 100vw);
}
#design_pin_block #pin_SSVW242.detail_outer {
  margin-top: 0;
  padding-bottom: 0;
  /*
  padding-bottom: calc((100vh - (750 / var(--base-width) * 100vw)) / 2);
  padding-top: calc(100 / var(--base-width) * 100vw);
  padding-bottom: 20vh;
  */
}
#design_pin_block .detail_block .item {
  position: relative;
  width: calc(600 / var(--base-width) * 100vw);
  margin-right: auto;
  margin-left: calc(120 / var(--base-width) * 100vw);
  /*
  padding-block: 18.8vh 5vh;
  */
  padding-top: calc(50vh - (325 / var(--base-width) * 100vw));
}
#design_pin_block .detail_block #pin_SSVW242 .item.item3 .item_inner {
  height: calc((650 / var(--base-width) * 100vw + 100vh) / 2);
}
#design_pin_block .detail_block .item .img {
  margin-bottom: calc(50 / var(--base-width) * 100vw);
  border-radius: calc(150 / var(--base-width) * 100vw) 0 0 0;
  background: url(../img/design_theme_SSVW241_item_bg.webp) no-repeat;
  background-size: cover;
  overflow: hidden;
}
body:not(.pin_SSVW241) #design_pin_block .detail_block #pin_SSVW241 .item.active .img > img,
body:not(.pin_SSVW242) #design_pin_block .detail_block #pin_SSVW242 .item.active .img > img,
#design_pin_block .detail_block .item .img > img {
  opacity: 0;
  transform: scale(1.1);
  filter: blur(5px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out, filter 0.5s ease-out;
}
#design_pin_block .detail_block .item.active .img > img {
  opacity: 1;
  transform: scale(1.0);
  filter: blur(0);
}
#design_pin_block .detail_block #pin_SSVW242 .item .img {
  background: url(../img/design_theme_SSVW242_item_bg.webp) no-repeat;
  background-size: cover;
}
body:not(.pin_SSVW241) #design_pin_block .detail_block #pin_SSVW241 .item.active .txt,
body:not(.pin_SSVW242) #design_pin_block .detail_block #pin_SSVW242 .item.active .txt,
#design_pin_block .detail_block .item .txt {
  padding-inline: calc(15 / var(--base-width) * 100vw);
  opacity: 0;
  transition: opacity 0.5s ease-out 0.5s;
}
#design_pin_block .detail_block .item.active .txt {
  opacity: 1;
}
@media screen and (min-width: 641px) {
  body.pc_portrait #design {
    padding-top: min(100 / var(--base-width) * 100vw, 100px);
  }
  body.pc_portrait #design_pin_block .main_img_block .main_img_inner {
    top: 52%
  }
  /*
  body.pc_portrait #design_pin_block .main_img_block,
  body.pc_portrait #design_pin_block .detail_block .detail_wrap {
    height: 60vh;
  }
  body.pc_portrait #design_pin_block .detail_outer {
    margin-top: -60vh;
  }
  body.pc_portrait #design_pin_block #pin_SSVW242.detail_outer {
    padding-bottom: calc((60vh - (650 / var(--base-width) * 100vw)) / 2);
  }
  body.pc_portrait #design_pin_block .detail_block .item {
    padding-top: calc(30vh - (325 / var(--base-width) * 100vw));
  }
  */
}
@media screen and (max-width: 640px) {
  #design {
    padding-top: 100px;
    padding-bottom: 0;
  }
  #design .main_ttl {
    width: calc(326 / var(--base-width) * 100vw);
    margin-bottom: calc(25 / var(--base-width) * 100vw);
    margin-left: calc(20 / var(--base-width) * 100vw);
  }
  #design .txt_block {
    position: relative;
    margin-left: calc(32 / var(--base-width) * 100vw);
    margin-right: calc(38 / var(--base-width) * 100vw);
    margin-bottom: 100px;
  }
  #design .txt_block .sub_ttl {
    margin-bottom: 1em;
    padding-top: 0;
    font-size: 2.2rem;
  }
  #design .txt_block .sub_ttl .min {
    margin-left: 1em;
    font-size: 1.0rem;
    letter-spacing: 0.3em;
  }
  #design .txt_block .txt {
    margin-left: 0;
    padding-bottom: 0.5%;
    padding-left: 15px;
  }
  #design_pin_block .wrap {
    display: block;
  }
  #design_pin_block .main_img_block {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    height: auto;
    overflow-x: clip;
  }
  #design_pin_block .detail_block {
    width: 100%;
    padding-bottom: 100px;
  }
  #design_pin_block .main_img_block .main_img_outer {
    height: auto;
  }
  #design_pin_block .main_img_block .main_img_inner {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    aspect-ratio: 375 / 394;
    transform: none;
    transition-duration: 1.0s;
  }
  #design_pin_block .wrap > .main_img_block .main_img_inner.SSVW242 {
    display: none;
  }
  #design_pin_block .main_img_block .main_img_inner.scrollin {
    opacity: 1;
    visibility: visible;
  }
  #design_pin_block .main_img_block .main_img_inner .serial {
    top: calc(100 / 375 * 100cqi);
    left: calc(30 / 375 * 100cqi);
    width: calc(117 / 375 * 100cqi);
    container-type: inline-size;
  }
  #design_pin_block .main_img_block .main_img_inner.scrollin .serial .num img {
    animation: 1.0s main_slide_up cubic-bezier(.16,1,.3,1) forwards;
    animation-delay: 0.5s;
  }
  #design_pin_block .main_img_block .main_img_inner .outline {
    top: calc(145 / 375 * 100cqi);
    left: calc(40 / 375 * 100cqi);
    padding-left: calc(0 / 375 * 100cqi);
  }
  #design_pin_block .main_img_block .main_img_inner .outline::before {
    transition-delay: 0.75s;
  }
  #design_pin_block .main_img_block .main_img_inner.scrollin .outline::before {
    height: 100%;
  }
  #design_pin_block .main_img_block .main_img_inner .outline p.common_txt {
    font-size: 1.4rem;
    line-height: 1.8;
  }
  #design_pin_block .main_img_block .main_img_inner .outline p {
    transition-delay: 1.0s;
  }
  #design_pin_block .main_img_block .main_img_inner.scrollin .outline p {
    transform: translateX(0);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    opacity: 1;
  }
  #design_pin_block .main_img_block .main_img_inner .img {
    left: calc(185 / 375 * 100cqi);
    right: auto;
    width: calc(310 / 375 * 100cqi);
  }
  #design_pin_block .detail_outer {
    margin-top: 0;
    padding-bottom: 0;
    /*
    padding-bottom: 22vh;
    */
  }
  #design_pin_block #pin_SSVW241.detail_outer {
    padding-bottom: 100px;
    /*
    padding-bottom: 0;
    */
  }
  #design_pin_block .detail_block .detail_wrap {
    position: sticky;
    top: 100px;
    left: 0;
    width: 100%;
    height: calc(360 / var(--base-width) * 100vw);
    z-index: 10;
    container-type: inline-size;
  }
  #design_pin_block .detail_outer > .detail_wrap {
    display: block;
  }
  #design_pin_block .detail_block > .detail_wrap {
    display: none;
  }
  #design_pin_block .detail_block .parts {
    position: absolute;
    top: 0;
    left: calc(20 / var(--base-width) * 100vw);
    width: calc(22 / var(--base-width) * 100vw);
    height: calc(360 / var(--base-width) * 100vw);
    transform: none;
  }
  #design_pin_block .dots_list {
    bottom: calc(120 / var(--base-width) * 100vw);
    gap: 8px;
    width: 5px;
    height: 31px;
  }
  #design_pin_block .dots_list li a {
    width: 5px;
    height: 5px;
  }
  #design_pin_block .bar {
    width: 1px;
    height: calc(110 / var(--base-width) * 100vw);
  }
  #design_pin_block .detail_block .items {
    margin-top: calc(-360 / var(--base-width) * 100vw);
  }
  #design_pin_block .detail_block .item {
    width: calc(290 / var(--base-width) * 100vw);
    max-width: 480px;
    margin-right: calc(35 / var(--base-width) * 100vw);
    margin-left: auto;
    padding: 0;
    margin-bottom: 100px;
  }
  #design_pin_block .detail_block #pin_SSVW241 .item.item1 {
    margin-top: 0;
    padding-top: 0;
  }
  #design_pin_block .detail_block .item.item3 {
    min-height: calc(360 / var(--base-width) * 100vw);
    margin-bottom: 0;
  }
  #design_pin_block .detail_block #pin_SSVW241 .item.item3 .item_inner,
  #design_pin_block .detail_block #pin_SSVW242 .item.item3 .item_inner {
    height: auto;
  }
  #design_pin_block .detail_block .item .img {
    margin-bottom: calc(10 / var(--base-width) * 100vw);
    border-radius: 70px 0 0 0;
  }
  #design_pin_block .detail_block .item .txt {
    width: calc(270 / var(--base-width) * 100vw);
    margin-left: calc(6 / var(--base-width) * 100vw);
    padding-inline: 0 !important;
  }
}
@media screen and (max-width: 414px) {
  #design_pin_block .main_img_block .main_img_inner .outline p.common_txt {
    font-size: 1.3rem;
  }
}

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

about

--------------------------------------------------*/
#about {
  position: relative;
  margin-top: min((235 / var(--base-width) * 100vw), 235px);
}
#about .outer {
  position: relative;
}
#about .inner {
  position: relative;
  width: min(1514 / var(--base-width) * 100vw, 1514px);
  margin-inline: auto;
  container-type: inline-size;
}
#about .main_ttl {
  width: calc(806 / 1514 * 100cqi);
  margin-top: calc(50 / 55 * 1em);
  margin-left: auto;
  margin-bottom: calc(140 / 55 * 1em);
  color: var(--primary-txt-color);
  font-size: min(55 / var(--base-width) * 100vw, 55px);
  font-weight: 400;
  font-family: 'Forum', serif;
  letter-spacing: 0.1em;
  text-align: center;
  line-height: 1.1;
  container-type: inline-size;
}
#about .main_ttl .wrap {
  position: relative;
  display: inline-block;
}
#about .main_ttl .ttl_obj {
  position: absolute;
  top: calc(-40 / 55 * 1em);
  right: calc(-86 / 55 * 1em);
  width: 1em;
  aspect-ratio: 36 / 35;
  font-size: calc(36 / 55 * 1em);
  line-height: 1;
  transform: rotate(20deg);
}
#about .main_ttl .wrap > .ttl_obj img {
  opacity: 0;
  transition: opacity .4s ease-out 1.2s, transform .4s ease-out 1.2s;
}
#about .main_ttl .wrap.scrollin > .ttl_obj img {
  animation: var(--fuwafuwa-anim);
  opacity: 1;
}
#about .txt_block {
  width: calc(806 / 1514 * 100cqi);
  border: 1px solid var(--primary-txt-color);
  border-radius: calc(150 / 1514 * 100cqi);
  background: var(--primary-bg-color);
  container-type: inline-size;
}
#about .txt_block.block1 {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}
#about .txt_block.block2 {
  margin-left: auto;
  transition-delay: .4s;
}
#about .txt_block .txt_box_inner {
  padding: calc(70 / 806 * 100cqi) calc(145 / 806 * 100cqi);
}
#about .txt_block .txt_block_ttl {
  margin-bottom: 2em;
  font-size: clamp(14px,(20 / var(--base-width)* 100vw), 20px);
  font-weight: 500;
  line-height: calc(40 / 20);
  letter-spacing: 0.1em;
}
#about .txt_block .common_txt {
  font-size: clamp(10px,(15 / var(--base-width)* 100vw), 15px);
  font-weight: 500;
  line-height: calc(38 / 15);
  letter-spacing: 0.05em;
}
#about .txt_block.block2 .common_txt {
  text-align: left;
}
#about .txt_block .common_txt:not(:last-of-type) {
  margin-bottom: 1em;
}
#about .txt_block .common_txt.name {
  font-size: clamp(12px,(18 / var(--base-width)* 100vw), 18px);
  text-align: right;
}
#about .txt_block.block2 .common_txt.name {
  margin-bottom: 0.5em;
  text-align: left;
}
#about .txt_block .common_txt.name .en {
  display: inline-block;
  margin-right: 0.75em;
  font-weight: 400;
  font-family: 'Forum', serif;
}
#about .txt_block .common_txt.links {
  margin-bottom: 0;
  font-size: clamp(12px,(18 / var(--base-width)* 100vw), 18px);
}
#about .txt_block .common_txt.links .link {
  display: flex;
  justify-content: flex-end;
  gap: calc(30 / 18 * 1em);
}
#about .txt_block .common_txt.links .link a {
  color: var(--primary-txt-color);
}
#about .outer .flower_obj {
  position: absolute;
  top: min(100 / var(--base-width) * 100vw, 100px);
  left: 0;
  width: calc(270 / var(--base-width) * 100vw);
  aspect-ratio: 540 / 610;
  z-index: 2;
}
#about .outer .flower_obj.obj01 {
  z-index: 2;
}
#about .outer .flower_obj.obj02 {

}
#about .outer .flower_obj.obj03 {
  top: min(148 / var(--base-width) * 100vw, 148px);
  left: auto;
  right: 0;
  width: calc(284 / var(--base-width) * 100vw);
  aspect-ratio: 568 / 1136;
}

@media screen and (orientation:portrait) {

}
@media screen and (max-width: 640px) {
  #about {
    margin-top: min((80 / var(--base-width) * 100vw), 120px);
  }
  #about .inner {
    width: 100%;
    padding-inline: min((10 / var(--base-width) * 100vw), 15px);
  }
  #about .main_ttl {
    width: auto;
    margin-top: auto;
    margin-left: auto;
    margin-bottom: calc(40 / 30 * 1em);
    font-size: min(30 / var(--base-width) * 100vw, 45px);
    text-align: center;
  }
  #about .txt_block {
    width: min(324 / var(--base-width) * 100vw, 486px);
    border-radius: min(60 / var(--base-width) * 100vw, 90px);
  }
  #about .txt_block.block1 {
    position: relative;
    top: auto;
    left: auto;
    margin-left: auto;
    z-index: 2;
  }
  #about .txt_block.block2 {
    position: relative;
    z-index: 3;
    margin-top: max(20 / var(--base-width) * -100vw, -30px);
    margin-left: 0;
    margin-right: auto;
  }
  #about .txt_block .txt_box_inner {
    width: min(250 / var(--base-width) * 100vw, 375px);
    margin-inline: auto;
    padding: min(50 / var(--base-width) * 100vw, 75px) 0;
  }
  #about .txt_block .txt_block_ttl {
    margin-bottom: 1em;
    font-size: min(20 / var(--base-width) * 100vw, 30px);
  }
  #about .txt_block .common_txt {
    font-size: min((13 / var(--base-width) * 100vw), 18px);
    line-height: calc(30 / 13);
    letter-spacing: 0.07em;
  }
  #about .txt_block .common_txt.name,
  #about .txt_block .common_txt.links {
    font-size: min((15 / var(--base-width) * 100vw), 20px);
  }
  #about .txt_block .common_txt.links .link {
    gap: calc(20 / 15 * 1em);
  }
  #about .outer .flower_obj {
    top: calc(55 / var(--base-width) * 100vw);
    width: calc(110 / var(--base-width) * 100vw);
  }
  #about .outer .flower_obj.obj03 {
    top: 44%;
    right: -5%;
    width: calc(110 / var(--base-width)* 100vw);
    z-index: 3;
  }
}
/*-------------------------------------------------

gallery

--------------------------------------------------*/
#gallery {
  position: relative;
  padding-top: min(50 / var(--base-width) * 100vw, 50px);
  padding-bottom: min(250 / var(--base-width) * 100vw, 250px);
  --primary-width: 1560;
}
#gallery .outer {
  position: relative;
  --img_offset: 0;
}
#gallery .inner {
  position: relative;
  width: calc(var(--primary-width) / var(--base-width) * 100vw);
  aspect-ratio: 1560 / 1430;
  margin-inline: auto;
  container-type: inline-size;
}
#gallery .img_wrap {
  position: absolute;
  container-type: inline-size;
}
#gallery .img_wrap.img_wrap1 {
  top: 0;
  left: 0;
  width: calc(470 / var(--primary-width) * 100cqi);
  aspect-ratio: 470 / 550;
}
#gallery .img_wrap.img_wrap2 {
  top: calc(150 / var(--primary-width) * 100cqi);
  left: calc(760 / var(--primary-width) * 100cqi);
  width: calc(700 / var(--primary-width) * 100cqi);
  aspect-ratio: 700 / 490;
}
#gallery .img_wrap.img_wrap3 {
  top: calc(790 / var(--primary-width) * 100cqi);
  left: calc(100 / var(--primary-width) * 100cqi);
  width: calc(700 / var(--primary-width) * 100cqi);
  aspect-ratio: 700 / 490;
}
#gallery .img_wrap.img_wrap4 {
  top: calc(880 / var(--primary-width) * 100cqi);
  left: calc(1090 / var(--primary-width) * 100cqi);
  width: calc(470 / var(--primary-width) * 100cqi);
  aspect-ratio: 470 / 550;
}
#gallery .bg_img {
  position: absolute;
  width: 100%;
}
#gallery .img_wrap.img_wrap1 .bg_img,
#gallery .img_wrap.img_wrap3 .bg_img {
  bottom: 0;
  left: 0;
}
#gallery .img_wrap.img_wrap2 .bg_img,
#gallery .img_wrap.img_wrap4 .bg_img {
  top: 0;
  left: 0;
}
#gallery .main_img {
  position: absolute;
  overflow: hidden;
}
#gallery .main_img .img {
  position: absolute;
  top: -10%;
  left: 0;
  width: 100%;
  height: 120%;
}
#gallery .main_img .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#gallery .img_wrap.img_wrap1 .main_img {
  top: 0;
  left: calc(50 / 470 * 100cqi);
  width: calc(320 / 470 * 100cqi);
  aspect-ratio: 320 / 480;
}
#gallery .img_wrap.img_wrap2 .main_img {
  bottom: 0;
  left: calc(70 / 700 * 100cqi);
  width: calc(600 / 700 * 100cqi);
  aspect-ratio: 600 / 400;
}
#gallery .img_wrap.img_wrap3 .main_img {
  top: 0;
  left: calc(70 / 700 * 100cqi);
  width: calc(600 / 700 * 100cqi);
  aspect-ratio: 600 / 400;
}
#gallery .img_wrap.img_wrap4 .main_img {
  bottom: 0;
  left: calc(100 / 470 * 100cqi);
  width: calc(320 / 470 * 100cqi);
  aspect-ratio: 320 / 480;
}
#gallery .img_wrap.img_wrap1 {
  transition: transform 0.5s ease-out;
  transform: translateY(calc(var(--img_offset) * 1px * 10));
}
#gallery .img_wrap.img_wrap2 {
  transition: transform 0.5s ease-out;
  transform: translateY(calc(var(--img_offset) * 1px * 5));
}
#gallery .img_wrap.img_wrap3 {
  transition: transform 0.5s ease-out;
  transform: translateY(calc(var(--img_offset) * 1px * 5));
}
#gallery .img_wrap.img_wrap4 {
  transition: transform 0.5s ease-out;
  transform: translateY(calc(var(--img_offset) * 1px * 10));
}
#gallery .img_wrap.img_wrap1 .main_img img {
  transition: transform 1.2s ease-out;
  transform: translateY(calc(var(--img_offset) * 1px * 2));
}
#gallery .img_wrap.img_wrap2 .main_img img {
  transition: transform 1.4s ease-out;
  transform: translateY(calc(var(--img_offset) * 1px * 4));
}
#gallery .img_wrap.img_wrap3 .main_img img {
  transition: transform 1.0s ease-out;
  transform: translateY(calc(var(--img_offset) * 1px * 4));
}
#gallery .img_wrap.img_wrap4 .main_img img {
  transition: transform 1.4s ease-out;
  transform: translateY(calc(var(--img_offset) * 1px * 2));
}
#gallery .img_wrap .bg_img::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: calc(100% - 0.5px);
  height: calc(100% - .5px);
  background: var(--primary-color);
  clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0% 100%);
  transition: clip-path 1s cubic-bezier(0,.85,.15,1);
}
#gallery .img_wrap .bg_img .bg_img_wrap {
  clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0% 100%);
  transition: clip-path 1.4s cubic-bezier(0,.85,.15,1) .25s;
}
#gallery .img_wrap.scrollin .bg_img .bg_img_wrap,
#gallery .img_wrap.scrollin .bg_img::before {
  clip-path: polygon(0 100%, 100% 100%, 100% 0, 0 0);
}
#gallery .img_wrap .main_img::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: calc(100% - 0.5px);
  height: calc(100% - .5px);
  background: var(--primary-color);
  clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
  transition: clip-path 1s cubic-bezier(0,.85,.15,1) 0.5s;
}
#gallery .img_wrap.scrollin .main_img::before {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}
#gallery .img_wrap .main_img .main_img_wrap {
  width: 100%;
  height: 100%;
}
#gallery .img_wrap.scrollin .main_img .main_img_wrap {
  animation: animeInMain 10s cubic-bezier(.2,1,.35,.95) forwards;
  animation-delay: 0.75s;
}
#gallery .img_wrap .main_img img {
  opacity: 0;
}
#gallery .img_wrap.scrollin .main_img img {
  animation: imgOpacity 0.5s forwards;
  animation-delay: 0.75s;
}
@keyframes imgOpacity {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes animeInMain {
  0% {
    opacity: 1;
    transform: translateX(-20%) scale(1.2);
    clip-path: inset(0 100% 0 0);  /* 右からマスク */
    filter: brightness(3) blur(30px);
  }
  20% {
    transform: translateX(0%) scale(1);
    clip-path: inset(0);
    filter: brightness(1) blur(0px);
  }
  100% {
    transform: translateX(0%) scale(1);
    clip-path: inset(0);
    filter: brightness(1) blur(0px);
  }
}

/* for Firefox */
@-moz-document url-prefix() {
  @keyframes animeInMain {
    0% {
      opacity: 1;
      transform: translateX(-20%) scale(1.2) rotate(0.0001deg);
      clip-path: inset(0 100% 0 0);  /* 右からマスク */
      filter: brightness(3) blur(30px);
    }
    20% {
      transform: translateX(0%) scale(1) rotate(0.0001deg);
      clip-path: inset(0);
      filter: brightness(1) blur(0px);
    }
    100% {
      transform: translateX(0%) scale(1) rotate(0.0001deg);
      clip-path: inset(0);
      filter: brightness(1) blur(0px);
    }
  }
}

@media screen and (max-width: 640px) {
  #gallery {
    padding-top: 0;
    padding-bottom: 120px;
  }
  #gallery .inner {
    width: 100%;
    aspect-ratio: 375 / 1166;
    --primary-width: 375;
  }
  #gallery .img_wrap.img_wrap1 {
    top: 0;
    left: calc(30 / var(--primary-width) * 100cqi);
    width: calc(235 / var(--primary-width) * 100cqi);
    aspect-ratio: 235 / 275;
  }
  #gallery .img_wrap.img_wrap2 {
    top: calc(345 / var(--primary-width) * 100cqi);
    left: auto;
    right: 0;
    width: calc(290 / var(--primary-width) * 100cqi);
    aspect-ratio: 290 / 203;
  }
  #gallery .img_wrap.img_wrap3 {
    top: auto;
    bottom: 0;
    left: auto;
    right: calc(30 / var(--primary-width) * 100cqi);
    width: calc(290 / var(--primary-width) * 100cqi);
    aspect-ratio: 290 / 203;
  }
  #gallery .img_wrap.img_wrap4 {
    top: auto;
    bottom: calc(278 / var(--primary-width) * 100cqi);
    left: calc(30 / var(--primary-width) * 100cqi);
    right: auto;
    width: calc(235 / var(--primary-width) * 100cqi);
    aspect-ratio: 235 / 275
  }
  #gallery .img_wrap.img_wrap1 {
    transform: translateY(calc(var(--img_offset) * 1px * 4));
  }
  #gallery .img_wrap.img_wrap2 {
    transform: translateY(calc(var(--img_offset) * 1px * 2));
  }
  #gallery .img_wrap.img_wrap3 {
    transform: translateY(calc(var(--img_offset) * 1px * 2));
  }
  #gallery .img_wrap.img_wrap4 {
    transform: translateY(calc(var(--img_offset) * 1px * 4));
  }
  #gallery .img_wrap.img_wrap1 .main_img img {
    transform: translateY(calc(var(--img_offset) * 1px * 1.5));
  }
  #gallery .img_wrap.img_wrap2 .main_img img {
    transform: translateY(calc(var(--img_offset) * 1px * 2));
  }
  #gallery .img_wrap.img_wrap3 .main_img img {
    transform: translateY(calc(var(--img_offset) * 1px * 2));
  }
  #gallery .img_wrap.img_wrap4 .main_img img {
    transform: translateY(calc(var(--img_offset) * 1px * 1.5));
  }
}

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

box

--------------------------------------------------*/
#box {
  position: relative;
  padding-top: min(200 / var(--base-width) * 100vw, 200px);
  color: #fff;
  background-color: var(--primary-color);
}
#box::before {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: calc(var(--profile-bg-height) - min(90 / var(--base-width) * 100vw, 90px));
  background-color: #fff;
  z-index: 1;
}
#box .outer {
  position: relative;
  z-index: 2;
}
#box .lead_block {
  position: relative;
  width: calc(1040 / var(--base-width) * 100vw);
  margin-left: calc(410 / var(--base-width) * 100vw);
  margin-right: auto;
  margin-bottom: calc(60 / var(--base-width) * 100vw);
}
#box .lead_block .lead_inner {
  position: relative;
  padding-bottom: 1%;
  padding-left: calc(40 / var(--base-width) * 100vw);
  white-space: nowrap;
}
#box .lead_block .lead_inner::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 1px;
  background-color: #fff;
}
#box .lead_block .lead_inner .common_txt {
  display: inline-block;
}
#box .main_title {
  width: calc(300 / var(--base-width) * 100vw);
  margin-left: calc(-30 / var(--base-width) * 100vw);
  margin-bottom: calc(50 / var(--base-width) * 100vw);
}
#box .img_wrap {
  position: relative;
  width: calc(1490 / var(--base-width) * 100vw);
  aspect-ratio: 1490 / 644;
  margin-inline: auto;
  margin-bottom: calc(100 / var(--base-width) * 100vw);
  container-type: inline-size;
}
#box .img_slider_block.block1 {
  position: absolute;
  top: 0;
  bottom: auto;
  left: 0;
  width: calc(1020 / 1490 * 100cqi);
  aspect-ratio: 1020 / 644;
  border-radius: calc(100 / 1490 * 100cqi) 0 0 0;
  overflow: hidden;
}
#box .img_slider_block.block2 {
  position: absolute;
  bottom: 0;
  right: 0;
  width: calc(400 / 1490 * 100cqi);
  aspect-ratio: 400 / 400;
  border-radius: 0 0 calc(50 / 1490 * 100cqi) 0;
  overflow: hidden;
}
#box .img_slider_block .splide {
  position: relative;
  width: 100%;
  background: #fff;
}
#box .img_slider_block .splide__slide {
  opacity: 1 !important;
}
#box .img_slider_block .splide__slide span {
  display: block;
  opacity: 0;
  transform: scale(1.2);
}
#box .img_slider_block .splide__slide.is-active span,
#box .img_slider_block .splide__slide.is-prev span,
#box .img_slider_block .splide__slide span.is-prev {
  animation: animeBoxIn 10s cubic-bezier(0.16, 1, 0.3, 1);
  opacity: 1;
}
@keyframes animeBoxIn {
  0% {
    transform: translateX(-20%) scale(1.2);
    clip-path: inset(0 100% 0 0);  /* 右からマスク */
    filter: brightness(3) blur(30px);
  }
  20% {
    transform: translateX(0%) scale(1);
    clip-path: inset(0);
    filter: brightness(1) blur(0px);
  }
  42.5% {
    transform: translateX(0%) scale(1);
    clip-path: inset(0);
    filter: brightness(1);
  }
  80% {
    transform: translateX(20%) scale(1.1);
    clip-path: inset(0);
    filter: brightness(1.2) blur(5px);
  }
  100% {
    transform: translateX(20%) scale(1.1);
    clip-path: inset(0);
    filter: brightness(1.2) blur(5px);
  }
}
#box .img_slider_block .splide__slide.is-active span img,
#box .img_slider_block .splide__slide.is-prev span img,
#box .img_slider_block .splide__slide span.is-prev img {
  transform: scale(1.05);
  animation: animeBoxImgScale 10s;
}
@keyframes animeBoxImgScale {
  0% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1.0);
  }
}

/* for Firefox */
@-moz-document url-prefix() {
  #box .img_slider_block .splide__slide.is-active span img,
  #box .img_slider_block .splide__slide.is-prev span img,
  #box .img_slider_block .splide__slide span.is-prev img {
    transform: scale(1.0);
  }
  @keyframes animeBoxImgScale {
    0% {
      transform: scale(1.0);
    }
    100% {
      transform: scale(1.0);
    }
  }
}

#box .message_block {
  position: relative;
  width: calc(1040 / var(--base-width) * 100vw);
  margin-left: calc(410 / var(--base-width) * 100vw);
  margin-right: auto;
  margin-bottom: calc(290 / var(--base-width) * 100vw);
}
#box .message_block .message_inner {
  position: relative;
  padding-bottom: 1%;
  padding-left: calc(40 / var(--base-width) * 100vw);
  white-space: nowrap;
}
#box .message_block .message_inner::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 1px;
  background-color: #fff;
}
#box .message_block .message_inner .txt_wrap {
  display: inline-block;
}
#box .message_block .message_inner .name {
  display: inline-block;
  position: relative;
  margin-top: 2em;
  padding-right: calc(150 / var(--base-width) * 100vw);
  line-height: 1; 
  transition-delay: 0.2s;
}
#box .message_block .message_inner .name .sign {
  position: absolute;
  top: 30%;
  right: 0;
  width: calc(150 / var(--base-width) * 100vw);
}
#box .profile_block {
  position: relative;
  width: calc(1560 / var(--base-width) * 100vw);
  margin-inline: auto;
  padding-block: min(90 / var(--base-width) * 100vw, 90px);
  background-color: var(--primary-bg-color);
  color: var(--primary-color);
  container-type: inline-size;
  z-index: 1;

  /* for chrome  */
  filter: contrast(1);
}
#box .profile_block::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--primary-bg-color);
  z-index: 1;
  transform: scale(1, 1);
  transform-origin: right top;
  pointer-events: none;
  transition : transform 3.0s cubic-bezier(.2,1,.28,.92);
}
#box .profile_block.scrollin::after {
  transform: scale(0, 1);
}
#box .profile_outer {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  width: calc(var(--primary-width) / 1560 * 100cqi);
  margin-inline: auto;
  container-type: inline-size;
  --primary-width: 1345;
  z-index: 1;

  /* for chrome  */
  filter: contrast(1);
}
#box .profile_outer .profile {
  position: relative;
  display: grid;
  gap: calc(35 / var(--primary-width) * 100cqi) calc(30 / var(--primary-width) * 100cqi);
  grid-template-columns: 1fr 1.729167fr;
  width: calc(685 / var(--primary-width) * 100cqi);
  z-index: 1;

  /* for chrome  */
  filter: contrast(1);
}
#box .profile_outer .profile_ikeda {
  position: relative;
  gap: calc(30 / var(--primary-width) * 100cqi);
  grid-template-columns: 1fr 1fr 3.358fr;
  width: 100%;
  margin-bottom: calc(50 / var(--primary-width) * 100cqi);
  padding-bottom: calc(50 / var(--primary-width) * 100cqi);
  z-index: 1;
}
#box .profile_outer .profile_ikeda::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: -0.5%;
  width: 101%;
  height: 1px;
  background-color: var(--primary-color);
  z-index: -1;
}
#box .profile_outer .profile_josie {
  position: relative;
  grid-template-columns: 1fr 1.208333fr;
  width: calc(560 / var(--primary-width) * 100cqi);
  z-index: 1;
}
#box .profile_outer .profile_josie::before {
  content: "";
  position: absolute;
  top: 0;
  left: calc(-50 / var(--primary-width) * 100cqi);
  width: 1px;
  height: 100%;
  background-color: var(--primary-color);
  z-index: -1;
}
#box .profile:not(.profile_ikeda) .profile_title {
  grid-column: 1 / 3;
  display: flex;
  align-items: center;
  height: calc(38 / var(--primary-width) * 100cqi);
}
#box .profile.profile_ikeda .profile_title {
  width: 100%;
  align-self: start;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
}
#box .profile.profile_ikeda .profile_title picture img {
  width: calc(195 / var(--primary-width) * 100cqi);
}
#box .profile.profile_miura .profile_title picture img {
  width: calc(212 / var(--primary-width) * 100cqi);
}
#box .profile.profile_josie .profile_title > img {
  width: calc(60 / var(--primary-width) * 100cqi);
}
#box .profile_title .sns {
  width: calc(30 / var(--primary-width) * 100cqi);
  display: inline-block;
  margin-left: calc(60 / var(--primary-width) * 100cqi);
}
#box .img_block,
#box .txt_block {

  /* for chrome  */
  filter: contrast(1);
}
#box .txt_block p {
  margin-top: -0.5em;
  font-size: clamp(10px, (18 / var(--base-width) * 100vw), 18px);
  line-height: 180%;
  text-align: justify;
}
@media screen and (orientation:portrait) {

}
@media screen and (max-width: 991px) {
  #box .message_block .message_inner {
    white-space: inherit;
  }
}
@media screen and (max-width: 640px) {
  #box {
    padding-top: 90px;
  }
  #box::before {
    /*
    height: 220px;
    */
    height: calc(var(--profile-bg-height) - 57px);
  }
  #box .lead_block {
    width: calc(310 / var(--base-width) * 100vw);
    margin-bottom: 50px;
    margin-inline: auto;
  }
  #box .img_wrap {
    width: calc(310 / var(--base-width) * 100vw);
    aspect-ratio: 310 / 415;
    margin-inline: auto;
    margin-bottom: 50px;
  }
  #box .lead_block .lead_inner {
    padding-bottom: 1%;
    padding-left: 15px;
    white-space: inherit;
  }
  #box .main_title {
    width: 145px;
    margin-left: 0;
    margin-bottom: 20px;
  }
  #box .img_slider_block.block1 {
    width: 100%;
    aspect-ratio: 310 / 195;
    border-radius: 40px 0 0 0;
  }
  #box .img_slider_block.block2 {
    right: auto;
    left: 0;
    width: calc(200 / 310 * 100%);
    border-radius: 0 0 40px 0;
  }
  #box .message_block {
    width: calc(310 / var(--base-width) * 100vw);
    margin-inline: auto;
    margin-bottom: 125px;
  }
  #box .message_block .message_inner {
    padding-bottom: 1%;
    padding-left: 15px;
  }
  #box .message_block .message_inner .name {
    margin-top: 2em;
    padding-right: 90px;
  }
  #box .message_block .message_inner .name .sign {
    top: 40%;
    right: 0;
    width: 95px;
  }
  #box .profile_block {
    width: calc(300 / var(--base-width) * 100vw);
    padding: 30px;
  }
  #box .profile_outer {
    flex-direction: column;
    width: 100%;
    gap: 60px;
  }
  #box .profile_outer .profile {
    gap: 20px;
    grid-template-columns: min-content;
    width: 100%;
    margin: 0;
    padding: 0;
  }
  #box .img_block {
    width: 120px;
    grid-column: 1 / 2;
    grid-row: 1 / 2;
  }
  #box .profile.profile_ikeda .profile_title,
  #box .profile:not(.profile_ikeda) .profile_title {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
    width: 86px;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    height: auto;
  }
  #box .profile.profile_ikeda .profile_title picture img,
  #box .profile.profile_miura .profile_title picture img,
  #box .profile_title > img {
    width: 100% !important;
  }
  #box .profile.profile_ikeda .profile_title {
    display: block;
    aspect-ratio: inherit;
    width: 75px;
  }
  #box .profile.profile_josie .profile_title {
    width: 46px;
  }
  #box .profile_title .sns {
    width: 20px;
    margin-left: 0;
  }
  #box .txt_block {
    grid-column: 1 / 3;
    grid-row: 2 / 3;
  }
  #box .txt_block p {
    margin-top: 0;
    font-size: 1.3rem;
    line-height: 170%;
  }
  #box .profile_outer .profile_ikeda::before {
    bottom: -28px;
    left: 0;
    width: 100%;
  }
  #box .profile_outer .profile_josie::before {
    top: -32px;
    left: 0;
    width: 100%;
    height: 1px;
  }
}

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

movie

--------------------------------------------------*/
#movie {
  position: relative;
  padding-block: min((250 / var(--base-width) * 100vw), 250px);
  background-color: #fff;
  --primary-width: 1216;
}
#movie > .outer > .inner {
  position: relative;
  display: flex;
  justify-content: space-between;
  width: clamp(600px, (var(--primary-width) / var(--base-width) * 100vw), var(--primary-width) * 1px);
  margin-inline: auto;
  container-type: inline-size;
}
#movie .txt_block {
  position: relative;
  width: calc(510 / var(--primary-width) * 100cqi);
}
#movie .txt_block .main_title {
  position: relative;
  width: calc(364 / var(--primary-width) * 100cqi);
  margin-inline: auto;
  margin-bottom: calc(60 / var(--primary-width) * 100cqi);
}
#movie .txt_block .common_txt {
  text-align: center;
  white-space: nowrap;
}
#movie .txt_block .common_txt br.ctl {
  display: none;
}
#movie .mov_block {
  position: relative;
  width: calc(560 / var(--primary-width) * 100cqi);
}
#movie .mov_block .img {
  cursor: pointer;
}
#movie .mov_block .btn {

  /* reset */
  padding: 0;
  border: none;
  outline: none;
  font: inherit;
  color: inherit;
  background: none;
  cursor: pointer;

  position: absolute;
  top: 50%;
  left: 50%;
  width: calc(120 / var(--primary-width) * 100cqi);
  aspect-ratio: 1 / 1;
  transform: translate3d(-50%, -50%, 0);
  transition: filter .2s ease-out;
}
@media (hover: hover) {
  #movie .mov_block .img:hover .btn {
    filter: brightness(1.1);
  }
}
.modal_mov_content {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0,0,0,.5);
  visibility: hidden; /* 非表示にしておく */
  opacity: 0; /* 非表示にしておく */
  transition: opacity .3s ease-out;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  -webkit-backdrop-filter: blur(7px);
  backdrop-filter: blur(7px);
  pointer-events: none;
}
.modal_mov_content.active {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}
#moviePlayer {
  width: auto;
  height: 80vh;
  aspect-ratio: 1080 / 1920;
  border-radius: 10px;
  overflow: hidden;
}
.modal_mov_content .modal_mov_content_wrap {
  position: relative;
  display: grid;
  place-content: center;
  width: 100%;
  height: 100%;
}
.modal_mov_content .video_wrap {
  position: relative;
}
.modal_mov_content .video_wrap video {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}
.modal_mov_content .modal_close {
  /* reset */
  padding: 0;
  border: none;
  outline: none;
  font: inherit;
  color: inherit;
  background: none;

  position: absolute;
  top: 0;
  right: 0;
  width: clamp(40px, 80 / var(--base-width) * 100vw, 80px);
  aspect-ratio: 1 / 1;
  cursor: pointer;
  border: 1px solid #fff;
  border-radius: 9999px;
  transform: translate3d(150%,-50%,0);
}
.modal_mov_content .modal_close span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 65%;
  height: 1px;
  background-color: #fff;
  transform: translate3d(-50%,-50%,0);
}
.modal_mov_content .modal_close span:nth-child(1) {
  transform: translate3d(-50%,-50%,0) rotate(45deg);
}
.modal_mov_content .modal_close span:nth-child(2) {
  transform: translate3d(-50%,-50%,0) rotate(-45deg);
}
@media screen and (max-width: 991px) {
  #movie .txt_block .common_txt br.ctl {
    display: inline;
  }
}
@media screen and (max-width: 640px) {
  #movie {
    padding-block: 100px;
  }
  #movie > .outer > .inner {
    flex-direction: column;
    gap: 40px;
    width: 300px;
  }
  #movie .txt_block {
    width: 100%;
  }
  #movie .txt_block .main_title {
    width: 180px;
    margin-bottom: 20px;
  }
  #movie .mov_block {
    width: 100%;
  }
  #movie .mov_block .btn {
    width: 64px;
  }
  #moviePlayer {
    height: 70vh;
  }
  .modal_mov_content .modal_close {
    width: 30px;
    transform: translate3d(125%, -50%, 0);
  }
}

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

spec

--------------------------------------------------*/
#spec {
  position: relative;
  background-color: var(--primary-color);
  background: #2B3455;

  --primary-width: 1120;
}
#spec > .bg {
  position: relative;
  width: 100%;
  aspect-ratio: 1920 / 476;
  overflow: hidden;
}
#spec > .bg .title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: absolute;
  top: 0;
  left: calc(70 / 1920 * 100vw);
  width: calc(853 / 1920 * 100vw);
  height: 100%;
  overflow: hidden;
  z-index: 2;
  container-type: inline-size;
}
#spec > .bg .title img {
  width: 100%;
  max-width: inherit;
}
#spec > .bg .title img.lg {
  width: calc(138 / 853 * 100cqi);
  margin-bottom: calc(20 / 853 * 100cqi);
  margin-left: calc(7 / 853 * 100cqi);
}
#spec > .bg .title img.le {
  width: calc(335 / 853 * 100cqi);
  margin-top: calc(35 / 853 * 100cqi);
  margin-left: calc(7 / 853 * 100cqi);
}
#spec > .bg .title img {
  transform: translateX(-2.5%);
  clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
  transition: clip-path 1.5s cubic-bezier(.2,1,.28,.92), transform 1.5s cubic-bezier(.2,1,.28,.92);
}
#spec > .bg .title img.main {
  transition-delay: 0.2s;
  transition-duration: 1.0s;
}
#spec > .bg .title img.le {
  transition-delay: 0.4s;
}
#spec > .bg .title.scrollin img {
  transform: translateX(0);
  clip-path: polygon(100% 0, 0 0, 0 100%, 100% 100%);
}
#spec > .bg .img {
  position: absolute;
  top: -20%;
  left: 0;
  width: 100%;
  height: 140%;
}
#spec > .bg .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
#spec > .outer {
  padding-top: min((300 / var(--base-width) * 100vw), 300px);
  padding-bottom: min((200 / var(--base-width) * 100vw), 200px);
}
#spec > .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;
}
#spec .product {
  width: calc(510 / var(--primary-width) * 100cqi);
}
#spec .product .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
#spec .product.SSVW241 .inner {
  flex-direction: row-reverse;
}
#spec .product .inner .img_box {
  position: relative;
  width: calc(230 / var(--primary-width) * 100cqi);
}
#spec .product .inner .img_box img {
  position: absolute;
  top: 50%;
  left: 50%;
  max-width: inherit;
  width: calc(366 / 230 * 100%);
  transform: translate3d(-50%, -50%, 0);
}
#spec .product .inner .txt_box {
  position: relative;
  width: calc(180 / var(--primary-width) * 100cqi);
  padding-bottom: calc(25 / var(--primary-width) * 100cqi);
  color: #fff;
  letter-spacing: 0.05em;
  white-space: nowrap;
  
  /* for chrome  */
  filter: contrast(1);
}
#spec .txt_box .serial {
  width: calc(126 / var(--primary-width) * 100cqi);
  margin-bottom: calc(50 / var(--primary-width) * 100cqi);
}
#spec .txt_box .serial .fadein_title {
  width: 100%;
}
#spec .txt_box .serial .fadein_title.scrollin > img {
  animation-delay: 0.25s;
}
#spec .product.SSVW242 .txt_box .serial {
  width: calc(134 / var(--primary-width) * 100cqi);
}
#spec .txt_box .price {
  margin-bottom: 0.8em;
  font-size: calc(23 / var(--primary-width) * 100cqi);
  font-weight: 500;
}
#spec .txt_box .price .min {
  font-size: calc(15 / 23 * 100%);
}
#spec .txt_box .note {
  margin-bottom: 0.8em;
  font-size: calc(18 / var(--primary-width) * 100cqi);
  line-height: 1.6;
}
#spec .txt_box .date {
  margin-bottom: 2.0em;
  font-size: calc(18 / var(--primary-width) * 100cqi);
}
#spec .txt_box .btn a {
  position: relative;
  display: grid;
  place-content: center;
  width: 100%;
  aspect-ratio: 180 / 50;
  padding-right: 3.6%;
  padding-bottom: 2%;
  color: var(--primary-color);
  font-size: calc(18 / var(--primary-width) * 100cqi);
  font-weight: 500;
  text-decoration: none;
  letter-spacing: 0.1em;
  background: #fff;
  border-radius: 6px;
  border: 1px solid #fff;
  overflow: hidden;
  transition: all .1s ease-out;
}
#spec .txt_box .btn.store a {
  margin-top: calc(30 / var(--primary-width) * 100cqi);
  padding-bottom: 0;
  font-size: calc(15 / var(--primary-width) * 100cqi);
  font-weight: 500;
  letter-spacing: 0.05em;
}
#spec .txt_box .btn a::before {
  content: '';
  position: absolute;
  top: 50%;
  right: 6%;
  width: 3.4%;
  aspect-ratio: 6 / 11;
  background: url(../img/arrow_blue.svg) no-repeat;
  background-size: contain;
  transform: translateY(-50%);
  transition: all .1s ease-out;
}
@media (hover: hover) {
  #spec .txt_box .btn a:hover {
    background: #2B3455;
    color: #fff;
    transition: all .1s ease-out .1s;
  }
  #spec .txt_box .btn a:hover::before {
    background: url(../img/arrow_white.svg) no-repeat;
    background-size: contain;
    transition: all .1s ease-out .1s;
  }
}
@media screen and (max-width: 640px) {
  #spec {

  }
  #spec > .outer {
    width: 100%;
    padding-top: 100px;
    padding-bottom: 120px;
    container-type: inline-size;
  }
  #spec > .bg {
    aspect-ratio: 375 / 180;
  }
  #spec > .bg .title {
    left: calc(28 / 375 * 100vw);
    width: calc(318 / 375 * 100vw);
  }
  #spec > .bg .title img.lg {
    width: calc(62 / 318 * 100cqi);
    margin-bottom: calc(8 / 318 * 100cqi);
    margin-left: calc(2 / 318 * 100cqi);
  }
  #spec > .bg .title img.le {
    width: calc(124 / 318 * 100cqi);
    margin-top: calc(10 / 318 * 100cqi);
    margin-left: calc(2 / 318 * 100cqi);
  }
  #spec > .outer > .inner {
    width: 300px;
    gap: 120px;
    flex-direction: column;
    transform: translateX(-15px);
  }
  #spec .product {
    width: 100%;
  }
  #spec .product .inner {
    flex-direction: row !important;
  }
  #spec .product .inner .img_box {
    width: 150px;
  }
  #spec .product .inner .img_box img {
    width: 210px;
    transform: translate3d(-50%, -42%, 0);
  }
  #spec .product .inner .txt_box {
    width: 130px;
    padding-bottom: 0;
  }
  #spec .txt_box .serial {
    width: 95px;
    margin-bottom: 25px;
  }
  #spec .product.SSVW242 .txt_box .serial {
    width: 100px;
  }
  #spec .txt_box .price {
    margin-bottom: 15px;
    font-size: 1.5rem;
  }
  #spec .txt_box .price .min {
    font-size: 1.0rem;
  }
  #spec .txt_box .note {
    margin-bottom: 10px;
    font-size: 1.3rem;
    line-height: 1.8;
  }
  #spec .txt_box .date {
    margin-bottom: 20px;
    font-size: 1.3rem;
  }
  #spec .txt_box .btn a {
    font-size: 1.2rem;
  }
  #spec .txt_box .btn.store a {
    margin-top: 15px;
    font-size: 1.1rem;
  }
}

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

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