@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;
}
p {
  text-align: justify;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}

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

 CSS Custom Properties 

----------------------------------------------------------------------------*/
:root {
  --primary-color: #00426A;
  --primary-text-color: #00426A;
  --primary-bg-color: #F4F3F0;
  --black: #1C1F21;
  --white: #fff;
  --primary-width: 1600;
  --content-width: 1280;
  --common-margin: min(150 / var(--primary-width) * 100vw, 150px);
  --common-padding: min(150 / var(--primary-width) * 100vw, 150px);
  --common-horizontal-padding: 0px;
  --primary-timing-function: cubic-bezier(.3,1,.4,1);
}
@media screen and (max-width: 991px) {

}
@media screen and (max-width: 767px) {
  :root {
    --primary-width: 375;
    --content-width: 310;
    --common-margin: min(80 / var(--primary-width) * 100vw, 120px);
    --common-padding: min(80 / var(--primary-width) * 100vw, 120px);
    --common-horizontal-padding: min(15 / var(--primary-width) * 100vw, 20px);
  }
}

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

 base

----------------------------------------------------------------------------*/
html {
  font-size: 62.5%;
}
body {
  position: relative;
  color: var(--primary-text-color);
  font-family: 'Zen Kaku Gothic New', sans-serif;
  line-height: 1;
  font-size: 1.6rem;
  background: #fff;
  -webkit-font-smoothing: antialiased;
}
.section_title {
  display: inline-block;
  margin-bottom: 1.2em;
  font-size: clamp(3.2rem, 48 / var(--primary-width) * 100vw, 4.8rem);
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 150%;
  white-space: nowrap;
}
.section_title.small {
  margin-bottom: 1.2em;
  font-size: clamp(3.0rem, 44 / var(--primary-width) * 100vw, 4.4rem);
  line-height: 150%;
}
.section_headline {
  font-size: clamp(2.1rem, 54 / var(--primary-width) * 100vw, 3.2rem);
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 200%;
  white-space: nowrap;
}
.common_title {
  margin-bottom: 1.0em;
  font-size: clamp(2.2rem, 32 / var(--primary-width) * 100vw, 3.2rem);
  font-weight: 700;
  text-align: center;
  line-height: 150%;
  letter-spacing: 0.1em;
}
.common_sub_title {
  margin-bottom: 1.0em;
  font-size: clamp(1.5rem, 26 / var(--primary-width) * 100vw, 2.6rem);
  font-weight: 700;
  text-align: center;
  line-height: 150%;
  letter-spacing: 0.1em;
}
.text_common {
  margin-bottom: 2.2em;
  font-size: clamp(1.5rem, 20 / var(--primary-width) * 100vw, 2.0rem);
  line-height: 220%;
  letter-spacing: 0.05em;
  text-align: justify;
}
.text_common.small {
  font-size: clamp(1.2rem, 18 / var(--primary-width) * 100vw, 1.8rem);
  line-height: 180%;
  letter-spacing: 0.05em;
}
.text_note {
  font-size: clamp(1.2rem, 18 / var(--primary-width) * 100vw, 1.8rem);
  line-height: 180%;
  letter-spacing: 0.05em;
}
.text_common:last-of-type {
  margin-bottom: 0;
}
.text_note {
  font-size: clamp(1.0rem, 12 / var(--primary-width) * 100vw, 1.2rem);
  line-height: 160%;
  letter-spacing: 0.05em;
}
.btn_common {
  display: inline-grid;
  place-content: center;
  width: calc(298 / 20 * 1em);
  padding-bottom: 0.1em;
  aspect-ratio: 298 / 68;
  color: #fff;
  font-size: clamp(1.4rem, 20 / var(--primary-width) * 100vw, 2.0rem);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-decoration: none;
  background-color: var(--black);
  border-radius: 100vmax;
  border: 1px solid var(--black);
  transition: background-color .1s ease-in-out, color .1s ease-in-out;
}
@media (any-hover: hover) {
  .btn_common:hover {
    color: var(--black);
    background-color: #fff;
    transition: background-color .1s ease-in-out .1s, color .1s ease-in-out .1s;
  } 
}
.color {
  color: var(--primary-color);
}
.text_center {
  text-align: center;
}
.text_right {
  text-align: right;
}
.text_left {
  text-align: left;
}
.text_palt {
  font-feature-settings: "palt" !important;
}
.d-block {
  display: block;
}
.d-inline-block {
  display: inline-block;
}
.pc_block {
  display: block;
}
.pc_inline_block {
  display: inline-block;
}
.pc_inline {
  display: inline;
}
.sp_block,
.sp_inline_block,
.sp_inline {
  display: none;
}
.br_ctl {
  display: inline-block;
}
@media screen and (max-width: 991px) {
  .br_ctl {
    display: inline;
  }
}
@media screen and (max-width: 767px) {
  .sp_block {
    display: block;
  }
  .sp_inline_block {
    display: inline-block;
  }
  .sp_inline {
    display: inline;
  }
  .pc_block,
  .pc_inline_block,
  .pc_inline {
    display: none;
  }
  .section_title {
    margin-bottom: 1.4em;
    font-size: min(26 / var(--primary-width) * 100vw, 2.6rem * 1.5);
    line-height: 180%;
    letter-spacing: 0.1em;
  }
  .section_title.small {
    font-size: min(26 / var(--primary-width) * 100vw, 2.6rem * 1.5);
  }
  .section_headline {
    font-size: clamp(2.0rem, 20 / var(--primary-width) * 100vw, 2.5rem);
    line-height: 200%;
  }
  .text_common {
    margin-bottom: 2.0em;
    font-size: min(15 / var(--primary-width) * 100vw, 1.5rem * 1.5);
    line-height: 200%;
    letter-spacing: 0.05em;
  }
  .text_common.small {
    font-size: min(15 / var(--primary-width) * 100vw, 1.5rem * 1.5);
    line-height: 200%;
    letter-spacing: 0.05em;
  }
  .text_common.small.sp_small {
    font-size: min(13 / var(--primary-width) * 100vw, 1.3rem * 1.5);
    line-height: 200%;
    letter-spacing: 0.05em;
  }
  .flex_direction {
    display: flex;
    flex-direction: column;
    gap: min(50 / var(--primary-width) * 100vw, 50px * 1.5);
  }
  .flex_direction > div {
    width: 100% !important;
  }
  .btn_common {
    width: calc(240 / 15 * 1em);
    aspect-ratio: 240 / 60;
    color: #fff;
    font-size: min(15 / var(--primary-width) * 100vw, 1.5rem * 1.5);
    letter-spacing: 0.05em;
  }
}

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

main

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

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

.main_header

--------------------------------------------------*/
.main_header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  z-index: 100;
}
.main_header .outer {
  position: relative;
  width: 100%;
  height: min(90 / 1080 * 100vw, 90px);
  padding: 0 min(25 / 1080 * 100vw, 25px) 0 min(80 / 1080 * 100vw, 80px);
  border-radius: 100vmax;
  border: 1px solid rgba(255, 255, 255, 0.50);
  overflow: hidden;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}
.main_header .outer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 66, 106, 0.5);
  z-index: -2;
}
.main_header .outer::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 66, 106, 0.5);
  z-index: -1;
  opacity: 0;
  transition: opacity .2s ease-in-out;
}
/*
.main_header.header-light .outer::after {
  opacity: 1;
  background: rgba(255, 255, 255, 0.2);
  transition: opacity .1s ease-in-out, background .1s ease-in-out;
}
*/
.main_header.header-dark .outer::after {
  opacity: 1;
  transition: opacity .2s ease-in-out;
}
.main_header .inner {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
}
.main_header .inner .logo {
  width: min(138 / 1080 * 100vw, 138px);
}
.main_header .btns {
  position: relative;
  display: flex;
  align-items: center;
  gap: min(50 / 1080 * 100vw, 50px);
}
.main_header .buy_btns {
  position: relative;
  display: flex;
  align-items: center;
  gap: min(15 / 1080 * 100vw, 15px);
}
.main_header .buy_btns .txt {
  display: inline-block;
  width: 8em;
  margin-right: 0.9em;
  display: flex;
  justify-content: space-between;
  color: #fff;
  font-size: min(16 / 1080 * 100vw, 16px);
  white-space: nowrap;
}
.main_header .buy_btns .txt span:nth-child(1) {
  display: inline-block;
  margin-right: 0.1em;
}
.main_header .buy_btns .txt span:nth-child(2) {
  display: inline-block;
  margin-right: 0.1em;
}
.main_header .buy_btns .txt span:nth-child(3) {
  display: inline-block;
  margin-right: 0.1em;
}
.main_header .buy_btns a {
  display: grid;
  place-content: center;
  width: min(160 / 1080 * 100vw, 160px);
  padding-top: 0.1%;
  aspect-ratio: 160 / 46;
  background-color: #fff;
  border-radius: 100vmax;
}
.main_header .buy_btns a img {
  transition: opacity .1s ease-in-out;
} 
.main_header .buy_btns a:first-of-type img {
  width: min(70 / 1080 * 100vw, 70px);
}
.main_header .buy_btns a:last-of-type img {
  width: min(68 / 1080 * 100vw, 68px);
}
@media (any-hover: hover) {
  .main_header .buy_btns a:hover img {
    opacity: 0.5;
    transition: opacity .1s ease-in-out .1s;
  } 
}
.main_header .contact_btns a {
  display: grid;
  place-content: center;
  width: min(160 / 1080 * 100vw, 160px);
  aspect-ratio: 160 / 46;
  color: #fff;
  font-size: min(16 / 1080 * 100vw, 16px);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-decoration: none;
  background-color: var(--black);
  border-radius: 100vmax;
  transition: background-color .1s ease-in-out, color .1s ease-in-out;
}
@media (any-hover: hover) {
  .main_header .contact_btns a:hover {
    color: var(--black);
    background-color: #fff;
    transition: background-color .1s ease-in-out .1s, color .1s ease-in-out .1s;
  } 
}
@media screen and (max-width: 767px) {
  .main_header {
    height: 60px;
    padding: 10px 0 0;
  }
  .main_header .inner .logo {
    width: 90px;
  }
  .main_header .outer {
    width: calc(360 / var(--primary-width) * 100vw);
    height: 60px;
    margin-inline: auto;
    padding: 0 20px 0 30px;
  }
  .main_header .contact_btns {
    display: none;
  }
  .main_header .buy_btns .txt {
    font-size: 1.2rem;
  }
  .main_header .buy_btns a {
    width: 114px;
    aspect-ratio: 114 / 36;
  }
  .main_header .buy_btns a:first-of-type img {
    width: 50px;
  }
  .main_header .buy_btns a:last-of-type img {
    width: 48px;
  }
}
@media screen and (max-width: 540px) {
  .main_header .inner .logo {
    width: 22px;
  }
  .main_header .buy_btns {
    gap: 8px;
  }
  .main_header .buy_btns .txt {
    flex-wrap: wrap;
    width: 8em;
    margin-right: 5px;
    justify-content: center;
    font-size: 1.2rem;
    line-height: 150%;
  }
  .main_header .buy_btns a {
    width: 96px;
    aspect-ratio: 96 / 34;
  }
  .main_header .buy_btns a:first-of-type img {
    width: 48px;
  }
  .main_header .buy_btns a:last-of-type img {
    width: 45px;
  }
}
@media screen and (max-width: 411px) {
  .main_header .buy_btns .txt {
    width: 4.5em;
  }
}

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

 kv

--------------------------------------------------*/
#kv {
  position: relative;
  width: 100%;
  color: #fff;
  z-index: 1;
}
#kv .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  aspect-ratio: 1600 / 830;
  background: linear-gradient(to bottom, #00426A, #155780);
  z-index: -1;
}
#kv .bg .kv_bg_logo {
  position: absolute;
  top: 0;
  left: 0;
  width: calc(516 / var(--primary-width) * 100vw);
  height: 100%;
  object-fit: cover;
  transition-duration: 4.0s;
}
#kv .bg .kv_bg_logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 0 0;
}
#kv .outer {
  position: relative;
  width: 100%;
  height: 100%;
}
#kv .inner {
  position: relative;
  width: 100%;
  height: 100%;
  aspect-ratio: 1600 / 869;
}
#kv .main_lead {
  display: flex;
  flex-direction: column-reverse;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: calc(340 / var(--primary-width) * 100vw);
  right: calc(204 / var(--primary-width) * 100vw);
}
#kv .main_catchcopy {
  position: relative;
  margin-bottom: calc(56 / 22 * 1em);
  font-size: max(22 / var(--primary-width) * 100vw, 1.4rem);
  font-weight: 400;
  letter-spacing: 0.1em;
}
#kv .product_name {
  display: flex;
  flex-direction: column;
  align-items: center;
}
#kv .product_name_logo {
  display: inline-block;
  width: max(273 / var(--primary-width) * 100vw, 150px);
  padding-right: calc(5 / var(--primary-width) * 100vw);
  transition-duration: 2.0s;
}
#kv .product_name_txt {
  display: inline-block;
  margin-bottom: calc(25 / 20 * 1em);
  font-size: max(20 / var(--primary-width) * 100vw, 1.4rem);
  font-weight: 500;
  letter-spacing: 0.1em;
}
#kv .product_category {
  margin-bottom: calc(10 / 20 * 1em);
  font-size: max(20 / var(--primary-width) * 100vw, 1.2rem);
  font-weight: 500;
  letter-spacing: 0.2em;
}
#kv .main_img {
  position: absolute; 
  bottom: 0;
  right: calc(583 / var(--primary-width) * 100vw);
  width: calc(415 / var(--primary-width) * 100vw);
  aspect-ratio: 415 / 664;
  transition-duration: 1.5s;
  transition-delay: 0.2s;
}
#kv .main_img .product_category {
  display: none;
}
@media screen and (max-width: 991px) {
  #kv .main_lead {
    right: calc(140 / var(--primary-width) * 100vw);
  }
}
@media screen and (max-width: 767px) {
  #kv .inner {
    aspect-ratio: 375 / 701;
  }
  #kv .bg {
    aspect-ratio: 375 / 680;
    background: linear-gradient(to bottom, #00426A, #155780);
  }
  #kv .bg .kv_bg_logo {
    top: auto;
    bottom: calc(-31 / var(--primary-width) * 100vw);
    width: calc(320 / var(--primary-width) * 100vw);
    height: auto;
    aspect-ratio: 320 / 477;
  }
  #kv .main_lead {
    top: min(94 / var(--primary-width) * 100vw, 160px);
    right: 0;
    width: 100%;
  }
  #kv .main_catchcopy {
    width: 100%;
    margin-bottom: 1.5em;
    font-size: calc(16 / var(--primary-width) * 100vw);
    text-align: center;
  }
  #kv .product_name_logo {
    width: calc(120 / var(--primary-width) * 100vw);
    padding-right: 0;
  }
  #kv .product_name_txt {
    font-size: calc(14 / var(--primary-width) * 100vw);
  }
  #kv .product_category {
    width: 100%;
    font-size: calc(14 / var(--primary-width) * 100vw);
    text-align: center;
  }
  #kv .main_img {
    position: absolute;
    bottom: 0;
    right: calc(73 / var(--primary-width) * 100vw);
    width: calc(222 / var(--primary-width) * 100vw);
    aspect-ratio: 5 / 8;
  }
  #kv .main_img .product_category {
    display: inline-block;
    position: absolute;
    bottom: calc(-15 / var(--primary-width) * 100vw);
    left: auto;
    right: 0;
    padding: 0.40em 0.6em 0.45em 0.8em;
    color: var(--primary-color);
    font-size: calc(12 / var(--primary-width) * 100vw);
    letter-spacing: 0.2em;
    border: 1px solid var(--primary-color);
    border-radius: 100vmax;
  }
}

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

introduction

--------------------------------------------------*/
#introduction {
  position: relative;
  padding-top: min(170 / var(--primary-width) * 100vw, 170px);
  padding-inline: var(--common-horizontal-padding);
  padding-bottom: min(220 / var(--primary-width) * 100vw, 220px);
}
#introduction .outer {
  position: relative;
}
#introduction .inner {
  position: relative;
  width: min(950 / var(--primary-width) * 100vw, 950px);
  margin-inline: auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
#introduction .inner .text_block {
  margin-bottom: -0.75em;
  font-size: clamp(1.4rem, 22 / var(--primary-width) * 100vw, 2.2rem);
  line-height: 250%;
  letter-spacing: 0.1em;
}
#introduction .inner .text_block p:not(:last-of-type) {
  margin-bottom: 2.5em;
}
#introduction .inner .logo_block .logo {
  width: min(100 / 1080 * 100vw, 100px);
}
@media screen and (max-width: 767px) {
  #introduction {
    padding-top: min(80 / var(--primary-width) * 100vw, 100px);
    padding-bottom: min(120 / var(--primary-width) * 100vw, 120px * 1.5);
  }
  #introduction .inner {
    width: 100%;
    gap: min(70 / var(--primary-width) * 100vw, 70px * 1.5);
  }
  #introduction .inner .text_block {
    margin-bottom: 0;
    font-size: min(15 / var(--primary-width) * 100vw, 1.5rem * 1.5);
    line-height: 250%;
  }
  #introduction .inner .text_block p {
    text-align: center;
  }
  #introduction .inner .logo_block .logo {
    width: min(50 / var(--primary-width) * 100vw, 50px * 1.5) !important;
    margin-inline: auto;
  }
}

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

prevention

--------------------------------------------------*/
#prevention {
  position: relative;
  padding-block: var(--common-padding);
  background-color: var(--primary-color);
}
#prevention .outer {
  position: relative;
  width: min(var(--content-width) / var(--primary-width) * 100vw, var(--content-width) * 1px);
  margin-inline: auto;
}
#prevention .section_title {
  color: #fff;
}
#prevention .section_title span.lts {
  display: inline-block;
  margin-left: -0.35em;
}
#prevention .inner {
  position: relative;
  display: flex;
  justify-content: space-between;
  color: #fff;
}
#prevention .text_block {
  flex: 1;
}
#prevention .text_block .text_common {
  
}
#prevention .text_block .text_common:first-of-type {
  margin-top: -0.25em;
  margin-bottom: 4.0em;
}
#prevention .text_block .strong {
  position: relative;
  display: inline-block;
  margin-top: 0.35em;
  font-size: calc(24 / 20 * 1em);
  font-weight: 400;
  /*
  text-decoration-line: underline;
  text-decoration-color: #fff;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.5em;
  */
}
#prevention .text_block .strong::before {
  content: "";
  position: absolute;
  bottom: -0.2em;
  left: 0;
  width: 105%;
  height: 1px;
  background-color: #fff;
}
#prevention .text_block .strong.t2::before {
  width: calc(100% - 0.5em);
}
#prevention .img_block {
  width: calc(640 / var(--content-width) * 100%);
}
@media screen and (max-width: 991px) {
  #prevention .outer {
    width: 90%;
  }
  #prevention .img_block {
    width: 45%;
  }
  #prevention .text_block {
    max-width: 320px;
  }
}
@media screen and (max-width: 767px) {
  #prevention .outer {
    width: min(330 / var(--primary-width) * 100vw, 330px * 1.5);
  }
  #prevention .section_title,
  #prevention .text_block {
    display: block;
    width: min(310 / var(--primary-width) * 100vw, 310px * 1.5) !important;
    margin-inline: auto;
    max-width: inherit;
  }
  #prevention .text_block .text_common {
    margin-bottom: 3em;
  }
  #prevention .text_block .text_common:last-of-type {
    margin-bottom: 0;
  }
  #prevention .text_block .strong {
    margin-top: 0;
    padding-top: 1em;
    font-size: calc(22 / 15 * 1em);
    line-height: 220%;
  }
  #prevention .text_block .strong.t2 {
    padding-top: 0;
  }
  #prevention .text_block .strong::before {
    width: calc(100% - 0.15em) !important;
    bottom: 0.15em;
  }
}

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

causes

--------------------------------------------------*/
#causes {
  position: relative;
  padding-block: var(--common-padding);
  padding-inline: var(--common-horizontal-padding);
  background: var(--primary-bg-color);
}
#causes .outer {
  position: relative;
  width: min(var(--content-width) / var(--primary-width) * 100vw, var(--content-width) * 1px);
  margin-inline: auto;
}
#causes .chart_wrap {
  position: relative;
}
#causes .chart_wrap .lead_block {
  position: absolute;
  top: -10px;
  left: 0;
}
#causes .chart_wrap .lead_block br.ctl {
  display: none;
}
#causes .chart_wrap .list_item {
  position: relative;
  width: calc(450 / var(--content-width) * 100%);
  padding: clamp(15px, 30 / var(--primary-width) * 100vw, 30px);
  background: #fff;
  border-radius: 15px;
  border: 1px solid var(--primary-color);
  z-index: 2;
  opacity: 0;
}
#causes .chart_wrap .list_block.scrollin .list_item {
  animation: fadein 1.0s var(--primary-timing-function) both;
}
#causes .chart_wrap .list_item.item1 {
  position: absolute;
  bottom: calc(var(--absolute-btm) + 20px);
  left: 0;
}
#causes .chart_wrap .list_block.scrollin .list_item.item1 {
  animation-delay: 0.2s;
}
#causes .chart_wrap .list_item.item2 {
  /*
  position: absolute;
  bottom: calc(var(--absolute-btm) + 20px);
  right: 0;
  */
  margin-left: auto;
  margin-bottom: 20px;
}
#causes .chart_wrap .list_block.scrollin .list_item.item2 {
  animation-delay: 0.4s;
}
#causes .chart_wrap .list_item.item3 {
  position: absolute;
  bottom: 0;
  left: 0;
}
#causes .chart_wrap .list_block.scrollin .list_item.item3 {
  animation-delay: 0.6s;
}
#causes .chart_wrap .list_item.item4 {
  margin-left: auto;
}
#causes .chart_wrap .list_block.scrollin .list_item.item4 {
  animation-delay: 0.8s;
}
#causes .chart_wrap .list_item .list_num {
  position: absolute;
  top: 0;
  left: 0.25em;
  font-size: clamp(5.2rem, 80 / var(--primary-width) * 100vw, 8.0rem);
  font-weight: 400;
  color: var(--primary-color);
  opacity: 0.2;
}
#causes .chart_wrap .list_item .list_title {
  position: relative;
  text-align: center;
}
#causes .chart_wrap .list_item .list_title span {
  display: inline-block;
  margin-bottom: min(35 / var(--primary-width) * 100vw, 35px);
  padding: 0.175em 0.35em 0.30em 0.45em;
  color: #fff;
  font-size: clamp(1.5rem,22 / var(--primary-width) * 100vw, 2.2rem);
  letter-spacing: 0.05em;
  background: var(--primary-color);
}
#causes .chart_wrap .list_item .list li {
  position: relative;
  display: flex;
  letter-spacing: 0.02em;
}
#causes .chart_wrap .list_item .list li::before {
  content: '・';
}
#causes .chart_wrap .img_block {
  display: flex;
  align-items: flex-end;
  position: absolute;
  bottom: 0;
  left: 50%;
  width: calc(242 / var(--content-width) * 100%);
  height: 100%;
  transform: translateX(-50%);
}
#causes .chart_wrap .list_block .img_block > img {
  opacity: 0;
}
#causes .chart_wrap .list_block.scrollin .img_block > img {
  animation: fadein 1.0s var(--primary-timing-function) both;
}
#causes .chart_wrap .img_block .bd.bd1,
#causes .chart_wrap .img_block .bd.bd2 {
  position: absolute;
  left: min(80 / var(--primary-width) * 100vw, 80px);
  bottom: min(230 / var(--primary-width) * 100vw, 230px);
  width: 1px;
  height: 24%;
  background-color: var(--primary-color);
  opacity: 0;
}
#causes .chart_wrap .list_block.scrollin .img_block .bd {
  animation: fadein 1.0s var(--primary-timing-function) both;
}
#causes .chart_wrap .list_block.scrollin .img_block .bd.bd1 {
  animation-delay: 0.3s;
}
#causes .chart_wrap .list_block.scrollin .img_block .bd.bd2 {
  animation-delay: 0.5s;
}
#causes .chart_wrap .img_block .bd.bd2 {
  left: auto;
  right: min(80 / var(--primary-width) * 100vw, 80px);
  height: 50%;
}
#causes .chart_wrap .img_block .bd.bd1::before,
#causes .chart_wrap .img_block .bd.bd2::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: min(300 / var(--primary-width) * 100vw, 300px);
  height: 1px;
  background-color: var(--primary-color);
}
#causes .chart_wrap .img_block .bd.bd2::before {
  left: 0;
  right: auto;
}
#causes .chart_wrap .img_block .bd.bd1::after,
#causes .chart_wrap .img_block .bd.bd2::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 50%;
  width: 6px;
  height: 6px;
  background-color: var(--primary-color);
  border-radius: 100vmax;
  transform: translate3d(50%, 50%, 0);
}
@media screen and (max-width: 991px) {
  #causes .chart_wrap .lead_block .text_common {
    line-height: 180%;
  }
  #causes .chart_wrap .img_block .bd.bd1 {
    height: 30%;
  }
  #causes .chart_wrap .img_block .bd.bd2 {
    height: 60%;
  }
  #causes .chart_wrap .list_item .list li br.ctl {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  #causes .outer {
    width: min(var(--content-width) / var(--primary-width) * 100vw, var(--content-width) * 1.5px);
  }
  #causes .chart_wrap .lead_block {
    position: relative;
    top: auto;
    left: auto;
    margin-bottom: min(50 / var(--primary-width) * 100vw, 75px);
  }
  #causes .chart_wrap .img_block {
    display: block;
    position: relative;
    bottom: auto;
    left: auto;
    width: 100%;
    height: auto;
    margin-block: min(20 / var(--primary-width) * 100vw, 30px);
    text-align: center;
    transform: none;
  }
  #causes .chart_wrap .img_block img {
    width: min(192 / 310 * 100%, 192px * 1.5);
    opacity: 0;
  }
  #causes .chart_wrap .img_block.scrollin img {
    animation: fadein 1.0s var(--primary-timing-function) both !important;
  }
  #causes .chart_wrap .list_item {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    width: 100% !important;
    margin: 0 !important;
    margin-bottom: min(20 / var(--primary-width) * 100vw, 30px) !important;
    transform: none !important;
  }
  #causes .chart_wrap .list_block.scrollin .list_item {
    animation: none !important;
  }
  #causes .chart_wrap .list_block .list_item.scrollin {
    animation: fadein 1.0s var(--primary-timing-function) both !important;
  }
  #causes .chart_wrap .list_item.item4 {
    margin-bottom: 0 !important;
  }
  #causes .chart_wrap .img_block .bd.bd1,
  #causes .chart_wrap .img_block .bd.bd2 {
    left: calc(40 / var(--content-width) * 100%);
    bottom: min(170 / var(--primary-width) * 100vw, 170px * 1.5);
    width: calc(80 / var(--content-width) * 100%);
    height: 1px;
    animation: none !important;
  }
  #causes .chart_wrap .img_block.scrollin .bd {
    animation: fadein 1.0s var(--primary-timing-function) both !important;
  }
  #causes .chart_wrap .img_block .bd.bd2 {
    left: auto;
    right: calc(40 / var(--content-width) * 100%);
  }
  #causes .chart_wrap .img_block .bd.bd1::after,
  #causes .chart_wrap .img_block .bd.bd2::after {
    bottom: 0;
    right: 0;
    transform: translate3d(50%, 50%, 0);
  }
  #causes .chart_wrap .img_block .bd.bd2::after {
    left: 0;
    right: auto;
    transform: translate3d(-50%, 50%, 0);
  }
  #causes .chart_wrap .img_block .bd.bd1::before,
  #causes .chart_wrap .img_block .bd.bd2::before {
    top: auto;
    right: auto;
    bottom: 0;
    left: 0;
    width: 1px;
    height: min(100 / var(--primary-width) * 100vw, 100px * 1.5);
  }
  #causes .chart_wrap .img_block .bd.bd2::before {
    right: 0;
    bottom: 0;
    left: auto;
    width: 1px;
    height: min(200 / var(--primary-width) * 100vw, 200px * 1.5);
    transform: translateY(100%);
  }
  #causes .chart_wrap .list_item .list_num {
    top: 0.15em;
    left: 0.35em;
    font-size: min(60 / var(--primary-width) * 100vw, 6.0rem * 1.5);
  }
  #causes .chart_wrap .list_item .list_title span {
    display: inline-block;
    margin-bottom: min(30 / var(--primary-width) * 100vw, 30px * 1.5);
    padding: 0.25em 0.35em 0.30em 0.45em;
    font-size: min(20 / var(--primary-width) * 100vw, 2.0rem * 1.5);
  }
}


.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  visibility: hidden;
  pointer-events: none;
  opacity: 0
}
.modal.open {
  visibility: visible;
  pointer-events: all;
  opacity: 1;
}
.modal_bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 998;
  visibility: hidden;
  pointer-events: none;
  opacity: 0
}
.modal_bg.open {
  visibility: visible;
  pointer-events: all;
  opacity: 1;
}
.modal .outer {
  position: relative;
  width: 100%;
  height: 100%;
  display: grid;
  place-content: center;
}
.modal .modal_contents {
  position: relative;
  padding: 100px;
  background: #fff;
}

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

understand_growth_serum

--------------------------------------------------*/
#understand_growth_serum {
  position: relative;
  padding-top: var(--common-padding);
  padding-inline: var(--common-horizontal-padding);
  background: #fff;
}
#understand_growth_serum .outer .section_title {
  display: block;
}
#understand_growth_serum #scalp_compatibility .outer {
  position: relative;
  width: min(1420 / var(--primary-width) * 100vw, 1420px);
  margin-inline: auto;
  margin-top: var(--common-margin);
  padding-block: var(--common-padding);
  background: var(--primary-color);
  border-radius: 15px;
}
#understand_growth_serum #scalp_compatibility .inner {
  position: relative;
  display: flex;
  justify-content: space-between;
  width: min(1120 / var(--primary-width) * 100vw, 1120px);
  margin-inline: auto;
  color: #fff;
  margin-bottom: min(180 / var(--primary-width) * 100vw, 180px);
}
#understand_growth_serum #scalp_compatibility .text_block {
  position: relative;
  flex: 1;
}
#understand_growth_serum #scalp_compatibility .text_block .section_headline {
  color: var(--primary-color);
  line-height: 1;
}
#understand_growth_serum #scalp_compatibility .text_block .section_headline span {
  display: inline-block;
  padding: 0.25em 0.35em 0.25em 0.40em;
  letter-spacing: 0.05em;
  background: #fff;
  opacity: 0;
}
#understand_growth_serum #scalp_compatibility .text_block .section_headline.scrollin span {
  animation: fadein_x 1.0s var(--primary-timing-function) both;
}
#understand_growth_serum #scalp_compatibility .text_block .section_headline span:not(:first-of-type) {
  margin-top: 0.4em;
  animation-delay: 0.4s;
}
#understand_growth_serum #scalp_compatibility .text_block .text_common {
  /*
  width: min(500 / var(--primary-width) * 100vw, 500px);
  */
  margin-top: min(40 / var(--primary-width) * 100vw, 40px);
  font-weight: 400;
}
#understand_growth_serum #scalp_compatibility .img_block {
  position: relative;
  flex-shrink: 0;
  width: calc(430 / 1120 * 100%);
}
#understand_growth_serum #scalp_compatibility .chart_block {
  width: min(1120 / var(--primary-width) * 100vw, 1120px);
  margin-inline: auto;
  text-align: center;
}
#understand_growth_serum #scalp_compatibility .chart_block .section_headline {
  display: inline-block;
  margin-bottom: min(65 / var(--primary-width) * 100vw, 65px);
  padding: 0.20em 0.60em 0.30em 0.70em;
  letter-spacing: 0.05em;
  line-height: 1;
  background: #fff;
}
#understand_growth_serum #featured_ingredient {
  position: relative;
  padding-block: var(--common-padding);
}
#understand_growth_serum #featured_ingredient .outer {
  position: relative;
  width: min(var(--content-width) / var(--primary-width) * 100vw, var(--content-width) * 1px);
  margin-inline: auto;
}
#understand_growth_serum #featured_ingredient .outer .section_title .wrap {
  display: inline-block;
  padding: 0.25em 0.25em 0.25em 0.35em;
  color: #fff;
  font-size: clamp(1.6rem, 24 / var(--primary-width) * 100vw, 2.4rem);
  letter-spacing: 0.05em;
  line-height: 1;
  background: var(--primary-color);
  opacity: 0;
}
#understand_growth_serum #featured_ingredient .outer .section_title.scrollin .wrap {
  animation: fadein_x 1.0s var(--primary-timing-function) both;
}
#understand_growth_serum #featured_ingredient .outer .section_title .txt {
  display: inline-block;
  opacity: 0;
}
#understand_growth_serum #featured_ingredient .outer .section_title.scrollin .txt {
  animation: fadein 1.0s var(--primary-timing-function) 0.2s both;
}
#understand_growth_serum #featured_ingredient .outer .section_title.scrollin .txt sup {
  display: inline-block;
  font-size: 0.5em;
  line-height: 1;
  transform: translateY(-0.1em);
}
#understand_growth_serum #featured_ingredient .outer .section_title.scrollin .txt .min {
  display: inline-block;
  margin-inline: -0.5em;
  font-size: 70%;
}
#understand_growth_serum #featured_ingredient .inner {
  position: relative;
  display: flex;
  justify-content: space-between;
}
#understand_growth_serum #featured_ingredient .inner .text_block {
  margin-top: -0.5em;
}
#understand_growth_serum #featured_ingredient .inner .text_block sup {
  display: inline-block;
  font-size: 0.6em;
  transform: translateY(0.2em);
}
#understand_growth_serum #featured_ingredient .inner .text_block .btn {
  margin-block: min(40 / var(--primary-width) * 100vw, 40px);
}
#understand_growth_serum #featured_ingredient .inner .text_block .note {
  text-indent: -2em;
  padding-left: 2em;
  padding-right: 1em;
  font-size: clamp(1.1rem, 14 / var(--primary-width) * 100vw, 1.4rem);
  line-height: 160%;
  letter-spacing: 0.05em;
}
#understand_growth_serum #featured_ingredient .inner .text_block .note .mark {
  position: relative;
  display: inline-block;
  width: 2em;
  text-indent: 0;
  transform: scale(0.70) translateY(-0.2em);
}
#understand_growth_serum #featured_ingredient .inner .img_block {
  width: calc(640 / var(--content-width) * 100%);
}
@media screen and (max-width: 1100px) {
  #understand_growth_serum #scalp_compatibility .img_block {
    width: calc(300 / 1120 * 100%);
  }
  #understand_growth_serum #scalp_compatibility .text_block .text_common {
    width: 50vw;
  }
}
@media screen and (max-width: 991px) {
  #understand_growth_serum #featured_ingredient .inner {
    gap: 20px;
  }
  #understand_growth_serum #featured_ingredient .inner .img_block {
    width: calc(560 / var(--content-width) * 100%);
  }
}
@media screen and (max-width: 767px) {
  #understand_growth_serum {
    padding-inline: 0;
  }
  #understand_growth_serum #scalp_compatibility .outer {
    width: min(360 / var(--primary-width) * 100vw, 360px * 1.5);
    margin-top: min(60 / var(--primary-width) * 100vw, 60px * 1.5);
  }
  #understand_growth_serum #featured_ingredient .outer .section_title .txt {
    font-size: 90%;
    line-height: 180%;
  }
  #understand_growth_serum #scalp_compatibility .inner {
    width: min(var(--content-width) / var(--primary-width) * 100vw, var(--content-width) * 1.5px);
    margin-inline: auto;
    margin-bottom: min(80 / var(--primary-width) * 100vw, 80px * 1.5);
  }
  #understand_growth_serum #scalp_compatibility .text_block .text_common {
    width: auto;
    margin-top: min(50 / var(--primary-width) * 100vw, 50px * 1.5);
  }
  #understand_growth_serum #scalp_compatibility .img_block {
    width: min(216 / var(--content-width) * 100%, 216px * 1.5);
    margin-inline: auto;
  }
  #understand_growth_serum #scalp_compatibility .chart_block {
    width: 100%;
  }
  #understand_growth_serum #scalp_compatibility .chart_block .section_headline {
    margin-bottom: min(50 / var(--primary-width) * 100vw, 50px * 1.5);
    padding: 0.20em 0.40em 0.30em 0.50em;
  }
  #understand_growth_serum #featured_ingredient .inner {
    flex-direction: column-reverse;
    gap: min(40 / var(--primary-width) * 100vw, 40px * 1.5);
  }
  #understand_growth_serum #featured_ingredient .outer {
    width: min(330 / var(--primary-width) * 100vw, 330px * 1.5);
  }
  #understand_growth_serum #featured_ingredient .outer .section_title .wrap {
    padding: 0.15em 0.20em 0.25em 0.30em;
    font-size: calc(20 / 26 * 100%);
    letter-spacing: 0.05em;
  }
  #understand_growth_serum #featured_ingredient .inner .text_block .btn {
    margin-block: min(50 / var(--primary-width) * 100vw, 50px * 1.5);
    text-align: center;
  }
  #understand_growth_serum #featured_ingredient .inner .text_block .note {
    font-size: min(13 / var(--primary-width) * 100vw, 1.3rem * 1.5);
    line-height: 200%;
  }
}

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

plant_extracts

--------------------------------------------------*/
#plant_extracts {
  position: relative;
  padding-top: 0;
  padding-bottom: calc(95 / var(--primary-width) * 100vw);
  background-color: var(--primary-color);
}
#plant_extracts .bd {
  position: absolute;
  top: calc(55 / var(--primary-width) * 100vw);
  left: 50%;
  width: calc(830 / var(--primary-width) * 100vw);
  aspect-ratio: 1 / 1;
  border: 4px solid #fff;
  transform: translate3d(-50%, 0, 0) scale(1.02);
  border-radius: 100vmax;
  opacity: 0;
  filter: blur(10px);
  transition: opacity 1.0s var(--primary-timing-function), transform 1.0s var(--primary-timing-function), filter 1.0s var(--primary-timing-function);
  transition-delay: 0.25s;
}
#plant_extracts.scrollin .bd {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(-50%, 0, 0) scale(1.0);
}
#plant_extracts .bd.bd2 {
  top: calc(55 / var(--primary-width) * 100vw + 14px);
  width: calc(830 / var(--primary-width) * 100vw - 28px);
  border: 1px solid #fff;
  transition-delay: 0.35s;
}
#plant_extracts .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#plant_extracts .bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#plant_extracts .outer {
  position: relative;
}
#plant_extracts .inner {
  position: relative;
  color: #fff;
}
#plant_extracts .text_block {
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: column;
  width: calc(880 / var(--primary-width) * 100vw);
  padding-top: calc(165 / var(--primary-width) * 100vw);
  aspect-ratio: 1 / 1;
  margin-inline: auto;
  z-index: 3;
}
#plant_extracts .plant_extracts_title.section_title {
  margin-bottom: calc(30 / 40 * 1em);
  color: #fff;
  font-size: calc(40 / var(--primary-width) * 100vw);
  text-align: center;
  letter-spacing: 0.075em;
}
#plant_extracts .plant_extracts_title.section_title .min {
  display: inline-block;
  margin-inline: -0.6em;
  font-size: 70%;
}
#plant_extracts .plant_extracts_title.section_title .ruby {
  position: relative;
  display: inline-block;
}
#plant_extracts .plant_extracts_title.section_title .ruby > .rt {
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  font-size: calc(14 / 48 * 1em);
  text-align: left;
  letter-spacing: 0.1em;
  transform: translateX(-0.35em) translateY(-2.8em);
}
#plant_extracts .inner .text_block .text_common {
  text-align: center;
  font-size: calc(20 / var(--primary-width) * 100vw);
}
#plant_extracts .inner .text_block .text_common.small {
  display: inline-block;
  margin-top: 0.2em;
}
#plant_extracts .extracts_list {
  position: relative;
  display: flex;
  justify-content: space-between;
  width: calc(510 / 880 * 100%);
  margin-inline: auto;
  margin-top: calc(45 / var(--primary-width) * 100vw);
  padding-top: calc(45 / var(--primary-width) * 100vw);
}
#plant_extracts .extracts_list .img {
  position: absolute;
  top: 0;
  left: 50%;
  width: calc(165 / 510 * 100%);
  transform: translateX(-50%);
}
#plant_extracts .extracts_list .list {
  width: calc(170 / 510 * 100%);
}
#plant_extracts .extracts_list .list.list3 {
  display: none;
}
#plant_extracts .extracts_list .list .text_note {
  font-size: calc(12 / var(--primary-width) * 100vw);
}
#plant_extracts .inner .img_block {
  position: relative;
  width: calc(620 / var(--content-width) * 100%);
}
@media screen and (max-width: 991px) {
  #plant_extracts {
    padding-top: 60px;
    padding-bottom: 25px;
  }
  #plant_extracts .text_block {
    width: 480px;
    padding-top: 25px;
  }
  #plant_extracts .plant_extracts_title.section_title {
    margin-bottom: 20px;
    font-size: 2.2rem;
  }
  #plant_extracts .bd {
    top: 28px;
    width: 480px;
  }
  #plant_extracts .bd.bd2 {
    top: calc(28px + 14px);
    width: calc(480px - 28px);
  }
  #plant_extracts .inner .text_block .text_common {
    font-size: 1.1rem;
  }
  #plant_extracts .extracts_list {
    width: 300px;
    margin-top: 35px;
    padding-top: 10px;
  }
  #plant_extracts .extracts_list .list .text_note {
    font-size: 0.8rem;
  }
}
@media screen and (max-width: 767px) {
  #plant_extracts {
    padding-top: 0;
    padding-bottom: calc(60 / var(--primary-width) * 100vw);
  }
  #plant_extracts .bd {
    position: absolute;
    top: calc(105 / var(--primary-width) * 100vw);
    left: 50%;
    width: calc(520 / var(--primary-width) * 100vw);
  }
  #plant_extracts .bd.bd2 {
    top: calc(105 / var(--primary-width) * 100vw + 14px);
    width: calc(520 / var(--primary-width) * 100vw - 28px);
  }
  #plant_extracts .bg {
    height: auto;
    aspect-ratio: 375 / 740;
  }
  #plant_extracts .text_block {
    width: 100%;
    padding-top: calc(170 / var(--primary-width) * 100vw);
    aspect-ratio: inherit;
  }
  #plant_extracts .plant_extracts_title.section_title {
    margin-bottom: calc(30 / var(--primary-width) * 100vw);
    font-size: calc(26 / var(--primary-width) * 100vw);
  }
  #plant_extracts .plant_extracts_title.section_title .ruby > .rt {
    font-size: calc(13 / 26 * 1em);
    letter-spacing: 0.05em;
    transform: translateX(-0.5em) translateY(-2em);
  }
  #plant_extracts .inner .text_block .text_common {
    font-size: calc(15 / var(--primary-width) * 100vw);
    line-height: 200%;
    letter-spacing: 0.075em;
  }
  #plant_extracts .extracts_list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: calc(25 / var(--primary-width) * 100vw);
    width: calc(var(--content-width) / var(--primary-width) * 100vw);
    margin-top: calc(40 / var(--primary-width) * 100vw);
    padding-top: 0;
  }
  #plant_extracts .extracts_list .img {
    position: relative;
    top: auto;
    left: auto;
    width: calc(106 / var(--primary-width) * 100vw);
    transform: none;
  }
  #plant_extracts .extracts_list .list1,
  #plant_extracts .extracts_list .list2 {
    display: none;
  }
  #plant_extracts .extracts_list .list.list3 {
    display: block;
    width: 100%;
  }
  #plant_extracts .extracts_list .list3 .text_note {
    font-size: min(12 / var(--primary-width) * 100vw, 1.2rem * 1.5);
    line-height: 160%;
    letter-spacing: 0.05em;
  }
}

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

unlock_potential

--------------------------------------------------*/
#unlock_potential {
  position: relative;
  padding-block: var(--common-padding);
  padding-inline: var(--common-horizontal-padding);
  background: var(--primary-bg-color);
}
#unlock_potential .inner {
  position: relative;
  width: min(var(--content-width) / var(--primary-width) * 100vw, var(--content-width) * 1px);
  margin-inline: auto;
}
#unlock_potential .inner .lead_block {
  position: relative;
  margin-bottom: min(60 / var(--primary-width) * 100vw, 60px);
}
#unlock_potential .inner .step_flow {
  position: relative;
  display: flex;
  justify-content: space-between;
  width: min(1204 / var(--primary-width) * 100vw, 1204px);
  margin-inline: auto;
  margin-bottom: min(80 / var(--primary-width) * 100vw, 80px);
}
#unlock_potential .inner .step_flow .arrow {
  display: flex;
  align-items: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(25 / var(--primary-width) * 100vw, 25px);
  height: 100%;
  transition-delay: 0.2s;
}
#unlock_potential .inner .step_flow .arrow span {
  display: inline-block;
  width: 100%;
  aspect-ratio: 25 / 35;
  background-color: var(--primary-color);
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
}
#unlock_potential .inner .step_flow .step {
  position: relative;
  width: calc(540 / 1204 * 100%);
  padding-block: clamp(30px, 60 / var(--primary-width) * 100vw, 60px);
  padding-inline: clamp(30px, 59 / var(--primary-width) * 100vw, 59px);
  background: #fff;
  border: 1px solid var(--primary-color);
  border-radius: 20px;
}
#unlock_potential .inner .step_flow .step.step2 {
  transition-delay: 0.4s;
}
#unlock_potential .inner .step_flow .step .img_block {
  width: calc(405 / 420 * 100%);
  margin-inline: auto;
  margin-bottom: min(40 / var(--primary-width) * 100vw, 40px);
}
#unlock_potential .inner .step_title {
  display: inline-block;
  margin-bottom: min(25 / var(--primary-width) * 100vw, 25px);
  padding: 0.35em 0.55em 0.5em 0.55em;
  color: #fff;
  font-size: clamp(1.6rem, 24 / var(--primary-width) * 100vw, 2.4rem);
  letter-spacing: 0.05em;
  line-height: 1;
  background: var(--primary-color);
}
#unlock_potential .inner .step_flow .step .step_title.bd {
  margin-top: min(20 / var(--primary-width) * 100vw, 20px);
  margin-bottom: min(10 / var(--primary-width) * 100vw, 10px);
  padding: 0.35em 0.45em 0.4em 0.55em;
  color: var(--primary-color);
  font-size: clamp(1.2rem, 18 / var(--primary-width) * 100vw, 1.8rem);
  letter-spacing: 0.05em;
  line-height: 1;
  background: transparent;
  border: 1px solid var(--primary-color);
}
#unlock_potential .inner .step_flow .step .text_common {
  margin-bottom: 0.5em;
}
#unlock_potential .inner .step_flow .step .text_common:not(.small) {
  letter-spacing: 0em;
}
#unlock_potential .inner .other_point_block {
  position: relative;
  width: min(1204 / var(--primary-width) * 100vw, 1204px);
  margin-inline: auto;
  padding-block: min(50 / var(--primary-width) * 100vw, 50px) min(60 / var(--primary-width) * 100vw, 60px);
  background: #fff;
  border: 1px solid var(--primary-color);
  border-radius: 20px;
}
#unlock_potential .inner .other_point_block .step_title {
  padding: 0.4em 0.45em 0.5em 0.55em;
  font-size: clamp(1.2rem, 18 / var(--primary-width) * 100vw, 1.8rem);
}
#unlock_potential .inner .other_point_block h4.text_common {
  position: relative;
  margin-bottom: min(20 / var(--primary-width) * 100vw, 20px);
}
#unlock_potential .inner .other_point_block .other_point_block_inner {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: min(1080 / var(--primary-width) * 100vw, 1080px);
  margin-inline: auto;
  gap: min(60 / var(--primary-width) * 100vw, 60px);
}
#unlock_potential .inner .other_point_block .other_point_block_inner .img_block {
  width: calc(405 / 1080 * 100%);
}
#unlock_potential .inner .other_point_block .other_point_block_inner .text_block {
  flex: 1;
}
#unlock_potential .inner .other_point_block .point_list li {
  display: flex;
}
#unlock_potential .inner .other_point_block .point_list li::before {
  content: '・';
}
@media screen and (max-width: 767px) {
  #unlock_potential .inner {
    width: 100%;
  }
  #unlock_potential .section_title {
    display: block;
    width: min(310 / var(--primary-width) * 100vw, 310px * 1.5);
    margin-inline: auto;
    max-width: inherit;
  }
  #unlock_potential .inner .lead_block {
    width: min(310 / var(--primary-width) * 100vw, 310px * 1.5);
    margin-inline: auto;
    margin-bottom: min(50 / var(--primary-width) * 100vw, 50px * 1.5);
  }
  #unlock_potential .inner .step_flow {
    gap: min(23 / var(--primary-width) * 100vw, 23px * 1.5);
    width: min(330 / var(--primary-width) * 100vw, 330px * 1.5);
    margin-bottom: min(60 / var(--primary-width) * 100vw, 60px * 1.5);
  }
  #unlock_potential .inner .step_flow .step {
    width: 100%;
    padding-block: min(40 / var(--primary-width) * 100vw, 40px * 1.5);
    padding-inline: min(30 / var(--primary-width) * 100vw, 40px * 1.5);
  }
  #unlock_potential .inner .step_flow .step.step2 {
    transition-delay: inherit;
  }
  #unlock_potential .inner .step_flow .step .img_block {
    width: 100%;
    margin-bottom: min(40 / var(--primary-width) * 100vw, 40px * 1.5);
  }
  #unlock_potential .inner .step_flow .arrow {
    display: inline-block;
    position: relative;
    top: auto;
    left: 50%;
    transform: translate(-50%, 0);
    width: min(20 / var(--primary-width) * 100vw, 20px * 1.5) !important;
    height: auto;
    transition-delay: inherit;
  }
  #unlock_potential .inner .step_flow .arrow span {
    aspect-ratio: 35 / 25;
    clip-path: polygon(0 0, 50% 100%, 100% 0);
  }
  #unlock_potential .inner .step_title {
    font-size: min(20 / var(--primary-width) * 100vw, 2.0rem * 1.5);
  }
  #unlock_potential .inner .step_flow .step .step_title.bd {
    margin-top: min(5 / var(--primary-width) * 100vw, 5px * 1.5);
    margin-bottom: min(10 / var(--primary-width) * 100vw, 10px * 1.5);
    font-size: min(12 / var(--primary-width) * 100vw, 1.2rem * 1.5);
  }
  #unlock_potential .inner .other_point_block {
    width: min(330 / var(--primary-width) * 100vw, 330px * 1.5);
    margin-inline: auto;
    padding-block: min(40 / var(--primary-width) * 100vw, 40px * 1.5);
    border-radius: 20px;
  }
  #unlock_potential .inner .other_point_block .other_point_block_inner {
    width: 100%;
    padding-block: 0;
    padding-inline: min(30 / var(--primary-width) * 100vw, 40px * 1.5);
    gap: min(40 / var(--primary-width) * 100vw, 40px * 1.5);
  }
  #unlock_potential .inner .other_point_block h4.text_common {
    margin-bottom: min(30 / var(--primary-width) * 100vw, 30px * 1.5);
  }
  #unlock_potential .inner .other_point_block h4.text_common .text_common.small.sp_small {
    display: inline-block;
    margin-bottom: 0.5em;
    text-align: center;
  }
  #unlock_potential .inner .other_point_block .step_title {
    font-size: min(13 / var(--primary-width) * 100vw, 1.3rem * 1.5);
  }
}

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

purchase

--------------------------------------------------*/
#purchase {
  position: relative;
  padding-block: min(100 / var(--primary-width) * 100vw, 100px);
  background-color: var(--primary-color);
}
#purchase .outer {
  position: relative;
}
#purchase .inner {
  position: relative;
  width: min(var(--content-width) / var(--primary-width) * 100vw, var(--content-width) * 1px);
  margin-inline: auto;
  color: #fff;
}
#purchase .section_title {
  display: block;
  margin-bottom: min(80 / var(--primary-width) * 100vw, 80px);
  color: #fff;
  font-size: clamp(2.4rem, 30 / var(--primary-width) * 100vw, 3.0rem);
  line-height: 1;
  text-align: center;
}
#purchase .buy_btns {
  position: relative;
  display: flex;
  justify-content: space-between;
  width: min(640 / var(--primary-width) * 100vw, 640px);
  margin-inline: auto;
  margin-bottom: min(80 / var(--primary-width) * 100vw, 80px);
}
#purchase .buy_btns a {
  display: grid;
  place-content: center;
  width: min(300 / var(--primary-width) * 100vw, 300px);
  padding-top: 0.05%;
  aspect-ratio: 300 / 80;
  background: #fff;
  border-radius: 100vmax;
}
#purchase .buy_btns a img {
  transition: opacity .1s ease-in-out;
}
#purchase .buy_btns a:first-of-type img {
  width: min(108 / var(--primary-width) * 100vw, 108px);
}
#purchase .buy_btns a:last-of-type img {
  width: min(100 / var(--primary-width) * 100vw, 100px);
}
@media (any-hover: hover) {
  #purchase .buy_btns a:hover img {
    opacity: 0.5;
    transition: opacity .1s ease-in-out .1s;
  } 
}
#purchase .text_block p {
  text-align: center;
}
@media screen and (max-width: 767px) {
  #purchase {
    padding-top: min(80 / var(--primary-width) * 100vw, 80px * 1.5);
    padding-bottom: min(70 / var(--primary-width) * 100vw, 70px * 1.5);
    padding-inline: var(--common-horizontal-padding);
  }
  #purchase .inner {
    width: min(var(--content-width) / var(--primary-width) * 100vw, var(--content-width) * 1.5px);
  }
  #purchase .section_title {
    margin-bottom: min(50 / var(--primary-width) * 100vw, 50px * 1.5);
    font-size: min(20 / var(--primary-width) * 100vw, 2.0rem * 1.5);
  }
  #purchase .buy_btns {
    flex-direction: column;
    gap: 20px;
    width: 260px;
    margin-inline: auto;
    margin-bottom: min(50 / var(--primary-width) * 100vw, 50px * 1.5);
  }
  #purchase .buy_btns a {
    width: 100%;
    padding-top: 0.5%;
    aspect-ratio: 260 / 70;
  }
  #purchase .buy_btns a:last-of-type {
    padding-top: 0;
  }
  #purchase .buy_btns a:first-of-type img {
    width: 94px;
  }
  #purchase .buy_btns a:last-of-type img {
    width: 100px;
  }
  #purchase .text_block p {
    text-align: justify;
  }
}

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

product_details

--------------------------------------------------*/
#product_details {
  position: relative;
  padding-block: min(140 / var(--primary-width) * 100vw, 140px);
  padding-inline: var(--common-horizontal-padding);
}
#product_details .outer {
  position: relative;
}
#product_details .inner {
  position: relative;
  width: min(var(--content-width) / var(--primary-width) * 100vw, var(--content-width) * 1px);
  margin-inline: auto;
  text-align: center;
}
#product_details .section_title {
  line-height: 1;
}
#product_details .inner .section_title {
  position: absolute;
  top: 0;
  left: 0;
}
#product_details .inner .img_block {
  position: relative;
  display: inline-block;
  width: calc(380 / var(--content-width) * 100%);
}
#product_details .inner .text_block {
  position: absolute;
  left: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  gap: min(10 / var(--primary-width) * 100vw, 10px);
  margin-bottom: min(5 / var(--primary-width) * 100vw, 5px);
  text-align: justify;
}
#product_details .inner .text_block .category {
  display: grid;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: min(15 / var(--primary-width) * 100vw, 15px);
}
#product_details .inner .text_block .sub_category_name {
  font-size: calc(12 / 18 * 1em);
  text-align: center;
}
#product_details .inner .text_block .category_name {
  display: inline-block;
  padding: 0em 0.20em 0em 0.25em;
  border: 1px solid var(--primary-color);
}
#product_details .inner .text_block .point_list {
  width: 17em;
}
#product_details .inner .text_block .point_list dt {
  font-size: calc(16 / 18 * 1em);
  font-weight: bold;
}
#product_details .inner .text_block .point_list dd {
  text-align: justify;
}
#product_details .inner .patch_test_block {
  position: absolute;
  right: 0;
  bottom: 0;
  width: calc(330 / var(--content-width) * 100%);
  margin-bottom: min(5 / var(--primary-width) * 100vw, 5px);
}
#product_details .inner .patch_test_block p {
  text-align: left;
}
#product_details .inner .patch_test_block ul,
#product_details .inner .patch_test_block .note {
  font-size: calc(14 / 18 * 1em);
  line-height: 160%;
}
#product_details .inner .patch_test_block ul {
  margin-top: 2em;
}
#product_details .inner .patch_test_block .note {
  padding-left: 1em;
  text-indent: -1em;
}
#product_details .inner .patch_test_block .note .icon {
  display: inline-block;
  width: 1em;
  text-indent: 0;
}
@media screen and (max-width: 991px) {
  #product_details .inner .img_block {
    margin-top: clamp(60px, 80 / var(--primary-width) * 100vw, 80px);
  }
}
@media screen and (max-width: 767px) {
  #product_details {
    padding-block: var(--common-padding);
  }
  #product_details .inner {
    position: relative;
    width: min(var(--content-width) / var(--primary-width) * 100vw, var(--content-width) * 1.5px);
    margin-inline: auto;
  }
  #product_details .inner .section_title {
    position: relative;
    top: auto;
    left: auto;
    margin-bottom: min(60 / var(--primary-width) * 100vw, 60px * 1.5);
    text-align: left;
  }
  #product_details .inner .img_block {
    width: min(250 / var(--primary-width) * 100vw, 250px * 1.5);
    margin-top: 0;
    margin-bottom: min(50 / var(--primary-width) * 100vw, 50px * 1.5);
  }
  #product_details .inner .text_block {
    position: relative;
    right: auto;
    bottom: auto;
    width: auto;
    gap: min(22 / var(--primary-width) * 100vw, 22px * 1.5);
    text-align: justify;
  }
  #product_details .inner .text_block .name {
    font-size: min(20 / var(--primary-width) * 100vw, 2.0rem * 1.5);
    line-height: 180%;
  }
  #product_details .inner .text_block .category {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    align-items: center;
    margin-bottom: 0;
  }
  #product_details .inner .patch_test_block {
    position: relative;
    right: auto;
    bottom: auto;
    width: auto;
    margin-bottom: 0;
    font-size: min(13 / var(--primary-width) * 100vw, 1.3rem * 1.5);
  }
  #product_details .inner .text_block .category_name {
    padding: 0.3em 0.30em 0.35em 0.35em;
    line-height: 1;
  }
  #product_details .inner .text_block .sub_category_name {
    font-size: 100%;
  }
  #product_details .inner .text_block .point_list {
    width: auto;
    margin-bottom: min(10 / var(--primary-width) * 100vw, 10px * 1.5);
  }
  #product_details .inner .text_block .point_list dt {
    font-size: min(15 / var(--primary-width) * 100vw, 1.5rem * 1.5);
  }
  #product_details .inner .patch_test_block ul {
    margin-top: min(15 / var(--primary-width) * 100vw, 15px * 1.5);
    margin-bottom: 0;
    font-size: 100%;
    line-height: 200%;
  }
  #product_details .inner .patch_test_block .note {
    font-size: 100%;
    line-height: 200%;
  }
}

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

about_ncpa

--------------------------------------------------*/
#about_ncpa {
  position: relative;
  margin-top: min(110 / 1080 * 100vw, 110px);
  padding-block: var(--common-padding);
  padding-inline: var(--common-horizontal-padding);
}
#about_ncpa .inner {
  position: relative;
  width: min(var(--content-width) / var(--primary-width) * 100vw, var(--content-width) * 1px);
  margin-inline: auto;
}
#about_ncpa .section_title {
  font-size: clamp(3.0rem, 44 / var(--primary-width) * 100vw, 4.4rem);
}
#about_ncpa .about_ncpa_introduction {
  display: grid;
  grid-template-columns: 1fr minmax(0, min(50%, 640px));
  grid-template-rows: auto;
  grid-auto-rows: 1fr;
  gap: min(80 / var(--primary-width) * 100vw, 80px) min(150 / var(--primary-width) * 100vw, 150px);
  margin-bottom: min(130 / var(--primary-width) * 100vw, 130px);
}
#about_ncpa .about_ncpa_introduction .text_block {
  position: relative;
  grid-row: span 2;
}
#about_ncpa .about_ncpa_introduction .text_block p {
  margin-top: -0.35em;
}
#about_ncpa .about_ncpa_introduction .text_block .list {
  margin-top: 1.75em;
	counter-reset: listnum;
}
#about_ncpa .about_ncpa_introduction .text_block .list li {
  position: relative;
  display: flex;
  margin-left: 0.35em;
}
#about_ncpa .about_ncpa_introduction .text_block .list li::before{
  display: inline-block;
  width: 1.1em;
	counter-increment: listnum;
	content: counter(listnum) ".";
}
#about_ncpa .about_ncpa_introduction .chart_img_block {
  position: relative;
}
#about_ncpa .profile_block {
  position: relative;
  align-self: start;
  justify-self: center;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 15px;
  width: min(550 / var(--primary-width) * 100vw, 550px);
}
#about_ncpa .profile_block .img_name {
  text-align: center;
}
#about_ncpa .profile_block .img_name .img {
  width: min(120 / var(--primary-width) * 100vw, 120px);
  margin-inline: auto;
  margin-bottom: min(20 / var(--primary-width) * 100vw, 20px);
}
#about_ncpa .profile_block .img_name .name {
  font-size: clamp(1.6rem, 24 / var(--primary-width) * 100vw, 2.4rem);
  line-height: 160%;
}
#about_ncpa .profile_block .img_name .name p {
  text-align: center;
}
#about_ncpa .profile_block .img_name .name .min {
  font-size: calc(16 / 24 * 1em);
}
#about_ncpa .profile_block .profile_text_block {
  width: calc(300 / 550 * 100%);
  font-size: clamp(1.0rem, 14 / var(--primary-width) * 100vw, 1.4rem);
  line-height: 180%;
  letter-spacing: 0.05em;
}
#about_ncpa .btn_block .btn_common {
  width: calc(240 / 20 * 1em);
  aspect-ratio: 240 / 68;
}
@media screen and (max-width: 991px) {
  #about_ncpa .profile_block {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  #about_ncpa .profile_block .profile_text_block {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  #about_ncpa .inner {
    width: min(330 / var(--primary-width) * 100vw, 330 * 1.5px);
    margin-inline: auto;
  }
  #about_ncpa .section_title {
    width: min(var(--content-width) / var(--primary-width) * 100vw, var(--content-width) * 1.5px);
    margin-inline: auto;
    font-size: min(26 / var(--primary-width) * 100vw, 2.6rem * 1.5);
  }
  #about_ncpa .about_ncpa_introduction {
    display: grid;
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    gap: min(35 / var(--primary-width) * 100vw, 35px * 1.5);
    margin-bottom: min(60 / var(--primary-width) * 100vw, 60px * 1.5);
  }
  #about_ncpa .about_ncpa_introduction .text_block {
    position: relative;
    grid-column: 1 / 2;
    grid-row: 2 / 3;
    width: min(var(--content-width) / var(--primary-width) * 100vw, var(--content-width) * 1.5px) !important;
    margin-inline: auto;
  }
  #about_ncpa .about_ncpa_introduction .text_block p {
    margin-top: 0;
  }
  #about_ncpa .about_ncpa_introduction .chart_img_block {
    position: relative;
    grid-row: 1 / 2;
  }
  #about_ncpa .profile_block {
    gap: min(20 / var(--primary-width) * 100vw, 20px * 1.5);
    width: min(var(--content-width) / var(--primary-width) * 100vw, var(--content-width) * 1.5px) !important;
    margin-top: min(15 / var(--primary-width) * 100vw, 15px * 1.5);
  }
  #about_ncpa .profile_block .img_name {

  }
  #about_ncpa .profile_block .img_name .img {
    width: min(120 / var(--primary-width) * 100vw, 120px * 1.5);
  }
  #about_ncpa .profile_block .img_name .name {
    font-size: min(20 / var(--primary-width) * 100vw, 2.0rem * 1.5);
    letter-spacing: 0.05em;
  }
  #about_ncpa .profile_block .img_name .name .min {
    font-size: calc(13 / 20 * 1em);
  }
  #about_ncpa .profile_block .img_name .name .min:last-of-type {
    font-size: calc(15 / 20 * 1em);
  }
  #about_ncpa .profile_block .profile_text_block {
    width: 100%;
  }
}

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

main_footer

--------------------------------------------------*/
.main_footer {
  position: relative;
}
.main_footer .outer {
  position: relative;
  padding-top: min(100 / 1200 * 100vw, 120px);
  padding-inline: min(120 / 1200 * 100vw, 120px);
  padding-bottom: min(60 / 1200 * 100vw, 60px);
  background-color: var(--black)
}
.main_footer .inner {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  color: #fff;
}
.main_footer .logo_yanagiya {
  width: min(300 / 1200 * 100vw, 300px);
  margin-bottom: min(80 / 1200 * 100vw, 80px);
}
.main_footer .about_yanagiya {
  margin-bottom: min(40 / 1200 * 100vw, 40px);
  font-size: clamp(1.0rem, 14 / 1200 * 100vw, 1.4rem);
  line-height: 180%;
  letter-spacing: 0.05em;
}
.main_footer .about_yanagiya .title {
  margin-bottom: 0.4em;
  font-size: calc(16 / 14 * 1em);
  font-weight: bold;
}
.main_footer .inner .btn_contact {
  display: none;
}
.main_footer .inner .btn_yanagiya a,
.main_footer .inner .btn_contact a {
  display: grid;
  place-content: center;
  width: calc(295 / 16 * 1em);
  aspect-ratio: 295 / 60;
  text-decoration: none;
  color: #fff;
  font-size: clamp(1.2rem, 14 / 1200 * 100vw, 1.6rem);
  letter-spacing: 0.05em;
  border: 1px solid #fff;
  border-radius: 100vmax;
  transition: background-color .1s ease-in-out, color .1s ease-in-out;
}
@media (any-hover: hover) {
  .main_footer .inner .btn_yanagiya a:hover {
    color: var(--black);
    background-color: #fff;
    transition: background-color .1s ease-in-out .1s, color .1s ease-in-out .1s;
  } 
}
.main_footer .inner .copyright {
  align-self: end;
  margin-top: min(80 / 1200 * 100vw, 80px);
  font-size: clamp(1.0rem, 12 / 1200 * 100vw, 1.2rem);
  letter-spacing: 0.05em;
}
.main_footer .inner .sub_content {
  grid-row: span 2;
  justify-self: end;
  align-self: end;
  display: flex;
  align-items: flex-end;
  gap: min(80 / 1200 * 100vw, 80px);
}
.main_footer .inner .sub_content .share {
  display: flex;
  align-items: center;
  gap: min(20 / 1200 * 100vw, 20px);
}
.main_footer .inner .sub_content .btns {
  display: flex;
  align-items: center;
  gap: min(20 / 1200 * 100vw, 20px);
}
.main_footer .inner .sub_content .btns .link_instagram {
  position: relative;
  display: flex;
  align-items: center;
  margin-left: min(20 / 1200 * 100vw, 20px);
}
.main_footer .inner .sub_content .btns .link_instagram::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 1px;
  height: 75%;
  background: #fff;
  transform: translateX(max(-20 / 1200 * 100vw, -20px)) translateY(-50%);
}
.main_footer .inner .sub_content .btns a {
  display: inline-block;
  transition: opacity .1s ease-in-out;
}
@media (any-hover: hover) {
  .main_footer .inner .sub_content .btns a:hover {
    opacity: 0.75;
    transition: opacity .1s ease-in-out .1s;
  }
}
.main_footer .inner .sub_content .share .text {
  font-size: clamp(1.0rem, 12 / 1200 * 100vw, 1.2rem);
  letter-spacing: 0.05em;
}
.main_footer .inner .sub_content .btns img {
  width: min(24 / 1200 * 100vw, 24px);
}
.main_footer .inner .sub_content .logo_baldocin {
  width: min(75 / 1200 * 100vw, 75px);
}
@media screen and (max-width: 767px) {
  .main_footer .outer {
    padding-top: 100px;
    padding-inline: 0;
    padding-bottom: 20px;
  }
  .main_footer .inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    width: min(var(--content-width) / var(--primary-width) * 100vw, var(--content-width) * 1.5px);
    margin-inline: auto;
  }
  .main_footer .inner .main_content {

  }
  .main_footer .inner .sub_content {
    grid-row: span 1;
    justify-self: center;
    align-self: center;
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    justify-content: center;
    gap: 80px;
  }
  .main_footer .logo_yanagiya {
    width: 240px;
    margin-bottom: 50px;
  }
  .main_footer .about_yanagiya .title {
    margin-bottom: 25px;
    font-size: 1.6rem;
  }
  .main_footer .about_yanagiya {
    margin-bottom: 50px;
    font-size: 1.3rem;
    line-height: 200%;
    letter-spacing: 0.05em;
  }
  .main_footer .btn_yanagiya {
    width: 280px;
    margin-inline: auto;
    margin-bottom: 20px;
  }
  .main_footer .inner .btn_contact {
    display: block;
    width: 280px;
    margin-inline: auto;
    margin-bottom: 60px;
  }
  .main_footer .inner .btn_yanagiya a,
  .main_footer .inner .btn_contact a {
    width: 100%;
    aspect-ratio: 280 / 60;
    font-size: 1.5rem;
    letter-spacing: 0.05em;
  }
  .main_footer .inner .btn_contact a {
    color: var(--black);
    font-weight: 500;
    background: #fff;
  }
  .main_footer .inner .sub_content .logo_baldocin {
    width: 70px;
  }
  .main_footer .inner .sub_content .share .text {
    font-size: 1.2rem;
  }
  .main_footer .inner .sub_content .share {
    gap: 20px;
  }
  .main_footer .inner .sub_content .btns {
    gap: 20px;
  }
  .main_footer .inner .sub_content .btns img {
    width: 24px;
  }
  .main_footer .inner .sub_content .btns .link_instagram {
    margin-left: 20px;
  }
  .main_footer .inner .sub_content .btns .link_instagram::before {
    transform: translateX(-20px) translateY(-50%);
  }
  .main_footer .inner .copyright {
    margin-top: 30px;
  }
  .main_footer .inner .copyright p {
    font-size: 1.2rem;
    text-align: center;
    letter-spacing: 0.05em;
  }
}


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

 fadein

----------------------------------------------------------------------------*/
.fadein {
  opacity : 0;
  filter: blur(5px);
  transition : opacity 1.0s var(--primary-timing-function), filter 1.0s var(--primary-timing-function);
}
.fadein.scrollin {
  opacity : 1;
  filter: blur(0);
}
@keyframes fadein { /* animation: fadein 1.0s var(--primary-timing-function) both; */
  0% {
    opacity : 0;
    filter: blur(5px);
  }
  100% {
    opacity : 1;
    filter: blur(0);
	}
}

.fadein_x,
.fadein_x2 {
  opacity : 0;
  transform : translate3d(-20px, 0, 0);
  filter: blur(5px);
  transition : transform 1.0s var(--primary-timing-function), opacity 1.0s var(--primary-timing-function), filter 1.0s var(--primary-timing-function);
}
.fadein_x2 {
  transform : translate3d(20px, 0, 0);
}
.fadein_x.scrollin,
.fadein_x2.scrollin {
  opacity : 1;
  transform : translate3d(0, 0, 0);
  filter: blur(0);
}
/* for Firefox */
@-moz-document url-prefix() {
  .fadein_x {
    transform : translate3d(-20px, 0, 0) rotate(0.0001deg);
  }
  .fadein_x2 {
    transform : translate3d(20px, 0, 0) rotate(0.0001deg);
  }
  .fadein_x.scrollin,
  .fadein_x2.scrollin {
    transform : translate3d(0, 0, 0) rotate(0.0001deg);
  }
}
@keyframes fadein_x { /* animation: fadein_x 1.0s var(--primary-timing-function) both; */
  0% {
    opacity : 0;
    transform : translate3d(-20px, 0, 0);
    filter: blur(5px);
  }
  100% {
    opacity : 1;
    transform : translate3d(0, 0, 0);
    filter: blur(0);
	}
}
@keyframes fadein_x2 { /* animation: fadein_x2 1.0s var(--primary-timing-function) both; */
  0% {
    opacity : 0;
    transform : translate3d(20px, 0, 0);
    filter: blur(5px);
  }
  100% {
    opacity : 1;
    transform : translate3d(0, 0, 0);
    filter: blur(0);
	}
}
/* for Firefox */
@-moz-document url-prefix() {
  @keyframes fadein_x {
    0% {
      opacity : 0;
      transform : translate3d(-20px, 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_y2 {
  opacity : 0;
  transform : translate3d(0, 20px, 0);
  filter: blur(5px);
  transition : transform 1.0s var(--primary-timing-function), opacity 1.0s var(--primary-timing-function), filter 1.0s var(--primary-timing-function);
}
.fadein_y2 {
  transform : translate3d(0, -20px, 0);
}
.fadein_y.scrollin,
.fadein_y2.scrollin {
  opacity : 1;
  transform : translate3d(0, 0, 0);
  filter: blur(0);
}
/* for Firefox */
@-moz-document url-prefix() {
  .fadein_y {
    transform : translate3d(0, 20px, 0) rotate(0.0001deg);
  }
  .fadein_y2 {
    transform : translate3d(0, -20px, 0) rotate(0.0001deg);
  }
  .fadein_y.scrollin,
  .fadein_y2.scrollin {
    transform : translate3d(0, 0, 0) rotate(0.0001deg);
  }
}
@keyframes fadein_y { /* animation: fadein_y 1.0s var(--primary-timing-function) both; */
  0% {
    opacity : 0;
    transform : translate3d(0, 20px, 0);
    filter: blur(5px);
  }
  100% {
    opacity : 1;
    transform : translate3d(0, 0, 0);
    filter: blur(0);
	}
}
@keyframes fadein_y2 { /* animation: fadein_y2 1.0s var(--primary-timing-function) both; */
  0% {
    opacity : 0;
    transform : translate3d(0, -20px, 0);
    filter: blur(5px);
  }
  100% {
    opacity : 1;
    transform : translate3d(0, 0, 0);
    filter: blur(0);
	}
}
/* for Firefox */
@-moz-document url-prefix() {
  @keyframes fadein_y {
    0% {
      opacity : 0;
      transform : translate3d(0, 20px, 0) rotate(0.0001deg);
      filter: blur(5px);
    }
    100% {
      opacity : 1;
      transform : translate3d(0, 0, 0) rotate(0.0001deg);
      filter: blur(0);
    }
  }
  @keyframes fadein_y2 {
    0% {
      opacity : 0;
      transform : translate3d(0, -20px, 0) rotate(0.0001deg);
      filter: blur(5px);
    }
    100% {
      opacity : 1;
      transform : translate3d(0, 0, 0) rotate(0.0001deg);
      filter: blur(0);
    }
  }
}

.scale_down {
  opacity : 0;
  filter: blur(5px);
  transform: scale(1.05);
  transition : opacity 1.0s var(--primary-timing-function), transform 1.0s var(--primary-timing-function), filter 1.0s var(--primary-timing-function);
}
.scale_down.scrollin {
  opacity : 1;
  transform: scale(1);
  filter: blur(0);
}
/* for Firefox */
@-moz-document url-prefix() {
  .scale_down {
    transform: scale(1.05) rotate(0.0001deg);
  }
  .scale_down.scrollin {
    transform: scale(1) rotate(0.0001deg);
  }
}
@keyframes scale_down { /* animation: scale_down 1.0s var(--primary-timing-function) both; */
  0% {
    opacity : 0;
    transform: scale(1.05);
    filter: blur(5px);
  }
  100% {
    opacity : 1;
    transform: scale(1);
    filter: blur(0);
	}
}
/* for Firefox */
@-moz-document url-prefix() {
  @keyframes scale_down {
    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);
    }
  }
}

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