@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: #5D8064;
  --primary-txt-color: #35322D;
  --primary-bg-color: #FAF8F1;
  --secondary-color: #C39C62;
  --white-color: #fff;
  --black-color: #000;
  --gray-color: #C2C1C1;
  --base-width: 1280;
  --section-padding-block: clamp(200px * var(--min-scale-ratio), 200 / var(--base-width) * 100vw, 200px);
  --content-padding-top: 80px;
  --scrollbar-size: 0px;
  --min-scale-ratio: 0.75;
  --max-scale-ratio: 1.0;
}
@media screen and (max-width: 1600px) {
  :root {
    --content-padding-top: max(50px,5vw);
  }
}
@media screen and (max-width: 640px) {
  :root {
    --base-width: 375;
    --section-padding-block: min(100 / var(--base-width) * 100vw, 100px * var(--max-scale-ratio));
    --content-padding-top: 40px;
    --min-scale-ratio: 1.0;
    --max-scale-ratio: 1.20;
  }
}

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

 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: "Zen Old Mincho", serif;
  font-weight: 400;
  line-height: 1;
  font-size: 1.6rem;
  background: var(--white-color);
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
}
.sp,
.sp_inline {
  display: none !important;
}
.pc {
  display: block !important;
}
.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;
  }
}
.section_padding_block {
  padding-block: var(--section-padding-block);
}
.section_title {
  margin-bottom: 1em;
  color: var(--primary-color);
  font-size: clamp(6.0rem * var(--min-scale-ratio), (60 / var(--base-width) * 100vw), 6.0rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.1em;
  text-align: center;
}
.section_inner {
  width: min(100%, var(--base-width) * 1px + 100px);
  margin-inline: auto;
  padding-inline: clamp(50px * var(--min-scale-ratio), 50 / var(--base-width) * 100vw, 50px);
}
.txt_oomidashi  {
  font-size: clamp(3.2rem * var(--min-scale-ratio), (32 / var(--base-width) * 100vw), 3.2rem);
  font-weight: 400;
  line-height: 180%;
  letter-spacing: 0.1em;
}
.txt_midashi {
  font-size: clamp(2.4rem * var(--min-scale-ratio), (24 / var(--base-width) * 100vw), 2.4rem);
  font-weight: 400;
  line-height: 200%;
  letter-spacing: 0.05em;
}
.txt_komidashi {
  font-size: clamp(2.0rem * var(--min-scale-ratio), (20 / var(--base-width) * 100vw), 2.0rem);
  font-weight: 400;
  line-height: 200%;
  letter-spacing: 0.05em;
}
.txt_common {
  font-size: clamp(1.8rem * var(--min-scale-ratio), (18 / var(--base-width) * 100vw), 1.8rem);
  font-weight: 400;
  line-height: 200%;
  letter-spacing: 0.05em;
  text-align: justify;
}
.txt_common + .txt_common {
  margin-top: 1em;
}
.txt_note {
  margin-top: 1em;
  font-size: clamp(1.4rem * var(--min-scale-ratio), (14 / var(--base-width) * 100vw), 1.4rem);
  font-weight: 400;
  line-height: 180%;
  letter-spacing: 0em;
}
p.txt_indent {
  padding-left: 1em;
  text-indent: -1em;
}
p.txt_indent > .indent_icon {
  display: inline-block;
  width: 1em;
  text-indent: 0;
}
@media screen and (max-width: 640px) {
  .section_title {
    margin-bottom: 1em;
    font-size: min(30 / var(--base-width) * 100vw, 3.0rem * var(--max-scale-ratio));
  }
  .section_inner {
    width: 100%;
    padding-inline: min(17.5 / var(--base-width) * 100vw, 17.5px * var(--max-scale-ratio));
  }
  .txt_oomidashi {
    font-size: min(17 / var(--base-width) * 100vw, 1.7rem * var(--max-scale-ratio));
    line-height: 180%;
  }
  .txt_midashi {
    font-size: min(17 / var(--base-width) * 100vw, 1.7rem * var(--max-scale-ratio));
    line-height: 180%;
  }
  .txt_komidashi {
    font-size: min(14 / var(--base-width) * 100vw, 1.4rem * var(--max-scale-ratio));
    line-height: 180%;
  }
  .txt_common {
    font-size: min(14 / var(--base-width) * 100vw, 1.4rem * var(--max-scale-ratio));
    line-height: 180%;
  }
  .txt_note {
    margin-top: 0.5em;
    font-size: min(12 / var(--base-width) * 100vw, 1.2rem * var(--max-scale-ratio));
    line-height: 180%;
  }
}
#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.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;
    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.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(-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, 10px, 0) rotate(0.0001deg);
  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, 20px, 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, 10px, 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.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) 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);
	}
}

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

.img_anim {
  overflow: hidden;
}
.img_anim > img {
  opacity : 0;
  filter: blur(5px);
  transform: scale(1.05) 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);
}
.img_anim.scrollin > img {
  opacity : 1;
  transform: scale(1) rotate(0.0001deg);
  filter: blur(0);
}
@keyframes img_anim {
  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);
  }
}

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

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

main

--------------------------------------------------*/
main.main {
  position: relative;
  background: var(--primary-bg-color);
  overflow-x: clip;
  z-index: 1;
}
main.main::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../img/bg1.webp);
  opacity: 0.4;
  z-index: -1;
}
@media screen and (max-width: 640px) {
  main.main::before {
    background: url(../img/bg1_sp.webp);
  }
}

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

 kv

--------------------------------------------------*/
#kv {
  position: relative;
  overflow: hidden;
  background-color: var(--white-color);
}
#kv .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #e9f0ee;
  /*
  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.scrollin .bg img {
  animation: fadein 1.0s cubic-bezier(0.33, 1, 0.68, 1) both;
}
#kv .outer {
	position: relative;
	width: 100%;
	aspect-ratio: 1920 / 880;
}
#kv .inner {
	position: relative;
  width: 100%;
  height: 100%;
}
#kv .inner .txt_block {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding-top: calc(190 / 1920 * 100vw);
  text-align: center;
  z-index: 2;
}
#kv .inner .main_title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: calc(38 / 1920 * 100vw);
  color: #231815;
  font-size: calc(75 / 1920 * 100vw);
  letter-spacing: 0.07em;
}
#kv .inner .main_title .txt {
  display: inline-block;
  opacity: 0;
}
#kv.scrollin .inner .main_title .txt {
  animation: fadein_y 1.0s cubic-bezier(0.33, 1, 0.68, 1) both;
  animation-delay: 0.5s;
}
#kv .inner .main_title .txt .txt2 {
  display: inline-block;
  letter-spacing: -0.37em;
}
#kv .inner .main_title .label {
  display: inline-block;
  font-size: calc(59 / 75 * 100%);
  font-weight: 900;
  /*
  padding: 0.45em 0.8em 0.45em 1em;
  color: #fff;
  background: #B81C22;
  border-radius: 100vmax;
  */
  letter-spacing: 0.16em;
  line-height: 1;
  opacity: 0;
}
#kv .inner .main_title .label .txt2 {
  display: inline-block;
  letter-spacing: 0.12em;
}
#kv .inner .main_title .label .txt3 {
  display: inline-block;
  letter-spacing: 0.04em;
}
#kv .inner .main_title .label .txt4 {
  display: inline-block;
  letter-spacing: -0.06em;
}
#kv.scrollin .inner .main_title .label {
  animation: fadein 1.0s cubic-bezier(0.33, 1, 0.68, 1) both;
  animation-delay: 1.0s;
}
#kv .inner .logo_lukia {
  width: calc(235 / 1920 * 100vw);
  margin-top: calc(50 / 1920 * 100vw);
  margin-inline: auto;
  opacity: 0;
}
#kv.scrollin .inner .logo_lukia {
  animation: fadein 1.0s cubic-bezier(0.33, 1, 0.68, 1) both;
  animation-delay: 1.5s;
}
@media screen and (max-width: 640px) {
  #kv {
    overflow-x: clip;
  }
  #kv .outer {
    aspect-ratio: 375 / 560;
  }
  #kv .inner .txt_block {
    padding-top: calc(60 / var(--base-width) * 100vw);
  }
  #kv .inner .main_title {
    gap: calc(18 / var(--base-width) * 100vw);
    font-size: calc(23 / var(--base-width) * 100vw);
  }
  #kv .inner .main_title .txt {
    line-height: 170%;
  }
  #kv .inner .main_title .label {
    /*
    padding: 0.55em 0.8em 0.55em 1em;
    */
    font-size: calc(15 / 24 * 100%);
  }
  #kv .inner .logo_lukia {
    width: calc(75 / var(--base-width) * 100vw);
    margin-top: calc(30 / var(--base-width) * 100vw);
  }
}

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

wrapper

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

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

lead

--------------------------------------------------*/
#lead {
  position: relative;
}
#lead .outer {
  position: relative;
}
#lead .inner {
  position: relative;
}
#lead .txt_box {
  position: relative;
  width: calc(880 / 32 * 1em);
  margin-inline: auto;
  margin-top: calc( (1em + 1.1em + (70 / 32 * 1em)) * -1);
  padding-block: calc(70 / 32 * 1em);
  font-size: clamp(3.2rem * var(--min-scale-ratio), 32 / var(--base-width) * 100vw, 3.2rem);
  text-align: center;
  border-radius: clamp(60px * var(--min-scale-ratio), 60 / var(--base-width) * 100vw,  60px);
  border: 1px solid var(--secondary-color);
  background-color: var(--white-color);
  opacity: 0;
}
#lead.scrollin .txt_box {
  animation: fadein 1.0s cubic-bezier(0.33, 1, 0.68, 1) both;
}
#lead .main_title {
  position: relative;
  display: inline-block;
  margin-bottom: 0.75em;
  padding-bottom: 1.1em;
  color: var(--primary-color);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.1em;
}
#lead .main_title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: -1%;
  width: 102%;
  height: 1px;
  background-color: var(--secondary-color);
}
#lead .txt {
  font-size: calc(24 / 32 * 100%);
  line-height: 200%;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 991px) {
  #lead .txt_box {
    margin-top: calc( (1em + 1.1em + (40 / 20 * 1em)) * -1);
    padding-block: calc(40 / 20 * 1em);
    font-size: clamp(2.0rem * var(--min-scale-ratio), 32 / var(--base-width) * 100vw, 2.0rem);
  }
}
@media screen and (max-width: 640px) {
  #lead .txt_box {
    position: relative;
    width: calc(310 / 18 * 1em);
    margin-inline: auto;
    margin-top: calc( (1em + 3.6em + (35 / 18 * 1em)) * -1);
    padding-block: calc(35 / 18 * 1em);
    font-size: min(18 / var(--base-width) * 100vw, 1.8rem * var(--max-scale-ratio));
    border-radius: min(40 / var(--base-width) * 100vw, 40px * var(--max-scale-ratio));
  }
  #lead .main_title {
    margin-bottom: 1.0em;
    padding-bottom: 1.0em;
    line-height: 180%;
  }
  #lead .main_title::after {
    left: -2.5%;
    width: 104%;
  }
  #lead .txt {
    font-size: calc(14 / 18 * 100%);
    line-height: 180%;
  }
}

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

about_products

--------------------------------------------------*/
#about_products {
  position: relative;
  padding-bottom: clamp(120px * var(--min-scale-ratio), 120 / var(--base-width) * 100vw, 120px);
}
#about_products .outer {
  position: relative;
}
#about_products .inner {
  position: relative;
}
#about_products .inner > .txt_block {
  margin-bottom: clamp(110px * var(--min-scale-ratio), 110 / var(--base-width) * 100vw, 110px);
  text-align: center;
}
#tab_area {
  scroll-margin-top: calc(var(--content-padding-top) + 10px);
}
#about_products .tab_wrapper nav {
  position: sticky;
  top: calc(var(--content-padding-top) + 10px);
  z-index: 10;
}
#about_products .tab_list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  margin-bottom: clamp(40px * var(--min-scale-ratio), 40 / var(--base-width) * 100vw, 40px);
  height: calc(180 / 16 * 1em);
  font-size: clamp(16px * var(--min-scale-ratio), 16 / var(--base-width) * 100vw, 16px);
  border: 1px solid var(--primary-color);
  border-radius: clamp(30px * var(--min-scale-ratio), 30 / var(--base-width) * 100vw,  30px);
  background: var(--primary-color);
  overflow: hidden;
}
#about_products .tab_list a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  color: var(--primary-color);
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  text-decoration: none;
  background-color: var(--white-color);
  transition: color 0.2s ease, background-color 0.2s ease;
}
#about_products .tab_list a.active {
  color: var(--white-color);
  background-color: var(--primary-color);
  pointer-events: none;
}
#about_products .tab_list a br.ctl {
  display: none;
}
#about_products .tab_list li a .icon {
  width: calc(128 / 256 * 100%);
  aspect-ratio: 1 / 1;
  mask-image: url(../img/tab_icon1.svg);
	mask-size: contain;
	mask-repeat: no-repeat;
	mask-position: center;
  background-color: var(--primary-color); //色を制御
}
#about_products .tab_list li:nth-child(2) a .icon {
  mask-image: url(../img/tab_icon2.svg);
}
#about_products .tab_list li:nth-child(3) a .icon {
  mask-image: url(../img/tab_icon3.svg);
}
#about_products .tab_list li:nth-child(4) a .icon {
  mask-image: url(../img/tab_icon4.svg);
}
#about_products .tab_list li:nth-child(5) a .icon {
  mask-image: url(../img/tab_icon5.svg);
}
#about_products .tab_list a.active .icon {
  background-color: var(--white-color);
  transition: background-color 0.2s ease;
}
@media (hover: hover) {
  #about_products .tab_list a:not(.active):hover {
    color: var(--white-color);
    background-color: var(--primary-color);
    transition: color 0.2s ease 0.1s, background-color 0.2s ease 0.1s;
  }
  #about_products .tab_list a:not(.active):hover .icon {
    background-color: var(--white-color);
    transition: background-color 0.2s ease 0.1s;
  }
}
#about_products .tab_contents {
  padding-bottom: clamp(220px * var(--min-scale-ratio), 220 / var(--base-width) * 100vw, 220px);
}
#about_products .tab_content {
  padding: clamp(120px * var(--min-scale-ratio), 120 / var(--base-width) * 100vw, 120px);
  background-color: var(--white-color);
  border-radius: clamp(50px * var(--min-scale-ratio), 50 / var(--base-width) * 100vw,  50px);
}
#about_products .tab_content .wrap {
  display: flex;
  justify-content: space-between;
}
#about_products #products1.tab_content .wrap:first-of-type .txt_common {
  letter-spacing: 0.02em;
}
#about_products #products4.tab_content .wrap,
#about_products #products5.tab_content .wrap {
  display: block;
}
#about_products .tab_content .wrap + .wrap {
  margin-top: clamp(120px * var(--min-scale-ratio), 120 / var(--base-width) * 100vw, 120px);
}
#about_products .tab_content .wrap2 {
  position: relative;
}
#about_products .tab_content .img_block {
  width: calc(500 / 1040 * 100%);
}
#about_products .tab_content .img_block .img {
  position: relative;
  border-radius: clamp(30px * var(--min-scale-ratio), 30 / var(--base-width) * 100vw,  30px);
  overflow: hidden;
}
#about_products .tab_content .txt_block {
  width: calc(500 / 1040 * 100%);
}
#about_products .tab_content .wrap2 .txt_block {
  width: auto;
}
#about_products .tab_content .wrap .wrap_title {
  display: inline-block;
  margin-bottom: clamp(30px * var(--min-scale-ratio), 30 / var(--base-width) * 100vw, 30px);
}
#about_products .tab_content .wrap .wrap_title .label {
  display: inline-block;
  padding: 0.30em 0.8em 0.40em;
  color: #fff;
  background: var(--secondary-color);
  border-radius: 100vmax;
  line-height: 1;
}
#about_products .tab_content .wrap .wrap_title .label .txt_komidashi {
  line-height: 1;
}
#about_products .tab_content .wrap .icon_block {
  margin-top: clamp(30px * var(--min-scale-ratio), 30 / var(--base-width) * 100vw, 30px);
}
#about_products .tab_content .wrap .icon_block img {
  width: clamp(80px * var(--min-scale-ratio), 80 / var(--base-width) * 100vw, 80px);
}
#about_products .tab_content .wrap2 .icon_block {
  position: absolute;
  right: 0;
  bottom: 0;
}
#about_products .tab_content .wrap .img_wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(40px * var(--min-scale-ratio), 40 / var(--base-width) * 100vw, 40px);
  margin-top: clamp(50px * var(--min-scale-ratio), 50 / var(--base-width) * 100vw, 50px);
}
#about_products .tab_content .wrap .img_wrap .img {
  position: relative;
  border-radius: clamp(30px * var(--min-scale-ratio), 30 / var(--base-width) * 100vw,  30px);
  overflow: hidden;
}
#about_products .tab_content .wrap .img_wrap.img_wrap3 {
  grid-template-columns: repeat(3, 1fr);
}
#about_products .tab_content .wrap .img_wrap3 .img {
  position: relative;
  border: 1px solid var(--primary-color);
  border-radius: clamp(20px * var(--min-scale-ratio), 20 / var(--base-width) * 100vw,  20px);
  overflow: hidden;
}
#about_products .tab_content .wrap .img_wrap.img_wrap4 {
  grid-template-columns: repeat(4, 1fr);
}
#about_products .tab_content .wrap .img_wrap4 .img {
  position: relative;
  border: 1px solid var(--primary-color);
  border-radius: clamp(20px * var(--min-scale-ratio), 20 / var(--base-width) * 100vw,  20px);
  overflow: hidden;
}
#about_products .tab_content .wrap .img_wrap .img_title {
  margin-top: 0.5em;
  color: var(--primary-color);
  text-align: center;
}
#about_products #products5.tab_content .wrap .txt_block .ctl {
  display: none;
}

/* タブコンテンツ */
.tab_content {
  display: none;
}
.tab_content.active {
  display: block;
}
/* フェードイン */
.fadein .tab_content.active {
  animation: fadeIn 0.3s ease;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@media screen and (max-width: 1300px) {
  #about_products #products5.tab_content .wrap .txt_block .ctl {
    display: inline;
  }
}
@media screen and (max-width: 991px) {
  #about_products .tab_content {
    padding: clamp(60px * var(--min-scale-ratio), 60 / var(--base-width) * 100vw, 60px);
  }
  #about_products .tab_list {
    line-height: 130%;
  }
  #about_products .tab_list a {
    padding-bottom: 5%;
  }
  #about_products .tab_list a .txt {
    display: grid;
    place-content: center;
    height: 2.5em;
    text-align: center;
  }
  #about_products .tab_list a br.ctl {
    display: inline;
  }
}
@media screen and (max-width: 640px) {
  #about_products {
    padding-top: min(80 / var(--base-width) * 100vw, 80px * var(--max-scale-ratio));
    padding-bottom: min(15 / var(--base-width) * 100vw, 15px * var(--max-scale-ratio));
  }
  #about_products .inner > .txt_block {
    margin-bottom: min(50 / var(--base-width) * 100vw, 50px * var(--max-scale-ratio));
  }
  #tab_area {
    scroll-margin-top: 45px;
  }
  #about_products .tab_wrapper nav {
    top: 45px;
  }
  #about_products .tab_list {
    margin-bottom: min(20 / var(--base-width) * 100vw, 20px * var(--max-scale-ratio));
    height: auto;
    aspect-ratio: 340 / 66;
    font-size: min(7 / var(--base-width) * 100vw, 1.1rem);
    line-height: 130%;
    border-radius: min(8 / var(--base-width) * 100vw, 8px * var(--max-scale-ratio));
  }
  #about_products .tab_list a {
    padding-bottom: 5%;
  }
  #about_products .tab_list a .txt {
    display: grid;
    place-content: center;
    height: 2.5em;
    text-align: center;
  }
  #about_products .tab_list li a .icon {
    width: calc(40 / 68 * 100%);
  }
  #about_products .tab_contents {
    padding-bottom: min(85 / var(--base-width) * 100vw, 85px * var(--max-scale-ratio));
  }
  #about_products .tab_content {
    padding: min(20 / var(--base-width) * 100vw, 20px * var(--max-scale-ratio));
    border-radius: min(40 / var(--base-width) * 100vw, 40px * var(--max-scale-ratio));
  }
  #about_products .tab_content .wrap {
    flex-direction: column-reverse;
    gap: min(30 / var(--base-width) * 100vw, 30px * var(--max-scale-ratio));
  }
  #about_products .tab_content .wrap + .wrap {
    margin-top: min(60 / var(--base-width) * 100vw, 60px * var(--max-scale-ratio));
  }
  #about_products .tab_content .txt_block,
  #about_products .tab_content .img_block {
    width: 100%;
  }
  #about_products .tab_content .wrap .wrap_title {
    display: block;
    margin-bottom: min(20 / var(--base-width) * 100vw, 20px * var(--max-scale-ratio));
  }
  #about_products .tab_content .wrap .wrap_title .label {
    width: 100%;
    padding: 0.35em 0.8em 0.35em;
    line-height: 130%;
    text-align: center;
    border-radius: 100vmax;
  }
  #about_products .tab_content .wrap .wrap_title .label .txt_komidashi {
    line-height: 130%;
  }
  #about_products .tab_content .wrap .icon_block {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: min(15 / var(--base-width) * 100vw, 15px * var(--max-scale-ratio));
    text-align: center;
  }
  #about_products .tab_content .wrap .icon_block img {
    width: min(80 / var(--base-width) * 100vw, 80px * var(--max-scale-ratio));
  }
  #about_products .tab_content .img_block .img {
    border-radius: min(20 / var(--base-width) * 100vw, 20px * var(--max-scale-ratio));
  }
  #about_products .tab_content .wrap .img_wrap {
    grid-template-columns: repeat(1, 1fr);
    gap: min(10 / var(--base-width) * 100vw, 10px * var(--max-scale-ratio));
    margin-top: min(20 / var(--base-width) * 100vw, 30px * var(--max-scale-ratio));
  }
  #about_products .tab_content .wrap .img_wrap.img_wrap3 {
    grid-template-columns: repeat(2, 1fr);
  }
  #about_products .tab_content .wrap .img_wrap.img_wrap3 .img_wrap_inner:last-of-type {
    transform: translateX(min(5 / var(--base-width) * 100vw + 50%, 5px * var(--max-scale-ratio) + 50%));
  }
  #about_products .tab_content .wrap .img_wrap.img_wrap3 .img_wrap_inner:last-of-type .img_title {
    margin-inline: -3em;
  }
  #about_products .tab_content .wrap .img_wrap.img_wrap4 {
    grid-template-columns: repeat(2, 1fr);
  }
  #about_products .tab_content .wrap .img_wrap .img_title {
    margin-top: 0.25em;
  }
  #about_products .tab_content .wrap .img_wrap4 .img {
    border-radius: min(10 / var(--base-width) * 100vw, 10px * var(--max-scale-ratio));
  }
}

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

lukia_edenworks

--------------------------------------------------*/
#lukia_edenworks {
  position: relative;
  padding-top: 0;
}
#lukia_edenworks > .outer {
  position: relative;
}
#lukia_edenworks > .outer > .inner {
  position: relative;
  text-align: center;
}
#lukia_edenworks .main_title img {
  width: clamp(431px * var(--min-scale-ratio), 431 / var(--base-width) * 100vw, 431px);
}
#lukia_edenworks .sub_ttl {
  margin-bottom: clamp(50px * var(--min-scale-ratio), 50 / var(--base-width) * 100vw, 50px);
}
#lukia_edenworks .sub_ttl .label {
  display: inline-block;
  padding: 0.25em 1em 0.35em;
  color: #fff;
  background: var(--secondary-color);
  border-radius: 100vmax;
  line-height: 1;
}
#lukia_edenworks .inner > .img_block {
  margin-top: clamp(120px * var(--min-scale-ratio), 120 / var(--base-width) * 100vw, 120px);
}
#lukia_edenworks .about_edenworks {
  display: flex;
  justify-content: space-between;
  width: calc(1080 / var(--base-width) * 100%);
  margin-top: clamp(120px * var(--min-scale-ratio), 120 / var(--base-width) * 100vw, 120px);
  margin-inline: auto;
  color: var(--white-color);
  text-align: left;
  background-color: var(--primary-color);
  border-radius: clamp(40px * var(--min-scale-ratio), 40 / var(--base-width) * 100vw,  40px);
  padding: clamp(60px * var(--min-scale-ratio), 60 / var(--base-width) * 100vw, 60px);
}
#lukia_edenworks .about_edenworks .img_block {
  width: calc(320 / 960 * 100%);
}
#lukia_edenworks .about_edenworks .img_block .img {
  border-radius: clamp(10px * var(--min-scale-ratio), 10 / var(--base-width) * 100vw,  10px);
  overflow: hidden;
}
#lukia_edenworks .about_edenworks .txt_block {
  width: calc(590 / 960 * 100%);
}
#lukia_edenworks .edenworks_ttl {
  margin-bottom: 0.8em;
  line-height: 1;
}
@media screen and (max-width: 640px) {
  #lukia_edenworks {
    padding-top: min(20 / var(--base-width) * 100vw, 20px * var(--max-scale-ratio));
  }
  #lukia_edenworks .main_title img {
    width: min(268 / var(--base-width) * 100vw, 268px * var(--max-scale-ratio));
  }
  #lukia_edenworks .main_title {
    margin-bottom: min(40 / var(--base-width) * 100vw, 40px * var(--max-scale-ratio));
  }
  #lukia_edenworks .sub_ttl .label {
    padding: 0.40em 1em 0.5em;
  }
  #lukia_edenworks .sub_ttl {
    margin-bottom: min(30 / var(--base-width) * 100vw, 30px * var(--max-scale-ratio));
  }
  #lukia_edenworks .txt_block p.txt_indent {
    padding-left: 0;
    text-indent: 0;
  } 
  #lukia_edenworks .inner > .img_block {
    width: min(340 / var(--base-width) * 100vw, 340px * var(--max-scale-ratio));
    margin-inline: auto;
    margin-top: min(50 / var(--base-width) * 100vw, 50px * var(--max-scale-ratio));
  }
  #lukia_edenworks .about_edenworks {
    flex-direction: column;
    gap: min(30 / var(--base-width) * 100vw, 30px * var(--max-scale-ratio));
    width: 100%;
    margin-top: min(60 / var(--base-width) * 100vw, 60px * var(--max-scale-ratio));
    border-radius: min(40 / var(--base-width) * 100vw, 40px * var(--max-scale-ratio));
    padding: min(30 / var(--base-width) * 100vw, 30px * var(--max-scale-ratio));
  }
  #lukia_edenworks .about_edenworks .img_block,
  #lukia_edenworks .about_edenworks .txt_block {
    width: 100%;
  }
  #lukia_edenworks .about_edenworks .img_block .img {
    border-radius: min(20 / var(--base-width) * 100vw, 20px * var(--max-scale-ratio));
  }
  #lukia_edenworks .about_edenworks .txt_block .edenworks_ttl {
    text-align: center;
  }
  #lukia_edenworks .about_edenworks .txt_block .txt_note {
    text-align: justify;
  }
}

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

special_contents

--------------------------------------------------*/
#special_contents {
  position: relative;
  background: #CFEBD3 url(../img/bg2.webp);
}
#special_contents > .outer {
  position: relative;
}
#special_contents > .outer > .inner {
  position: relative;
  text-align: center;
}
#special_contents .sub_ttl {
  margin-bottom: clamp(50px * var(--min-scale-ratio), 50 / var(--base-width) * 100vw, 50px);
}
#special_contents .sub_ttl .label {
  display: inline-block;
  padding: 0.25em 1em 0.35em;
  color: #fff;
  background: var(--secondary-color);
  border-radius: 100vmax;
  line-height: 1;
}
#special_contents .movie_block {
  margin-top: clamp(120px * var(--min-scale-ratio), 120 / var(--base-width) * 100vw, 120px);
}
#special_contents .movie_block .movie_wrap {
  position: relative;
  width: calc(760 / 1280 * 100%);
  margin: 0 auto;
  cursor: pointer;
  filter: brightness(1);
  transition: filter .2s ease-out;
}
#special_contents .movie_block .movie_wrap > img {
  border-radius: clamp(30px * var(--min-scale-ratio), 30 / var(--base-width) * 100vw,  30px);
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  transition: box-shadow .2s ease-out;
}
@media (hover: hover) and (pointer: fine) {
  #special_contents .movie_block .movie_wrap:hover {
    filter: brightness(1.05);
    transition: filter .2s ease-out 0.1s;
  }
  #special_contents .movie_block .movie_wrap:hover > img {
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.10);
    transition: box-shadow .2s ease-out 0.1s;
  }
}
#special_contents .movie_block .movie_wrap::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(80 / 760 * 100%);
  aspect-ratio: 1 / 1;
  background: url(../img/special_contents_movie_btn.svg) no-repeat;
  background-size: contain;
  z-index: 1;
}
.modal_mov_content {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0,0,0,.5);
  visibility: hidden; /* 非表示にしておく */
  opacity: 0; /* 非表示にしておく */
  transition: opacity .3s ease-out;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  -webkit-backdrop-filter: blur(7px);
  backdrop-filter: blur(7px);
  pointer-events: none;
}
.modal_mov_content.active {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}
/*
.modal_blur_bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  -webkit-backdrop-filter: blur(7px);
  backdrop-filter: blur(7px);
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.modal_blur_bg.active {
  visibility: visible;
  opacity: 1;
}
*/
#moviePlayer {
  /*
  width: auto;
  height: 80vh;
  */
  width: 75vw;
  aspect-ratio: 1920 / 1080;
  border-radius: 10px;
  overflow: hidden;
}
.modal_mov_content .modal_mov_content_wrap {
  position: relative;
  display: grid;
  place-content: center;
  width: 100%;
  height: 100%;
}
.modal_mov_content .video_wrap {
  position: relative;
}
.modal_mov_content .video_wrap video {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}
.modal_mov_content .modal_close {
  /* reset */
  padding: 0;
  border: none;
  outline: none;
  font: inherit;
  color: inherit;
  background: none;

  position: absolute;
  top: 0;
  right: 0;
  width: clamp(40px, 60 / 1200 * 100vw, 60px);
  aspect-ratio: 1 / 1;
  cursor: pointer;
  border: 1px solid #fff;
  border-radius: 9999px;
  transform: translate3d(150%,-50%,0);
}
.modal_mov_content .modal_close span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 65%;
  height: 1px;
  background-color: #fff;
  transform: translate3d(-50%,-50%,0);
}
.modal_mov_content .modal_close span:nth-child(1) {
  transform: translate3d(-50%,-50%,0) rotate(45deg);
}
.modal_mov_content .modal_close span:nth-child(2) {
  transform: translate3d(-50%,-50%,0) rotate(-45deg);
}
#special_contents .warm_moments_block {
  margin-top: clamp(120px * var(--min-scale-ratio), 120 / var(--base-width) * 100vw, 120px);
}
#special_contents .warm_moments_block .bnr {
  width: calc(640 / 1280 * 100%);
  margin: 0 auto;
}
#special_contents .warm_moments_block .bnr a {
  display: block;
  filter: brightness(1);
  transition: filter .2s ease-out;
}
#special_contents .warm_moments_block .bnr a > img {
  border-radius: clamp(30px * var(--min-scale-ratio), 30 / var(--base-width) * 100vw,  30px);
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  transition: box-shadow .2s ease-out;
}
@media (hover: hover) and (pointer: fine) {
  #special_contents .warm_moments_block .bnr a:hover {
    filter: brightness(1.1);
    transition: filter .2s ease-out 0.1s;
  }
  #special_contents .warm_moments_block .bnr a:hover > img {
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.15);
    transition: box-shadow .2s ease-out 0.1s;
  }
}
@media screen and (max-width: 640px) {
  #special_contents {
    background: url(../img/bg2_sp.webp);
  }
  #moviePlayer {
    /*
    height: 70vh;
    */
    width: calc(100vw - 40px);
  }
  .modal_mov_content .modal_close {
    width: 30px;
    transform: translate3d(35%, -130%, 0);
  }
  #special_contents .movie_block {
    margin-top: min(60 / var(--base-width) * 100vw, 60px * var(--max-scale-ratio));
  }
  #special_contents .movie_block .movie_wrap {
    width: min(300 / var(--base-width) * 100vw, 300px * var(--max-scale-ratio));
  }
  #special_contents .movie_block .movie_wrap > img {
    border-radius: min(20 / var(--base-width) * 100vw, 20px * var(--max-scale-ratio));
  }
  #special_contents .warm_moments_block {
    margin-top: min(50 / var(--base-width) * 100vw, 50px * var(--max-scale-ratio));
  }
  #special_contents .warm_moments_block .bnr {
    width: min(300 / var(--base-width) * 100vw, 300px * var(--max-scale-ratio));
  }
  #special_contents .warm_moments_block .bnr a > img {
    border-radius: min(10 / var(--base-width) * 100vw, 10px * var(--max-scale-ratio));
  }
}

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

about_relationship

--------------------------------------------------*/
#about_relationship {
  position: relative;
  background: var(--white-color);
}
#about_relationship > .outer {
  position: relative;
}
#about_relationship > .outer > .inner {
  position: relative;
  text-align: center;
}
#about_relationship .main_title {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(60px * var(--min-scale-ratio), 60 / var(--base-width) * 100vw, 60px);
  color: #B81C22;
}
#about_relationship .main_title .logo_lukia_stc {
  width: clamp(472px * var(--min-scale-ratio), 472 / var(--base-width) * 100vw, 472px);
}
#about_relationship .img_block {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(40px * var(--min-scale-ratio), 40 / var(--base-width) * 100vw, 40px);
  margin-top: clamp(120px * var(--min-scale-ratio), 120 / var(--base-width) * 100vw, 120px);
}
#about_relationship .img_block .img {
  position: relative;
  border-radius: clamp(20px * var(--min-scale-ratio), 20 / var(--base-width) * 100vw, 20px);
  overflow: hidden;
}
#about_relationship .save_children_japan {
  position: relative;
  margin-top: clamp(120px * var(--min-scale-ratio), 120 / var(--base-width) * 100vw, 120px);
  padding-block: clamp(80px * var(--min-scale-ratio), 80 / var(--base-width) * 100vw, 80px);
  padding-inline: clamp(112px * var(--min-scale-ratio), 112 / var(--base-width) * 100vw, 112px);
  border-radius: clamp(50px * var(--min-scale-ratio), 50 / var(--base-width) * 100vw, 50px);
  background-color: var(--primary-bg-color);
  overflow: hidden;
}
#about_relationship .save_children_japan .sub_ttl {
  margin-bottom: clamp(50px * var(--min-scale-ratio), 50 / var(--base-width) * 100vw, 50px);
}
#about_relationship .save_children_japan .sub_ttl .label {
  display: block;
  padding: 0.55em 1em 0.65em;
  color: #fff;
  background: #E31E1B;
  border-radius: 100vmax;
  line-height: 1;
}
#about_relationship .save_children_japan .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: clamp(60px * var(--min-scale-ratio), 60 / var(--base-width) * 100vw, 60px);
}
#about_relationship .save_children_japan .wrap .logo_block {
  width: calc(376 / 1054 * 100%);
}
#about_relationship .save_children_japan .wrap .txt_block {
  width: calc(600 / 1054 * 100%);
}
#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(310 / 24 * 1em);
  aspect-ratio: 310 / 80;
  padding-left: calc(85 / 24 * 1em);
  color: #fff;
  text-decoration: none;
  background: #121208;
  border-radius: 100vmax;
  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(40 / 24 * 1em);
  width: calc(10 / 24 * 1em);
  aspect-ratio: 8 / 20;
  background: url(../img/btn_icon_right.svg);
  background-size: contain;
  background-repeat: no-repeat;
  transform: translateY(-50%);
}
@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 (max-width: 640px) {
  #about_relationship .main_title {
    gap: min(30 / var(--base-width) * 100vw, 30px * var(--max-scale-ratio));
  }
  #about_relationship .main_title .logo_lukia_stc {
    width: min(296 / var(--base-width) * 100vw, 296px * var(--max-scale-ratio));
  }
  #about_relationship .img_block {
    grid-template-columns: repeat(2, 1fr);
    gap: min(10 / var(--base-width) * 100vw, 10px * var(--max-scale-ratio));
    margin-top: min(50 / var(--base-width) * 100vw, 50px * var(--max-scale-ratio));
  }
  #about_relationship .img_block .img {
    border-radius: min(5 / var(--base-width) * 100vw, 5px * var(--max-scale-ratio));
  }
  #about_relationship .save_children_japan {
    margin-top: min(60 / var(--base-width) * 100vw, 60px * var(--max-scale-ratio));
    padding-block: min(40 / var(--base-width) * 100vw, 40px * var(--max-scale-ratio));
    padding-inline: min(15 / var(--base-width) * 100vw, 15px * var(--max-scale-ratio));
    border-radius: min(40 / var(--base-width) * 100vw, 40px * var(--max-scale-ratio));
  }
  #about_relationship .save_children_japan .sub_ttl {
    margin-bottom: min(40 / var(--base-width) * 100vw, 40px * var(--max-scale-ratio));
  }
  #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: min(20 / var(--base-width) * 100vw, 20px * var(--max-scale-ratio));
    margin-bottom: min(40 / var(--base-width) * 100vw, 40px * var(--max-scale-ratio));
  }
  #about_relationship .save_children_japan .wrap .logo_block,
  #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: min(238 / var(--base-width) * 100vw, 238px * var(--max-scale-ratio));
  }
}

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

 footer

--------------------------------------------------*/
footer {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 140px;
  padding: 0 30px;
  background: #262627;
}
footer .logo_copy {
  display: flex;
  align-items: center;
}
footer .seiko_logo {
  margin-right: 30px;
}
footer .seiko_logo img {
  width: 90px;
  height: 29px;
}
footer .copyright {
  color: #fff;
  font-weight: 400;
  font-size: 1.0rem;
  font-family: 'Noto Sans JP', sans-serif;
  line-height: 1;
  letter-spacing: .05em;
}
footer .other {
  display: flex;
  align-items: center;
}
footer .brand a {
  display: block;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 300px;
  height: 44px;
  font-size: 0.9rem;
  background: #d8d2c5;
  border-radius: 5px;
  transition: filter .1s ease-in-out;
}
@media (hover: hover) and (pointer: fine) {
  footer .brand a:hover {
    filter: brightness(1.1);
    transition: filter .1s ease-in-out .1s;
  }
}
footer .brand a .logo {
  width: 30px;
  height: 31px;
  margin-right: 14px;
}
footer .brand a .ttl {
  width: 206px;
  height: 15px;
}
footer .insta {
  display: flex;
  align-items: center;
  margin-left: 40px;
}
footer .insta a {
  display: flex;
  align-items: center;
  color: #fff;
  font-weight: 400;
  font-size: 1.2rem;
  font-family: 'Noto Sans JP', sans-serif;
  line-height: 1;
  letter-spacing: .05em;
  text-decoration: none;
  transition: opacity .1s ease-in-out;
}
@media (hover: hover) and (pointer: fine) {
  footer .insta a:hover {
    opacity: 0.75;
    transition: opacity .1s ease-in-out .1s;
  }
}
footer .insta .icon_instagram {
  width: 40px;
  height: 40px;
}
footer .insta .txt {
  margin-left: 15px;
}
@media (max-width: 1600px) {
  footer {
    height: max(88px,8.75vw);
    padding: 0 max(15px,1.875vw);
  }
  footer .seiko_logo {
    margin-right: 1.875vw;
  }
  footer .seiko_logo img {
    width: 5.625vw;
    height: auto;
  }
  footer .brand a {
    width: 18.75vw;
    height: auto;
    aspect-ratio: 300 / 44;
  }
  footer .brand a .logo {
    width: 1.875vw;
    height: auto;
    margin-right: .875vw;
  }
  footer .brand a .ttl {
    width: 12.875vw;
    height: auto;
  }
  footer .insta .icon_instagram {
    width: 2.5vw;
    height: auto;
  }
  footer .insta a {
    font-size: 1.1rem;
  }
}
@media (max-width: 991px) {
  footer .seiko_logo {
    margin-right: 18px;
  }
  footer .seiko_logo img {
    width: 60px;
    height: 19px;
  } 
  footer .insta .txt {
    display: none;
  }
  footer .brand a {
    width: 112px;
    height: 33px;
  }
  footer .brand a .logo {
    width: 19px;
    height: 20px;
    margin-right: 10px;
  }
  footer .brand a .ttl {
    width: 60px;
    height: 17px;
  }
  footer .insta {
    margin-left: 20px;
  }
  footer .insta .icon_instagram {
    width: 30px;
    height: 30px;
  }
}
@media (max-width: 640px) {
  footer {
    height: 60px;
    padding: 0 15px;
  }
  footer .seiko_logo img {
    width: 52px;
    height: 17px;
  }
  footer .seiko_logo {
    margin-right: 10px;
  }
  footer .copyright {
    width: 110px;
    transform: scale(.7);
    transform-origin: 0 center;
    /*
    font-size: 7px;
    */
    white-space: nowrap;
  }
  footer .brand a {
    width: 112px;
    height: 33px;
  }
  footer .insta {
    margin-left: 10px;
  }
  footer .insta .icon_instagram {
    width: 25px;
    height: 25px;
  }
}

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

flower_object

--------------------------------------------------*/
.flower_object_block {
  position: absolute;
  display: flex !important;
}
.flower_object_block svg {
  display: block;
  width: 100%;
  height: auto;
  overflow: visible;
}

/* --- flower_type2 --- */

  /* 茎のアニメーション */
  .flower_type2 .flower_type2_stem {
    transform: scaleY(0);
    transform-origin: bottom;
  }
  .flower_type2.scrollin .flower_type2_stem {
    animation: growStem2 0.375s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  }

  /* 葉っぱのアニメーション */
  .flower_type2 .flower_type2_leaf {
    transform-origin: 45.5px 140px;
    opacity: 0;
  }
  .flower_type2.scrollin .flower_type2_leaf {
    animation: growLeaf2 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.15s forwards;
  }

  /* 花のアニメーション */
  .flower_type2 .flower_type2_flower {
    transform-origin: center;
    opacity: 0;
  }
  .flower_type2.scrollin .flower_type2_flower {
    animation: bloomFlower2 1.2s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.30s forwards;
  }

  @keyframes growStem2 {
    0% {
      transform: scaleY(0);
    }
    100% {
      transform: scaleY(1);
    }
  }

  @keyframes growLeaf2 {
    0% {
      opacity: 0;
      transform: scaleX(0);
    }
    60% {
      transform: scaleX(1.05);
    }
    100% {
      opacity: 1;
      transform: scaleX(1);
    }
  }

  @keyframes bloomFlower2 {
    0% {
      opacity: 0;
      transform: scale(0) rotate(-15deg);
    }
    50% {
      opacity: 1;
      transform: scale(1.05) rotate(3deg);
    }
    100% {
      opacity: 1;
      transform: scale(1) rotate(0deg);
    }
  }

/* --- flower_type3 --- */

    /* 茎のアニメーション */
    .flower_type3 .flower_type3_stem {
      transform: scaleY(0);
      transform-origin: bottom;
    }
    .flower_type3.scrollin .flower_type3_stem {
      animation: growStem3 0.375s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    }

    
    /* 葉っぱのアニメーション */
    .flower_type3 .flower_type3_leaf {
      transform-origin: 67.6px 112px;
      opacity: 0;
    }
    .flower_type3.scrollin .flower_type3_leaf {
      animation: growLeaf3 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.15s forwards;
    }
    
    /* 花のアニメーション */
    .flower_type3 .flower_type3_flower {
      transform-origin: center;
      opacity: 0;
    }
    .flower_type3.scrollin .flower_type3_flower {
      animation: bloomFlower3 0.6s cubic-bezier(0.34, 0, 0.25, 1) 0.30s forwards;
    }
    
    @keyframes growStem3 {
      0% {
        transform: scaleY(0);
      }
      100% {
        transform: scaleY(1);
      }
    }
    
    @keyframes growLeaf3 {
      0% {
        opacity: 0;
        transform: scaleX(0);
      }
      60% {
        transform: scaleX(1.05);
      }
      100% {
        opacity: 1;
        transform: scaleX(1);
      }
    }
    
    @keyframes bloomFlower3 {
      0% {
        opacity: 0;
        transform: scale(0) rotate(-15deg);
      }
      100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
      }
    }

/* --- flower_type4 --- */

    /* 葉っぱのアニメーション */
    .flower_type4 .flower_type4_leaf {
      transform-origin: center;
      opacity: 0;
    }
    .flower_type4.scrollin .flower_type4_leaf {
      animation: growLeaf4 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0s forwards;
    }
    
    /* 茎1のアニメーション */
    .flower_type4 .flower_type4_stem1 {
      opacity: 0;
    }
    .flower_type4.scrollin .flower_type4_stem1 {
      animation: popStem4 0.2s cubic-bezier(0.34, 1.56, 0.64, 1) 0.15s forwards;
    }
    
    /* 茎2のアニメーション */
    .flower_type4 .flower_type4_stem2 {
      opacity: 0;
    }
    .flower_type4.scrollin .flower_type4_stem2 {
      animation: popStem4 0.2s cubic-bezier(0.34, 1.56, 0.64, 1) 0.30s forwards;
    }
    
    /* 茎3のアニメーション */
    .flower_type4 .flower_type4_stem3 {
      opacity: 0;
    }
    .flower_type4.scrollin .flower_type4_stem3 {
      animation: popStem4 0.2s cubic-bezier(0.34, 1.56, 0.64, 1) 0.45s forwards;
    }
    
    /* 花のアニメーション */
    .flower_type4 .flower_type4_flower {
      transform-origin: center;
      opacity: 0;
    }
    .flower_type4.scrollin .flower_type4_flower {
      animation: bloomFlower4 0.4s cubic-bezier(0.34, 0, 0.25, 1) 0.40s forwards;
    }
    
    @keyframes growLeaf4 {
      0% {
        opacity: 0;
        transform: scale(0);
      }
      60% {
        transform: scale(1.05);
      }
      100% {
        opacity: 1;
        transform: scale(1);
      }
    }
    
    @keyframes popStem4 {
      0% {
        opacity: 0;
      }
      100% {
        opacity: 1;
      }
    }
    
    @keyframes bloomFlower4 {
      0% {
        opacity: 0;
        transform: scale(0) rotate(-15deg);
      }
      100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
      }
    }

/* --- flower_type5 --- */

    /* 葉っぱのアニメーション */
    .flower_type5 .flower_type5_leaf {
      transform-origin: center;
      opacity: 0;
    }
    .flower_type5.scrollin .flower_type5_leaf {
      animation: growLeaf5 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0s forwards;
    }
    
    /* 花のアニメーション */
    .flower_type5 .flower_type5_flower {
      transform-origin: center;
      opacity: 0;
    }
    .flower_type5.scrollin .flower_type5_flower {
      animation: bloomFlower5 0.6s cubic-bezier(0.34, 0, 0.25, 1) 0.15s forwards;
    }
    
    @keyframes growLeaf5 {
      0% {
        opacity: 0;
        transform: scale(0);
      }
      60% {
        transform: scale(1.05);
      }
      100% {
        opacity: 1;
        transform: scale(1);
      }
    }
    
    @keyframes bloomFlower5 {
      0% {
        opacity: 0;
        transform: scale(0) rotate(-15deg);
      }
      100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
      }
    }