@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-red-color: #CF0037;
  --primary-blue-color: #003067;
  --mf-blue-color: #00489B;
  --mf-red-color: #E6001F;
  --mf-orange-color: #F6A700;
  --mf-green-color: #00935F;
  --mf-yellow-color: #FFF100;
  --mf-red-color: #E6001F;
  --mf-gray-color: #8F8A7D;
  /* --primary-txt-color: #482500; */
  --primary-txt-color: #5B5543;
  --primary-bg-color: #FFFFFF;
  --base-width: 1920;
  --content-width: min((1380 / var(--base-width) * 100vw), 1380px);
  --content-height: 100lvh;
  --content-padding-top: 80px;
  --fixed-padding-top: min((272 / var(--base-width)* 100vw), 272px);
  --common-en-font-family: 'Paytone One', sans-serif;
  --scrollbar-width: 15;
  --minimize-ratio: 2.2;
  --minimize-txt-ratio: 1.6666;
}
@media screen and (max-width: 1600px) {
  :root {
    --content-padding-top: max(50px,5vw);
  }
}
@media screen and (min-width: 641px) and (max-width: 767px) {
  :root {
    --minimize-ratio: 2.5;
  }
}
@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-txt-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_fin {
  overflow: inherit;
}
.sp,
.sp_inline,
.sp_inline_block {
  display: none;
}
.pc {
  display: block;
}
.pc_inline_block {
  display: inline-block;
}
@media screen and (max-width: 640px) {
  .sp {
    display: block;
  }
  .sp_inline {
    display: inline;
  }
  .sp_inline_block {
    display: inline-block;
  }
  .pc,
  .pc_inline,
  .pc_inline_block {
    display: none;
  }
}
.common_txt_ttl {
  font-size: clamp(5.0rem / var(--minimize-ratio), (50 / var(--base-width) * 100vw), 5.0rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-align: center;
}
.common_txt_ttl .en {
  font-family: var(--common-en-font-family);
  font-weight: 400;
}
.common_txt_ttl .ja {
  font-weight: 900;
}
.common_txt_ttl .upper_txt {
  display: inline-block;
  margin-bottom: 0.75em;
  padding-bottom: 0.5em;
  font-size: calc(25 / 50 * 1em);
  letter-spacing: 0.1em;
  background-image: linear-gradient(to right, var(--primary-txt-color) 2px, transparent 2px);
  background-size: 6px 1px;
  background-repeat: repeat-x;
  background-position: left bottom;
}
.common_txt {
  font-size: clamp(2.0rem / var(--minimize-ratio), (20 / var(--base-width) * 100vw), 2.0rem);
  font-weight: 500;
  line-height: calc(40 / 20);
  letter-spacing: 0.07em;
  text-align: justify;
}
@media screen and (max-width: 640px) {
  .common_txt_ttl {
    font-size: min((25 / var(--base-width) * 100vw), 3.7rem) !important;
    letter-spacing: 0.15em;
    text-align: center;
  }
  .common_txt_ttl .upper_txt {
    margin-bottom: 1.25em;
    padding-bottom: 0.5em;
    font-size: calc(15 / 25 * 1em) !important;
  }
  .common_txt {
    font-size: min((14 / var(--base-width) * 100vw), 1.8rem);
    line-height: calc(32 / 14);
    letter-spacing: 0.08em;
  }
}
#onetrust-consent-sdk #onetrust-banner-sdk {
  font-family: 'Noto Sans JP', sans-serif;
}

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

 fadein

----------------------------------------------------------------------------*/
.fadein {
  opacity : 0;
  /* filter: blur(5px); */
  transition : opacity 1.0s cubic-bezier(0.33, 1, 0.68, 1), filter 1.0s 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,
.fadein_y_bounce {
  opacity : 0;
  transform : translate3d(0, 30px, 0);
  /* filter: blur(5px); */
  transition : transform 1.0s cubic-bezier(0.33, 1, 0.68, 1), opacity 1.0s cubic-bezier(0.33, 1, 0.68, 1), filter 1.0s cubic-bezier(0.33, 1, 0.68, 1);
}
.fadein_y02 {
  transform : translate3d(0, -30px, 0);
  transition-duration: 2s;
}
.fadein_y_bounce {
  transition-duration: 0.6s;
  transition-timing-function: cubic-bezier(0.34, 1.56, 0.64, 1);
}
.fadein_y.scrollin,
.fadein_y02.scrollin,
.fadein_y_bounce.scrollin {
  opacity : 1;
  transform : translate3d(0, 0, 0);
  /* filter: blur(0); */
}
@keyframes fadein_y { /* animation: fadein_y 1.0s 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); */
	}
}
@keyframes fadein_y02 { /* animation: fadein_y02 1.0s 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); */
	}
}
.fadein_x,
.fadein_x02 {
  opacity : 0;
  transform : translate3d(-30px, 0, 0);
  /* filter: blur(5px); */
  transition : transform 1.0s cubic-bezier(0.33, 1, 0.68, 1), opacity 1.0s cubic-bezier(0.33, 1, 0.68, 1), filter 1.0s cubic-bezier(0.33, 1, 0.68, 1);
}
.fadein_x02 {
  transform : translate3d(30px, 0, 0);
}
.fadein_x.scrollin,
.fadein_x02.scrollin {
  opacity : 1;
  transform : translate3d(0, 0, 0);
  /* filter: blur(0); */
}
@-moz-document url-prefix() {
  .fadein_x {
    transform : translate3d(-30px, 0, 0) rotate(0.0001deg);
  }
  .fadein_x02 {
    transform : translate3d(30px, 0, 0) rotate(0.0001deg);
  }
  .fadein_x.scrollin,
  .fadein_x02.scrollin {
    transform : translate3d(0, 0, 0) rotate(0.0001deg);
  }
}
.scale_down {
  opacity : 0;
  /* filter: blur(5px); */
  transform: scale(1.05);
  transition : opacity 1.0s cubic-bezier(0.33, 1, 0.68, 1), transform 1.0s cubic-bezier(0.33, 1, 0.68, 1), filter 1.0s cubic-bezier(0.33, 1, 0.68, 1);
}
.scale_down.scrollin {
  opacity : 1;
  transform: scale(1);
  /* filter: blur(0); */
}
.no_blur {
  filter: blur(0) !important;
}

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

fadeInUp title text anim

--------------------------------------------------*/
:root {
  --fadeInUp-anim: fadeInUp 0.35s cubic-bezier(0.33, 1, 0.68, 1) forwards;
  --fadeInUp-anim-delay: 0.040s;
  --fadeInUp-anim-interval: 0.060s;
}
.fadeInUp {
  display: inline-block;
}
.fadeInUp > span {
  display: inline-block;
  opacity: 0;
  /*
  transform: scale(0.5);
  */
  transform: translateY(0.25em);
}
.fadeInUp.scrollin > span {
  animation: var(--fadeInUp-anim);
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(0.25em);
  }
  50% {
    transform: translateY(-0.25em);
  }
  100% {
    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; }
.fadeInUp > span:nth-child(31) { animation-delay: calc(var(--fadeInUp-anim-delay) + (var(--fadeInUp-anim-interval) * 30)) !important; }
.fadeInUp > span:nth-child(32) { animation-delay: calc(var(--fadeInUp-anim-delay) + (var(--fadeInUp-anim-interval) * 31)) !important; }
.fadeInUp > span:nth-child(33) { animation-delay: calc(var(--fadeInUp-anim-delay) + (var(--fadeInUp-anim-interval) * 32)) !important; }
.fadeInUp > span:nth-child(34) { animation-delay: calc(var(--fadeInUp-anim-delay) + (var(--fadeInUp-anim-interval) * 33)) !important; }
.fadeInUp > span:nth-child(35) { animation-delay: calc(var(--fadeInUp-anim-delay) + (var(--fadeInUp-anim-interval) * 34)) !important; }
.fadeInUp > span:nth-child(36) { animation-delay: calc(var(--fadeInUp-anim-delay) + (var(--fadeInUp-anim-interval) * 35)) !important; }
.fadeInUp > span:nth-child(37) { animation-delay: calc(var(--fadeInUp-anim-delay) + (var(--fadeInUp-anim-interval) * 36)) !important; }
.fadeInUp > span:nth-child(38) { animation-delay: calc(var(--fadeInUp-anim-delay) + (var(--fadeInUp-anim-interval) * 37)) !important; }
.fadeInUp > span:nth-child(39) { animation-delay: calc(var(--fadeInUp-anim-delay) + (var(--fadeInUp-anim-interval) * 38)) !important; }
.fadeInUp > span:nth-child(40) { animation-delay: calc(var(--fadeInUp-anim-delay) + (var(--fadeInUp-anim-interval) * 39)) !important; }
.fadeInUp > span:nth-child(41) { animation-delay: calc(var(--fadeInUp-anim-delay) + (var(--fadeInUp-anim-interval) * 40)) !important; }
.fadeInUp > span:nth-child(42) { animation-delay: calc(var(--fadeInUp-anim-delay) + (var(--fadeInUp-anim-interval) * 41)) !important; }
.fadeInUp > span:nth-child(43) { animation-delay: calc(var(--fadeInUp-anim-delay) + (var(--fadeInUp-anim-interval) * 42)) !important; }
.fadeInUp > span:nth-child(44) { animation-delay: calc(var(--fadeInUp-anim-delay) + (var(--fadeInUp-anim-interval) * 43)) !important; }
.fadeInUp > span:nth-child(45) { animation-delay: calc(var(--fadeInUp-anim-delay) + (var(--fadeInUp-anim-interval) * 44)) !important; }
.fadeInUp > span:nth-child(46) { animation-delay: calc(var(--fadeInUp-anim-delay) + (var(--fadeInUp-anim-interval) * 45)) !important; }
.fadeInUp > span:nth-child(47) { animation-delay: calc(var(--fadeInUp-anim-delay) + (var(--fadeInUp-anim-interval) * 46)) !important; }
.fadeInUp > span:nth-child(48) { animation-delay: calc(var(--fadeInUp-anim-delay) + (var(--fadeInUp-anim-interval) * 47)) !important; }
.fadeInUp > span:nth-child(49) { animation-delay: calc(var(--fadeInUp-anim-delay) + (var(--fadeInUp-anim-interval) * 48)) !important; }
.fadeInUp > span:nth-child(50) { animation-delay: calc(var(--fadeInUp-anim-delay) + (var(--fadeInUp-anim-interval) * 49)) !important; }
.fadeInUp > span:nth-child(51) { animation-delay: calc(var(--fadeInUp-anim-delay) + (var(--fadeInUp-anim-interval) * 50)) !important; }
.fadeInUp > span:nth-child(52) { animation-delay: calc(var(--fadeInUp-anim-delay) + (var(--fadeInUp-anim-interval) * 51)) !important; }
.fadeInUp > span:nth-child(53) { animation-delay: calc(var(--fadeInUp-anim-delay) + (var(--fadeInUp-anim-interval) * 52)) !important; }
.fadeInUp > span:nth-child(54) { animation-delay: calc(var(--fadeInUp-anim-delay) + (var(--fadeInUp-anim-interval) * 53)) !important; }
.fadeInUp > span:nth-child(55) { animation-delay: calc(var(--fadeInUp-anim-delay) + (var(--fadeInUp-anim-interval) * 54)) !important; }
.fadeInUp > span:nth-child(56) { animation-delay: calc(var(--fadeInUp-anim-delay) + (var(--fadeInUp-anim-interval) * 55)) !important; }
.fadeInUp > span:nth-child(57) { animation-delay: calc(var(--fadeInUp-anim-delay) + (var(--fadeInUp-anim-interval) * 56)) !important; }
.fadeInUp > span:nth-child(58) { animation-delay: calc(var(--fadeInUp-anim-delay) + (var(--fadeInUp-anim-interval) * 57)) !important; }
.fadeInUp > span:nth-child(59) { animation-delay: calc(var(--fadeInUp-anim-delay) + (var(--fadeInUp-anim-interval) * 58)) !important; }
.fadeInUp > span:nth-child(60) { animation-delay: calc(var(--fadeInUp-anim-delay) + (var(--fadeInUp-anim-interval) * 59)) !important; }

.fadeInUp > span:nth-child(4n + 1) {
  color: var(--mf-red-color);
}
.fadeInUp > span:nth-child(4n + 2) {
  color: var(--mf-blue-color);
}
.fadeInUp > span:nth-child(4n + 3) {
  color: var(--mf-orange-color);
}
.fadeInUp > span:nth-child(4n + 4) {
  color: var(--mf-green-color);
}

.fadeInUp.tc > span:nth-child(3n + 1) {
  color: var(--mf-red-color);
}
.fadeInUp.tc > span:nth-child(3n + 2) {
  color: var(--mf-blue-color);
}
.fadeInUp.tc > span:nth-child(3n + 3) {
  color: var(--mf-gray-color);
}

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

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

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

img hover anim

--------------------------------------------------*/
a img.hover {
  transition: opacity .1s ease-in-out;
  opacity: 1;
}
@media (hover: hover) and (pointer: fine) {
  a:hover img.hover {
    transition: opacity .1s ease-in-out .1s;
    opacity: 0.6;
  }
}

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

obj bg

--------------------------------------------------*/
.obj_bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100dvh;
}
.obj_bg .w1 {
  width: calc(24 / var(--base-width) * 100vw);
}
.obj_bg .w2 {
  width: calc(26 / var(--base-width) * 100vw);
}
.obj_bg .w3 {
  width: calc(28 / var(--base-width) * 100vw);
}
.obj_bg .w4 {
  width: calc(30 / var(--base-width) * 100vw);
}
.obj_bg .w5 {
  width: calc(32 / var(--base-width) * 100vw);
}
.obj_bg .w6 {
  width: calc(34 / var(--base-width) * 100vw);
}
.obj_bg .r1 {
  transform: rotate(-30deg);
}
.obj_bg .r2 {
  transform: rotate(-20deg);
}
.obj_bg .r3 {
  transform: rotate(-10deg);
}
.obj_bg .r4 {
  transform: rotate(10deg);
}
.obj_bg .r5 {
  transform: rotate(20deg);
}
.obj_bg .r6 {
  transform: rotate(30deg);
}

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

color line

--------------------------------------------------*/
.color_line {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: clamp(8px, 12 / var(--base-width) * 100vw, 12px);
  background-image: linear-gradient(to right, 
                      var(--mf-red-color) 0%, var(--mf-red-color) 33.3%,
                      var(--mf-blue-color) 33.4%, var(--mf-blue-color) 66.6%,
                      var(--mf-gray-color) 66.7%, var(--mf-gray-color) 100%
                    );
  background-size: 15% 100%;
  background-position: left 0;
  background-repeat: repeat-x; 
}
@media screen and (max-width: 640px) {
  .color_line {
    height: min(10 / var(--base-width) * 100vw, 10px);
    background-size: 60% 100%;
  }
}

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

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

--------------------------------------------------*/
:root {
  --opening-time: 3;
}
#opening {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100dvh;
  z-index: 400;
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  animation: 0.6s opening_bg cubic-bezier(0.33, 1, 0.68, 1) forwards;
  animation-delay: calc(var(--opening-time) * 1s);
}
#opening.fin {
  position: absolute;
  pointer-events: none;
  overflow: inherit;
  overflow-x: clip;
}
#opening::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--mf-blue-color);
}
@keyframes opening_bg {
  0% {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  }
  100% {
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
  } 
}
#opening .outer {
  position: relative;
  width: 100vw;
  height: 100%;
  opacity: 1;
  animation: 0.6s opening cubic-bezier(0.33, 1, 0.68, 1) forwards;
  animation-delay: calc(var(--opening-time) * 1s - 0.5s);
}
#opening.hidden {
  display: none;
}
@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 .mr {
  display: flex;
  justify-content: space-between;
  width: 270px;
  aspect-ratio: 270 / 82;
}
#opening .outer .inner .copy {
  margin-top: 15px;
  margin-bottom: 70px;
  text-align: center;
}
#opening .outer .inner .dots {
  position: relative;
  display: flex;
  justify-content: space-between;
  width: 130px;
  margin-inline: auto;
}
#opening .outer .inner .dots .dot {
  width: 5px;
  height: 5px;
  border-radius: 9999px;
  background: var(--mf-red-color);
  opacity: 0;
  animation: dot_anim 1.6s infinite;
}
#opening .outer .inner .dots .dot:nth-child(1) {
  animation-delay: 0.1s;
}
#opening .outer .inner .dots .dot:nth-child(2) {
  animation-delay: 0.2s;
  background: #fff;
}
#opening .outer .inner .dots .dot:nth-child(3) {
  animation-delay: 0.3s;
}
#opening .outer .inner .dots .dot:nth-child(4) {
  animation-delay: 0.4s;
  background: #fff;
}
#opening .outer .inner .dots .dot:nth-child(5) {
  animation-delay: 0.5s;
}
#opening .outer .inner .dots .dot:nth-child(6) {
  animation-delay: 0.6s;
  background: #fff;
}
@keyframes dot_anim {
  0% {
    opacity: 0;
    transform: scale(0);
  }
  20% {
    opacity: 1;
    transform: scale(1);
  }
  80% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(0);
  }
}
@media screen and (max-width: 640px) {
  #opening .outer .inner .mr {
    width: 200px;
  }
}

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

main

--------------------------------------------------*/
.main {
  position: relative;
  display: block;
  /*
  padding-top: var(--content-padding-top);
  */
  padding-top: 0;
  font-family: 'Zen Kaku Gothic New', sans-serif;
}
@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: var(--mf-red-color);
  font-size: 1.8rem;
  font-family: var(--common-en-font-family);
  letter-spacing: .05em;
  text-decoration: none;
  text-align: center;
  line-height: 1.666em;
  transition: all .1s ease-in-out;
  background: transparent;
}
#store .btns a:last-of-type {
  color: var(--mf-blue-color);
}
#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(--mf-red-color);
  transform: translateY(-25%) rotate(45deg);
  transition: all .1s ease-in-out;
}
#store .btns a:last-of-type::after {
  border-color: var(--mf-blue-color);
}
@media (hover: hover) and (pointer: fine) {
  #store .btns a:hover {
    /*
    color: #fff;
    background: var(--primary-color);
    */
    opacity: 0.70;
    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;
  background: #FFFDF2;
  overflow: clip;
  clip-path: inset(0);
}
#kv .outer {
	position: relative;
  display: flex;
  flex-direction: column;
	width: 100%;
	aspect-ratio: 1920 / 920;
  padding-top: calc(140 / var(--base-width) * 100vw);
}
#kv .w_logo {
	position: relative;
  width: calc(390 / var(--base-width) * 100vw);
  margin-inline: auto;
  margin-bottom: calc(73 / var(--base-width) * 100vw);
}
#kv .w_logo span.in {
  display: inline-block;
  background-color: #FFFDF2;
  box-shadow: 0 0 0px 5px #FFFDF2;
}
#kv.start .logo {
  opacity: 1;
}
#kv .logo img {
	width: 100%;
}
#kv .inner {
	position: relative;
  display: flex;
  width: calc(1628 / var(--base-width) * 100vw);
  margin-inline: auto;
  container-type: inline-size;
}
#kv .inner .title_block {
  width: calc(495 / 1628 * 100cqi);
  padding-top: calc(18 / 1628 * 100cqi);
}
#kv .inner .title_block .main_ttl {
  display: flex;
  flex-direction: column;
  align-items: center;
}
#kv .inner .title_block .img {
  display: inline-block;
  /*
  background-color: #FFFDF2;
  box-shadow: 0 0 0px 5px #FFFDF2;
  */
}
#kv .inner .title_block .txt {
  position: relative;
  display: inline-block;
  padding-inline: 0.6em;
  color: #fff;
  font-size: calc(20 / 1628 * 100cqi);
  letter-spacing: 0.05em;
  line-height: calc(40 / 20);
  font-weight: bold;
  z-index: 1;
  background-color: #FFFDF2;
  box-shadow: 0 0 0px 5px #FFFDF2;
}
#kv .inner .title_block .txt1 {
  margin-top: calc(-15 / 1628 * 100cqi);
}
#kv .inner .title_block .txt::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../img/kv_title_bg01.svg) center center no-repeat;
  background-size: contain;
  z-index: -1;
}
#kv .inner .title_block .txt2 {
  margin-top: calc(5 / 1628 * 100cqi);
}
#kv .inner .title_block .txt2::before {
  background: url(../img/kv_title_bg02.svg) center center no-repeat;
  background-size: contain;
}
#kv .inner .watch_block {
  flex: 1;
  padding-bottom: calc(45 / 1628 * 100cqi);
}
#kv .inner .watch_block .watch_block_wrap {
  display: flex;
  justify-content: space-between;
  width: calc(578 / 1628 * 100cqi);
  margin-left: calc(50 / 1628 * 100cqi);
}
#kv .inner .watch_block .watch_block_wrap .img img {
  filter: drop-shadow(10px 10px 0px #FFFDF2) 
          drop-shadow(10px -10px 0px #FFFDF2) 
          drop-shadow(-10px 10px 0px #FFFDF2) 
          drop-shadow(-10px -10px 0px #FFFDF2);
}
#kv .inner .watch_block .watch_block_wrap .img1 {
  width: calc(266 / 578 * 100%);
}
#kv .inner .watch_block .watch_block_wrap .img1 {
  opacity: 0;
}
#kv.start .inner .watch_block .watch_block_wrap .img1 {
  animation: fadein_y 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.8s both;
}
#kv .inner .watch_block .watch_block_wrap .img2 {
  width: calc(265 / 578 * 100%);
}
#kv .inner .watch_block .watch_block_wrap .img2 {
  opacity: 0;
}
#kv.start .inner .watch_block .watch_block_wrap .img2 {
  animation: fadein_y 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 1.0s both;
}
#kv .inner .mr_block {
  position: relative;
  width: calc(220 / 1628 * 100cqi);
  align-self: flex-end;
  container-type: inline-size;
}
#kv .inner .mr_block .fukidashi {
  position: absolute;
}
#kv .inner .mr_block .fukidashi.fukidashi01 {
  top: calc(-90 / 220 * 100cqi);
  left: calc(-130 / 220 * 100cqi);
  width: calc(164 / 220 * 100cqi);
  aspect-ratio: 187 / 150;
  /*
  background-color: #FFFDF2;
  box-shadow: 0 0 0px 5px #FFFDF2;
  */
}
#kv .inner .mr_block .fukidashi.fukidashi02 {
  top: calc(-105 / 220 * 100cqi);
  right: calc(-20 / 220 * 100cqi);
  width: calc(168 / 220 * 100%);
  aspect-ratio: 224 / 150;
}
#kv .inner .mr_block .img {
  transform: rotate(-12deg);
}
#kv .inner .mr_block .img_wrap {
  opacity: 0;
}
#kv.start .inner .mr_block .img_wrap {
  animation: fadein_y 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0s both;
}
#kv .inner .mr_block img {
  width: 100%;
}
#kv .mr_obj {
  position: absolute;
}
#kv .mr_obj img {
  width: 100%;
}
#kv .mr_obj.orange {
  left: calc(202 / var(--base-width) * 100vw);
  top: calc(-80 / var(--base-width) * 100vw);
  width: calc(205 / var(--base-width) * 100vw);
  aspect-ratio: 205 / 345;
  transform: rotate(167deg);
}
#kv .mr_obj.orange .img {
  opacity: 0;
}
#kv.start .mr_obj.orange .img {
  animation: fadein_y 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s both;
}
#kv .mr_obj.yellow {
  right: calc(430 / var(--base-width) * 100vw);
  top: calc(-63 / var(--base-width) * 100vw);
  width: calc(144 / var(--base-width) * 100vw);
  aspect-ratio: 144 / 242;
  transform: rotate(170deg);
}
#kv .mr_obj.yellow .img {
  opacity: 0;
}
#kv.start .mr_obj.yellow .img {
  animation: fadein_y 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.4s both;
}
#kv .mr_obj.red {
  right: calc(287 / var(--base-width) * 100vw);
  top: calc(-57 / var(--base-width) * 100vw);
  width: calc(144 / var(--base-width) * 100vw);
  aspect-ratio: 144 / 242;
  transform: rotate(-164deg);
}
#kv .mr_obj.red .img {
  opacity: 0;
}
#kv.start .mr_obj.red .img {
  animation: fadein_y 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.6s both;
}
#kv .mr_obj.green {
  left: calc(50 / var(--base-width) * 100vw);
  bottom: calc(-50 / var(--base-width) * 100vw);
  width: calc(145 / var(--base-width) * 100vw);
  aspect-ratio: 145 / 244;
  transform: rotate(10deg);
}
#kv .mr_obj.green .img {
  opacity: 0;
}
#kv.start .mr_obj.green .img {
  animation: fadein_y 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.5s both;
}
@media screen and (max-width: 640px) {
  #kv .outer {
    aspect-ratio: 375 / 670;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: calc(90 / var(--base-width) * 100vw);
  }
  #kv .inner {
    order: 0;
    width: 100%;
    flex-direction: column;
    align-items: center;
    margin-bottom: calc(30 / var(--base-width) * 100vw);
  }
  #kv .inner .title_block {
    width: calc(224 / var(--base-width) * 100vw);
    margin-bottom: calc(20 / var(--base-width) * 100vw);
    padding-top: 0;
  }
  #kv .inner .title_block .txt {
    padding-inline: 0.6em;
    color: #fff;
    font-size: calc(12 / var(--base-width) * 100vw);
    letter-spacing: 0.05em;
    line-height: calc(40 / 20);
    font-weight: bold;
    z-index: 1;
  }
  #kv .inner .title_block .txt1 {
    margin-top: 0;
  }
  #kv .inner .title_block .txt2 {
    margin-top: calc(4 / var(--base-width) * 100vw);
  }
  #kv .inner .watch_block {
    flex: auto;
    width: calc(250 / var(--base-width) * 100vw);
    padding-bottom: 0;
  }
  #kv .inner .watch_block .watch_block_wrap {
    width: 100%;
    margin-left: 0;
  }
  #kv .inner .watch_block .watch_block_wrap .img1 {
    width: 49%;
  }
  #kv .inner .watch_block .watch_block_wrap .img2 {
    width: 48%;
  }
  #kv .inner .watch_block .watch_block_wrap .img img {
    filter: drop-shadow(3px 3px 0px #FFFDF2) 
            drop-shadow(3px -3px 0px #FFFDF2) 
            drop-shadow(-3px 3px 0px #FFFDF2) 
            drop-shadow(-3px -3px 0px #FFFDF2);
  }
  #kv .w_logo {
    order: 1;
    width: calc(160 / var(--base-width) * 100vw);
    margin-bottom: 0;
  }
  #kv .inner .mr_block {
    position: absolute;
    right: calc(11 / var(--base-width) * 100vw);
    bottom: calc(-95 / var(--base-width) * 100vw);
    width: calc(86 / var(--base-width) * 100vw);
  }
  #kv .inner .mr_block .img {
    transform: rotate(8deg);
  }
  #kv .inner .mr_block .fukidashi.fukidashi01 {
    top: calc(-245 / 86 * 100cqi);
    left: calc(-270 / 86 * 100cqi);
    width: calc(76 / 86 * 100cqi);
  }
  #kv .inner .mr_block .fukidashi.fukidashi02 {
    top: calc(-54 / 86 * 100cqi);
    right: calc(-5 / 86 * 100cqi);
    width: calc(76 / 86 * 100%);
  }
  #kv .mr_obj.orange {
    left: calc(-10 / var(--base-width) * 100vw);
    top: calc(78 / var(--base-width) * 100vw);
    width: calc(72 / var(--base-width) * 100vw);
    transform: rotate(15deg);
  }
  #kv .mr_obj.yellow {
    right: auto;
    left: calc(143 / var(--base-width) * 100vw);
    top: calc(-30 / var(--base-width)* 100vw);
    width: calc(60 / var(--base-width)* 100vw);
    transform: rotate(170deg);
  }
  #kv .mr_obj.red {
    right: auto;
    left: calc(200 / var(--base-width) * 100vw);
    top: calc(-25 / var(--base-width) * 100vw);
    width: calc(60 / var(--base-width) * 100vw);
    transform: rotate(-164deg);
  }
  #kv .mr_obj.green {
    right: calc(18 / var(--base-width) * 100vw);
    left: auto;
    top: calc(180 / var(--base-width) * 100vw);
    bottom: auto;
    width: calc(60 / var(--base-width) * 100vw);
    aspect-ratio: 145 / 244;
    transform: rotate(-10deg);
  }
}

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

wrapper

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

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

lead

--------------------------------------------------*/
#lead {
  position: relative;
  padding-block-start: clamp(180px / var(--minimize-ratio), (180 / var(--base-width) * 100vw), 180px);
  padding-block-end: clamp(164px / var(--minimize-ratio), (164 / var(--base-width) * 100vw), 164px);
}
#lead .color_line {
  top: 0;
  bottom: auto;
}
#lead .lead_outer {
  position: relative;
}
#lead .main_ttl {
  margin-bottom: 2.5em;
  color: var(--primary-txt-color);
  font-size: clamp(3.3rem / var(--minimize-ratio), 33 / var(--base-width) * 100vw, 3.3rem);
  letter-spacing: 0.15em;
  text-align: center;
  line-height: 2.0;
}
#lead .main_ttl .fadeInUp.tc.l2 > span:nth-child(3n + 1) {
  color: var(--mf-gray-color);
}
#lead .main_ttl .fadeInUp.tc.l2 > span:nth-child(3n + 2) {
  color: var(--mf-red-color);
}
#lead .main_ttl .fadeInUp.tc.l2 > span:nth-child(3n + 3) {
  color: var(--mf-blue-color);
}
#lead .lead_inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: clamp(1350px / var(--minimize-ratio), 1350 / var(--base-width) * 100vw, 1350px);
  margin-inline: auto;
}
#lead .txt_block {
  width: calc(650 / 1350 * 100%);
  padding-bottom: 2.5%;
  container-type: inline-size;
}
#lead .txt_block .txt {
  position: relative;
  font-size: clamp(2.0rem / var(--minimize-ratio), 20 / var(--base-width) * 100vw, 2.0rem);
  font-weight: 500;
  letter-spacing: 0.15em;
  background-image: linear-gradient(90deg, transparent 0%, transparent 50%, #fff 50%, #fff 100%), /* 点線1の色 */
                    linear-gradient(180deg, var(--primary-txt-color) 1px, transparent 1px); /* 点線2の色と太さ */
  background-size: 6px 100%, /* 点線1のサイズ（間隔） */
                   100% 3em; /* 点線2のサイズ */
  line-height: 3em; /* 文字の高さ */
  padding-bottom: 1px; /* 最終行の下にも罫線を引く（線の太さに揃える） */
}
/* 1版上の線だけ背景色で上書き */
#lead .txt_block .txt::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 0.5em; 
  background-color: #fff;  /* 背景色 */
  z-index: 1;
  pointer-events: none; /* テキスト選択を妨げない */
}
#lead .img_block {
  position: relative;
  width: calc(562 / 1350 * 100%);
}
#lead .img_block .img {
  position: relative;
  opacity: 0;
  transform: rotate(-10deg);
  transform-origin: right top;
  transition: opacity 0.4s cubic-bezier(0.33, 1, 0.68, 1), transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}
#lead .img_block .img.scrollin {
  opacity: 1;
  transform: rotate(0);
}
@media screen and (orientation:portrait) {
  body.tablet #lead .lead_inner {
    width: 92vw;
  }
  body.tablet #lead .txt_block {
    width: 52%;
  }
  body.tablet #lead .txt_block .txt {
    font-size: 1.2rem;
    letter-spacing: 0.10em;
  }
}
@media screen and (max-width: 640px) {
  #lead {
    padding-block: min(90 / var(--base-width) * 100vw, 135px) min(160 / var(--base-width) * 100vw, 240px);
  }
  #lead .main_ttl {
    margin-bottom: 2.0em;
    color: var(--primary-txt-color);
    font-size: min(20 / var(--base-width) * 100vw, 3.0rem) !important;
    line-height: calc(43 / 20);
    --fadeInUp-anim: fadeInUp 0.25s cubic-bezier(0.33, 1, 0.68, 1) forwards;
    --fadeInUp-anim-delay: 0.010s;
    --fadeInUp-anim-interval: 0.040s;
  }
  #lead .main_ttl .fadeInUp.tc.l2 > span:nth-child(3n + 1) {
    color: var(--mf-gray-color);
  }
  #lead .main_ttl .fadeInUp.tc.l2 > span:nth-child(3n + 2) {
    color: var(--mf-red-color);
  }
  #lead .main_ttl .fadeInUp.tc.l2 > span:nth-child(3n + 3) {
    color: var(--mf-blue-color);
  }
  #lead .lead_inner {
    flex-direction: column-reverse;
    justify-content: center;
    align-items: center;
    width: min(336 / var(--base-width) * 100vw, 504px);
  }
  #lead .txt_block {
    width: min(310 / var(--base-width) * 100vw, 450px);
    padding-bottom: 0;
  }
  #lead .txt {
    /*
    background-image : linear-gradient(to right, var(--primary-txt-color) 2px, transparent 2px);
    background-size: 6px 1em;
    background-repeat: repeat-x; 
    background-position: left bottom;
    */
  }
  #lead .txt_block .txt {
    font-size: min(15 / var(--base-width) * 100vw, 2.25rem);
    line-height: calc(50 / 15);
    letter-spacing: 0.12em;
    text-align: left;
    background-size: 6px 100%, /* 点線1のサイズ（間隔） */
                   100% 3.333em; /* 点線2のサイズ */
  }
  #lead .img_block {
    width: 100%;
    margin-bottom: min(40 / var(--base-width) * 100vw, 60px);
  }
}

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

about

--------------------------------------------------*/
#about {
  position: relative;
  padding-block: clamp(120px / var(--minimize-ratio), (120 / var(--base-width) * 100vw), 120px);
  background: var(--primary-red-color);
}
#about .mr_formation.top {
  position: absolute;
  left: min((80 / var(--base-width) * 100vw), 80px);
  top: max((-113 / var(--base-width) * 100vw), -113px);
  width: min((526 / var(--base-width) * 100vw), 526px);
  display: flex;
  gap: calc(20 / 526 * 100%);
}
#about .mr_formation.top > div {
  width: calc(100% / 5);
}
#about .mr_formation.top > div img {
  width: 100%;
}
#about .about_outer {
  position: relative;
  width: clamp(1580px / var(--minimize-ratio), (1580 / var(--base-width) * 100vw), 1580px);
  margin-inline: auto;
  padding-block-start: clamp(70px / var(--minimize-ratio), (70 / var(--base-width) * 100vw), 70px);
  padding-block-end: clamp(170px / var(--minimize-ratio), (170 / var(--base-width) * 100vw), 170px);
  border-radius: 30px;
  background: #fff;
}
#about .about_outer .mr_formation.btm {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: calc(1444 / 1580 * 100%);
  display: flex;
  gap: calc(23 / 1444 * 100%);
  transform: translateX(-50%);
}
#about .about_outer .mr_formation.btm > div {
  width: calc(36 / 100 * 100%);
}
#about .about_outer .mr_formation.btm > div img {
  width: 100%;
}
#about .main_ttl {
  margin-bottom: 2em;
  font-size: min(50 / var(--base-width) * 100vw, 50px);
  font-family: var(--common-en-font-family);
  letter-spacing: 0.1em;
  line-height: 1;
  white-space: nowrap;
}
#about .about_inner {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  width: clamp(1280px / var(--minimize-ratio), (1280 / var(--base-width) * 100vw), 1280px);
  margin-inline: auto;
}
#about .txt_block {
  width: calc(620 / 1280 * 100%);
  container-type: inline-size;
}
#about .lead_txt .txt {
  margin-bottom: 1.4em;
  padding-bottom: 1.4em;
  font-size: clamp(2.2rem / var(--minimize-ratio), (22 / var(--base-width) * 100vw), 2.2rem);
  font-weight: bold;
  line-height: calc(40 / 22);
  letter-spacing: 0.15em;
  white-space: nowrap;
  background-image: linear-gradient(to right, var(--primary-txt-color) 3px, transparent 3px);
  background-size: 6px 1px;
  background-repeat: repeat-x;
  background-position: left bottom;
}
#about .img_block {
  position: relative;
  width: calc(431 / 1260 * 100%);
  padding-right: calc(50 / 1260 * 100%);
}
#about .img_block img {
  width: 100%;
}
@media screen and (orientation:portrait) {
  body.tablet #about .about_inner {
    width: 90%;
  }
  body.tablet #about .txt_block {
    width: 58%;
  }
  body.tablet #about .lead_txt .txt {
    font-size: 1.4rem;
    letter-spacing: 0.1em;
  }
  body.tablet #about .txt_block .common_txt {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 640px) {
  #about {
    padding-block: min(50 / var(--base-width) * 100vw, 75px);
  }
  #about .mr_formation.top {
    position: absolute;
    left: 50%;
    top: min((22 / var(--base-width) * 100vw), 33px);
    width: min((300 / var(--base-width) * 100vw), 450px);
    display: flex;
    gap: calc(15 / 300 * 100%);
    transform: translate3d(-50%, -100%, 0);
  }
  #about .about_outer {
    position: relative;
    width: min((345 / var(--base-width) * 100vw), 518px);
    margin-inline: auto;
    padding-block-start: min((40 / var(--base-width) * 100vw), 60px);
    padding-block-end: min((130 / var(--base-width) * 100vw), 195px);
  }
  #about .about_outer .mr_formation.btm {
    bottom: min((10 / var(--base-width) * 100vw), 15px);
    width: calc(300 / var(--base-width) * 100vw);
    gap: min((6 / var(--base-width) * 100vw), 9px);
  }
  #about .about_outer .mr_formation.btm > div {
    width: calc(10 / 100 * 100%);
  }
  #about .about_outer .mr_formation.btm > div:nth-child(n + 11) {
    display: none;
  }
  #about .main_ttl {
    margin-bottom: 1.2em;
    font-size: min(26 / var(--base-width) * 100vw, 3.9rem);
    line-height: 1.6;
  }
  #about .about_inner {
    flex-direction: column-reverse;
    justify-content: center;
    align-items: center;
    align-items: center;
    width: min((284 / var(--base-width) * 100vw), 426px);
    margin-inline: auto;
    gap: min((50 / var(--base-width) * 100vw), 75px);
  }
  #about .txt_block {
    width: 100%;
  }
  #about .lead_txt .txt {
    margin-bottom: 1.6em;
    padding-bottom: 1.6em;
    font-size: min((16 / var(--base-width) * 100vw), 2.4rem);
    line-height: calc(34 / 16);
    letter-spacing: 0.1em;
    background-image: linear-gradient(to right, var(--primary-txt-color) 2px, transparent 2px);
    background-size: 6px 1px;
    text-align: center;
  }
  #about .img_block {
    width: calc(202 / 284 * 100%);
    padding-right: 0;
  }
}

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

design theme

--------------------------------------------------*/
#designTheme {
  position: relative;
  overflow: clip;
  clip-path: inset(0);
}
#designTheme .designTheme_block {
  position: relative;
  padding-bottom: clamp(200px / var(--minimize-ratio), (200 / var(--base-width) * 100vw), 200px);
}
#designTheme .designTheme_block > .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
#designTheme .designTheme_block > .bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /*
  background: var(--mf-red-color);
  opacity: 0.04;
  */
  background: #fef5f6;
}
#designTheme .designTheme_block.SSVV089 > .bg::before {
  /*
  background: var(--mf-blue-color);
  opacity: 0.04;
  */
  background: #f5f8fb;
}
#designTheme .main_ttl {
  margin-bottom: min((60 / var(--base-width) * 100vw), 60px);
}
#designTheme .main_ttl span.en {
  display: inline-block;
  background-color: #fef5f6;
  box-shadow: 0 0 0px 5px #fef5f6;
}
#designTheme .SSVV089 .main_ttl span.en {
  background-color: #f5f8fb;
  box-shadow: 0 0 0px 5px #f5f8fb;
}
#designTheme .SSVW237 .main_ttl .fadeInUp > span:nth-child(2),
#designTheme .SSVW237 .main_ttl .fadeInUp > span:nth-child(3),
#designTheme .SSVW237 .main_ttl .fadeInUp > span:nth-child(4),
#designTheme .SSVW237 .main_ttl .fadeInUp > span:nth-child(5) {
  color: var(--mf-red-color);
}
#designTheme .SSVW237 .main_ttl .fadeInUp > span:nth-child(1),
#designTheme .SSVW237 .main_ttl .fadeInUp > span:nth-child(6),
#designTheme .SSVW237 .main_ttl .fadeInUp > span:nth-child(12) {
  color: #898989;
}
#designTheme .SSVW237 .main_ttl .fadeInUp > span:nth-child(7),
#designTheme .SSVW237 .main_ttl .fadeInUp > span:nth-child(8),
#designTheme .SSVW237 .main_ttl .fadeInUp > span:nth-child(9),
#designTheme .SSVW237 .main_ttl .fadeInUp > span:nth-child(10),
#designTheme .SSVW237 .main_ttl .fadeInUp > span:nth-child(11) {
  color: var(--mf-blue-color);
}
#designTheme .designTheme_outer {
  position: relative;
  padding-top: clamp(120px / var(--minimize-ratio), (120 / var(--base-width) * 100vw), 120px);
  z-index: 1;
}
#designTheme .designTheme_wrap.sticky {
  /*
  position: sticky;
  width: 100%;
  height: 100svh;
  top: 0;
  left: 0;
  */
}
#designTheme .designTheme_wrap .content_wrap {
  position: relative;
  width: min(1440 / var(--base-width) * 100vw, 1440px);
  height: 100%;
  margin-inline: auto;
}
#designTheme .designTheme_wrap .content {
  position: relative;
  /*
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-bottom: 30svh;
  padding-block: min((150 / var(--base-width) * 100vw), 150px) min((200 / var(--base-width) * 100vw), 200px);
  */
}
#designTheme .designTheme_wrap .content:not(.content_main) {

}
#designTheme .designTheme_wrap .content:last-of-type {

}
#designTheme .content .section {
  position: relative;
  display: flex;
  justify-content: flex-start;
}
#designTheme .content .img_block {
  position: absolute;
  top: 0;
  left: 50%;
  width: calc(257 / 1440 * 100%);
  text-align: center;
  transform: translateX(-50%);
}
#designTheme .content .img_block .arrow {
  position: absolute;
  width: calc(140 / 257 * 100%);
  top: 40%;
  right: calc(-10 / 257 * 100%);
  transform: translateX(100%);
  z-index: 1;
}
#designTheme .content .img_block .arrow img {
  clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
  opacity: 0;
  transition: clip-path 0s ease-out, opacity .4s ease-out;
}
#designTheme .content .img_block .arrow.show img {
  opacity: 1;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  transition: clip-path .2s ease-out .2s, opacity 0s ease-out;
}
#designTheme .content .img_block .arrow.arrow_right {
  right: auto;
  left: calc(-20 / 257 * 100%);
  transform: translateX(-100%);
}
#designTheme .content .img_block .arrow.arrow_right img {
  position: relative;
  clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
}
#designTheme .content .img_block .arrow.arrow_right.show img {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}
#designTheme .content .img_block .serial_wrap {
  display: inline-block;
  /*
  background-color: #fef5f6;
  box-shadow: 0 0 0px 5px #fef5f6;
  */
}
#designTheme .SSVV089 .content .img_block .serial_wrap {
  display: inline-block;
  /*
  background-color: #f5f8fb;
  box-shadow: 0 0 0px 5px #f5f8fb;
  */
}
#designTheme .content .img_block .serial {
  position: relative;
  display: inline-block;
  margin-bottom: min(20 / var(--base-width)* 100vw, 20px);
  padding-inline: 0.4em;
  color: #fff;
  font-family: var(--common-en-font-family);
  font-weight: 400;
  font-size: clamp(1.3rem, 25 / var(--base-width) * 100vw, 2.5rem);
  letter-spacing: 0.1em;
  line-height: calc(48 / 25);
  z-index: 1;
  background: url(../img/designTheme_serial_bg_red.svg) center center no-repeat;
  background-size: contain;
}
#designTheme .SSVV089 .content .img_block .serial {
  background: url(../img/designTheme_serial_bg_blue.svg) center center no-repeat;
  background-size: contain;
}
#designTheme .content .img_block .img img {
  filter: drop-shadow(10px 10px 0px #fef5f6) 
          drop-shadow(10px -10px 0px #fef5f6) 
          drop-shadow(-10px 10px 0px #fef5f6) 
          drop-shadow(-10px -10px 0px #fef5f6);
}
#designTheme .SSVV089 .content .img_block .img img {
  filter: drop-shadow(10px 10px 0px #f5f8fb) 
          drop-shadow(10px -10px 0px #f5f8fb) 
          drop-shadow(-10px 10px 0px #f5f8fb) 
          drop-shadow(-10px -10px 0px #f5f8fb);
}
#designTheme .content .img_block .img.scrollin img {
  animation: shake_watch1 cubic-bezier(0, 1, 0, 1) 6.0s forwards;
  animation-delay: 1.0s;
}
#designTheme .SSVV089 .content .img_block .img.scrollin img {
  animation: shake_watch2 cubic-bezier(0, 1, 0, 1) 6.0s forwards;
  animation-delay: 1.0s;
}
/*
#designTheme .content .img_block .serial::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--mf-red-color);
  transform: rotate(-2deg);
  z-index: -1;
}
#designTheme .SSVV089 .content .img_block .serial::before {
  background: var(--mf-blue-color);
}
*/
#designTheme .content .body_block {

}
#designTheme .content .body_block .img_wrap .img {
  width: calc(425 / 1440 * 100%);
  aspect-ratio: 425 / 375;
  margin-bottom: 1%;
  padding-top: 2%;
  opacity: 0;
  transform: translateY(10%) rotate(-10deg);
  transition: opacity .2s ease-out, transform .6s cubic-bezier(0.34, 1.56, 0.64, 1);
}
#designTheme .content .body_block .img_wrap .img.show {
  opacity: 1;
  transform: translateY(0) rotate(0) !important;
}
#designTheme .content .body_block .img_wrap .img:nth-child(2),
#designTheme .content .body_block .img_wrap .img:nth-child(4) {
  position: absolute;
  top: 0;
  right: 0;
  transform: translateY(10%) rotate(10deg);
}
#designTheme .content .body_block .img_wrap .img:nth-child(3),
#designTheme .content .body_block .img_wrap .img:nth-child(5) {
  position: absolute;
  top: 0;
  left: 0;
}
#designTheme .image_wrap {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: min(1420 / var(--base-width) * 100vw, 1420px);
  margin-top: clamp(140px / var(--minimize-ratio), (140 / var(--base-width) * 100vw), 140px);
  margin-inline: auto;
}
#designTheme .SSVV089 .image_wrap {
  flex-direction: row-reverse;
}
#designTheme .content .body_block .txt_wrap {
  position: relative;
  width: 100%;
}
#designTheme .content .body_block .txt_wrap .txt {
  position: relative;
  width: calc(425 / 1440 * 100%);
  padding-inline: 1.2%;
  /*
  background-color: #fef5f6;
  box-shadow: 0 0 0px 5px #fef5f6;
  */
  opacity: 0;
  transition: opacity .2s ease-out;
}
#designTheme .SSVV089 .content .body_block .txt_wrap .txt {
  /*
  background: #f5f8fb;
  box-shadow: 0 0 0px 5px #f5f8fb;
  */
}
#designTheme .content .body_block .txt_wrap .txt.show {
  opacity: 1;
}
#designTheme .content .body_block .txt_wrap .txt:nth-child(2),
#designTheme .content .body_block .txt_wrap .txt:nth-child(4) {
  position: absolute;
  top: 0;
  right: 0;
}
#designTheme .content .body_block .txt_wrap .txt:nth-child(3),
#designTheme .content .body_block .txt_wrap .txt:nth-child(5) {
  position: absolute;
  top: 0;
  left: 0;
}
#designTheme .content .body_block .txt_wrap .txt .title {
  display: inline-block;
  margin-bottom: 0.4em;
  padding-inline: 0.5em;
  color: #fff;
  font-size: clamp(1.2rem, 22 / var(--base-width) * 100vw, 2.2rem);
  font-weight: 700;
  line-height: calc(44 / 22);
  letter-spacing: 0.15em;
  background: url(../img/designTheme_title_bg_gray.svg) center center no-repeat;
  background-size: contain;
}
#designTheme .SSVW237 .content .body_block .txt_wrap .txt4 .title {
  background: url(../img/designTheme_title_bg_red.svg) center center no-repeat;
  background-size: contain;
}
#designTheme .SSVW237 .content .body_block .txt_wrap .txt5 .title {
  background: url(../img/designTheme_title_bg_blue.svg) center center no-repeat;
  background-size: contain;
}
#designTheme .SSVV089 .content .body_block .txt_wrap .txt3 .title {
  background: url(../img/designTheme_title_bg_orange.svg) center center no-repeat;
  background-size: contain;
}
#designTheme .SSVV089 .content .body_block .txt_wrap .txt4 .title {
  background: url(../img/designTheme_title_bg_green.svg) center center no-repeat;
  background-size: contain;
}
#designTheme .SSVV089 .content .body_block .txt_wrap .txt5 .title {
  color: var(--primary-txt-color);
  background: url(../img/designTheme_title_bg_yellow.svg) center center no-repeat;
  background-size: contain;
}
#designTheme .content .body_block .txt_wrap .txt .common_txt {
  background: #fef5f6;
}
#designTheme .SSVV089 .content .body_block .txt_wrap .txt .common_txt {
  background: #f5f8fb;
}
#designTheme .content .body_block .txt_wrap .txt.txt4 .common_txt {
	text-align: left;
}
#designTheme .image_wrap .illust_block {
  width: calc(612 / 1420 * 100%);
}
#designTheme .SSVV089 .image_wrap .illust_block {
  width: calc(527 / 1420 * 100%);
}
#designTheme .image_wrap .img_block {
  position: relative;
  width: calc(710 / 1420 * 100%);
}
#designTheme .image_wrap .img_block .img {
  opacity: 0;
  transform: rotate(-4deg);
  transform-origin: right top;
  transition: opacity 0.8s cubic-bezier(0.33, 1, 0.68, 1), transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}
#designTheme .SSVV089 .image_wrap .img_block .img {
  transform: rotate(4deg);
  transform-origin: left top;
}
#designTheme .image_wrap .img_block .img.scrollin {
  opacity: 1;
  transform: rotate(0) !important;
}
@media screen and (min-width: 641px) and (orientation:landscape) and (min-aspect-ratio: 16 / 8.5) {
  #designTheme .designTheme_outer {
    padding-top: 6vh;
  }
  #designTheme .designTheme_wrap .content_wrap {
    width: 130vh;
  }
  #designTheme .content .body_block .txt_wrap .txt .common_txt {
    line-height: calc(40 / 20);
  }
}
@media screen and (orientation:portrait) {
  body.tablet #designTheme .designTheme_outer {
    padding-top: 15svh;
  }
  body.tablet #designTheme .designTheme_wrap .content_wrap {
    width: 92vw;
  }
  body.tablet #designTheme .content .body_block .txt_wrap .txt .common_txt {
    font-size: 1.2rem;;
  }
}
@media screen and (max-width: 1200px) {

}
@media screen and (max-width: 640px) {
  #designTheme .designTheme_block {
    padding-top: min(70 / var(--base-width) * 100vw, 105px);
    padding-bottom: min(100 / var(--base-width) * 100vw, 150px);
  }
  #designTheme .designTheme_outer {
    position: relative;
    /*
    padding-top: min(70 / var(--base-width) * 100vw, 105px);
    */
    padding-top: 0;
    z-index: 1;
  }
  #designTheme .designTheme_wrap .content_wrap {
    width: 100%;
  }
  #designTheme .main_ttl {
    margin-bottom: min(40 / var(--base-width) * 100vw, 60px);
  }
  #designTheme .content .section {
    position: relative;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  #designTheme .content .img_block {
    position: relative;
    top: auto;
    left: auto;
    width: min(212 / var(--base-width) * 100vw, 318px);
    padding-bottom: min(10 / var(--base-width) * 100vw, 15px);
    transform: none;
  }
  #designTheme .image_wrap .img_block {
    position: relative;
    width: min(330 / var(--base-width) * 100vw, 495px);
  }
  #designTheme .content .img_block .img img {
    filter: drop-shadow(3px 3px 0px #fef5f6) 
            drop-shadow(3px -3px 0px #fef5f6) 
            drop-shadow(-3px 3px 0px #fef5f6) 
            drop-shadow(-3px -3px 0px #fef5f6);
  }
  #designTheme .SSVV089 .content .img_block .img img {
    filter: drop-shadow(3px 3px 0px #f5f8fb) 
            drop-shadow(3px -3px 0px #f5f8fb) 
            drop-shadow(-3px 3px 0px #f5f8fb) 
            drop-shadow(-3px -3px 0px #f5f8fb);
  }
  #designTheme .content .img_block .serial {
    margin-bottom: min(20 / var(--base-width)* 100vw, 30px);
    font-weight: 400;
    font-size: min(17 / var(--base-width) * 100vw, 2.2rem);
    line-height: calc(48 / 25);
  }
  #designTheme .content .img_block .arrow {
    display: none;
  }
  #designTheme .content .body_block {
    position: relative;
    width: min(338 / var(--base-width) * 100vw, 500px);
  }
  #designTheme .content .body_block .img_wrap {
    padding-top: min(60 / var(--base-width) * 100vw, 90px);
  }
  #designTheme .content .body_block .img_wrap .img {
    width: 100%;
    margin-bottom: 0;
    padding-top: 0;
  }
  #designTheme .content .body_block .img_wrap .img:nth-child(1) {
    transition-duration: 0.4s;
  }
  #designTheme .content .body_block .img_wrap .img:nth-child(1).scrollin {
    opacity: 1;
    transform: translateY(0) rotate(0) !important;
  }
  #designTheme .content .body_block .img_wrap .img:nth-child(2),
  #designTheme .content .body_block .img_wrap .img:nth-child(3),
  #designTheme .content .body_block .img_wrap .img:nth-child(4),
  #designTheme .content .body_block .img_wrap .img:nth-child(5) {
    top: min(60 / var(--base-width) * 100vw, 90px) !important;
    left: 0 !important;
    right: auto !important;
  }
  #designTheme .content .body_block .txt_wrap {
    width: min(300 / var(--base-width) * 100vw, 450px);
    margin-inline: auto;
    margin-top: min(26 / var(--base-width) * 100vw, 40px);
  }
  #designTheme .content .body_block .txt_wrap .txt {
    text-align: center;
  }
  #designTheme .content .body_block .txt_wrap .txt .title {
    margin-bottom: 1em;
    padding-inline: 0.5em;
    color: #fff;
    font-size: min(17 / var(--base-width) * 100vw, 2.4rem);
    line-height: calc(44 / 22);
  }
  #designTheme .content .body_block .txt_wrap .txt {
    width: 100%;
    padding-inline: 0;
  }
  #designTheme .image_wrap {
    flex-direction: column-reverse !important;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: min(60 / var(--base-width) * 100vw, 90px);
  }
  #designTheme .image_wrap .illust_block {
    margin-top: min(30 / var(--base-width) * 100vw, 45px);
    width: min(254 / var(--base-width) * 100vw, 380px);
  }
  #designTheme .SSVV089 .image_wrap .illust_block {
    width: min(218 / var(--base-width) * 100vw, 327px);
  }
}

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

STRAP

--------------------------------------------------*/
#strap {
  position: relative;
  padding-block-start: clamp(100px / var(--minimize-ratio), (100 / var(--base-width) * 100vw), 100px);
  padding-block-end: clamp(160px / var(--minimize-ratio), (160 / var(--base-width) * 100vw), 160px);
  background: var(--primary-blue-color);
}
#strap .mr_walking {
  position: absolute;
  display: flex;
  justify-content: space-between;
  left: 50%;
  bottom: clamp(40px / var(--minimize-ratio), (40 / var(--base-width) * 100vw), 40px);
  width: clamp(270px / var(--minimize-ratio), (270 / var(--base-width) * 100vw), 270px);
  aspect-ratio: 270 / 84;
  transform: translateX(-50%);
}
#strap .strap_outer {
  position: relative;
}
#strap .strap_inner {
  position: relative;
  display: flex;
  width: 100%;
  container-type: inline-size;
}
#strap .img_block.strap01 {
  position: relative;
  order: 0;
  align-self: start;
  width: calc(503 / 1920 * 100cqi);
  z-index: 2;
  container-type: inline-size;
}
#strap .img_block.strap01 .ph_img {
  position: absolute;
  right: -50%;
  bottom: -52%;
  width: calc(497 / 503 * 100cqi);
  aspect-ratio: 497 / 434;
}
#strap .img_block.strap01 .ph_img img {
  opacity: 0;
  transform: rotate(5deg) translateY(5%);
  transition: opacity 0.8s cubic-bezier(0.33, 1, 0.68, 1), transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition-delay: .15s;
}
#strap .img_block.strap01 .ph_img img.scrollin {
  transform: rotate(0) translateY(0);
  opacity: 1;
}
#strap .img_block.strap01 .img_box {
  display: flex;
  flex-direction: column;
}
#strap .img_block.strap01 .img_box .img:first-of-type {
  margin-top: calc(-30 / 1920 * 100cqi);
}
#strap .img_block.strap01 .img_box .img:last-of-type {
  margin-top: calc(-180 / 1920 * 100cqi);
  width: calc(452 / 503 * 100%);
}
#strap .img_block.strap01 .img_box .img img {
  opacity: 0;
  transform: rotate(-5deg);
  transform-origin: left bottom;
  transition: opacity 0.8s cubic-bezier(0.33, 1, 0.68, 1), transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}
#strap .img_block.strap01 .img_box .img:last-of-type img {
  transition-delay: .35s;
}
#strap .img_block.strap01 .img_box .img img.scrollin {
  transform: rotate(0);
  opacity: 1;
}
#strap .img_block.strap02 {
  order: 2;
  display: flex;
  justify-content: space-between;
  width: calc(595 / 1920 * 100cqi);
  padding-top: calc(30 / 1920 * 100cqi);
  padding-right: calc(100 / 1920 * 100cqi);
}
#strap .img_block.strap02 .img_box {
  width: calc(220 / 454 * 100%);
  text-align: center;
}
#strap .img_block.strap02 .img_box .fukidashi {
  display: grid;
  place-content: center;
  aspect-ratio: 178 / 116;
  width: calc(216 / 17 * 1em);
  margin-bottom: 1em;
  margin-left: auto;
  margin-right: calc(20 / 17 * -1em);
  padding-bottom: 1.25em;
  color: #fff;
  font-size: min(17 / var(--base-width)* 100vw, 1.7rem);
  font-weight: bold;
  letter-spacing: 0.03em;
  line-height: calc(25 / 17);
  background: url(../img/fukidashi.svg) no-repeat;
  background-size: contain;
  transition-delay: .5s;
}
#strap .img_block.strap02 .img_box.SSVV089 .fukidashi {
  transition-delay: 0.7s;
}
#strap .img_block.strap02 .serial {
  position: relative;
  display: inline-block;
  margin-top: min(25 / var(--base-width)* 100vw, 25px);
  padding-inline: 1.25em;
  color: var(--mf-red-color);
  font-size: clamp(0.8rem, 13 / var(--base-width)* 100vw, 1.3rem);
  font-weight: bold;
  letter-spacing: 0.1em;
  line-height: calc(40 / 13);
  background: url(../img/serial_bg_white.svg) center center no-repeat;
  background-size: contain;
  z-index: 1;
}
#strap .img_block.strap02 .img_box.SSVV089 .img {
  transition-delay: 0.2s;
}
#strap .img_block.strap02 .SSVV089 .serial {
  color: var(--mf-blue-color);
}
#strap .txt_block {
  order: 1;
  align-self: center;
  width: calc(822 / 1920 * 100cqi);
  container-type: inline-size;
}
#strap .txt_block .txt_block_inner {
  position: relative;
  width: calc(630 / 822 * 100cqi);
  margin-left: calc(139 / 822 * 100cqi);
  padding-block: calc(50 / 822 * 100cqi) calc(70 / 822 * 100cqi);
  z-index: 1;
}
#strap .txt_block .txt_block_inner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  border-radius: 30px;
  transform: rotate(0deg);
  z-index: -1;
}
#strap .txt_block .txt_block_inner .common_txt_ttl {
  margin-bottom: min(60 / var(--base-width) * 100vw, 60px);
  font-size: clamp(4.0rem / var(--minimize-ratio),(40 / var(--base-width)* 100vw), 4.0rem);
}
#strap .txt_block .txt_block_inner .common_txt_ttl .upper_txt {
  font-size: calc(25 / 40 * 1em);
}
#strap .txt_block .txt {
  width: calc(400 / 630 * 100%);
  margin-inline: auto;
}
@media screen and (orientation:portrait) {
  body.tablet #strap .txt_block .txt {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 991px) {
  #strap .img_block.strap01 .ph_img {
    bottom: -55%;
  }
  #strap .img_block.strap02 {
    padding-right: calc(30 / 1920 * 100cqi);
  }
  #strap .img_block.strap02 .img_box .fukidashi {
    width: calc(195 / 17 * 1em);
    margin-right: 0;
    margin-left: calc(20 / 17 * -1em);
    padding-bottom: 1.25em;
    font-size: 1.3vw;
    letter-spacing: 0.01em;
  }
  #strap .img_block.strap02 .img_box.SSVV089 .fukidashi {
    margin-left: calc(10 / 17 * -1em);
  }
}
@media screen and (max-width: 640px) {
  #strap {
    position: relative;
    padding-block: min(50 / var(--base-width) * 100vw, 75px) min(140 / var(--base-width) * 100vw, 210px);
  }
  #strap .strap_inner {
    flex-direction: column;
  }
  #strap .txt_block {
    order: 0;
    width: min(345 / var(--base-width) * 100vw, 518px);
    margin-inline: auto;
    margin-bottom: min(20 / var(--base-width) * 100vw, 30px);
  }
  #strap .txt_block .txt_block_inner {
    width: 100%;
    margin-left: 0;
    padding-block: min(40 / var(--base-width) * 100vw, 60px) min(50 / var(--base-width) * 100vw, 75px);
  }
  #strap .txt_block .txt_block_inner .common_txt_ttl {
    margin-bottom: min(40 / var(--base-width) * 100vw, 60px);
  }
  #strap .txt_block .txt {
    width: min(280 / var(--base-width) * 100vw, 420px);
  }
  #strap .img_block.strap01 {
    width: min(260 / var(--base-width) * 100vw, 390px);
    margin-bottom: min(60 / var(--base-width) * 100vw, 90px);
  }
  #strap .img_block.strap01 .img_box {
    margin-left: max(-30 / var(--base-width) * 100vw, -45px);
  }
  #strap .img_block.strap01 .img_box .img:first-of-type {
    /*
    margin-top: min(10 / var(--base-width) * 100vw, 15px);
    */
  }
  #strap .img_block.strap01 .img_box .img:last-of-type {
    margin-top: max(-30 / var(--base-width) * 100vw, -45px);
    margin-left: max(-5 / var(--base-width) * 100vw, -8px);
  }
  #strap .img_block.strap01 .ph_img {
    right: -72%;
    bottom: -15%;
    width: calc(315 / 260 * 100cqi);
  }
  #strap .img_block.strap02 {
    width: min(320 / var(--base-width) * 100vw, 480px);
    margin-inline: auto;
    padding-right: 0;
    padding-top: 0;
  }
  #strap .img_block.strap02 .img_box {
    width: 48% !important;
  }
  #strap .img_block.strap02 .img_box .fukidashi {
    width: 12em;
    margin-right: 0;
    margin-left: 1em;
    padding-bottom: 1.25em;
    font-size: min(12 / var(--base-width) * 100vw, 1.8rem);
    letter-spacing: 0.01em;
  }
  #strap .img_block.strap02 .img_box.SSVV089 .fukidashi {
    margin-left: 1em;
  }
  #strap .img_block.strap02 .serial {
    margin-top: min(20 / var(--base-width) * 100vw, 30px);
    font-size: min(11 / var(--base-width) * 100vw, 1.6rem);
  }
  #strap .mr_walking {
    bottom: min(40 / var(--base-width) * 100vw, 60px);
    width: min(200 / var(--base-width) * 100vw, 300px);
  }
}

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

box

--------------------------------------------------*/
#box {
  position: relative;
  padding-block-start: clamp(145px / var(--minimize-ratio), (145 / var(--base-width) * 100vw), 145px);
  padding-block-end: clamp(175px / var(--minimize-ratio), (175 / var(--base-width) * 100vw), 175px);
  overflow: clip;
  clip-path: inset(0);
}
#box .box_outer {
  position: relative;
}
#box .box_inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: clamp(1700px / var(--minimize-ratio),(1700 / var(--base-width)* 100vw), 1700px);
  margin-inline: auto;
  container-type: inline-size;
}
#box .img_block.SSVW237 {
  position: relative;
  width: calc(516 / 1700 * 100cqi);
}
#box .img_block.SSVV089 {
  position: relative;
  width: calc(516 / 1700 * 100cqi);
}
#box .img_block .img_box {
  position: relative;
  z-index: 1;
}
#box .img_block .img_box img {
  position: relative;
  opacity: 0;
  transform: rotate(-10deg) translateY(-10%);
  transition: opacity 0.8s cubic-bezier(0.33, 1, 0.68, 1), transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}
#box .img_block .img_box.SSVV089 img {
  transform: rotate(10deg) translateY(-10%);
}
#box .img_block .img_box img:last-of-type {
  position: absolute;
  top: 0;
  left: 0;
  transform: rotate(-10deg) translateY(0%);
  transition-delay: .25s;
  transition-duration: 0.6s;
  z-index: -1;
}
#box .img_block .img_box.SSVV089 img:last-of-type {
  transform: rotate(10deg) translateY(0%);
}
#box .img_block .img_box img.scrollin {
  opacity: 1;
  transform: rotate(0) translateY(0%) !important;
}
#box .img_block .serial {
  position: absolute;
  right: 10%;
  bottom: 5%;
  display: inline-block;
  padding-inline: 1.0em;
  color: #fff;
  font-size: clamp(0.8rem, 13 / var(--minimize-ratio)* 100vw, 1.3rem);
  font-weight: bold;
  letter-spacing: 0.1em;
  line-height: calc(40 / 13);
  background: url(../img/serial_bg_red.svg) center center no-repeat;
  background-size: contain;
  z-index: 1;
}
#box .img_block.SSVV089 .serial {
  background: url(../img/serial_bg_blue.svg) center center no-repeat;
  background-size: contain;
}
#box .txt_block {
  width: calc(630 / 1700 * 100cqi);
  padding-block: calc(70 / 1700 * 100cqi);
  background: #FFFDF2;
  border-radius: 30px;
  border: 1px solid var(--mf-red-color);
}
#box .txt_block .common_txt_ttl {
  margin-bottom: calc(60 / 1700 * 100cqi);
  font-size: clamp(4.0rem / var(--minimize-ratio),(40 / var(--base-width)* 100vw), 4.0rem);
}
#box .txt_block .common_txt_ttl .upper_txt {
  font-size: calc(25 / 40 * 1em);
  /*
  background-color: #fff;
  box-shadow: 0 0 0px 5px #fff;
  */
}
#box .txt_block .common_txt_ttl .ja {
  display: inline-block;
  /*
  background-color: #fff;
  box-shadow: 0 0 0px 5px #fff;
  */
}
#box .txt_block .txt {
  width: calc(410 / 1700 * 100cqi);
  margin-inline: auto;
  /*
  background: #fff;
  */
}
@media screen and (orientation:portrait) {
  body.tablet #box .txt_block .txt {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 991px) {
  #box .img_block .serial {
    right: 0%;
    transform: scale(0.75);
  }
  #box .box_inner {
    width: 98vw;
  }
}
@media screen and (max-width: 640px) {
  #box {
    position: relative;
    padding-block: min(50 / var(--base-width)* 100vw, 75px) min(100 / var(--base-width)* 100vw, 150px);
  }
  #box .box_inner {
    flex-direction: column;
    width: 100%;
  }
  #box .txt_block {
    order: 0;
    width: calc(345 / 375 * 100cqi);
    margin-bottom: min(40 / var(--base-width)* 100vw, 60px);
    padding-block: min(50 / var(--base-width)* 100vw, 75px);
  }
  #box .txt_block .common_txt_ttl {
    margin-bottom: min(40 / var(--base-width)* 100vw, 60px);
  }
  #box .txt_block .txt {
    width: calc(280 / 375 * 100cqi);
  }
  #box .img_block.SSVW237 {
    order: 1;
    width: calc(320 / 375 * 100cqi);
  }
  #box .img_block.SSVV089 {
    order: 2;
    margin-top: min(50 / var(--base-width)* 100vw, 75px);
    width: calc(321 / 375 * 100cqi);
    transform: none;
  }
  #box .img_block .serial {
    right: 0% !important;
    bottom: 5%;
    padding-inline: 1em;
    font-size: min(14 / var(--base-width)* 100vw, 1.6rem);
    line-height: calc(40 / 13);
  }
}

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

spec

--------------------------------------------------*/
#spec {
  position: relative;
  padding-block-start: clamp(100px / var(--minimize-ratio), (100 / var(--base-width) * 100vw), 100px);
  padding-block-end: clamp(185px / var(--minimize-ratio), (185 / var(--base-width) * 100vw), 185px);
  background: #FFFDF2;
}
#spec .copyright {
  position: absolute;
  width: 180px;
  right: min(30 / var(--base-width) * 100vw);
  bottom: min(100 / var(--base-width) * 100vw);
}
#spec .copyright img {
  width: 100%;
}
#spec .mr_formation {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  display: flex;
  gap: min((23 / var(--base-width) * 100vw), 23px);
  padding-inline: 2px;
}
#spec .mr_formation > div {
  width: calc(100% / 31);
}
#spec .mr_formation > div img {
  width: 100%;
}
#spec > .outer {
  position: relative;
  width: clamp(600px, (1102 / 1200 * 100vw), 1102px);
  max-width: 100%;
  margin-inline: auto;
  container-type: inline-size;
}
#spec .main_ttl {
  position: relative;
  margin-bottom: calc(120 / 1102 * 100cqi);
  text-align: center;
}
#spec .main_ttl .ttl_upper {
  position: relative;
  display: inline-block;
  margin-bottom: 1.6em;
  padding-inline: 0.75em;
  color: #fff;
  font-size: clamp(2.0rem / var(--minimize-ratio), (20 / 1200 * 100vw), 2.0rem);
  font-weight: 700;
  line-height: calc(36 / 17 * 1em);
  letter-spacing: 0.1em;
  background: url(../img/spec_title_bg.svg) center center no-repeat;
  background-size: contain;
  z-index: 1;
}
#spec .main_ttl .common_txt_ttl {
  --fadeInUp-anim-interval: 0.05s;
}
#spec .main_ttl .common_txt_ttl.common_txt_ttl {
  font-size: clamp(3.3rem / var(--minimize-ratio), (33 / 1200 * 100vw), 3.3rem);
}
#spec .main_ttl .common_txt_ttl .en {
  font-size: calc(35 / 33 * 1em);
}
#spec .main_ttl .common_txt_ttl .ja {
  display: inline-block;
  margin-top: 0.75em;
  font-weight: 900;
}
#spec .main_ttl .fadeInUp.tc.l2 > span:nth-child(3n + 1) {
  color: var(--mf-gray-color);
}
#spec .main_ttl .fadeInUp.tc.l2 > span:nth-child(3n + 2) {
  color: var(--mf-red-color);
}
#spec .main_ttl .fadeInUp.tc.l2 > span:nth-child(3n + 3) {
  color: var(--mf-blue-color);
}
#spec > .outer > .inner {
  position: relative;
}
#spec .lineup {
  position: relative;
}
#spec .lineup .outer {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  container-type: inline-size;
}
#spec .lineup .product {
  width: calc(471 / 1102 * 100cqi);
}
#spec .lineup .product .inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  width: 100%;
}
#spec .lineup .product.SSVW237 .inner {
  flex-direction: row-reverse;
}
#spec .lineup .product .inner .img_box {
  position: relative;
  width: calc(183 / 1102 * 100cqi);
  container-type: inline-size;
}
#spec .lineup .product .inner .img_box .serial {
  position: absolute;
  top: calc(-65 / 183 * 100cqi);
  left: calc(-160 / 183 * 100cqi);
  display: grid;
  place-content: center;
  width: calc(185 / 183 * 100cqi);
  aspect-ratio: 183 / 102;
  padding-bottom: 0.5em;
  color: var(--mf-red-color);
  font-size: calc(24 / 183 * 100cqi);
  font-family: var(--common-en-font-family);
  letter-spacing: 0.1em;
  background: url(../img/spec_fukidashi_red.svg) center center no-repeat;
  background-size: contain;
  transition-delay: 0.25s;
}
#spec .lineup .product .inner .img_box .serial .txt {
  display: inline-block;
  transform: rotate(-12deg);
}
#spec .lineup .product.SSVV089 .inner .img_box .serial {
  left: auto;
  right: calc(-160 / 183 * 100cqi);
}
#spec .lineup .product.SSVV089 .inner .img_box .serial .txt {
  transform: rotate(12deg);
}
#spec .lineup .product.SSVV089 .inner .img_box .serial {
  color: var(--mf-blue-color);
  background: url(../img/spec_fukidashi_blue.svg) center center no-repeat;
  background-size: contain;
}
#spec .lineup .product .inner .img_box .collection_name {
  position: relative;
  margin-top: 1.5em;
  font-size: calc(15 / 183 * 100cqi);
  font-weight: bold;
  text-align: center;
  letter-spacing: 0.1em;
}
#spec .lineup .product.SSVV089 .inner .img_box .collection_name {
  margin-top: 1.1em;
}
#spec .lineup .product .inner .img_box .collection_name .mr {
  position: absolute;
  width: calc(45 / 183 * 100cqi);
  left: calc(-57 / 183 * 100cqi);
  bottom: calc(-12 / 183 * 100cqi);
  aspect-ratio: 37 / 60;
}
#spec .lineup .product.SSVV089 .inner .img_box .collection_name .mr {
  right: calc(-57 / 183 * 100cqi);
  left: auto;
}
#spec .lineup .product .inner .img_box .collection_name .mr img {
  width: 100%;
}
#spec .lineup .product .inner .txt_box {
  position: relative;
  width: calc(180 / 1102 * 100cqi);
  white-space: nowrap;
  padding-bottom: 8%;
}
#spec .txt_box .serial {
  margin-bottom: calc(40 / 24 * 1em);
  font-size: calc(24 / 1102 * 100cqi);
  letter-spacing: 0.1em;
}
#spec .txt_box .price {
  margin-bottom: calc(30 / 23 * 1em);
  font-size: calc(23 / 1102 * 100cqi);
  font-weight: 500;
  letter-spacing: 0.1em;
}
#spec .txt_box .price .min {
  font-size: calc(15 / 23 * 100%);
}
#spec .txt_box .note {
  margin-bottom: calc(20 / 17 * 1em);
  font-size: calc(17 / 1102 * 100cqi);
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.1em;
}
#spec .txt_box .date {
  margin-bottom: calc(40 / 17 * 1em);
  font-size: calc(17 / 1102 * 100cqi);
  font-weight: 500;
  letter-spacing: 0.1em;
}
#spec .txt_box .btn a {
  position: relative;
  display: grid;
  place-content: center;
  height: max((46 / 1102 * 100cqi), 30px);
  padding-right: 3.6%;
  padding-bottom: 1.5%;
  color: #fff;
  font-size: calc(18 / 1102 * 100cqi);
  font-weight: 500;
  text-decoration: none;
  letter-spacing: 0.1em;
  background: var(--mf-red-color);
  border-radius: 8px;
  border: 1px solid var(--primary-color);
  overflow: hidden;
  transition: all .1s ease-out;
}
#spec .SSVV089 .txt_box .btn a {
  background: var(--mf-blue-color);
}
#spec .txt_box .btn.store a {
  margin-top: calc(15 / 1102 * 100cqi);
  padding-top: 0.3em;
  font-size: calc(15 / 1102 * 100cqi);
  font-weight: 500;
  letter-spacing: 0.1em;
}
#spec .txt_box .btn a::before {
  content: '';
  position: absolute;
  top: 50%;
  right: 6%;
  width: 3.6%;
  aspect-ratio: 4 / 8;
  background-image: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIGlkPSJf44Os44Kk44Ok44O8XzEiIGRhdGEtbmFtZT0i44Os44Kk44Ok44O8XzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmVyc2lvbj0iMS4xIiB2aWV3Qm94PSIwIDAgNSA5Ij4gIDxkZWZzPiA8c3R5bGU+IC5zdDAgeyBmaWxsOiAjZmZmOyB9IDwvc3R5bGU+IDwvZGVmcz4gPHBhdGggY2xhc3M9InN0MCIgZD0iTS41LDljLS4xLDAtLjMsMC0uNC0uMS0uMi0uMi0uMi0uNSwwLS43bDMuNi0zLjZMLjEuOUMwLC43LDAsLjMuMS4xUy43LDAsLjkuMWw0LDRjLjIuMi4yLjUsMCwuN0wuOSw4LjljMCwwLS4yLjEtLjQuMVoiLz48L3N2Zz4=");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  transform: translateY(-50%);
  transition: all .1s ease-out;
}
@media (hover: hover) {
  #spec .txt_box .btn a:hover {
    /*
    background: #fff;
    color: var(--mf-red-color);
    */
    background: var(--primary-red-color);
    transition: all .1s ease-out .1s;
  }
  #spec .SSVV089 .txt_box .btn a:hover {
    /*
    color: var(--mf-blue-color);
    */
    background: var(--primary-blue-color);
  }
  /*
  #spec .txt_box .btn a:hover::before {
    background-image: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIGlkPSJf44Os44Kk44Ok44O8XzEiIGRhdGEtbmFtZT0i44Os44Kk44Ok44O8XzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmVyc2lvbj0iMS4xIiB2aWV3Qm94PSIwIDAgNSA5Ij4gPGRlZnM+IDxzdHlsZT4gLnN0MCB7IGZpbGw6ICNFNjAwMUY7IH0gPC9zdHlsZT4gPC9kZWZzPiA8cGF0aCBjbGFzcz0ic3QwIiBkPSJNLjUsOWMtLjEsMC0uMywwLS40LS4xLS4yLS4yLS4yLS41LDAtLjdsMy42LTMuNkwuMS45QzAsLjcsMCwuMy4xLjFTLjcsMCwuOS4xbDQsNGMuMi4yLjIuNSwwLC43TC45LDguOWMwLDAtLjIuMS0uNC4xWiIvPjwvc3ZnPg==");
    transition: all .1s ease-out .1s;
  }
  #spec .SSVV089 .txt_box .btn a:hover::before {
    background-image: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIGlkPSJf44Os44Kk44Ok44O8XzEiIGRhdGEtbmFtZT0i44Os44Kk44Ok44O8XzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmVyc2lvbj0iMS4xIiB2aWV3Qm94PSIwIDAgNSA5Ij4gPGRlZnM+IDxzdHlsZT4gLnN0MCB7IGZpbGw6ICMwMDQ4OUI7IH0gPC9zdHlsZT4gPC9kZWZzPiA8cGF0aCBjbGFzcz0ic3QwIiBkPSJNLjUsOWMtLjEsMC0uMywwLS40LS4xLS4yLS4yLS4yLS41LDAtLjdsMy42LTMuNkwuMS45QzAsLjcsMCwuMy4xLjFTLjcsMCwuOS4xbDQsNGMuMi4yLjIuNSwwLC43TC45LDguOWMwLDAtLjIuMS0uNC4xWiIvPjwvc3ZnPg==");
    transition: all .1s ease-out .1s;
  }
  */
}
#spec > .bg {
  position: absolute;
  left: 0;
  bottom: max((70 / var(--base-width) * -100vw), -70px);
  width: 100%;
  aspect-ratio: 3840 / 1024;
}
#spec > .bg .img {
  width: 100%;
  height: 100%;
}
#spec > .bg .img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
}
@media screen and (orientation:portrait) {
  body.tablet #spec .txt_box .price {
    font-size: 1.5rem;
  }
  body.tablet #spec .txt_box .note,
  body.tablet #spec .txt_box .date {
    font-size: 1.1rem;
  } 
}
@media screen and (max-width: 991px) {
  #spec .copyright {
    width: 140px;
  }
}
@media screen and (max-width: 640px) {
  #spec {
    padding-block: min((70 / var(--base-width) * 100vw), 105px) min((140 / var(--base-width) * 100vw), 210px);
  }
  #spec .copyright {
    width: calc(120 / var(--base-width) * 100vw);
    right: 15px;
    bottom: calc(60 / var(--base-width) * 100vw);
  }
  #spec .mr_formation {
    gap: min((7 / var(--base-width)* 100vw), 10px);
    padding-inline: 5px;
  }
  #spec .mr_formation > div {
    width: calc(100% / 12);
  }
  #spec .mr_formation > div:nth-child(n + 13) {
    display: none;
  }
  #spec > .outer {
    width: 100%;
    container-type: inline-size;
  }
  #spec .main_ttl {
    margin-bottom: min((70 / var(--base-width) * 100vw), 105px);
  }
  #spec .main_ttl .common_txt_ttl.common_txt_ttl {
    font-size: min(20 / var(--base-width)* 100vw, 3.0rem) !important;
  }
  #spec .main_ttl .ttl_upper {
    margin-bottom: 1.5em;
    font-size: min(15 / var(--base-width)* 100vw, 2.2rem);
  }
  #spec .main_ttl .common_txt_ttl .ja {
    letter-spacing: 0.15em;
  }
  #spec .lineup {
    width: min((284 / var(--base-width) * 100vw), 426px);
    margin-inline: auto;
    padding-left: 3%;
  }
  #spec .lineup .outer {
    flex-direction: column;
    gap: min((70 / var(--base-width) * 100vw), 105px);
  }
  #spec .lineup .product {
    width: 100%;
  }
  #spec .lineup .product .inner {
    flex-direction: row !important;
    justify-content: space-between;
  }
  #spec .lineup .product .inner .img_box {
    width: calc(130 / 284 * 100%) !important;
    margin: 0 !important;
    padding-bottom: 1.5%;
  }
  #spec .lineup .product .inner .img_box .serial {
    top: calc(-25 / 130 * 100cqi);
    left: auto !important;
    right: calc(-140 / 130 * 100cqi) !important;
    width: calc(140 / 130 * 100cqi);
    font-size: min((18 / var(--base-width) * 100vw), 2.7rem);
  }
  #spec .lineup .product.SSVW237 .inner .img_box .serial {
    background: url(../img/spec_fukidashi_red2.svg) center center no-repeat;
    background-size: contain;
  }
  #spec .lineup .product .inner .img_box .serial .txt {
    transform: rotate(12deg) !important;
  }
  #spec .lineup .product .inner .img_box .collection_name {
    margin-top: 1.5em !important;
    font-size: min(11 / var(--base-width)* 100vw, 1.6rem);
  }
  #spec .lineup .product .inner .img_box .collection_name .mr {
    width: calc(33 / 130 * 100cqi);
    left: calc(-37 / 130 * 100cqi) !important;
    right: auto !important;
    bottom: calc(-5 / 130 * 100cqi);
  }
  #spec .lineup .product .inner .txt_box {
    position: relative;
    width: calc(128 / 284 * 100%);
    font-size: min(13 / var(--base-width)* 100vw, 1.8rem);
    padding-bottom: 0;
  }
  #spec .txt_box .price {
    margin-bottom: 0.6em;
    font-size: min((20 / var(--base-width) * 100vw), 3.0rem);
  }
  #spec .txt_box .price .min {
    font-size: calc(12 / 20 * 100%);
  }
  #spec .txt_box .note {
    margin-bottom: 1.0em;
    font-size: min(13 / var(--base-width)* 100vw, 1.8rem);
  }
  #spec .txt_box .date {
    margin-bottom: 2em;
    font-size: min(13 / var(--base-width)* 100vw, 1.8rem);
  }
  #spec .txt_box .btn a {
    height: min((34 / var(--base-width) * 100vw), 51px);
    font-size: min((12.8 / var(--base-width) * 100vw), 19.2px);
    border-radius: 5px;
  }
  #spec .txt_box .btn.store {
    margin-top: 10px;
  }
  #spec .txt_box .btn.store a {
    margin-top: 0;
    padding-top: 0.15em;
    font-size: min((11 / var(--base-width) * 100vw), 1.6rem);
  }
  #spec .txt_box .btn a::before {
    width: 3.2%;
  }
  #spec > .bg {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    aspect-ratio: 375 / 220;
    z-index: -1;
  }
  #spec .butterfly_wrap.w_rd {
    top: auto;
    left: auto;
    bottom: calc(230 / 325 * 100cqi);
    right: calc(0 / 375 * 100cqi);
    transform: translate3d(200%, 100%, 0) rotate(-45deg);
  }
  #spec .butterfly_wrap.w_yl {
    top: auto;
    bottom: calc(-50 / 375 * 100cqi);
    left: calc(0 / 375 * 100cqi);
    right: auto;
    transform: translate3d(-250%, 200%, 0) rotate(90deg);
  }
  #spec .butterfly_rd {
    width: calc(30 / 375 * 100cqi);
    transform: rotate(-30deg) !important; 
  }
  #spec .butterfly_yl {
    width: calc(40 / 375 * 100cqi);
    transform: rotate(35deg) !important; 
  }
}

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

saveTheChildren

--------------------------------------------------*/
#saveTheChildren {
  position: relative;
  padding-block: clamp(100px / var(--minimize-ratio), (100 / var(--base-width) * 100vw), 100px);
}
#saveTheChildren .saveTheChildren_outer {
  text-align: center;
}
#saveTheChildren .title_block {
  position: relative;
  display: inline-block;
  margin-bottom: clamp(80px / var(--minimize-ratio), (80 / var(--base-width) * 100vw), 80px);
}
#saveTheChildren .title_block .main_ttl {
  position: relative;
  margin-bottom: 1em;
  color: #fff;
  font-size: clamp(1.6rem, (24 / var(--base-width) * 100vw), 2.4rem);
  font-weight: 600;
  text-align: center;
  line-height: calc(40 / 24 * 1em);
  letter-spacing: 0.1em;
  background: #C1383E;
  container-type: inline-size;
}
#saveTheChildren .title_block .main_ttl .lukia_logo {
  position: absolute;
  top: 0;
  left: calc(-263 / 651 * 100cqi);
  width: calc(124 / 651 * 100cqi);
  transform: translateX(-100%);
}
#saveTheChildren .title_block .main_ttl .lukia_logo img {
  width: 100%;
}
#saveTheChildren .title_block .lead_txt {
  font-size: clamp(1.3rem, (16 / var(--base-width) * 100vw), 1.6rem);
  font-weight: 500;
  text-align: center;
  line-height: calc(32 / 16 * 1em);
  letter-spacing: 0.1em;
}
#saveTheChildren .saveTheChildren_inner {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: clamp(1620px / var(--minimize-ratio), (1620 / var(--base-width) * 100vw), 1620px);
  margin-inline: auto;
  padding-block: clamp(80px / var(--minimize-ratio), (80 / var(--base-width) * 100vw), 80px);
  padding-inline: clamp(100px / var(--minimize-ratio), (100 / var(--base-width) * 100vw), 100px);
  background: #f8f8f8;
  border-radius: 30px;
  z-index: 1;
}
#saveTheChildren .about_box {
  width: calc(642 / 1420 * 100%);
}
#saveTheChildren .about_box .name {
  margin-bottom: 1.25em;
  font-size: clamp(1.4rem, (18 / var(--base-width) * 100vw), 1.8rem);
  font-weight: bold;
  letter-spacing: 0.1em;
  text-align: left;
  white-space: nowrap;
}
#saveTheChildren .about_box .txt {
  font-size: clamp(1.2rem, (14 / var(--base-width) * 100vw), 1.4rem);
  font-weight: 500;
  line-height: calc(34 / 14);
  letter-spacing: 0.1em;
  text-align: left;
}
#saveTheChildren .bnr_box {
  display: flex;
  gap: calc(62 / 698 * 100%);
  width: calc(698 / 1420 * 100%);
}
@media (max-width: 1440px) {
  #saveTheChildren .title_block .main_ttl .lukia_logo {
    left: -10%;
    width: calc(100 / 651 * 100cqi);
    transform: translateX(-150%);
  }
}
@media (max-width: 991px) {
  #saveTheChildren .title_block .main_ttl .lukia_logo {
    left: 0;
    width: calc(80 / 651 * 100cqi);
    transform: translateX(-150%);
  }
}
@media (max-width: 767px) {
  #saveTheChildren {
    --base-width: 660;
  }
  #saveTheChildren .sp_inline {
    display: inline;
  }
}
@media (max-width: 640px) {
  #saveTheChildren {
    --base-width: 375;
  }
}
@media (max-width: 767px) {
  #saveTheChildren {
    padding-block: min((65 / var(--base-width) * 100vw), 90px) min((50 / var(--base-width) * 100vw), 75px);
  }
  #saveTheChildren .title_block {
    display: block;
    margin-bottom: min((40 / var(--base-width) * 100vw), 60px);
  }
  #saveTheChildren .title_block .main_ttl {
    width: 17em;
    margin-bottom: 2.0em;
    margin-inline: auto;
    margin-top: min((110 / var(--base-width) * 100vw), 165px);
    font-size: min((17 / var(--base-width) * 100vw), 2.4rem);
    line-height: calc(32 / 17 * 1em);
  }
  #saveTheChildren .title_block .main_ttl .lukia_logo {
    position: absolute;
    top: max((-110 / var(--base-width) * 100vw), -165px);
    left: 50%;
    width: min((60 / var(--base-width) * 100vw), 90px);
    transform: translateX(-50%);
  }
  #saveTheChildren .title_block .lead_txt {
    font-size: min((13 / var(--base-width) * 100vw), 1.9rem);
    line-height: calc(30 / 13);
  }
  #saveTheChildren .saveTheChildren_inner {
    flex-direction: column;
    gap: min((40 / var(--base-width) * 100vw), 60px);
    width: min((325 / var(--base-width) * 100vw), 488px);
    padding-block: min((50 / var(--base-width) * 100vw), 75px);
    padding-inline: min((32 / var(--base-width) * 100vw), 48px);
    border-radius: 20px;
  }
  #saveTheChildren .about_box {
    width: 100%;
  }
  #saveTheChildren .about_box .name {
    margin-bottom: 2.0em;
    font-size: min((15 / var(--base-width) * 100vw), 2.2rem);
    line-height: calc(28 / 15);
    text-align: center;
  }
  #saveTheChildren .about_box .txt {
    font-size: min((13 / var(--base-width) * 100vw), 1.8rem);
    font-weight: 500;
    line-height: calc(30 / 13);
  }
  #saveTheChildren .bnr_box {
    width: 100%;
    flex-direction: column;
    gap: min((20 / var(--base-width) * 100vw), 30px);
  }
}

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

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

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

 bg, mr anim 

--------------------------------------------------*/
@keyframes shake_blue {
  0% {
    translate: 0 0;
  }
  8.333% {
    translate: 0 -10px;
  }
  10% {
    translate: 0 0;
  }
  11.667% {
    translate: 0 -10px;
  }
  13.333% {
    translate: 0 0;
  }
  33.333% {
    translate: 0 0;
  }
  100% {
    translate: 0 0;
  }
}
@keyframes shake_orange {
  0% {
    translate: 0 0;
  }
  4.34% {
    translate: 0 10px;
  }
  6.509% {
    translate: 0 0;
  }
  8.679% {
    translate: 0 10px;
  }
  10.849% {
    translate: 0 0;
  }
  43.396% {
    translate: 0 0;
  }
  100% {
    translate: 0 0;
  }
}
@keyframes shake_green {
  0% {
  translate: 0 0;
  rotate: 0;
  }
  23.684% {
    translate: 0 -10px;
  }
  26.053% {
    translate: 0 0;
  }
  28.421% {
    translate: 0 -10px;
  }
  30.789% {
    translate: 0 0;
    rotate: 0;
  }
  47.368% {
    translate: 0 0;
    rotate: 0;
  }
  100% {
    translate: 0 0;
    rotate: 0;
  }
}
@keyframes shake_yellow {
  0% {
    translate: 0 0;
  }
  5.714% {
    translate: 0 10px;
  }
  7.143% {
    translate: 0 0;
  }
  8.571% {
    translate: 0 10px;
  }
  10% {
    translate: 0 0;
  }
  28.571% {
    translate: 0 0;
  }
  100% {
    translate: 0 0;
  }
}
@keyframes shake_red {
  0% {
    translate: 0 0;
  }
  5.714% {
    translate: 0 10px;
  }
  7.143% {
    translate: 0 0;
  }
  8.571% {
    translate: 0 10px;
  }
  10% {
    translate: 0 0;
  }
  28.571% {
    translate: 0 0;
  }
  100% {
    translate: 0 0;
  }
}
.mr_block .img img{
  animation: shake_blue 6s cubic-bezier(0, 1, 0, 1) 2 forwards;
}
.mr_obj.orange .img img{
  animation: shake_orange 5.3s cubic-bezier(0, 1, 0, 1) 2 forwards;
}
.mr_obj.yellow .img img{
  animation: shake_yellow 5.6s cubic-bezier(0, 1, 0, 1) 2 forwards;
}
.mr_obj.red .img img{
  animation: shake_red 5.6s cubic-bezier(0, 1, 0, 1) 2 forwards;
}
.mr_obj.green .img img{
  animation: shake_green 3.8s cubic-bezier(0, 1, 0, 1) 2 forwards;
}

@keyframes fukidashi01 {
  0% {
    translate: 10px 20px;
    rotate: -10deg;
    opacity: 0;
  }
  100% {
    translate: 0 0;
    rotate: 0deg;
    opacity: 1;
  }
}
.mr_block .fukidashi01 {
  translate: 0 20px;
  opacity: 0;
  rotate: -10deg;
  animation: fukidashi01 .8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes fukidashi02 {
  0% {
    translate: -10px 20px;
    rotate: 10deg;
    opacity: 0;
  }
  100% {
    translate: 0 0;
    rotate: 0deg;
    opacity: 1;
  }
}
.mr_block .fukidashi02 {
  translate: 0 20px;
  opacity: 0;
  rotate: 10deg;
  animation: fukidashi02 .8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

/*
@keyframes shake_watch1 {
  0% {
    translate: 0 0;
    rotate: 0;
  }
  6.618% {
    translate: 2px 0;
    rotate: 3deg;
  }
  7.941% {
    translate: 0 0;
    rotate: -3deg;
  }
  9.265% {
    translate: 0 2px;
    rotate: 3deg;
  }
  10.588% {
    translate: 0 0;
    rotate: 0;
  }
  26.471% {
    translate: 0 0;
    rotate: 0;
  }
  100% {
    translate: 0 0;
    rotate: 0;
  }
}
@keyframes shake_watch2 {
  0% {
    translate: 0 0;
    rotate: 0;
  }
  6.618% {
    translate: 2px 0;
    rotate: -3deg;
  }
  7.941% {
    translate: 0 0;
    rotate: 3deg;
  }
  9.265% {
    translate: 0 2px;
    rotate: -3deg;
  }
  10.588% {
    translate: 0 0;
    rotate: 0;
  }
  26.471% {
    translate: 0 0;
    rotate: 0;
  }
  100% {
    translate: 0 0;
    rotate: 0;
  }
}
.watch_block .img1 img{
  animation: shake_watch1 cubic-bezier(0, 1, 0, 1) infinite 6.8s forwards;
}
.watch_block .img2 img{
  animation: shake_watch2 cubic-bezier(0, 1, 0, 1) infinite 6.0s forwards;
}
*/

@keyframes swing_mr_top {
  0% {  translate: 0 0;}
  2% {  translate: 2px 0; rotate: -3deg;}
  4% {  translate: 0 0; rotate: 3deg}
  6% {  translate: 0 2px; rotate: -3deg;}
  8% {  translate: 0 0; }
  100% {  translate: 0 0; }
}
@keyframes jump_mr_top {
  0% {  translate: 0 0;}
  2% {  translate: 0 -10px; }
  4% {  translate: 0 0;  }
  6% {  translate: 0 -10px; }
  8% {  translate: 0 0; }
  100% {  translate: 0 0; }
}
@keyframes jump_mr {
  0% {  translate: 0 0;}
  10% {  translate: 0 -5px; }
  15% {  translate: 0 0;  }
  20% {  translate: 0 -5px; }
  25% {  translate: 0 0; }
  100% {  translate: 0 0; }
}

.mr_formation.top div:nth-of-type(1){
  animation: jump_mr_top cubic-bezier(0, 1, 0, 1) infinite 8.0s forwards 0s;
}
.mr_formation.top div:nth-of-type(2){
  animation: swing_mr_top cubic-bezier(0, 1, 0, 1) infinite 8.0s forwards 1.5s;
}
.mr_formation.top div:nth-of-type(3){
  animation: swing_mr_top cubic-bezier(0, 1, 0, 1) infinite 8.0s forwards 3.0s;
}
.mr_formation.top div:nth-of-type(4){
  animation: jump_mr_top cubic-bezier(0, 1, 0, 1) infinite 8.0s forwards 4.5s;
}
.mr_formation.top div:nth-of-type(5){
  animation: jump_mr_top cubic-bezier(0, 1, 0, 1) infinite 8.0s forwards 6.0s;
}

/*
.mr_formation div:nth-of-type(5n+1){
  animation: jump_mr cubic-bezier(0, 1, 0, 1) infinite 1.8s forwards 0s;
}
.mr_formation div:nth-of-type(5n+2){
  animation: jump_mr cubic-bezier(0, 1, 0, 1) infinite 1.8s forwards .2s;
}
.mr_formation div:nth-of-type(5n+3){
  animation: jump_mr cubic-bezier(0, 1, 0, 1) infinite 1.8s forwards .4s;
}
.mr_formation div:nth-of-type(5n+4){
  animation: jump_mr cubic-bezier(0, 1, 0, 1) infinite 1.8s forwards .6s;
}
.mr_formation div:nth-of-type(5n+5){
  animation: jump_mr cubic-bezier(0, 1, 0, 1) infinite 1.8s forwards .8s;
}
*/

@keyframes m1 {
  0% {  rotate: 8deg;}
  50% {  rotate: -12deg; }
  100% {  rotate: 8deg; }
}
@keyframes m2 {
  0% {  rotate: -8deg;}
  50% {  rotate: 12deg; }
  100% {  rotate: -8deg; }
}
@keyframes m3 {
  0% {  rotate: 24deg;}
  25% {  rotate: -12deg; }
  50% {  rotate: 24deg; }
  100% {  rotate: 12deg; }
}
@keyframes m4 {
  0% {  rotate: -24deg;}
  25% {  rotate: 12deg; }
  50% {  rotate: -24deg; }
  100% {  rotate: -12deg; }
}
.obj_bg {
	opacity: 0;
	transition:.3s opacity ease-out;
}
.obj_bg.set {
	opacity: 1;
}
.obj_bg img {
  position: absolute;
  width: 1.36vw;
  height: auto;
}
.obj_bg img.m1 {
  animation: m1 cubic-bezier(0, 1, 0, 1) infinite 2s forwards;
}
.obj_bg img.m2 {
  animation: m2 cubic-bezier(0, 1, 0, 1) infinite 1s forwards;
}
.obj_bg img.m3 {
  animation: m3 cubic-bezier(0, 1, 0, 1) infinite 4s forwards;
}
.obj_bg img.m4 {
  animation: m4 cubic-bezier(0, 1, 0, 1) infinite 3.2s forwards;
}
@media screen and (max-width: 640px) {
  .obj_bg img {
    width: 5vw;
    height: auto;
  }
}

@keyframes swing_mr_spec1 {
  0% {  translate: 0 0;}
  5% {  translate: 2px 0; rotate: -3deg;}
  10% {  translate: 0 0; rotate: 3deg}
  15% {  translate: 0 2px; rotate: -3deg;}
  20% {  translate: 0 0; }
  100% {  translate: 0 0; }
}
@keyframes swing_mr_spec2 {
  0% {  translate: 0 0;}
  5% {  translate: 2px 0; rotate: 3deg;}
  10% {  translate: 0 0; rotate: -3deg}
  15% {  translate: 0 2px; rotate: 3deg;}
  20% {  translate: 0 0; }
  100% {  translate: 0 0; }
}
#spec .lineup .product.SSVW237 .collection_name .mr {
  animation: jump_mr cubic-bezier(0, 1, 0, 1) infinite 3s forwards;
}
#spec .lineup .product.SSVV089 .collection_name .mr {
  animation: jump_mr cubic-bezier(0, 1, 0, 1) infinite 3s forwards;
  animation-delay: 1s;
}


/* 開始タイミング補足 */
.mr_block .img img{
  animation-delay: calc(var(--opening-time) * 1s + 3s);
}
.mr_obj.orange .img img{
  animation-delay: calc(var(--opening-time) * 1s + 2.3s);
}
.mr_obj.yellow .img img{
  animation-delay: calc(var(--opening-time) * 1s + 2.0s);
}
.mr_obj.red .img img{
  animation-delay: calc(var(--opening-time) * 1s + 2.6s);
}
.mr_obj.green .img img{
  animation-delay: calc(var(--opening-time) * 1s + 3s);
}
.mr_block .fukidashi01 {
  animation-delay: calc(var(--opening-time) * 1.8s + 1s);
}
.mr_block .fukidashi02 {
  animation-delay: calc(var(--opening-time) * 1.8s + 1.5s);
}
.watch_block .img1 img{
  animation-delay: calc(var(--opening-time) * 1s + 4.8s);
}
.watch_block .img2 img{
  animation-delay: calc(var(--opening-time) * 1s + 5.3s);
}
