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

 reset

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

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

 CSS Custom Properties 

----------------------------------------------------------------------------*/
:root {
  --primary-color: #BD2033;
  --secondary-color: #E24754;
  --primary-txt-color: #70273D;
  --primary-bg-color: #F1ECE3;
  --white-color: #fff;
  --black-color: #000;
  --gray-color: #BAB6AF;
  --base-width: 1920;
  --responsive-width: 1480;
  --content-padding-top: 80px;
  --opening-time: 4s;
  --scrollbar-size: 0px;
  --min-scale-ratio: 0.75;
  --max-scale-ratio: 1;
  --caseback-img-margin-top: -285px;
}
@media screen and (max-width: 640px) {
  :root {
    --base-width: 375;
    --content-padding-top: 40px;
    --max-scale-ratio: 1.25;
  }
}

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

 base

----------------------------------------------------------------------------*/
html {
  font-size: 62.5%;
  -webkit-text-size-adjust: 100%;
}
body {
  position: relative;
  padding-top: var(--content-padding-top);
  color: var(--primary-txt-color);
  font-family: "Sawarabi Gothic", sans-serif;
  font-weight: 400;
  line-height: 1;
  font-size: 1.6rem;
  background: var(--white-color);
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
  overflow: hidden;
  /*
  overflow: inherit;
  */
}
body.opening_fin {
  overflow: inherit;
  overflow-x: clip;
}
.sp,
.sp_inline {
  display: none !important;
}
.pc {

}
.pc_inline {
  display: inline !important;
}
@media screen and (max-width: 640px) {
  .sp {
    display: block !important;
  }
  .sp_inline {
    display: inline !important;
  }
  .pc,
  .pc_inline {
    display: none !important;
  }
}
.txt_komidashi {
  font-size: clamp(2.2rem * var(--min-scale-ratio), 22 / var(--responsive-width) * 100vw, 2.2rem);
  font-weight: 400;
  line-height: 200%;
  letter-spacing: 0.10em;
}
.common_txt2 {
  font-size: clamp(1.8rem * var(--min-scale-ratio), 18 / var(--responsive-width) * 100vw, 1.8rem);
  font-weight: 400;
  line-height: 180%;
  letter-spacing: 0.05em;
  text-align: justify;
}
.common_txt2 + .common_txt2 {
  margin-top: 1.8em;
}
.common_txt_small2 {
  font-size: clamp(1.6rem * var(--min-scale-ratio), 16 / var(--responsive-width) * 100vw, 1.6rem);
  font-weight: 400;
  line-height: 180%;
  letter-spacing: 0.03em;
  text-align: justify;
}
.common_txt_small2 + .common_txt_small2 {
  margin-top: 1.8em;
}
p.indent {
  padding-left: 1em;
  text-indent: -1em;
}
p.indent > .indent_icon {
  display: inline-block;
  width: 1em;
  text-indent: 0;
}
@media screen and (max-width: 640px) {
  .txt_komidashi {
    font-size: min(13 / var(--base-width) * 100vw, 1.3rem * var(--max-scale-ratio));
    line-height: 180%;
    letter-spacing: 0.10em;
  }
  .common_txt2 {
    font-size: min(13 / var(--base-width) * 100vw, 1.3rem * var(--max-scale-ratio));
    line-height: 180%;
    letter-spacing: 0.10em;
  }
  .common_txt_small2 {
    font-size: min(12 / var(--base-width) * 100vw, 1.2rem * var(--max-scale-ratio));
    line-height: 180%;
    letter-spacing: 0.1em;
  }
}
#onetrust-consent-sdk #onetrust-banner-sdk {
  font-family: 'Noto Sans JP', sans-serif;
}

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

 fadein

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

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

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

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

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

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

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

.img_anim {
  overflow: hidden;
}
.img_anim > img {
  opacity : 0;
  filter: blur(5px);
  transform: scale(1.075) rotate(0.0001deg);
  transition : opacity 1.0s cubic-bezier(0.33, 1, 0.68, 1), transform 1.0s cubic-bezier(0.33, 1, 0.68, 1), filter 2.0s cubic-bezier(0.33, 1, 0.68, 1);
}
.img_anim.scrollin > img {
  opacity : 1;
  transform: scale(1) rotate(0.0001deg);
  filter: blur(0);
}
@keyframes img_anim {
  0% {
      opacity: 0;
      transform: scale(1.075) rotate(0.0001deg);
      filter: blur(5px);
  }
  100% {
      opacity: 1;
      transform: scale(1) rotate(0.0001deg);
      filter: blur(0);
  }
}

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

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

gide line

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

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

header

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

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

opening

--------------------------------------------------*/
#opening {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100lvh;
  padding-inline-end: var(--scrollbar-size);
  z-index: 999;
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  transition: clip-path 1.0s cubic-bezier(.8,0,.15,1);
}
#opening.fin {
  padding-inline-end: 0;
  pointer-events: none;
  /*
  clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
  */
  clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
}
#opening.hidden {
  display: none;
}
#opening::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--primary-color);
  /*
  transform: scale(1, 1);
  transform-origin: left top;
  transition: transform 1.0s cubic-bezier(.8,0,.15,1);
  */
}
#opening.fin::before {
  /*
  transform: scale(1, 0);
  */
}
#opening .outer {
  position: relative;
  width: 100%;
  height: 100%;
  /*
  transform: translateY(0);
  transform-origin: left top;
  transition: transform 1.0s cubic-bezier(.8,0,.15,1);
  */
}
#opening.fin .outer {
  /*
  transform: translateY(-100%);
  */
}
#opening .outer .inner {
  position: relative;
  width: 100%;
  height: 100dvh;
}

/* clover-stage start */

.clover-stage {
  width: 100%;
  height: 100vh;
}

.clover-svg {
  width: 100%;
  height: 100%;
  display: block;
  position: relative;
}

.heart-g-container {
  transform: translate(896px, 390px) scale(1.0);
}
@media screen and (max-width: 991px) {
  .heart-g-container {
    transform: translate(856px, 340px) scale(1.6);
  }
}
@media screen and (max-width: 640px) {
  .heart-g-container {
    transform: translate(810px, 310px) scale(2.5);
  }
}
.heart-g {
  transform-box: fill-box;
  transform-origin: center;
}

.heart-anim-left-top,
.heart-anim-right-bottom,
.heart-anim-right-top,
.heart-anim-left-bottom {
  opacity: 0;
}

.heart-anim-left-top    { animation: kf-left-top    3.8s linear forwards; }
.heart-anim-right-bottom { animation: kf-right-bottom 3.8s linear forwards; }
.heart-anim-right-top   { animation: kf-right-top   3.8s linear forwards; }
.heart-anim-left-bottom  { animation: kf-left-bottom  3.8s linear forwards; }

.heart-anim-left-top,
.heart-anim-right-bottom,
.heart-anim-right-top,
.heart-anim-left-bottom {
  animation-delay: 1.0s;
}

@keyframes kf-left-top {
  0% {
    opacity: 0;
    animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
  }
  24% {
    transform: translate(0%, 0%) rotate(0deg);
    opacity: 1;
    animation-timing-function: linear;
  }
  37% {
    transform: translate(0%, 0%) rotate(0deg);
    opacity: 1;
    animation-timing-function: linear;
  }
  49% {
    transform: translate(-88%, -132%) rotate(90deg);
    opacity: 0.88;
  }
  59% {
    transform: translate(-70%, -352%) rotate(0deg);
    opacity: 0.65;
  }
  67% {
    transform: translate(-120%, -616%) rotate(0deg);
    opacity: 0.35;
  }
  74% {
    transform: translate(-249%, -880%) rotate(75deg);
    opacity: 0;
    animation-timing-function: step-start;
  }
  75% {
    transform: translate(-1269%, -600%) rotate(180deg);
    opacity: 0;
  }
  100% {
    transform: translate(-1269%, -600%) rotate(80deg);
    opacity: 0;
  }
}

@keyframes kf-right-bottom {
  0% {
    opacity: 0;
    animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
  }
  24% {
    transform: translate(0%, 0%) rotate(0deg);
    opacity: 1;
    animation-timing-function: linear;
  }
  37% {
    transform: translate(0%, 0%) rotate(0deg);
    opacity: 1;
    animation-timing-function: linear;
  }
  49% {
    transform: translate(52%, -132%) rotate(24deg);
    opacity: 0.88;
  }
  59% {
    transform: translate(95%, -352%) rotate(132deg);
    opacity: 0.65;
  }
  67% {
    transform: translate(65%, -616%) rotate(175deg);
    opacity: 0.35;
  }
  74% {
    transform: translate(265%, -880%) rotate(215deg);
    opacity: 0;
    animation-timing-function: step-start;
  }
  75% {
    transform: translate(-1238%, 600%) rotate(-155deg);
    opacity: 0;
  }
  100% {
    transform: translate(-1238%, 600%) rotate(-155deg);
    opacity: 0;
  }
}

@keyframes kf-right-top {
  0% {
    opacity: 0;
    animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
  }
  24% {
    transform: translate(0%, 0%) rotate(0deg);
    opacity: 1;
    animation-timing-function: linear;
  }
  37% {
    transform: translate(0%, 0%) rotate(0deg);
    opacity: 1;
    animation-timing-function: linear;
  }
  49% {
    transform: translate(50%, -116%) rotate(12deg);
    opacity: 0.88;
  }
  59% {
    transform: translate(-53%, -310%) rotate(66deg);
    opacity: 0.65;
  }
  67% {
    transform: translate(-57%, -543%) rotate(12deg);
    opacity: 0.35;
  }
  74% {
    transform: translate(27%, -776%) rotate(-45deg);
    opacity: 0;
    animation-timing-function: step-start;
  }
  75% {
    transform: translate(-407%, 533%) rotate(115deg);
    opacity: 0;
  }
  100% {
    transform: translate(-1407%, 533%) rotate(115deg);
    opacity: 0;
  }
}

@keyframes kf-left-bottom {
  0% {
    opacity: 0;
    animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
  }
  24% {
    transform: translate(0%, 0%) rotate(0deg);
    opacity: 1;
    animation-timing-function: linear;
  }
  37% {
    transform: translate(0%, 0%) rotate(0deg);
    opacity: 1;
    animation-timing-function: linear;
  }
  49% {
    transform: translate(-59%, -116%) rotate(-12deg);
    opacity: 0.88;
  }
  59% {
    transform: translate(0%, -310%) rotate(-66deg);
    opacity: 0.65;
  }
  67% {
    transform: translate(-33%, -543%) rotate(-88deg);
    opacity: 0.35;
  }
  74% {
    transform: translate(-57%, -776%) rotate(-135deg);
    opacity: 0;
    animation-timing-function: step-start;
  }
  75% {
    transform: translate(-57%, -599%) rotate(-68deg);
    opacity: 0;
  }
  100% {
    transform: translate(-57%, -599%) rotate(-68deg);
    opacity: 0;
  }
}

/* clover-stage end */

#opening .opening_cont {
  position: absolute;
  top: 50%;
  left: calc(50% + var(--scrollbar-size));
  transform: translateX(-50%) translateY(-50%);
}
#opening .opening_cont.cont1 {
  width: clamp(110px * var(--min-scale-ratio), 110 / var(--base-width) * 100vw, 110px);
}
#opening .opening_cont.cont2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(40px * var(--min-scale-ratio), 40 / var(--base-width) * 100vw, 40px);
  width: clamp(556px * var(--min-scale-ratio), 556 / var(--base-width) * 100vw, 556px);
}
#opening .opening_cont.cont2 .hc {
  width: calc(308 / 556 * 100%);
}
#opening .opening_cont.cont2 .wm {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
#opening .opening_cont.cont2 .wm > img {
  width: calc(520 / 556 * 100%);
}
#opening .opening_cont.cont2 .wm .obj {  /* TITLE のハートオブジェクト */
  width: calc(23 / 556 * 100%);
  background: var(--white-color);
  animation: 3.8s objHeart linear 0s forwards;
  animation-delay: 5.50s;
}
#opening .opening_cont.cont2 .le {
  width: calc(318 / 556 * 100%);
}
#opening .opening_cont.cont1 { /* LUKIA logo */
  opacity: 0;
  animation: 4.5s openingCont1Img cubic-bezier(.8,0,.15,1) 0s forwards;
  animation-delay: 3.5s;
}
#opening .opening_cont.cont2 { /* TITLE */
  opacity: 0;
  animation: 4.5s openingCont2Img cubic-bezier(.8,0,.15,1) 0s forwards;
  animation-delay: 6.25s;
}
@keyframes openingCont1Img {
  0% {
    opacity: 0;
  }
  5% {
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  45% {
    opacity: 1;
  }
  60% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes openingCont2Img {
  0% {
    opacity: 0;
  }
  15% {
    opacity: 1;
  } 
  100% {
    opacity: 1;
  }

}
@keyframes objHeart {
  0% {
    transform: translate(0%, 0%) rotate(0deg);
    opacity: 1;
    animation-timing-function: linear;
  }
  37% {
    transform: translate(0%, 0%) rotate(0deg);
    opacity: 1;
    animation-timing-function: linear;
  }
  49% {
    transform: translate(50%, -116%) rotate(12deg);
    opacity: 0.88;
  }
  59% {
    transform: translate(-53%, -310%) rotate(66deg);
    opacity: 0.65;
  }
  67% {
    transform: translate(-57%, -543%) rotate(12deg);
    opacity: 0.35;
  }
  74% {
    transform: translate(27%, -776%) rotate(-45deg);
    opacity: 0;
    animation-timing-function: step-start;
  }
  75% {
    transform: translate(-407%, 533%) rotate(115deg);
    opacity: 0;
  }
  100% {
    transform: translate(-1407%, 533%) rotate(115deg);
    opacity: 0;
  }
}
@media screen and (max-width: 640px) {
  #opening .opening_cont.cont1 {
    width: min(60 / var(--base-width) * 100vw, 60px * var(--max-scale-ratio));
  }
  #opening .opening_cont.cont2 {
    gap: min(20 / var(--base-width) * 100vw, 20px * var(--max-scale-ratio));
    width: min(240 / var(--base-width) * 100vw, 240px * var(--max-scale-ratio));
  }
  #opening .opening_cont.cont2 .wm {
    margin-top: min(5 / var(--base-width) * 100vw, 5px * var(--max-scale-ratio));
  }
}

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

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

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

main

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

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

store

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

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

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

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

 kv

--------------------------------------------------*/
#kv {
  position: relative;
  overflow: hidden;
  background: var(--white-color);
}
#kv .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--primary-color);
  /*
  transform: translate3d(0, var(--applyParallax), 0);
  will-change: transform;
  */
}
#kv .bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
}
#kv.start .bg img {
  animation: scale_down 2.0s cubic-bezier(0.33, 1, 0.68, 1) both;
}
#kv .outer {
	position: relative;
	width: 100%;
	aspect-ratio: 1920 / 894;
}
#kv .inner {
	position: relative;
  width: 100%;
  height: 100%;
  container-type: inline-size;
}
#kv .inner .txt_block {
  position: absolute;
  top: calc(333 / var(--base-width) * 100cqi);
  left: calc(100 / var(--base-width) * 100cqi);
}
#kv .inner .txt_block .main_title {
  position: relative;
}
#kv .inner .txt_block .lukia_hc {
  display: block;
  width: calc(555 / var(--base-width) * 100cqi);
  margin-bottom: calc(45 / var(--base-width) * 100cqi);
  text-align: center;
}
#kv .inner .txt_block .lukia_hc .lukia {
  display: inline-block;
  width: calc(100 / var(--base-width) * 100cqi);
  margin-bottom: calc(40 / var(--base-width) * 100cqi);
}
#kv .inner .txt_block .wm_le {
  display: block;
  width: calc(1462 / var(--base-width) * 100cqi);
  margin-left: calc(130 / var(--base-width) * 100cqi);
}
#kv .inner .txt_block .wm {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
  margin-bottom: calc(25 / var(--base-width) * 100cqi);
}
#kv .inner .txt_block .wm img {
  width: calc(1410 / var(--base-width) * 100cqi);
}
#kv .inner .txt_block .wm .obj {
  width: calc(34 / var(--base-width) * 100cqi);
  background: var(--white-color);
}
#kv .inner .txt_block .le {
  display: block;
  width: calc(318 / var(--base-width) * 100cqi);
  margin-left: auto;
  margin-right: calc(52 / var(--base-width) * 100cqi);
}
#kv .inner .txt_block .main_title span {
  opacity: 0;
}
#kv.start .inner .txt_block .main_title span {
  animation: fadein 1.0s cubic-bezier(0.33, 1, 0.68, 1) both;
}
#kv.start .inner .txt_block .main_title span.lukia {
  animation-delay: 0.5s;
}
#kv.start .inner .txt_block .main_title span.hc {
  animation-delay: 0.75s;
}
#kv .inner .txt_block .wm img {
  opacity: 0;
}
#kv.start .inner .txt_block .wm img {
  animation: scale_down 1.0s cubic-bezier(0.33, 1, 0.68, 1) both;
  animation-delay: 1.25s;
}
#kv .inner .txt_block .wm .obj {
  opacity: 0;
}
#kv.start .inner .txt_block .wm .obj {
  animation: scale_down 1.0s cubic-bezier(0.33, 1, 0.68, 1) both, heartAnim 4.5s ease forwards;
  animation-delay: 1.75s, 2.0s;
}
#kv.start .inner .txt_block .main_title span.le {
  animation-delay: 1.5s;
}
@media screen and (max-width: 640px) {
  #kv {
    overflow-x: clip;
  }
  #kv .outer {
    aspect-ratio: 375 / 564;
  }
  #kv .bg img {
    object-fit: contain;
    object-position: center 0;
  }
  #kv .inner .txt_block {
    width: calc(298 / var(--base-width) * 100cqi);
    top: calc(345 / var(--base-width) * 100cqi);
    left: 50%;
    font-size: 1rem;
    transform: translateX(-50%);
  }
  #kv .inner .txt_block .lukia_hc {
    width: calc(140 / var(--base-width) * 100cqi);
    margin-inline: auto;
    margin-bottom: calc(20 / var(--base-width) * 100cqi);
  }
  #kv .inner .txt_block .lukia_hc .lukia {
    width: calc(45 / var(--base-width) * 100cqi);
    margin-bottom: calc(11 / var(--base-width) * 100cqi);
  }
  #kv .inner .txt_block .wm_le {
    width: 100%;
    margin-left: 0;
  }
  #kv .inner .txt_block .wm {
    margin-bottom: calc(15 / var(--base-width) * 100cqi);
  }
  #kv .inner .txt_block .wm img {
    width: calc(280 / var(--base-width) * 100cqi);
  }
  #kv .inner .txt_block .wm .obj {
    width: calc(11 / var(--base-width) * 100cqi);
  }
  #kv .inner .txt_block .le {
    width: calc(112 / var(--base-width) * 100cqi);
    margin-inline: auto;
  }
}

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

wrapper

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

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

クローバーとハートのあしらい

--------------------------------------------------*/
.obj.clover {
  width: calc(38 / var(--base-width) * 100vw);
  aspect-ratio: 1 / 1;
  mask-image: url(../img/object_clover.svg);
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: var(--gray-color);
}
.obj.heart {
  width: calc(74 / var(--base-width) * 100vw);
  aspect-ratio: 74 / 65;
  mask-image: url(../img/object_heart.svg);
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: var(--secondary-color);
}
.heart_anim {
  display: inline-block;
  width: 100%;
  opacity: 0;
}
/* アニメーション定義 */
@keyframes heartAnimFadeIn {
  0% {
    opacity: 0;
    /*
    translate: 0 5%;
    */
    translate: 0 0;
  }
  to {
    opacity: 1;
    translate: 0 0;
  }
}
@keyframes heartAnim {
  0% {
    rotate:y 0deg
  }
  30% {
    rotate:y 1turn
  }
  to {
    rotate:y 1turn
  }
}

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

lead

--------------------------------------------------*/
#lead {
  position: relative;
  padding-bottom: clamp(160px * var(--min-scale-ratio), 160 / var(--responsive-width) * 100vw, 160px);
}
#lead .outer {
  position: relative;
}
#lead .inner {
  position: relative;
  text-align: center;
}
#lead .txt_box {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: calc(910 / 22 * 1em);
  margin-top: calc(-100 / 22 * 1em);
  padding-bottom: 3em;
  font-size: clamp(1.0rem, 22 / var(--base-width) * 100vw, 2.2rem);
  aspect-ratio: 910 / 796;
  z-index: 1;
}
#lead .txt_box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../img/lead_bg.svg) no-repeat;
  background-size: contain;
  opacity: 0;
  z-index: -1;
}
#lead.scrollin .txt_box::before {
  animation: scale_down 2.0s cubic-bezier(0.33, 1, 0.68, 1) both;
}
#lead .txt {
  opacity: 0;
}
#lead.scrollin .txt {
  animation: fadein 1.0s cubic-bezier(0.33, 1, 0.68, 1) both;
  animation-delay: 0.5s;
}
#lead .txt + .txt {
  margin-top: 1.5em;
}
#lead .objects {
  position: absolute;
  width: calc(144 / 22 * 1em);
  aspect-ratio: 144 / 117;
  line-height: 1;
  z-index: 2;
}
#lead .objects1 {
  top: calc(139 / 22 * 1em);
  left: calc(-68 / 22 * 1em);
}
#lead .objects1 .obj1 {
  position: absolute;
  top: 0;
  left: 0;
  width: calc(45 / 144 * 100%);
}
#lead .objects1 .obj2 {
  position: absolute;
  right: 0;
  bottom: 0;
  width: calc(80 / 144 * 100%);
}
#lead .objects2 {
  bottom: calc(109 / 22 * 1em);
  right: calc(83 / 22 * 1em);
}
#lead .objects2 .obj1 {
  position: absolute;
  left: 0;
  bottom: 0;
  width: calc(80 / 144 * 100%);
}
#lead .objects2 .obj2 {
  position: absolute;
  top: 0;
  right: 0;
  width: calc(45 / 144 * 100%);
}
#lead .objects1 .obj.heart {
  transform: rotate(-30deg);
}
#lead .objects2 .obj.heart {
  transform: rotate(30deg);
}
#lead .objects1 .obj1 .obj,
#lead .objects2 .obj1 .obj {
  background: var(--primary-color);
}
#lead .objects .obj {
  display: inline-block;
  width: 100%;
}
#lead.scrollin .objects .heart_anim {
  animation: heartAnim 5s ease 0.55s forwards, heartAnimFadeIn 1.5s ease-out 0.25s forwards;
}
#lead.scrollin .objects1 .obj2 .heart_anim {
  animation-delay: 0.3s, 0s;
}
#lead.scrollin .objects2 .obj1 .heart_anim {
  animation-delay: 0.8s, 0.5s;
}
#lead.scrollin .objects2 .obj2 .heart_anim {
  animation-delay: 1.05s, 0.75s;
}
@media screen and (max-width: 991px) {
  
}
@media screen and (min-width: 641px) and (max-width: 767px) {
  #lead .txt_box::before {
    top: 5%;
    left: 5%;
    width: 90%;
    height: 90%;
  }
}
@media screen and (max-width: 640px) {
  #lead {
    padding-bottom: min(90 / var(--base-width) * 100vw, 90px * var(--max-scale-ratio));
  }
  #lead .txt_box {
    display: flex;
    width: calc(445 / var(--base-width) * 100vw);
    aspect-ratio: 445 / 390;
    margin-top: calc(-55 / var(--base-width) * 100vw);
    margin-left: calc(-35 / var(--base-width) * 100vw);
    padding-bottom: 0;
  }
  #lead .txt_box .txt {
    font-size: min(13 / var(--base-width) * 100vw, 2.0rem);
    line-height: 180%;
    letter-spacing: 0.1em;
  }
  #lead .objects {
    width: calc(47 / var(--base-width) * 100vw);
    aspect-ratio: 1 / 1;
    font-size: 1rem;
  }
  #lead .objects1 {
    top: calc(46 / var(--base-width) * 100vw);
    left: calc(46 / var(--base-width) * 100vw);
  }
  #lead .objects1 .obj1 {
    width: calc(16 / 46 * 100%);
  }
  #lead .objects1 .obj2 {
    width: calc(28 / 46 * 100%);
  }
  #lead .objects1 .obj1 .obj {
    background: var(--secondary-color);
  }
  #lead .objects1 .obj2 .obj {
    background: var(--primary-color);
  }
  #lead .objects2 {
    bottom: calc(82 / var(--base-width) * 100vw);
    right: calc(46 / var(--base-width) * 100vw);
  }
  #lead .objects2 .obj1 {
    width: calc(28 / 46 * 100%);
  }
  #lead .objects2 .obj2 {
    width: calc(16 / 46 * 100%);
  }
}

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

design

--------------------------------------------------*/
#design {
  position: relative;
  padding-bottom: clamp(160px * var(--min-scale-ratio), 160 / var(--responsive-width) * 100vw, 160px);
  z-index: 1;
}
#design .main_title {
  position: relative;
  display: flex;
  align-items: center;
  gap: calc(20 / var(--base-width) * 100vw);
  width: calc(1820 / var(--base-width) * 100vw);
  margin-inline: auto;
  margin-bottom: clamp(45px * var(--min-scale-ratio), 45 / var(--responsive-width) * 100vw, 45px);
  z-index: 3;
}
#design .main_title > .obj {
  opacity: 0;
}
#design .main_title.scrollin > .obj {
  animation: fadein 1.0s cubic-bezier(0.33, 1, 0.68, 1) both;
  animation-delay: 0.5s;
}
#design .main_title .clover {
  width: calc(38 / var(--base-width) * 100vw);
}
#design .main_title .heart {
  width: calc(74 / var(--base-width) * 100vw);
}
#design .main_title .ds {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  width: calc(638 / var(--base-width) * 100vw);
  margin-inline: calc(77 / var(--base-width) * 100vw);
  z-index: 1;
}
#design .main_title .ds > img {
  width: calc(590 / var(--base-width) * 100vw);
  opacity: 0;
}
#design .main_title.scrollin .ds > img {
  animation: scale_down 1.0s cubic-bezier(0.33, 1, 0.68, 1) both;
}
#design .main_title .ds .obj {
  width: calc(38 / var(--base-width) * 100vw);
  margin-bottom: calc(45 / var(--base-width) * 100vw);
  background: var(--primary-color);
}
#design .main_title .ds .obj.heart {
  opacity: 0;
}
#design .main_title.scrollin .ds .obj.heart {
  animation: scale_down 1.0s cubic-bezier(0.33, 1, 0.68, 1) both, heartAnim 5s ease forwards;
  animation-delay: 0.25s, 0.55s;
}
#design .main_title .ds .obj.clover {
  position: absolute;
  top: calc(-68 / var(--base-width) * 100vw);
  left: calc(-68 / var(--base-width) * 100vw);
  width: calc(140 / var(--base-width) * 100vw);
  background: var(--white-color);
  opacity: 0;
  z-index: -1;
}
#design .main_title.scrollin .ds .obj.clover {
  animation: scale_down 1.0s cubic-bezier(0.33, 1, 0.68, 1) both;
  animation-delay: 0.5s;
}
#design .section_lead {
  margin-bottom: clamp(150px * var(--min-scale-ratio), 150 / var(--responsive-width) * 100vw, 150px);
}
#design .section_lead .txt_komidashi {
  text-align: center;
}
#design > .outer > .inner {
  position: relative;
  width: min(1477 / 1750 * 100vw, 1477px);
  margin-inline: auto;
  container-type: inline-size;
  --design-inner-width: 1477;
}
#design .happymotief_block,
#design .caseback_block {
  display: flex;
  align-items: center;
  gap: calc(84 / var(--design-inner-width) * 100cqi);
}
#design .caseback_block {
  flex-direction: row-reverse;
}
#design .happymotief_block .img_block,
#design .caseback_block .img_block {
  position: relative;
  width: calc(705 / var(--design-inner-width) * 100cqi);
}
#design .happymotief_block .img_block .img_wrap,
#design .caseback_block .img_block .img_wrap {
  mask-image: url(../img/object_heart.svg);
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
}
#design .caseback_block .img_block .img_wrap {
  /*
  margin-top: -232px;
  */
}
#design .happymotief_block .txt_block,
#design .caseback_block .txt_block {
  position: relative;
  width: calc(600 / var(--design-inner-width) * 100cqi);
}
#design .caseback_block .txt_block {

}
#design .sub_ttl {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: calc(20 / 600 * 100%);
  margin-bottom: calc(55 / var(--design-inner-width) * 100cqi);
}
#design .sub_ttl .obj {
  width: calc(38 / 600 * 100%);
  /*
  transition-delay: 0.5s;
  */
}
#design .sub_ttl > img {
  width: calc(332 / 600 * 100%);
}
#design .caseback_block .sub_ttl > img {
  width: calc(249 / 600 * 100%);
}
#design .design_container {
  display: flex;
  justify-content: space-between;
  margin-top: calc(140 / var(--design-inner-width) * 100cqi);
}
#design .design_explain {
  display: flex;
  justify-content: center;
  gap: calc(100 / var(--design-inner-width) * 100cqi);
  width: calc(1300 / var(--design-inner-width) * 100cqi);
  margin-inline: auto;
  margin-top: calc(80 / var(--design-inner-width) * 100cqi);
  padding-block: calc(70 / var(--design-inner-width) * 100cqi);
  background-color: var(--white-color);
  border: 1px solid var(--primary-txt-color);
  border-radius: calc(40 / var(--design-inner-width) * 100cqi);
}
#design .design_explain .explain_wrap {
  position: relative;
  width: calc(500 / var(--design-inner-width) * 100cqi);
  color: var(--primary-color);
}
#design .design_explain .explain_title {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: calc(20 / var(--design-inner-width) * 100cqi);
  margin-bottom: calc(35 / var(--design-inner-width) * 100cqi);
}
#design .design_explain .explain_wrap + .explain_wrap .explain_title {
  /*
  margin-bottom: calc(20 / var(--design-inner-width) * 100cqi);
  */
}
#design .design_explain .explain_title .obj {
  width: calc(24 / var(--design-inner-width) * 100cqi);
}
#design .design_explain .explain_title > img {
  width: calc(152 / var(--design-inner-width) * 100cqi);
}
#design .design_explain .explain_wrap + .explain_wrap .explain_title > img {
  width: calc(298 / var(--design-inner-width) * 100cqi);
}
#design .design_explain .explain_title .heart img {
  filter: invert(42%) sepia(80%) saturate(3086%) hue-rotate(329deg) brightness(92%) contrast(91%);
}
#design .design_explain .explain_title_note {
  margin-bottom: calc(40 / var(--design-inner-width) * 100cqi);
  color: var(--primary-txt-color);
  font-size: clamp(1.6rem * var(--min-scale-ratio), 16 / var(--responsive-width) * 100vw, 1.6rem);
  text-align: center;
}
#design .img_block .objects {
  position: absolute;
  width: calc(111 / 705 * 100%);
  aspect-ratio: 111 / 129;
  line-height: 1;
  z-index: 2;
}
#design .img_block .objects .obj {
  display: block;
  width: 100%;
}
#design .img_block .objects.objects1 {
  top: calc(89 / 624 * 100%);
  left: calc(-64 / 705 * 100%);
}
#design .img_block .objects.objects1 .obj1 {
  position: absolute;
  top: 0;
  left: 0;
  width: calc(45 / 111 * 100%);
}
#design .img_block .objects.objects1 .obj2 {
  position: absolute;
  right: 0;
  bottom: 0;
  width: calc(80 / 111 * 100%);
}
#design .img_block .objects.objects2 {
  top: calc(88 / 624 * 100%);
  right: calc(-64 / 705 * 100%);
}
#design .img_block .objects.objects2 .obj1 {
  position: absolute;
  left: 0;
  bottom: 0;
  width: calc(80 / 111 * 100%);
}
#design .img_block .objects.objects2 .obj2 {
  position: absolute;
  top: 0;
  right: 0;
  width: calc(45 / 111 * 100%);
}
#design .img_block .objects1 .obj {
  transform: rotate(-30deg);
}
#design .img_block .objects2 .obj {
  transform: rotate(30deg);
}
#design .img_block.scrollin .objects .heart_anim {
  animation: heartAnim 5s ease 0.8s forwards, heartAnimFadeIn 1.5s ease-out 0.5s forwards;
}
#design .img_block.scrollin .objects1 .obj2 .heart_anim {
  animation-delay: 0.3s, 0s;
}
#design .img_block.scrollin .objects2 .obj1 .heart_anim {
  animation-delay: 0.3s, 0s;
}
#design .img_block.scrollin .objects2 .obj2 .heart_anim {
  animation-delay: 0.8s, 0.5s;
}
@media screen and (max-width: 1200px) {
  #design .caseback_block,
  #design .design_explain {
    margin-top: calc(80 / var(--design-inner-width) * 100cqi);
  }
}
@media screen and (max-width: 991px) {
  #design .caseback_block,
  #design .design_explain {
    margin-top: calc(120 / var(--design-inner-width) * 100cqi);
  }
}
@media screen and (max-width: 640px) {
  #design {
    padding-bottom: calc(80 / var(--base-width) * 100vw);
  }
  #design .main_title {
    gap: calc(5 / var(--base-width) * 100vw);
    width: calc(365 / var(--base-width) * 100vw);
    margin-bottom: min(20 / var(--base-width) * 100vw, 20px * var(--max-scale-ratio));
  }
  #design .main_title .clover {
    width: calc(10 / var(--base-width) * 100vw);
  }
  #design .main_title .heart {
    width: calc(17 / var(--base-width) * 100vw);
  }
  #design .main_title .ds {
    width: calc(162 / var(--base-width) * 100vw);
    margin-inline: calc(11 / var(--base-width) * 100vw);
  }
  #design .main_title .ds img {
    width: calc(145 / var(--base-width) * 100vw);
  }
  #design .main_title .ds .obj {
    width: calc(14 / var(--base-width) * 100vw);
    margin-bottom: calc(10 / var(--base-width) * 100vw);
  }
  #design .main_title .ds .obj.clover {
    top: calc(-23 / var(--base-width) * 100vw);
    left: calc(-20 / var(--base-width) * 100vw);
    width: calc(45 / var(--base-width) * 100vw);
  }
  #design .section_lead {
    margin-bottom: min(55 / var(--base-width) * 100vw, 55px * var(--max-scale-ratio));
  }
  #design > .outer > .inner {
    width: calc(285 / var(--base-width) * 100vw);
  }
  #design .happymotief_block {
    flex-direction: column-reverse;
    gap: calc(35 / var(--base-width) * 100vw);
  }
  #design .sub_ttl {
    justify-content: center;
    gap: calc(10 / var(--base-width) * 100vw);
    margin-bottom: calc(20 / var(--base-width) * 100vw);
    padding-right: calc(26 / var(--base-width) * 100vw);
  }
  #design .sub_ttl .obj {
    width: calc(16 / var(--base-width) * 100vw);
    margin-top: 0.6%;
  }
  #design .sub_ttl > img {
    width: calc(160 / var(--base-width) * 100vw);
  }
  #design .caseback_block .sub_ttl > img {
    width: calc(120 / var(--base-width) * 100vw);
  }
  #design .design_container {
    flex-direction: column-reverse;
    gap: calc(65 / var(--base-width) * 100vw);
    margin-top: calc(65 / var(--base-width) * 100vw);
  }
  #design .caseback_block {
    display: flex;
    flex-direction: column-reverse;
    gap: calc(35 / var(--base-width) * 100vw);
    margin-top: calc(60 / var(--base-width) * 100vw);
  }
  #design .happymotief_block .img_block,
  #design .caseback_block .img_block {
    width: 100%;
  }
  #design .happymotief_block .txt_block,
  #design .caseback_block .txt_block { 
    width: calc(280 / var(--base-width) * 100vw);
    margin: 0;
    margin-inline: auto;
  }
  #design .design_explain {
    flex-direction: column;
    gap: calc(40 / var(--base-width) * 100vw);
    width: calc(310 / var(--base-width) * 100vw);
    margin-top: calc(20 / var(--base-width) * 100vw);
    margin-left: calc(-12.5 / var(--base-width) * 100vw);
    padding-block: calc(40 / var(--base-width) * 100vw);
    border-radius: calc(30 / var(--base-width) * 100vw);
  }
  #design .design_explain .explain_wrap {
    width: 100%;
  }
  #design .design_explain .explain_title {
    gap: calc(8 / var(--base-width) * 100vw);
    margin-bottom: calc(25 / var(--base-width) * 100vw);
  }
  #design .design_explain .explain_title .obj {
    width: calc(12 / var(--base-width) * 100vw);
  }
  #design .design_explain .explain_wrap + .explain_wrap .explain_title {
    /*
    margin-bottom: calc(15 / var(--base-width) * 100vw);
    */
  }
  #design .design_explain .explain_title > img {
    width: calc(97 / var(--base-width) * 100vw);
  }
  #design .design_explain .explain_wrap + .explain_wrap .explain_title > img {
    width: calc(192 / var(--base-width) * 100vw);
  }
  #design .design_explain .explain_wrap .common_txt_small2 {
    padding-inline: calc(30 / var(--base-width) * 100vw);
  }
  #design .design_explain .explain_title_note {
    margin-bottom: calc(20 / var(--base-width) * 100vw);
    font-size: min(12 / var(--base-width) * 100vw, 1.2rem * var(--max-scale-ratio));
  }
  #design .caseback_block .img_block .img_wrap {
    margin-top: 0;
    --caseback-img-margin-top: 0;
  }
  #design .img_block .objects {
    width: calc(46 / 285 * 100%);
    aspect-ratio: 46 / 52;
  }
  #design .img_block .objects.objects1 {
    top: calc(36 / 252 * 100%);
    left: calc(-28 / 285 * 100%);
  }
  #design .img_block .objects.objects1 .obj1 {
    width: calc(18 / 45 * 100%);
  }
  #design .img_block .objects.objects1 .obj2 {
    width: calc(32 / 45 * 100%);
  }
  #design .img_block .objects.objects2 {
    top: calc(36 / 252 * 100%);
    right: calc(-28 / 285 * 100%);
  }
  #design .img_block .objects.objects2 .obj1 {
    width: calc(32 / 45 * 100%);
  }
  #design .img_block .objects.objects2 .obj2 {
    width: calc(18 / 45 * 100%);
  }
}

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

lineup

--------------------------------------------------*/
#lineup {
  position: relative;
  padding-top: calc(686 / var(--base-width) * 100vw);
}
#lineup .lineup_top_img {
  position: absolute;
  top: 0;
  left: 50%;
  width: calc(931 / var(--base-width) * 100vw);
  aspect-ratio: 931 / 815;
  transform: translateX(-50%);
  z-index: 2;
}
#lineup .lineup_top_img .img_block {
  mask-image: url(../img/object_heart.svg);
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
}
#lineup .lineup_top_img .inner {
  position: relative;
}
#lineup .lineup_top_img .objects {
  position: absolute;
  top: calc(61 / var(--base-width) * 100vw);
  left: calc(-83 / var(--base-width) * 100vw);
  width: calc(164 / var(--base-width) * 100vw);
  aspect-ratio: 164 / 107;
  z-index: 2;
}
#lineup .lineup_top_img .objects1 .obj1 {
  position: absolute;
  top: 0;
  left: 0;
  width: calc(45 / 164 * 100%);
}
#lineup .lineup_top_img .objects1 .obj2 {
  position: absolute;
  right: 0;
  bottom: 0;
  width: calc(80 / 164 * 100%);
}
#lineup .lineup_top_img .objects1 .obj {
  transform: rotate(-30deg);
}
#lineup .lineup_top_img .objects1 .obj {
  display: block;
  width: 100%;
}
#lineup .lineup_top_img .objects1 .obj1 .obj {
  background: var(--primary-color);
}
#lineup .inner.scrollin .heart_anim {
  animation: heartAnim 5s ease 0.8s forwards, heartAnimFadeIn 1.5s ease-out 0.5s forwards;
}
#lineup .inner.scrollin .objects1 .obj2 .heart_anim {
  animation-delay: 0.3s, 0s;
}
#lineup > .outer {
  position: relative;
  padding-block: calc(70 / var(--base-width) * 100vw);
  color: var(--white-color);
  background: var(--primary-color);
}
#lineup .top_line,
#lineup .btm_line {
  position: relative;
  display: flex;
  align-items: center;
  gap: calc(20 / var(--base-width) * 100vw);
  width: calc(1820 / var(--base-width) * 100vw);
  margin-inline: auto;
  z-index: 3;
}
#lineup .top_line {
  margin-bottom: calc(65 / var(--base-width) * 100vw);
}
#lineup .top_line .right {
  margin-right: calc(204 / var(--base-width) * 100vw);
}
#lineup .btm_line {
  gap: calc(25 / var(--base-width) * 100vw);
}
#lineup .top_line .clover,
#lineup .btm_line .clover {
  width: calc(38 / var(--base-width) * 100vw);
}
#lineup .top_line .heart,
#lineup .btm_line .heart {
  width: calc(74 / var(--base-width) * 100vw);
}
#lineup .top_line .hc {
  width: calc(427 / var(--base-width) * 100vw);
  margin-inline: calc(31 / var(--base-width) * 100vw);
}
#lineup .main_title {
  width: calc(1387 / var(--base-width) * 100vw);
  margin-inline: auto;
  text-align: center;
}
#lineup .main_title .hc {
  display: block;
  width: calc(427 / var(--base-width) * 100vw);
  margin-inline: auto;
  margin-bottom: calc(55 / var(--base-width) * 100vw);
}
#lineup .main_title .wm {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  width: calc(1387 / var(--base-width) * 100vw);
  margin-inline: auto;
  margin-bottom: calc(50 / var(--base-width) * 100vw);
}
#lineup .main_title .wm img {
  width: calc(1340 / var(--base-width) * 100vw);
}
#lineup .main_title .wm .obj {
  width: calc(34 / var(--base-width) * 100vw);
  background: var(--white-color);
  opacity: 0;
}
#lineup .main_title .wm .obj.scrollin {
  animation: scale_down 1.0s cubic-bezier(0.33, 1, 0.68, 1) both, heartAnim 5s ease forwards;
  animation-delay: 0.25s, 0.55s;
}
#lineup .main_title > img {
  width: calc(318 / var(--base-width) * 100vw);
}
#lineup > .outer > .inner {
  position: relative;
  width: clamp(750px * var(--min-scale-ratio), 750 / var(--base-width) * 100vw, 750px);
  margin-inline: auto;
  container-type: inline-size;
}
#lineup .product_block {
  position: relative;
}
#lineup .product {
  position: relative;
}
#lineup .product .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
#lineup .product .inner .img_box {
  position: relative;
  width: calc(395 / 750 * 100cqi);
  z-index: 1;
}
#lineup .product .inner .txt_box {
  position: relative;
  width: calc(300 / 750 * 100cqi);
  white-space: nowrap;
}
#lineup .txt_box .serial {
  position: relative;
  padding-left: calc(48 / 750 * 100cqi);
}
#lineup .txt_box .serial > img {
  width: calc(208 / 750 * 100cqi);
}
#lineup .txt_box .serial .obj {
  position: absolute;
  top: 0;
  left: 0;
  width: calc(30 / 750 * 100cqi);
  transform: translateY(6%);
}
#lineup .txt_box .serial .obj img {
  filter: invert(85%) sepia(11%) saturate(140%) hue-rotate(360deg) brightness(85%) contrast(91%);
}
#lineup .txt_box .details {
  position: relative;
  margin-top: calc(40 / 750 * 100cqi);
  padding-left: calc(48 / 750 * 100cqi);
}
#lineup .txt_box .price {
  margin-bottom: calc(30 / 24 * 1em);
  font-size: clamp(2.4rem * var(--min-scale-ratio), 24 / var(--responsive-width) * 100vw, 2.4rem);
  font-weight: 400;
  letter-spacing: 0.1em;
}
#lineup .txt_box .price .min {
  font-size: calc(15 / 24 * 100%);
}
#lineup .txt_box .note {
  font-size: clamp(1.8rem * var(--min-scale-ratio), 18 / var(--responsive-width) * 100vw, 1.8rem);
  font-weight: 400;
  line-height: 2.0;
  letter-spacing: 0.05em;
}
#lineup .txt_box .date {
  font-size: clamp(1.8rem * var(--min-scale-ratio), 18 / var(--responsive-width) * 100vw, 1.8rem);
  font-weight: 400;
  line-height: 2.0;
  letter-spacing: 0.05em;
}
#lineup .txt_box .btns {
  margin-top: calc(40 / 750 * 100cqi);
}
#lineup .txt_box .btn a {
  position: relative;
  display: grid;
  place-content: center;
  width: calc(200 / 18 * 1em);
  aspect-ratio: 200 / 50;
  padding-right: 3.6%;
  padding-top: 0;
  color: var(--white-color);
  font-size: clamp(1.8rem * var(--min-scale-ratio), 18 / var(--responsive-width) * 100vw, 1.8rem);
  font-weight: 400;
  text-decoration: none;
  letter-spacing: 0.05em;
  background: var(--primary-txt-color);
  border: 1px solid var(--primary-txt-color);
  border-radius: 7px;
  overflow: hidden;
  transition: all .1s ease-out;
}
#lineup .txt_box .btn.store a {
  width: calc(200 / 15 * 1em);
  margin-top: calc(10 / 750 * 100cqi);
  padding-top: 0;
  font-size: clamp(1.5rem * var(--min-scale-ratio), 15 / var(--responsive-width) * 100vw, 1.5rem);
}
#lineup .txt_box .btn a::before {
  content: '';
  position: absolute;
  top: 50%;
  right: calc(20 / 200 * 100%);
  width: calc(5 / 200 * 100%);
  aspect-ratio: 5 / 11;
  background: url(../img/arrow_white.svg) no-repeat;
  background-size: contain;
  transform: translateY(-50%);
  transition: all .1s ease-out;
}
@media (hover: hover) {
  #lineup .txt_box .btn a:hover {
    background: var(--white-color);
    color: var(--primary-txt-color);
    border: 1px solid var(--primary-txt-color);
    transition: all .1s ease-out .1s;
  }
  #lineup .txt_box .btn a:hover::before {
    background: url(../img/arrow_red.svg) no-repeat;
    background-size: contain;
    transition: all .1s ease-out .1s;
  }
}
#lineup .bg {
  position: relative;
  width: 100%;
  aspect-ratio: 1920 / 610;
  overflow: hidden;
}
#lineup .bg .frame {
  position: absolute;
  top: 50%;
  left: 50%;
  width: calc(1888 / var(--base-width) * 100%);
  aspect-ratio: 1888 / 578;
  transform: translate(-50%, -50%);
}
#lineup .bg .img {
  position: absolute;
  top: -6%;
  left: 0;
  width: 100%;
  height: 112%;
}
#lineup .bg .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: translate3d(0, var(--applyParallax), 0);
  will-change: transform;
}
@media screen and (max-width: 991px) {

}
@media screen and (max-width: 640px) {
  #lineup {
    padding-top: calc(235 / var(--base-width) * 100vw);
  }
  #lineup .lineup_top_img {
    width: calc(330 / var(--base-width) * 100vw);
  }
  #lineup .lineup_top_img .objects {
    top: calc(-8 / var(--base-width) * 100vw);
    left: calc(2 / var(--base-width) * 100vw);
    width: calc(46 / var(--base-width) * 100vw);
    aspect-ratio: 46 / 47;
  }
  #lineup .lineup_top_img .objects1 .obj1 {
    width: calc(16 / 46 * 100%);
  }
  #lineup .lineup_top_img .objects1 .obj2 {
    width: calc(28 / 46 * 100%);
  }
  #lineup .lineup_top_img .objects1 .obj1 .obj {
    background: var(--secondary-color);
  }
  #lineup .lineup_top_img .objects1 .obj2 .obj {
    background: var(--primary-color);
  }
  #lineup > .outer {
    padding-block: calc(25 / var(--base-width) * 100vw);
  }
  #lineup > .outer > .inner {
    width: 100%;
  }
  #lineup .top_line,
  #lineup .btm_line {
    gap: calc(5 / var(--base-width) * 100vw);
    width: calc(365 / var(--base-width) * 100vw);
  }
  #lineup .top_line {
    margin-bottom: calc(34 / var(--base-width) * 100vw);
  }
  #lineup .btm_line {
    justify-content: space-between;
    gap: 0;
    width: calc(361 / var(--base-width) * 100vw);
    margin-top: calc(10 / var(--base-width) * 100vw);
  }
  #lineup .top_line .clover,
  #lineup .btm_line .clover {
    width: calc(10 / var(--base-width) * 100vw);
  }
  #lineup .top_line .right {
    margin-right: calc(118 / var(--base-width) * 100vw);
  }
  #lineup .top_line .heart,
  #lineup .btm_line .heart {
    width: calc(17 / var(--base-width) * 100vw);
  }
  #lineup .top_line .hc {
    width: calc(171 / var(--base-width) * 100vw);
    margin-inline: calc(7 / var(--base-width) * 100vw);
  }
  #lineup .main_title {
    width: calc(298 / var(--base-width) * 100vw);
    margin-bottom: calc(10 / var(--base-width) * 100vw);
  }
  #lineup .main_title .hc {
    width: calc(171 / var(--base-width) * 100vw);
    margin-bottom: calc(15 / var(--base-width) * 100vw);
  }
  #lineup .main_title .wm {
    width: 100%;
    margin-bottom: calc(10 / var(--base-width) * 100vw);
  }
  #lineup .main_title .wm img {
    width: calc(280 / var(--base-width) * 100vw);
  }
  #lineup .main_title .wm .obj {
    width: calc(11 / var(--base-width) * 100vw);
  }
  #lineup .main_title > img {
    width: calc(128 / var(--base-width) * 100vw);
  }
  #lineup .product {

  }
  #lineup .product .inner {
    width: min(375 / var(--base-width) * 100vw, 480px);
    margin-inline: auto;
  }
  #lineup .product .inner .img_box {
    width: min(210 / var(--base-width) * 100vw, 269px);
  }
  #lineup .product .inner .txt_box {
    flex: 1;
    width: auto;
    margin-left: calc(-12 / var(--base-width) * 100vw);
    container-type: inline-size;
    --lineup-txt-box-width: 177;
  }
  #lineup .txt_box .serial {
    padding-left: calc(22 / var(--lineup-txt-box-width) * 100cqi);
  }
  #lineup .txt_box .serial > img {
    width: calc(100 / var(--lineup-txt-box-width) * 100cqi);
  }
  #lineup .txt_box .serial .obj {
    width: calc(16 / var(--lineup-txt-box-width) * 100cqi);
    transform: translateY(6%);
  }
  #lineup .txt_box .details {
    margin-top: calc(30 / var(--lineup-txt-box-width) * 100cqi);
    padding-left: 0;
  }
  #lineup .txt_box .price {
    margin-bottom: calc(20 / var(--lineup-txt-box-width) * 100cqi);
    font-size: calc(18 / var(--lineup-txt-box-width) * 100cqi);
  }
  #lineup .txt_box .price .min {
    font-size: calc(12 / 18 * 100%);
  }
  #lineup .txt_box .note,
  #lineup .txt_box .date {
    margin-top: 0;
    padding-left: 0;
    font-size: calc(13 / var(--lineup-txt-box-width) * 100cqi);
    line-height: 200%;
  }
  #lineup .txt_box .btns {
    margin-top: calc(20 / var(--lineup-txt-box-width) * 100cqi);
  }
  #lineup .txt_box .btn a {
    width: calc(130 / var(--lineup-txt-box-width) * 100cqi) !important;
    aspect-ratio: 130 / 33;
    padding-right: 6%;
    font-size: calc(13 / var(--lineup-txt-box-width) * 100cqi);
    border-radius: 5px;
  }
  #lineup .txt_box .btn.store a {
    margin-top: calc(10 / var(--lineup-txt-box-width) * 100cqi);
    font-size: calc(11 / var(--lineup-txt-box-width) * 100cqi);
  }
  #lineup .txt_box .btn a::before {
    right: calc(10 / 130 * 100%);
    width: calc(4 / 130 * 100%);
  }
}

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

about_relationship

--------------------------------------------------*/
#about_relationship {
  position: relative;
  padding-block: clamp(120px * var(--min-scale-ratio), 120 / var(--responsive-width) * 100vw, 120px);
  background: var(--white-color);
}
#about_relationship > .outer {
  position: relative;
}
#about_relationship > .outer > .inner {
  position: relative;
  width: min(var(--about-relationship-inner-width) / var(--responsive-width) * 100vw, var(--about-relationship-inner-width) * 1px);
  margin-inline: auto;
  text-align: center;
  container-type: inline-size;
  --about-relationship-inner-width: 1020;
}
#about_relationship .main_title {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: calc(20 / var(--about-relationship-inner-width) * 100cqi);
  margin-inline: auto;
  margin-bottom: calc(50 / var(--about-relationship-inner-width) * 100cqi);
  text-align: center;
}
#about_relationship .main_title > img {
  width: calc(480 / var(--about-relationship-inner-width) * 100cqi);
}
#about_relationship .main_title .obj.clover {
  width: calc(38 / var(--about-relationship-inner-width) * 100cqi);
  margin-top: 0.2%;
}
#about_relationship .lead_block .common_txt_small2 {
  text-align: center;
}
#about_relationship .img_block {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: calc(20 / var(--about-relationship-inner-width) * 100cqi);
  margin-top: calc(40 / var(--about-relationship-inner-width) * 100cqi);
}
#about_relationship .img_block .img {
  position: relative;
  overflow: hidden;
  border-radius: calc(10 / var(--about-relationship-inner-width) * 100cqi);
}
#about_relationship .save_children_japan {
  position: relative;
  margin-top: calc(50 / var(--about-relationship-inner-width) * 100cqi);
  padding-block: calc(50 / var(--about-relationship-inner-width) * 100cqi);
  padding-inline: calc(106 / var(--about-relationship-inner-width) * 100cqi);
  border-radius: calc(30 / var(--about-relationship-inner-width) * 100cqi);
  background-color: #F8F8F8;
  overflow: hidden;
}
#about_relationship .save_children_japan .sub_ttl {
  margin-bottom: calc(40 / var(--about-relationship-inner-width) * 100cqi);
  color: #E31E1B;
  text-align: center;
}
#about_relationship .save_children_japan .sub_ttl.txt_komidashi {
  line-height: 1;
}
#about_relationship .save_children_japan .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: calc(40 / var(--about-relationship-inner-width) * 100cqi);
}
#about_relationship .save_children_japan .wrap .logo_block {
  width: calc(238 / var(--about-relationship-inner-width) * 100cqi);
}
#about_relationship .save_children_japan .wrap .txt_block {
  width: calc(520 / var(--about-relationship-inner-width) * 100cqi);
  color: #35322d;
}
#about_relationship .save_children_japan .btn_block {
  text-align: center;
}
#about_relationship .save_children_japan .btn_block a {
  position: relative;
  display: inline-flex;
  align-items: center;
  width: calc(260 / 22 * 1em);
  aspect-ratio: 260 / 60;
  padding-left: calc(60 / 22 * 1em);
  color: #fff;
  font-size: clamp(22px * var(--min-scale-ratio), 22 / var(--responsive-width) * 100vw, 22px);
  letter-spacing: 0.05em;
  text-decoration: none;
  background: #121208;
  border-radius: 10px;
  line-height: 1;
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  transition: background .2s ease-out, box-shadow .2s ease-out;
}
#about_relationship .save_children_japan .btn_block a::after {
  content: "";
  position: absolute;
  top: 50%;
  right : calc(45 / 22 * 1em);
  width: calc(8 / 22 * 1em);
  aspect-ratio: 6 / 16;
  background: url(../img/arrow_white.svg);
  background-size: contain;
  background-repeat: no-repeat;
  transform: translateY(-42%);
}
@media (hover: hover) and (pointer: fine) {
  #about_relationship .save_children_japan .btn_block a:hover {
    background: #343417;
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.30);
    transition: background .2s ease-out 0.1s, box-shadow .2s ease-out 0.1s;
  }
}
@media screen and (min-width: 641px) and (max-width: 767px) {
  #about_relationship > .outer > .inner {
    width: 85vw;
  }
}
@media screen and (max-width: 640px) {
  #about_relationship {
    padding-block: min(60 / var(--base-width) * 100vw, 60px * var(--max-scale-ratio));
  }
  #about_relationship > .outer > .inner {
    width: min(310 / var(--base-width) * 100vw, 310px * var(--max-scale-ratio));
    --about-relationship-inner-width: 310;
  }
  #about_relationship .main_title {
    gap: calc(10 / var(--about-relationship-inner-width) * 100cqi);
    width: calc(283 / var(--about-relationship-inner-width) * 100cqi);
    margin-bottom: calc(20 / var(--about-relationship-inner-width) * 100cqi);
  }
  #about_relationship .main_title .obj.clover {
    width: calc(16 / var(--about-relationship-inner-width) * 100cqi);
    margin-top: 0.6%;
  }
  #about_relationship .main_title > img {
    width: calc(230 / var(--about-relationship-inner-width) * 100cqi);
  }
  #about_relationship .img_block {
    grid-template-columns: repeat(2, 1fr);
    gap: calc(10 / var(--about-relationship-inner-width) * 100cqi);
    margin-top: calc(40 / var(--about-relationship-inner-width) * 100cqi);
  }
  #about_relationship .img_block .img {
    border-radius: calc(5 / var(--about-relationship-inner-width) * 100cqi);
  }
  #about_relationship .save_children_japan {
    margin-top: calc(50 / var(--about-relationship-inner-width) * 100cqi);
    padding-block: calc(40 / var(--about-relationship-inner-width) * 100cqi);
    padding-inline: calc(35 / var(--about-relationship-inner-width) * 100cqi);
    border-radius: calc(20 / var(--about-relationship-inner-width) * 100cqi);
  }
  #about_relationship .save_children_japan .sub_ttl.txt_komidashi {
    line-height: 180%;
  }
  #about_relationship .save_children_japan .sub_ttl {
    margin-bottom: calc(25 / var(--about-relationship-inner-width) * 100cqi);
  }
  #about_relationship .save_children_japan .sub_ttl .label {
    padding: 0.25em 1em 0.35em;
    line-height: 130%;
    white-space: nowrap;
  }
  #about_relationship .save_children_japan .wrap {
    flex-direction: column;
    gap: calc(20 / var(--about-relationship-inner-width) * 100cqi);
    margin-bottom: calc(25 / var(--about-relationship-inner-width) * 100cqi);
  }
  #about_relationship .save_children_japan .wrap .logo_block {
    width: calc(190 / var(--about-relationship-inner-width) * 100cqi);
    margin-inline: auto;
  }
  #about_relationship .save_children_japan .wrap .txt_block {
    width: 100%;
  }
  #about_relationship .save_children_japan .wrap .logo_block {
    text-align: center;
  }
  #about_relationship .save_children_japan .wrap .logo_block img {
    width: 100%;
  }
  #about_relationship .save_children_japan .btn_block a {
    width: calc(220 / var(--about-relationship-inner-width) * 100cqi);
    aspect-ratio: 220 / 50;
    padding-left: calc(60 / 16 * 1em);
    font-size: calc(16 / var(--about-relationship-inner-width) * 100cqi);
  }
  #about_relationship .save_children_japan .btn_block a::after {
    right: calc(45 / 16 * 1em);
    width: calc(6 / 16 * 1em);
    transform: translateY(-42%);
  }
}

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

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