@charset "UTF-8";
:root {
  /* color */
  --color-pink-01: #eea3a2;
  --color-pink-02: #e38180;
  --color-pink-03: #e57f7e;
  --color-pink-04: #e991ae;
  --color-pink-05: #ffc4bf;
  --color-pink-07: #ffd4ca;
  --color-text: #56433d;
  --color-cream: #ffebb3;
  --color-white: #ffffff;

  /* font */
  --font-noto: "Noto Sans JP", sans-serif;
  --font-shippori: "Shippori Mincho B1", serif;
  --font-josefin: "Josefin Sans", sans-serif;
  --font-cherry: "Cherry Bomb One", cursive;
  --font-zen: "Zen Maru Gothic", sans-serif;

  /* font-size */
  --base-font-size-pc: 62.5%;
  --base-font-size-tab: 56.25%;
  --base-font-size-sp: 54%;
  --fs-12: 12px;
  --fs-13: 13px;
  --fs-14: 14px;
  --fs-15: 15px;
  --fs-16: 16px;
  --fs-17: 1.7rem;
  --fs-18: 1.8rem;
  --fs-20: 2rem;
  --fs-21: 2.1rem;
  --fs-22: 2.2rem;
  --fs-23: 2.3rem;
  --fs-24: 2.4rem;
  --fs-25: 2.5rem;
  --fs-26: 2.6rem;
  --fs-28: 2.8rem;
  --fs-30: 3rem;
  --fs-32: 3.2rem;
  --fs-33: 3.3rem;
  --fs-34: 3.4rem;
  --fs-36: 3.6rem;
  --fs-40: 4rem;

  /* font-weight */
  --fw-thin: 100;
  --fw-light: 300;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;
  --fw-extrabold: 800;
  --fw-black: 900;
}

@media screen and (max-width: 600px) {
  :root {
    --fs-16: 15px;
    --fs-15: 14px;
  }
}

body {
  font-family: var(--font-noto);
  font-size: var(--fs-16);
  line-height: 1.75;
  font-weight: var(--fw-regular);
  letter-spacing: 0.1em;
  color: var(--color-text);
}

/*--------------------------------
  tel link（スマホのみ発信可能）
--------------------------------*/
@media screen and (min-width: 769px) {
  a[href^="tel:"] {
    pointer-events: none;
    cursor: default;
  }
}

.main {
  padding-top: 374px;
}

@media screen and (max-width: 1400px) {
  .main {
    padding-top: 251px;
  }
}

@media screen and (max-width: 1100px) {
  .main {
    padding-top: 227.5px;
  }
}

@media screen and (max-width: 960px) {
  .main {
    padding-top: 172px;
  }
}

@media screen and (max-width: 768px) {
  .main {
    padding-top: 102.8px;
  }
}

/*--------------------------------
  title
--------------------------------*/
.sec-ttl-ja {
  font-family: var(--font-shippori);
  /* font-weight: var(--fw-semibold); */
  font-size: 77px;
  letter-spacing: 0.3em;
  line-height: 1.4;
}

.sec-ttl-en {
  font-family: var(--font-josefin);
  font-size: 45px;
  letter-spacing: 0.5em;
  font-style: normal;
  line-height: 1.4;
}
.sec-subttl {
  font-family: var(--font-shippori);
  letter-spacing: 0.2em;
  font-size: 52px;
}
.sec-copy {
  font-family: var(--font-shippori);
  letter-spacing: 0.3em;
  font-size: var(--fs-40);
}

.sec-ttl-ja.center,
.sec-ttl-en.center,
.sec-copy.center,
.sec-subttl.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.sec-ttl-en.right {
  text-align: right;
}
@media screen and (max-width: 1100px) {
  .sec-ttl-ja {
    font-size: 64px;
  }

  .sec-ttl-en,
  .sec-copy {
    font-size: var(--fs-32);
  }
  .sec-subttl {
    font-size: var(--fs-40);
  }
}

@media screen and (max-width: 840px) {
  .sec-ttl-ja {
    font-size: 50px;
  }
  .sec-subttl {
    font-size: var(--fs-32);
  }
}

@media screen and (max-width: 768px) {
  .sec-ttl-ja {
    font-size: var(--fs-32);
  }

  .sec-ttl-en,
  .sec-copy {
    font-size: var(--fs-24);
  }
  .sec-subttl {
    font-size: var(--fs-28);
  }
}

/*--------------------------------
  sec-hd（共通セクションタイトル：en + line + ja）
--------------------------------*/
.sec-hd__row {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 24px;
}
.sec-hd__en {
  margin: 0;
}
.sec-hd__line {
  display: block;
  width: 1px;
  height: 1.2em;
  background-color: var(--color-pink-03);
  flex-shrink: 0;
}
.sec-hd__line.txt-color {
  background-color: var(--color-text);
}
.sec-hd__ja {
  font-size: var(--fs-21);
  letter-spacing: 0.2em;
  color: var(--color-text);
  font-weight: var(--fw-bold);
  line-height: 1;
}
.sec-hd__row.center {
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .sec-hd__row {
    gap: 16px;
  }
  .sec-hd__ja {
    font-size: var(--fs-18);
  }
}
@media screen and (max-width: 600px) {
  .sec-hd__row {
    flex-wrap: wrap;
  }
}

/*--------------------------------
  txt
--------------------------------*/
.txt-white {
  color: var(--color-white);
}
.txt-pink-03 {
  color: var(--color-pink-03);
}
.txt-pink-02 {
  color: var(--color-pink-02);
}

/*--------------------------------
  bg
--------------------------------*/
.bg-pink-01 {
  background: var(--color-pink-01);
}

.bg-pink-03 {
  background: var(--color-pink-03);
}
.bg-pink-07 {
  background: var(--color-pink-07);
}
.bg-white {
  background-color: var(--color-white);
}

.bg-pink-07-30 {
  background-color: rgba(255, 219, 211, 0.3);
}
/*--------------------------------
  button
--------------------------------*/
/* button-more */
.btn-more__link {
  background-color: var(--color-white);
  color: var(--color-text);
  border: none;
  border-radius: 0;
  min-width: 280px;
  height: auto;
  padding: 0.75em 2.5em;
  font-family: var(--font-shippori);
  font-size: var(--fs-20);
  letter-spacing: 0.2em;
  box-shadow: none;
  display: inline-block;
  text-align: center;
}
.btn-more__link:hover {
  opacity: 0.8;
}
.btn-more__link.pink {
  background-color: var(--color-pink-03);
  color: var(--color-white);
  font-family: var(--font-noto);
  font-weight: var(--fw-bold);
  letter-spacing: 0.42em;
  font-size: var(--fs-16);
  padding: 1.5em 5em;
}

.btn-more.right {
  text-align: right;
}
.btn-more.center {
  text-align: center;
}

/* 詳しくみるボタン（薄ピンク・枠線） */
.btn-detail {
  display: inline-block;
  padding: 0.5em 2.5em;
  font-size: var(--fs-16);
  font-weight: var(--fw-medium);
  color: var(--color-text);
  letter-spacing: 0.47em;
  background: linear-gradient(to right, #fbd9d9, #ffe7d9);
  border: 1px solid var(--color-text);
  text-align: center;
  isolation: isolate;
  transition: all 0.3s ease;
}
.btn-detail:hover {
  opacity: 0.85;
}

@media screen and (max-width: 960px) {
  .btn-more__link {
    height: auto;
    padding: 0.5em 2.2em;
  }
  .btn-more__link.pink {
    padding: 1.2em 4em;
  }
  .btn-detail {
    padding: 0.5em 2.2em;
    font-size: var(--fs-14);
    letter-spacing: 0.1em;
  }
}

@media screen and (max-width: 768px) {
  .btn-more__link {
    height: auto;
    font-size: var(--fs-15);
  }
  .btn-more__link.pink {
    padding: 1em 3em;
    font-size: var(--fs-15);
  }
  .btn-detail {
    padding: 0.3em 2em;
  }
}

@media screen and (max-width: 600px) {
  .btn-more__link {
    height: auto;
    min-width: 200px;
  }
  .btn-more__link.pink {
    min-width: 180px;
    padding: 0.8em 2.5em;
    font-size: var(--fs-14);
  }
  .btn-detail {
    padding: 0.3em 1.5em;
  }
}
/*--------------------------------
 flower-img
--------------------------------*/
.flower-img-01 {
  display: block;
  width: 275px;
  height: auto;
  aspect-ratio: 275 / 259;
  object-fit: contain;
}
.flower-img-02,
.flower-img-03 {
  display: block;
  width: 348px;
  height: auto;
  aspect-ratio: 348 / 247;
  object-fit: contain;
}
@media screen and (max-width: 1900px) {
  .flower-img-01 {
    width: 260px;
  }
  .flower-img-02,
  .flower-img-03 {
    width: 329px;
  }
}
@media screen and (max-width: 1600px) {
  .flower-img-01 {
    width: 240px;
  }
  .flower-img-02,
  .flower-img-03 {
    width: 304px;
  }
}
@media screen and (max-width: 1400px) {
  .flower-img-01 {
    width: 200px;
  }
  .flower-img-02,
  .flower-img-03 {
    width: 253px;
  }
}
@media screen and (max-width: 1100px) {
  .flower-img-01 {
    width: 180px;
  }
  .flower-img-02,
  .flower-img-03 {
    width: 228px;
  }
}
@media screen and (max-width: 960px) {
  .flower-img-01 {
    width: 160px;
  }
  .flower-img-02,
  .flower-img-03 {
    width: 202px;
  }
}
@media screen and (max-width: 768px) {
  .flower-img-01 {
    width: 140px;
  }
  .flower-img-02,
  .flower-img-03 {
    width: 177px;
  }
}
@media screen and (max-width: 600px) {
  .flower-img-01 {
    width: 120px;
  }
  .flower-img-02,
  .flower-img-03 {
    width: 152px;
  }
}
/*--------------------------------
  animation（クラス付与のみで動作、JS不要）
--------------------------------*/
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.u-fadeIn {
  animation-duration: 1.2s;
  animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
  animation-fill-mode: both;
  animation-name: fadeIn;
}

/* スクロールで表示域に入ったときにふわっと出現（JSで u-fadeIn を付与） */
.js-scroll-fade {
  opacity: 0;
}
.js-scroll-fade.u-fadeIn {
  animation-duration: 2.8s;
}
/* 順番に出現（JSで子要素に u-fadeIn + u-delay-* を付与） */
.js-scroll-fade-stagger > * {
  opacity: 0;
}

/* Delay classes（u-fadeIn と併用） */
.u-delay-200 {
  animation-delay: 0.2s;
}
.u-delay-300 {
  animation-delay: 0.3s;
}
.u-delay-400 {
  animation-delay: 0.4s;
}
.u-delay-600 {
  animation-delay: 0.6s;
}
.u-delay-800 {
  animation-delay: 0.8s;
}
.u-delay-900 {
  animation-delay: 0.9s;
}
.u-delay-1000 {
  animation-delay: 1s;
}
.u-delay-1200 {
  animation-delay: 1.2s;
}
