@charset "UTF-8";
/* ─ Foundations ─ */
/*- function -*/
/*- mixin -*/
/* break points */
html {
  font-size: 16px;
  line-height: 1.6;
  background-color: #F7F4F0;
}

body {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 400;
  font-size: calc(clamp(1rem, 1vw + 0.6rem, 1.2rem) * 1);
  color: #38443D;
}

h1,
h2,
h3,
h4 {
  font-family: "M PLUS Rounded 1c", sans-serif;
  color: #008282;
  margin-bottom: 1.5em;
}

h1 {
  font-weight: 700;
  font-size: 2rem;
  font-size: calc(clamp(1rem, 1vw + 0.6rem, 1.2rem) * 2);
}

h2 {
  font-weight: 700;
  font-size: 2rem;
  font-size: calc(clamp(1rem, 1vw + 0.6rem, 1.2rem) * 2);
}
@media screen and (max-width: 768px) {
  h2 {
    font-size: 5.2083333333vw;
  }
}

h3 {
  font-weight: 700;
  font-size: 1.5rem;
  font-size: calc(clamp(1rem, 1vw + 0.6rem, 1.2rem) * 1.5);
}

p {
  font-size: calc(clamp(1rem, 1vw + 0.6rem, 1.2rem) * 1);
  font-weight: 700;
  margin-bottom: 1em;
}
@media screen and (max-width: 768px) {
  p {
    font-size: 3.125vw;
  }
}
p:last-child {
  margin-bottom: 0;
}

span.small {
  font-size: 0.75em;
}

sup {
  vertical-align: top;
  font-size: calc(clamp(1rem, 1vw + 0.6rem, 1.2rem) * 0.75);
}

.text__sup {
  counter-reset: sup;
}
.text__sup__item {
  position: relative;
  font-size: 0.75em;
  font-weight: 400;
}
.text__sup__item::before {
  counter-increment: sup;
  content: "※" counter(sup) " ";
  margin-right: 0.25em;
}

.button {
  display: inline-block;
  font-weight: 700;
  font-size: 1rem;
  font-size: calc(clamp(1rem, 1vw + 0.6rem, 1.2rem) * 1);
  color: #FFEFE5;
  background-color: #4BBFBF;
  padding: 0.5em 1em 0.64em;
  border-radius: 9999px;
  cursor: pointer;
  border: none;
}

.button.highlight {
  background-color: #F2762E;
}

.text__phrase--break {
  display: block;
}
@media (max-width: 768px) {
  .text__phrase--break {
    display: inline;
  }
}

.text__break--content-width > span {
  display: inline;
}
@media screen and (max-width: 1440px) {
  .text__break--content-width > span {
    display: block;
  }
}

.text__break--l > span {
  display: inline;
}
@media screen and (max-width: 1024px) {
  .text__break--l > span {
    display: block;
  }
}

.text__break--m > span {
  display: inline;
}
@media screen and (max-width: 768px) {
  .text__break--m > span {
    display: block;
  }
}

*:has(> .text__phrase--no-split) {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
}

*:has(> .text__phrase--no-split-center) {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: center;
}

.text__phrase--no-split {
  display: inline-block;
}

.u-visible--s-down {
  display: none;
}
@media (max-width: 480px) {
  .u-visible--s-down {
    display: block;
  }
}
.u-visible--m-down {
  display: none;
}
@media (max-width: 768px) {
  .u-visible--m-down {
    display: block;
  }
}
.u-visible--l-down {
  display: none;
}
@media (max-width: 1024px) {
  .u-visible--l-down {
    display: block;
  }
}
.u-visible--xl-down {
  display: none;
}
@media (max-width: 1280px) {
  .u-visible--xl-down {
    display: block;
  }
}
.u-visible--xxl-down {
  display: none;
}
@media (max-width: 1440px) {
  .u-visible--xxl-down {
    display: block;
  }
}

.section--fullscreen {
  width: 100%;
  height: 100svh;
}
.section--fullscreen > .section__inner {
  width: 100%;
  height: 100%;
}
.section__inner {
  padding: 96px 32px;
  max-width: 1440px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .section__inner {
    padding: 32px 24px;
  }
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, auto);
  align-items: center;
  gap: 24px;
}
@media screen and (max-width: 1024px) {
  .cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .cards {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    /* gap の処理 -------------------------------- */
    gap: 32px;
  }
}
.cards .card {
  display: grid;
  grid-template-rows: subgrid;
  align-items: center;
  gap: 32px;
  justify-items: center;
  grid-row: span 3;
}
@media screen and (max-width: 768px) {
  .cards .card {
    display: block;
  }
}
.cards .card__body {
  display: grid;
  grid-template-rows: subgrid;
  align-items: start;
  gap: 32px;
  grid-row: span 3;
  padding: 32px;
  border-radius: 1em;
  background-color: #FFEFE5;
}
@media screen and (max-width: 768px) {
  .cards .card__body {
    display: grid;
    gap: 16px 24px;
    grid-template-columns: auto;
  }
}
.cards .card__body--spacer {
  display: grid;
  grid-row: span 3;
  background: unset;
  width: 50%;
  height: 50%;
  background-color: #f2c6bd;
  mask: url("../img/illust-shampoo.svg") no-repeat center/contain;
  -webkit-mask: url("../img/illust-shampoo.svg") no-repeat center/contain;
}
@media screen and (max-width: 768px) {
  .cards .card__body--spacer {
    display: none;
  }
}
.cards .card__heading {
  font-size: calc(clamp(1rem, 1vw + 0.6rem, 1.2rem) * 1.25);
  margin: 0;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .cards .card__heading {
    width: 100%;
    grid-row: 1/2;
    grid-column: 1/2;
    justify-content: flex-start;
  }
}
.cards .card__image {
  height: 100%;
}
.cards .card__image img {
  border-radius: 16px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 768px) {
  .cards .card__image {
    grid-row: 2/3;
    grid-column: 1/2;
    aspect-ratio: 16/9;
  }
}
.cards .card__text p {
  font-size: calc(clamp(1rem, 1vw + 0.6rem, 1.2rem) * 0.75);
}
@media screen and (max-width: 768px) {
  .cards .card__text {
    grid-row: 3/4;
    grid-column: 1/2;
  }
}
.cards.layout-odd .card--gap-filler {
  display: none;
}
@media screen and (max-width: 1024px) {
  .cards.layout-odd .card--gap-filler {
    display: inherit;
  }
}

.site-header {
  position: absolute;
  top: 0;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: stretch;
  gap: 32px;
  width: 100%;
  padding: 0.75em;
  font-size: calc(clamp(1rem, 1vw + 0.6rem, 1.2rem) * 1);
}
.site-header__inner {
  max-width: 1440px;
}

.hero {
  width: 100%;
  background-image: url("../img/hero-background.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.hero__inner {
  width: 100%;
  height: 100%;
  max-width: unset;
  padding: 64px 96px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  color: #008282;
  font-weight: 700;
  background: linear-gradient(180deg, rgba(250, 247, 241, 0) 0%, rgba(250, 247, 241, 0.5) 50%, #F7F4F0 100%);
}
@media screen and (max-width: 1024px) {
  .hero__inner {
    padding: 64px 32px;
  }
}
@media screen and (max-width: 768px) {
  .hero__inner {
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
  }
}
.hero__inner span {
  display: block;
}
.hero__heading h1 {
  margin: 0;
}
@media screen and (max-width: 768px) {
  .hero__heading h1 {
    font-size: 6.25vw;
  }
}

.mission {
  position: relative;
  z-index: 1;
}
.mission__inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  /* gap の処理 -------------------------------- */
  gap: 32px;
}
.mission__heading {
  margin-bottom: 64px;
  font-size: calc(clamp(1rem, 1vw + 0.6rem, 1.2rem) * 2);
  text-align: center;
}
@media screen and (max-width: 768px) {
  .mission__heading {
    font-size: 8vw;
  }
}
.mission__lead {
  font-weight: 700;
  text-align: center;
}
.mission__lead p {
  font-size: calc(clamp(1rem, 1vw + 0.6rem, 1.2rem) * 1);
  margin-bottom: 32px;
}
@media screen and (max-width: 768px) {
  .mission__lead p {
    max-width: 400px;
    margin: 0 auto;
    text-align: left;
    margin-bottom: 1em;
  }
}
@media screen and (max-width: 440px) {
  .mission__lead p br{
    display: none;
  }
}
.mission__bubbles {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.mission__bubbles::before, .mission__bubbles::after {
  position: absolute;
  content: "";
  width: 10vw;
  height: 10vw;
  background-color: #f2c6bd;
  mask: url("../img/illust-bubble.svg") no-repeat center/contain;
  -webkit-mask: url("../img/illust-bubble.svg") no-repeat center/contain;
  z-index: -1;
}
.mission__bubbles::before {
  top: 25%;
  left: 10vw;
  transform: rotate(-45deg);
}
.mission__bubbles::after {
  bottom: 25%;
  right: 10vw;
  transform: rotate(-135deg);
}
.mission::after {
  position: absolute;
  top: 25%;
  left: 25%;
  content: "";
  width: 50%;
  height: 50%;
  background-color: rgba(242, 198, 189, 0.5);
  mask: url("../img/mission__illust.svg") no-repeat center/contain;
  -webkit-mask: url("../img/mission__illust.svg") no-repeat center/contain;
  z-index: -1;
}

.feature {
  overflow: hidden;
}
.feature__inner {
  display: grid;
  grid-template-columns: minmax(50%, auto) auto;
  align-items: center;
  gap: 64px;
}
@media screen and (max-width: 1280px) {
  .feature__inner {
    grid-template-columns: 1fr auto;
  }
}
@media screen and (max-width: 1024px) {
  .feature__inner {
    align-items: stretch;
  }
}
@media screen and (max-width: 768px) {
  .feature__inner {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    /* gap の処理 -------------------------------- */
    gap: 32px;
    position: relative;
  }
}
.feature__inner__text {
  padding: 48px 0;
}
@media screen and (max-width: 768px) {
  .feature__inner__text {
    grid-column: 1/2;
  }
}
.feature__image {
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .feature__image {
    width: 40vw;
    right: -10vw;
    position: absolute;
    top: 0;
  }
}
.feature__image::before, .feature__image::after {
  aspect-ratio: 1/1;
  content: "";
  display: block;
  width: 100%;
  min-width: 340px;
  border-radius: 50%;
  overflow: hidden;
}
@media screen and (max-width: 1024px) {
  .feature__image::before, .feature__image::after {
    position: absolute;
    right: 0;
    min-width: unset;
    width: 41.015625vw;
  }
}
.feature__image::before {
  background-image: url("../img/feature__img-circle.webp");
  background-size: cover;
  background-position: center;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .feature__image::before {
    position: relative;
  }
}
.feature__image::after {
  position: absolute;
  background-color: #4BBFBF;
  left: -50%;
  bottom: -96px;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .feature__image::after {
    left: unset;
    right: -31%;
    bottom: -37%;
  }
}

.support {
  background-color: #7ABD90;
}
.support__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 32px;
}
@media screen and (max-width: 768px) {
  .support__inner {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    /* gap の処理 -------------------------------- */
    gap: 32px;
  }
}
.support__heading {
  color: #fff;
}
.support__text p {
  color: #fff;
}
.support__image {
  height: 100%;
  background-image: url("../img/support__img.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-radius: 24px;
}
@media screen and (max-width: 1024px) {
  .support__image {
    background-position: 30%;
  }
}
@media screen and (max-width: 768px) {
  .support__image {
    display: none;
  }
  .support__image--m-down {
    margin-bottom: 24px;
    border-radius: 24px;
  }
}

.audience {
  position: relative;
  overflow: hidden;
}
.audience__inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  /* gap の処理 -------------------------------- */
  gap: 48px;
  position: relative;
}
.audience__inner h2 {
  margin-bottom: 0;
}
.audience__inner ul {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  /* gap の処理 -------------------------------- */
  gap: 32px;
}
.audience__inner ul li {
  font-weight: 700;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 0.5em;
}
.audience__inner ul li::before {
  content: "";
  display: inline-block;
  width: 1.25em;
  height: 1.25em;
  background-color: #F2762E;
  mask: url("../img/icon-nikukyu.svg") no-repeat center/contain;
  -webkit-mask: url("../img/icon-nikukyu.svg") no-repeat center/contain;
}
.audience__decoration {
  position: absolute;
}
.audience__decoration--grooming {
  top: 10%;
  right: -8%;
  width: 40%;
  --circle-width: 90%;
  --circle-position-top: 7%;
}
@media screen and (max-width: 1024px) {
  .audience__decoration--grooming {
    top: 17%;
  }
}
.audience__decoration--grooming img {
  object-fit: contain;
  width: 100%;
  height: 100%;
}
.audience__decoration--grooming::before, .audience__decoration--grooming::after {
  display: block;
  content: "";
  position: absolute;
  z-index: -1;
  border-radius: 100%;
  aspect-ratio: 1/1;
}
.audience__decoration--grooming::before {
  background: rgba(242, 198, 189, 0.25);
  width: var(--circle-width);
  top: var(--circle-position-top);
  right: 0;
}
.audience__decoration--grooming::after {
  border: 4px solid rgba(242, 198, 189, 0.25);
  width: 100%;
  top: calc(var(--circle-position-top) - 5%);
  right: calc((100% - var(--circle-width)) / 2 * -1);
}
.audience__decoration--bottle {
  content: "";
  display: block;
  width: 20vw;
  height: 20vw;
  background-color: #f2c6bd;
  mask: url("../img/illust-bottle.svg") no-repeat center/contain;
  -webkit-mask: url("../img/illust-bottle.svg") no-repeat center/contain;
  max-width: 240px;
  left: 3%;
  bottom: 18%;
  transform: rotate(-25deg);
}
.audience__decoration--comb {
  content: "";
  display: block;
  width: 10vw;
  height: 10vw;
  background-color: #f2c6bd;
  mask: url("../img/illust-comb.svg") no-repeat center/contain;
  -webkit-mask: url("../img/illust-comb.svg") no-repeat center/contain;
  left: 10%;
  top: 20%;
  transform: rotateY(-180deg) rotate(65deg);
}
.audience__decoration--bubbles {
  display: inline-flex;
  width: 30%;
  height: 100%;
  top: 0;
  left: 0;
  padding: 64px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  /* gap の処理 -------------------------------- */
  gap: 14px;
  z-index: -2;
}
.audience__decoration--bubbles > div {
  width: 100%;
  height: 100%;
}
.audience__decoration--bubbles > div:nth-child(odd) {
  text-align: left;
}
.audience__decoration--bubbles > div:nth-child(even) {
  text-align: right;
}
.audience__decoration--bubbles > div:nth-child(1) {
  height: 15%;
}
.audience__decoration--bubbles > div:nth-child(2) {
  height: 25%;
}
.audience__decoration--bubbles > div:nth-child(3) {
  height: 35%;
}
.audience__decoration--bubbles > div::after {
  display: inline-block;
  content: "";
  aspect-ratio: 1/1;
  height: 100%;
  border-radius: 100%;
  background-color: rgba(242, 198, 189, 0.1);
}

.story__heading--dash {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 0.5em;
}
@media screen and (max-width: 768px) {
  .story__heading--dash {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 0.5em;
  }
}
.story__heading--dash::after {
  display: block;
  content: "";
  width: 2em;
  height: 2px;
  border-radius: 9999px;
  background: #008282;
}
@media screen and (max-width: 768px) {
  .story__heading--dash::after {
    width: auto;
  }
}
.story__inner {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 32px;
}
@media screen and (max-width: 768px) {
  .story__inner {
    display: block;
  }
}
.story__text {
  padding: 48px;
  background-color: #fff;
  border-radius: 16px;
}
@media screen and (max-width: 768px) {
  .story__text {
    padding: 1.5em;
  }
  .story__text .text__break--l > span {
    display: inline;
  }
}
.story__image {
  display: grid;
  grid-template-columns: auto;
  grid-template-rows: repeat(3, auto);
  align-items: center;
  gap: 32px;
  height: 100%;
  width: 100%;
}
.story__image > div {
  border-radius: 16px;
  width: 100%;
  height: 100%;
}
.story__image > div:nth-of-type(1) {
  background-image: url("../img/story__img-001.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.story__image > div:nth-of-type(2) {
  background-image: url("../img/story__img-002.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.story__image > div:nth-of-type(3) {
  background-image: url("../img/story__img-003.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  .story__image {
    display: none;
  }
  .story__image--m-down {
    display: grid;
    grid-template-columns: auto auto auto;
    align-items: center;
    gap: 16px;
  }
  .story__image--m-down > div {
    aspect-ratio: 1/1.618;
  }
}

.cta {
  position: relative;
  text-align: center;
  z-index: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: start;
  gap: 32px;
  background-color: #008282;
}
@media screen and (max-width: 1024px) {
  .cta {
    grid-template-columns: 1fr auto;
    gap: 0;
  }
}
.cta::after {
  opacity: 0.5;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-image: url("../img/steps.svg");
  background-repeat: no-repeat;
  background-position: right;
  background-size: contain;
  z-index: -1;
}
@media screen and (max-width: 1024px) {
  .cta::after {
    opacity: 0.1;
  }
}
.cta__image {
  width: 110%;
  max-width: 420px;
  aspect-ratio: 1/1;
  margin-top: 64px;
  background-image: url("../img/cta__img.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-radius: 100%;
  margin-left: -10%;
  position: relative;
  z-index: 0;
}
.cta__image::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 25%;
  background: hsla(0, 0%, 100%, 0.1);
  border-radius: 100%;
  z-index: -1;
}
.cta__inner {
  width: 100%;
  position: relative;
  display: inline-block;
  text-align: left;
}
.cta__inner::before {
  position: absolute;
  left: -100%;
  top: 0;
  display: block;
  content: "";
  width: 100%;
  aspect-ratio: 1/1;
}
.cta__space {
  width: 100%;
}
.cta__heading {
  color: #F7F4F0;
}
.cta__button {
  margin-top: 48px;
}
.cta p {
  color: #F7F4F0;
}

.site-footer {
  background-color: #008282;
  color: #F7F4F0;
}
.site-footer__inner {
  text-align: center;
  font-size: calc(clamp(1rem, 1vw + 0.6rem, 1.2rem) * 0.75);
  padding: 14px;
}

.fade-in {
  opacity: 0;
  will-change: opacity, transform;
}
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  will-change: opacity, transform;
}
.fade-down {
  opacity: 0;
  transform: translateY(-40px);
  will-change: opacity, transform;
}
.fade-right {
  opacity: 0;
  transform: translateX(40px);
  will-change: opacity, transform;
}
.fade-left {
  opacity: 0;
  transform: translateX(-40px);
  will-change: opacity, transform;
}
