@charset "UTF-8";
/* *** common variables *** */
/* break point 
---------------------------------------------- */
/* hover style
---------------------------------------------- */
/* color
---------------------------------------------- */
/* *** ①One-Tone *** */
/* *** ②Two-Tone *** */
/* *** mixins *** */
/* break point */
/* hover */
/* 画像枠線 */
/* PC、SP画像の切り替え */
/* 共通
  -------------------------------------------*/
/* 画像パス */
/* フォント */
/* Utility */
.no-break {
  display: inline-block;
}

.font-mincho {
  font-family: "Hiragino Mincho ProN", "Yu Mincho", "游明朝体", "Noto Serif JP", serif;
}

/* コンポーネント上書き */
/* コンテンツマージン */
@media (min-width: 769px) {
  :root {
    --section-contentM: 10rem;
  }
}
@media (max-width: 768px) {
  :root {
    --section-contentM: 6.4rem;
  }
}

/* -----------------------------------------------
  ① clamp関数
----------------------------------------------- */
/* --- 10px = 1rem --- */
/* -----------------------------------------------
  ② Y軸減少計算
----------------------------------------------- */
/* --- 画面を縮小させた際にコンテンツのY軸距離を広げる関数 --- */
body {
  height: auto;
}

#contents {
  background-color: #f6f2ec;
}

.forester-contents {
  /* LPコンテンツ
  -------------------------------------------*/
  color: var(--black);
  background-color: #f6f2ec;
  font-feature-settings: "palt";
  letter-spacing: 0.05em;
  /* タイトル */
  /* ボタン */
  /* *** メインビジュアル セクション *** */
  /* *** イントロ セクション *** */
  /* フォレスターがCOTY */
  /* 徹底解剖 */
  /* *** インタビュー セクション *** */
  /* ロゴ 星々の軌跡 */
  /* インタビュー アコーディオン */
  /* *** ヒストリー セクション *** */
  /* コンポーネントアコーディオン上書き */
  /* *** FIXボタン *** */
}
.forester-contents .h4ttl.underline {
  border-block-end: 1px solid var(--black);
  margin-block-end: 2rem;
  padding-block-end: 1rem;
}
@media (max-width: 768px) {
  .forester-contents .btn-wrap {
    max-width: clamp(300px, 67%, 450px);
    margin-inline: auto;
  }
}
@media (max-width: 768px) {
  .forester-contents .btn-wrap .btn-ttl {
    font-size: clamp(1.2rem, 0.914rem + 0.89vw, 1.6rem);
  }
}
.forester-contents .mv-section {
  /* display: grid;
  >* {
    grid-area: 1 / 1;
  }
  .mv-section-inner {
    z-index: 1;
    margin-inline: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  } */
}
.forester-contents .coty-lead-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (min-width: 769px) {
  .forester-contents .coty-lead-wrap {
    column-gap: 32px;
    margin-block-end: 1.6rem;
    padding-block: 16px;
    background-image: url(../images/img_wing_pc.webp);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 98% auto;
  }
}
@media (max-width: 768px) {
  .forester-contents .coty-lead-wrap {
    column-gap: 12px;
    padding-block: 20px;
    background-image: url(../images/img_wing_sp.webp);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 100% auto;
  }
}
@media (min-width: 769px) {
  .forester-contents .coty-lead-wrap .coty-logo {
    flex-basis: 143px;
  }
}
@media (max-width: 768px) {
  .forester-contents .coty-lead-wrap .coty-logo {
    flex-basis: 22%;
  }
}
.forester-contents .coty-lead-wrap .coty-lead {
  font-weight: bold;
}
@media (min-width: 769px) {
  .forester-contents .coty-lead-wrap .coty-lead {
    flex-basis: 714px;
    font-size: 2.6rem;
    line-height: 1.6;
  }
}
@media (max-width: 768px) {
  .forester-contents .coty-lead-wrap .coty-lead {
    flex-basis: 48%;
    font-size: 1.2rem;
  }
}
.forester-contents .coty-lead-wrap .coty-lead span {
  color: #a97a14;
}
.forester-contents .arrow-link {
  text-decoration: underline;
}
@media (min-width: 769px) {
  .forester-contents .arrow-link {
    font-size: 1.4rem;
  }
}
@media (max-width: 768px) {
  .forester-contents .arrow-link {
    font-size: 1.2rem;
  }
}
.forester-contents .arrow-link .arrow {
  position: relative;
}
.forester-contents .arrow-link .arrow::before {
  content: "";
  display: inline-block;
  border-top: 1px solid var(--black);
  border-right: 1px solid var(--black);
  transform: rotate(45deg);
}
@media (min-width: 769px) {
  .forester-contents .arrow-link .arrow::before {
    width: 10px;
    height: 10px;
  }
}
@media (max-width: 768px) {
  .forester-contents .arrow-link .arrow::before {
    width: 8px;
    height: 8px;
  }
}
.forester-contents .arrow-link:hover {
  text-decoration: none;
}
.forester-contents .arrow-link:hover .arrow::before {
  border-top: 1px solid var(--keyColor);
  border-right: 1px solid var(--keyColor);
}
@media (min-width: 769px) {
  .forester-contents .three-line {
    margin-inline: 3.2rem;
    background-image: url(../images/line_three.webp);
    background-repeat: repeat-x;
    background-position: center center;
    text-align: center;
  }
}
@media (min-width: 769px) {
  .forester-contents .three-line .h2ttl {
    display: inline-block;
    margin-block-end: 0;
    margin-inline: auto;
    padding-inline: 2.4rem;
    background: #f6f2ec;
  }
}
@media (max-width: 768px) {
  .forester-contents .three-line .h2ttl h2 {
    margin-left: -16px;
    margin-right: -16px;
    background-image: url(../images/line_three.webp);
    background-repeat: repeat-x;
    background-position: center center;
    background-size: 100% 60%;
  }
  .forester-contents .three-line .h2ttl h2 span {
    padding: 10px 10px;
    background: #f6f2ec;
  }
}
@media (min-width: 769px) {
  .forester-contents .three-line .h2ttl .sub {
    margin-block-start: 0;
  }
}
@media (max-width: 768px) {
  .forester-contents .three-line .h2ttl .sub {
    margin-block-start: 0.8rem;
  }
}
.forester-contents .logo_hoshiboshi-kiseki {
  margin-inline: auto;
}
@media (min-width: 769px) {
  .forester-contents .logo_hoshiboshi-kiseki {
    max-width: 373px;
  }
}
@media (max-width: 768px) {
  .forester-contents .logo_hoshiboshi-kiseki {
    width: 64%;
    max-width: 600px;
  }
}
.forester-contents .interview-acc {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.4s ease;
}
.forester-contents .interview-acc.is-open {
  display: block;
  max-height: 32000px;
  opacity: 1;
}
.forester-contents .interview-acc-button {
  margin-inline: auto;
  padding: 0.75rem 4.8rem;
  text-align: center;
  font-weight: 900;
  color: var(--white);
  background-color: var(--black);
  border-radius: 1.8rem;
  /* ↓アイコン */
  /* plus-icon */
  /* minus-icon */
  /* .arrow-down {
    display: inline-block;
    vertical-align: middle;
    color: var(--white);
    line-height: 1;
    position: relative;
    width: 0.1em;
    height: 1em;
    background: currentColor;
    position: absolute;
    right: 22px;
    top: 10px;
    &::before {
      content: '';
      width: 0.65em;
      height: 0.65em;
      border: 0.1em solid currentColor;
      border-top: 0;
      border-right: 0;
      transform: rotate(-45deg);
      transform-origin: bottom left;
      position: absolute;
      left: 50%;
      bottom: -0.05em;
      box-sizing: border-box;
    }
  } */
}
.forester-contents .interview-acc-button.button-open {
  opacity: 1;
  transition: opacity 0.3s;
  position: relative;
}
.forester-contents .interview-acc-button.button-open .label-close,
.forester-contents .interview-acc-button.button-open .minus-icon {
  display: none;
}
.forester-contents .interview-acc-button.button-open.is-open .label-open,
.forester-contents .interview-acc-button.button-open.is-open .plus-icon {
  display: none;
}
.forester-contents .interview-acc-button.button-open.is-open .label-close,
.forester-contents .interview-acc-button.button-open.is-open .minus-icon {
  display: inline-block;
}
.forester-contents .interview-acc-button.button-close {
  padding-inline: 6.4rem;
}
.forester-contents .interview-acc-button .plus-icon {
  display: inline-block;
  width: 12px;
  height: 12px;
  position: relative;
  top: 1px;
  right: -6px;
}
.forester-contents .interview-acc-button .plus-icon::before, .forester-contents .interview-acc-button .plus-icon::after {
  content: "";
  background-color: var(--white);
  position: absolute;
}
.forester-contents .interview-acc-button .plus-icon::before {
  width: 12px;
  height: 1px;
  right: 0;
  left: auto;
  top: 50%;
}
.forester-contents .interview-acc-button .plus-icon::after {
  width: 1px;
  height: 12px;
  right: 6px;
  top: calc(50% - 6px);
  transition: var(--transition);
  border: none;
  transform: translate(0);
}
.forester-contents .interview-acc-button .minus-icon {
  display: inline-block;
  width: 12px;
  height: 12px;
  position: relative;
  top: 1px;
  right: -6px;
}
.forester-contents .interview-acc-button .minus-icon::before {
  content: "";
  background-color: var(--white);
  position: absolute;
  width: 12px;
  height: 1px;
  right: 0;
  left: auto;
  top: 50%;
}
.forester-contents .acc-wrap.nml-acc-wrap {
  border: none;
}
.forester-contents .acc-wrap.nml-acc-wrap + .acc-wrap {
  margin-top: 24px;
}
.forester-contents .acc-wrap.nml-acc-wrap .triggle {
  padding: 10px 56px 10px 16px;
  background-color: #e4ebf4;
}
.forester-contents .acc-wrap.nml-acc-wrap .triggle h3 {
  font-weight: bold;
}
.forester-contents .acc-wrap.nml-acc-wrap .acc-contents-inner {
  padding: 20px 0 20px;
}
.forester-contents #fixed-btn {
  position: fixed;
  bottom: -56px;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, bottom 0.3s ease, visibility 0.3s ease;
  z-index: 10;
}
.forester-contents #fixed-btn.show {
  bottom: 0px;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.forester-contents #fixed-btn .btn-wrap-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: var(--size8);
}
@media (max-width: 768px) {
  .forester-contents #fixed-btn .btn-wrap-container {
    flex-wrap: nowrap;
    gap: 8px;
    padding: 8px 0;
  }
}
.forester-contents #fixed-btn .btn-wrap-container .btn-wrap {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 326px;
  margin-top: 0 !important;
}
@media (max-width: 768px) {
  .forester-contents #fixed-btn .btn-wrap-container .btn-wrap {
    font-size: 1.6rem;
    min-height: var(--size24);
  }
}
.forester-contents #fixed-btn .btn-wrap-container .btn-wrap .btn-ttl {
  font-size: 1.6rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 5px;
}
@media (max-width: 768px) {
  .forester-contents #fixed-btn .btn-wrap-container .btn-wrap .btn-ttl {
    font-size: 1rem;
    margin-bottom: 5px;
  }
}
.forester-contents #fixed-btn .btn-nml:hover {
  opacity: 0.7;
  transition: all 0.3s ease;
}
@media (max-width: 768px) {
  .forester-contents #fixed-btn .btn-nml {
    padding-block: 0;
  }
}
.forester-contents #fixed-btn .btn-nml.fixed-btn {
  width: 100%;
  color: var(--white);
  max-width: 375px;
}
@media (min-width: 769px) {
  .forester-contents #fixed-btn .btn-nml {
    min-height: var(--size48);
    font-size: 1.8rem;
  }
}
@media (max-width: 768px) {
  .forester-contents #fixed-btn .btn-nml {
    font-size: 1.6rem;
    min-height: 36px;
  }
}/*# sourceMappingURL=style.css.map */


