@charset "UTF-8";
/* =========================
  CSS変数
   ========================= */
:root {
  /* =========================
  Brand Colors
  ========================= */
  /* メイン：イエロー */
  --color-primary: #F7E36A;
  /* アクセント：信頼のグリーン（ボタン、リンク、重要箇所のみ） */
  --color-accent: #7CB342;
  /* フッター背景（深いグリーン） */
  --color-footer: #4E7A28;
  /* =========================
  Text Colors
  ========================= */
  /* メインテキスト（黒より柔らかいブラウン） */
  --color-text-main: #3A2E1F;
  /* サブテキスト（説明文など） */
  --color-text-sub: #5A4A36;
  /* =========================
  Background Colors
  ========================= */
  /* 全体の背景（柔らかいクリーム） */
  --color-bg-base: #FFFDF7;
  /* セクション背景：淡い黄色で「家」の温かさを出す */
  --color-bg-section: #FFFBE6;
  /* Shadow */
  --shadow: 0 2px 4px rgba(0, 0, 0, .3);
}

/* =========================
   Sass変数（構造・計算用）
   ========================= */
/* Fonts */
/* =========================
   レスポンシブ
   ========================= */
/* スマホ */
/* タブレット※スマホを含む */
/* PC */
/* =========================
  装飾のキラキラ
  ========================= */
/* ----------------- */
/* 共通設定*/
/* ----------------- */
/* 16px × 62.5% = 10px に設定→→14px＝1.4remと表記 */
html {
  font-size: 62.5%;
}

body {
  overflow-x: hidden;
  font-family: "Noto Sans JP", sans-serif;
  color: var(--color-text-main);
  line-height: 1.6;
  letter-spacing: 0.05em;
  scroll-behavior: smooth;
  background-color: var(--color-bg-base);
  background-repeat: no-repeat;
  text-align: center;
  font-size: 1.6rem;
}
@media (max-width: 800px) {
  body {
    font-size: 1.4rem;
    text-align: justify;
  }
}

.mobile {
  display: none;
}
@media (max-width: 800px) {
  .mobile {
    display: block;
  }
}

.pc {
  display: block;
}
@media (max-width: 800px) {
  .pc {
    display: none;
  }
}

a {
  color: var(--color-accent);
  transition: all 0.5s ease;
}
a:hover {
  opacity: 0.8;
  transform: scale(1.1);
}
@media (max-width: 800px) {
  a:hover {
    transform: none;
    opacity: 1;
  }
}

.heading {
  font-size: 3.2rem;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 700;
  line-height: 1.4;
  position: relative;
  text-shadow: var(--shadow);
  margin-bottom: 120px;
  text-align: center;
}
@media (max-width: 800px) {
  .heading {
    font-size: 1.8rem;
    margin-bottom: 40px;
  }
}

/* -----------------------------------------*/
/* common */
/* -----------------------------------------*/
.common__section {
  margin-bottom: 240px;
}
@media (max-width: 800px) {
  .common__section {
    margin-bottom: 80px;
  }
}
.common__title--em {
  position: relative;
  display: inline-block;
  font-size: 40px;
  letter-spacing: 0.1em;
  padding: 0 8px;
}
@media (max-width: 800px) {
  .common__title--em {
    font-size: 2.4rem;
    margin-bottom: 2rem;
  }
}
.common__title--em::after {
  content: "";
  display: inline-block;
  width: 240px;
  height: 18px;
  background-image: url(../img/line.webp);
  position: absolute;
  top: 100%;
  left: 0px;
}
@media (max-width: 800px) {
  .common__title--em::after {
    width: 150px;
    top: 90%;
  }
}
.common__label {
  font-weight: 700;
  font-size: 1.8rem;
  margin-bottom: 16px;
  border-bottom: 1px dashed #ccc;
  padding-bottom: 12px;
}
@media (max-width: 800px) {
  .common__label {
    font-size: 1.4rem;
  }
}
.common__subtitle--em {
  color: var(--color-accent);
  display: inline-block;
  font-size: 3.2rem;
  font-weight: 700;
  font-family: "Quicksand", sans-serif;
}
@media (max-width: 800px) {
  .common__subtitle--em {
    font-size: 2.4rem;
  }
}
.common__title--en {
  display: block;
  font-family: "Quicksand", sans-serif;
  font-size: 2.4rem;
  letter-spacing: 0.08em;
  color: var(--color-accent);
  margin-bottom: 8px;
  opacity: 0.8;
}
@media (max-width: 800px) {
  .common__title--en {
    font-size: 1.6rem;
  }
}

/* ---------------------------------------- */
/* フェードアップjs */
/* ---------------------------------------- */
.js-fadeup {
  opacity: 0;
  transform: translateY(80px);
  transition: opacity 1s ease, transform 1s ease;
}
@media (max-width: 800px) {
  .js-fadeup {
    opacity: 1 !important;
    transform: translateY(0) !important;
    transition: none !important;
  }
}
.js-fadeup.is-inview {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.5s;
}

/* ---------------------------------------- */
/* header */
/* ---------------------------------------- */
.header {
  width: 100%;
  height: 100px;
  box-shadow: var(--shadow);
  position: fixed;
  z-index: 100;
  background: var(--color-bg-base);
  transition: background 0.3s ease;
}
.header.is-scrolled {
  background: rgba(255, 255, 255, 0.5);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  height: 60px;
}
@media (max-width: 800px) {
  .header {
    height: 80px;
  }
}
.header__inner {
  position: relative;
  height: inherit;
}
.header__logo {
  position: absolute;
  top: 50%;
  left: 5%;
  transform: translateY(-50%);
  width: 120px;
}
@media (max-width: 800px) {
  .header__logo {
    width: 100px;
  }
}
.header__logo.is-scrolled {
  width: 100px;
}
.header__logo img {
  width: 100%;
  height: auto;
}
.header__nav {
  position: absolute;
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
}
@media (max-width: 1024px) {
  .header__nav {
    width: 60%;
    height: 100vh;
    background-color: var(--color-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    right: 0;
    top: 0;
    transform: translateX(100vw);
    transition: transform 0.5s ease;
    z-index: 9999;
  }
}
.header__list {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 32px;
}
@media (max-width: 1024px) {
  .header__list {
    flex-direction: column;
    width: 100%;
    height: auto;
    gap: 0;
    padding: 0;
  }
}
.header__item {
  font-weight: bold;
  padding-bottom: 5px;
  position: relative;
}
.header__item::before {
  background: var(--color-primary);
  content: "";
  width: 100%;
  height: 2px;
  position: absolute;
  left: 0;
  bottom: 0;
  transform-origin: right top;
  transform: scale(0, 1);
  transition: transform 0.3s;
}
.header__item:hover::before {
  transform-origin: center top;
  transform: scale(1, 1);
}
@media (max-width: 1024px) {
  .header__item {
    margin: 16px;
  }
}
.header__item a {
  color: var(--color-text-main);
  transition: all 0.3s ease;
}
.header__item a:hover {
  color: var(--color-accent);
}
@media (max-width: 1024px) {
  .header__item a {
    color: #fff;
    font-size: 1.6rem;
    text-align: center;
  }
  .header__item a:hover {
    color: #fff;
    transform: scale(1.1);
  }
}
.header__item--cta {
  background: linear-gradient(90deg, rgb(230, 92, 0) 0%, var(--color-primary) 100%);
  color: #fff !important;
  padding: 8px 48px;
  border-radius: 50px;
  box-shadow: var(--shadow);
  white-space: nowrap;
  letter-spacing: 0.1em;
  transition: all 0.3s ease;
}
.header__item--cta:hover {
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}
.header__item--cta:hover::before {
  display: none;
}
@media (max-width: 1024px) {
  .header__item--cta {
    display: block;
    text-align: center;
    font-size: 1.6rem;
    padding: 8px 32px;
  }
}
.header__cta {
  color: #fff !important;
  font-size: 1.6rem;
}
.header__cta:hover {
  opacity: 1;
  transform: none;
}
.header__sns-icon {
  display: flex;
}
@media (max-width: 1024px) {
  .header__sns-icon {
    padding: 16px;
  }
}
.header__sns-icon svg {
  width: 24px;
  height: 24px;
  fill: var(--color-text-main);
  transition: 0.2s;
}
@media (max-width: 1024px) {
  .header__sns-icon svg {
    fill: #fff;
  }
}
.header__sns-icon:hover svg {
  fill: var(--color-accent);
}
@media (max-width: 1024px) {
  .header__sns-icon:hover svg {
    fill: #fff;
    opacity: 0.8;
  }
}

/* -----------------------------------------*/
/* ハンバーガーメニュー */
/* -----------------------------------------*/
.hamburger {
  display: none;
}
@media (max-width: 1024px) {
  .hamburger {
    display: block;
    position: absolute;
    width: 56px;
    height: 56px;
    border-radius: 40%;
    background-color: var(--color-accent);
    z-index: 10000;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s ease;
    cursor: pointer;
  }
  .hamburger .bar {
    position: absolute;
    transition: 0.5s;
    margin: 16px 30%;
    width: 40%;
    height: 3px;
    background-color: #fff;
    border-radius: 5px;
  }
  .hamburger .bar:nth-child(1) {
    top: -4px;
  }
  .hamburger .bar:nth-child(2) {
    top: 10px;
  }
  .hamburger .menu-text {
    display: block;
    color: #fff;
    text-align: center;
    margin-top: 28px;
    font-weight: bold;
    font-size: 12px;
    transition: color 0.3s ease;
  }
}

/* -----------------------------------------*/
/* ハンバーガーメニューが開いた時の状態 */
/* -----------------------------------------*/
@media (max-width: 1024px) {
  body.open {
    overflow: hidden;
  }
  body.open .hamburger {
    background-color: #fff;
  }
  body.open .hamburger .bar {
    background-color: var(--color-accent);
  }
  body.open .hamburger .bar:nth-child(1) {
    transform: rotate(45deg);
    top: 4px;
  }
  body.open .hamburger .bar:nth-child(2) {
    transform: rotate(-45deg);
    top: 4px;
  }
  body.open .hamburger .menu-text {
    color: var(--color-accent);
  }
  body.open .header__nav {
    transform: translateX(0);
  }
  body.open .btn__page-top {
    display: none;
  }
}

/* -----------------------------------------*/
/* ファーストビュー */
/* -----------------------------------------*/
.fv {
  position: relative;
  width: 100%;
  height: 700px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 100px;
}
@media (max-width: 800px) {
  .fv {
    height: auto;
    padding-top: 70px;
    display: block;
  }
}
.fv__bg {
  position: absolute;
  top: 0;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}
.fv__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.fv__bg--left {
  left: 0;
  width: 70%;
}
.fv__bg--left img {
  -o-object-position: -250px center;
     object-position: -250px center;
}
@media (max-width: 800px) {
  .fv__bg--left {
    width: 100%;
  }
  .fv__bg--left img {
    -o-object-position: center;
       object-position: center;
  }
}
.fv__bg--right {
  right: 0;
  width: 50%;
}
@media (max-width: 800px) {
  .fv__bg--right {
    display: none;
  }
}
.fv__content {
  position: relative;
  z-index: 10;
  background: rgba(255, 255, 255, 0.9);
  padding: 100vh 0px;
  text-align: center;
  transform: skewX(-10deg);
  width: 500px;
}
@media (max-width: 800px) {
  .fv__content {
    margin: 40px auto;
    height: auto;
    background: rgba(255, 255, 255, 0.8);
    width: 80%;
    padding: 70px 0;
    border-radius: 50px;
    transform: none;
  }
}
.fv__content > * {
  transform: skewX(10deg);
}
@media (max-width: 800px) {
  .fv__content > * {
    transform: none;
  }
}
.fv__title {
  margin: 0 auto 60px;
  font-size: 4rem;
  padding: 10% 6% 0 0;
  line-height: 1.6;
  position: relative;
  position: relative;
}
@media (max-width: 800px) {
  .fv__title {
    padding: 0;
    margin-bottom: 24px;
    font-size: 2.4rem;
  }
}
.fv__title::before {
  content: "";
  position: absolute;
  z-index: 2;
  width: 150px;
  height: 150px;
  background: url(../img/kirakira.webp) no-repeat center/contain;
  top: -20%;
  left: -10%;
  transform: rotate(-10deg);
  pointer-events: none;
}
@media (max-width: 800px) {
  .fv__title::before {
    width: 100px;
    height: 100px;
    top: -60%;
    left: 0%;
  }
}
.fv__title--em {
  color: var(--color-accent);
  font-size: 6rem;
}
@media (max-width: 800px) {
  .fv__title--em {
    font-size: 3.2rem;
    letter-spacing: inherit;
  }
}
.fv__title--em::after {
  width: 340px;
}
@media (max-width: 800px) {
  .fv__title--em::after {
    width: 180px;
    top: 100%;
  }
}
.fv__subtitle {
  margin-bottom: 32px;
}
.fv__item--cta {
  display: inline-block;
}
.fv__item--cta:hover {
  opacity: 1;
  transform: translateY(-2px) skewX(10deg);
}
.fv__cta {
  color: #fff;
  margin-bottom: 0;
  font-size: 1.6rem;
  display: inline-block;
  transform: skewX(0deg);
}
@media (max-width: 800px) {
  .fv__cta {
    padding: 8px;
    font-size: 1.4rem;
  }
}
.fv__cta:hover {
  opacity: 1;
  transform: skewX(0deg);
}
@media (max-width: 800px) {
  .fv__cta:hover {
    transform: none;
  }
}

/* -----------------------------------------*/
/* problem */
/* -----------------------------------------*/
.problem {
  background: var(--color-bg-section);
  padding: 160px 0;
  text-align: center;
  position: relative;
  /* 吹き出し共通 */
  /* 位置調整（吹き出しの口） */
}
@media (max-width: 800px) {
  .problem {
    padding: 80px 16px;
  }
}
.problem__title {
  margin-bottom: 120px;
}
@media (max-width: 800px) {
  .problem__title {
    margin-bottom: 24px;
  }
}
.problem__center {
  position: relative;
  display: inline-block;
}
.problem__illust {
  width: 300px;
  display: block;
  background: url(../img/blob.svg) no-repeat center/contain;
}
@media (max-width: 800px) {
  .problem__illust {
    margin: 0 auto;
    width: 240px;
  }
}
.problem__bubble {
  position: absolute;
  background: #fff;
  padding: 48px 24px;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  width: 200px;
}
@media (max-width: 800px) {
  .problem__bubble {
    position: static;
    margin: 16px auto;
    width: 90%;
    padding: 24px 16px;
    border-radius: 50px;
  }
}
.problem__em {
  display: inline;
  background: linear-gradient(transparent 60%, rgba(247, 227, 106, 0.6) 60%);
}
.problem__bubble::after {
  content: "";
  position: absolute;
  width: 30px;
  height: 30px;
  background: #fff;
  transform: rotate(45deg);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  -webkit-clip-path: polygon(100% 0, 0 50%, 100% 100%);
          clip-path: polygon(100% 0, 0 50%, 100% 100%);
}
.problem__bubble--top-left {
  top: -40px;
  left: -200px;
}
.problem__bubble--top-left::after {
  bottom: 10px;
  right: 0px;
  -webkit-clip-path: polygon(0 0, 0 100%, 100% 50%);
          clip-path: polygon(0 0, 0 100%, 100% 50%);
}
@media (max-width: 800px) {
  .problem__bubble--top-left::after {
    display: none;
  }
}
.problem__bubble--top-right {
  top: -40px;
  right: -200px;
}
.problem__bubble--top-right::after {
  bottom: 5px;
  left: 24px;
  -webkit-clip-path: polygon(100% 0, 0 30%, 100% 100%);
          clip-path: polygon(100% 0, 0 30%, 100% 100%);
}
@media (max-width: 800px) {
  .problem__bubble--top-right::after {
    display: none;
  }
}
.problem__bubble--bottom-left {
  bottom: -20px;
  left: -260px;
}
.problem__bubble--bottom-left::after {
  top: 8px;
  right: 0px;
  -webkit-clip-path: polygon(0 100%, 50% 0, 100% 100%);
          clip-path: polygon(0 100%, 50% 0, 100% 100%);
}
@media (max-width: 800px) {
  .problem__bubble--bottom-left::after {
    display: none;
  }
}
.problem__bubble--bottom-right {
  bottom: -20px;
  right: -260px;
}
.problem__bubble--bottom-right::after {
  top: -4px;
  left: 20px;
  transform: rotate(-45deg);
  -webkit-clip-path: polygon(0 100%, 50% 0, 100% 100%);
          clip-path: polygon(0 100%, 50% 0, 100% 100%);
}
@media (max-width: 800px) {
  .problem__bubble--bottom-right::after {
    display: none;
  }
}

/* -----------------------------------------*/
/* solution */
/* -----------------------------------------*/
/* -----------------------------------------*/
/* 写真背景エリア */
/* -----------------------------------------*/
.photo {
  position: relative;
  padding: 160px 0;
  background: url(../img/bg1.webp) no-repeat center/cover;
  margin-bottom: 240px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}
@media (max-width: 800px) {
  .photo {
    padding: 80px 0;
    margin-bottom: 80px;
  }
}
.photo__text {
  position: relative;
  font-family: "M PLUS Rounded 1c", sans-serif;
  background: rgba(255, 255, 255, 0.9);
  background-image: url(https://www.transparenttextures.com/patterns/connected.png);
  padding: 60px 80px;
  border-radius: 50px;
  box-shadow: var(--shadow);
  font-size: 2.4rem;
  /* 黄色い吹き出し画像 */
}
@media (max-width: 800px) {
  .photo__text {
    font-size: 1.6rem;
    margin: 0 24px;
    padding: 40px;
    text-align: center;
  }
}
.photo__text::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 120px;
  background: url(../img/hukidasi.webp) no-repeat center/contain;
  bottom: 75%;
  left: -16%;
  z-index: 1;
  transform: rotate(-12deg);
}
@media (max-width: 800px) {
  .photo__text::before {
    width: 120px;
    height: 90px;
    bottom: 90%;
    left: 50%;
    transform: translateX(-50%);
  }
}
.photo__title {
  position: relative;
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 0.5em;
  color: #4a6741;
  position: relative;
}
@media (max-width: 800px) {
  .photo__title {
    font-size: 1.1rem;
  }
}
.photo__title::before {
  content: "";
  position: absolute;
  z-index: 2;
  width: 150px;
  height: 150px;
  background: url(../img/kirakira.webp) no-repeat center/contain;
  top: 50%;
  left: 100%;
  transform: rotate(-10deg);
  pointer-events: none;
}
@media (max-width: 800px) {
  .photo__title::before {
    width: 70px;
    height: 70px;
    top: -60%;
    left: 100%;
  }
}
.photo__sub {
  margin-bottom: 1.2em;
  display: block;
}
.photo__offer {
  font-weight: bold;
}
.photo__price {
  color: #b22222;
  display: inline-block;
  position: relative;
  z-index: 1;
}
.photo__price::after {
  content: "";
  width: 230px;
  height: 20px;
  background-image: url(../img/line.webp);
  position: absolute;
  top: 90%;
  left: 0px;
}
@media (max-width: 800px) {
  .photo__price::after {
    width: 150px;
  }
}

/* -----------------------------------------*/
/* h2　サービス内容について */
/* -----------------------------------------*/
.solution {
  padding: 0 16px;
  margin-bottom: 240px;
  /* ｈ2 */
  /* リード文 */
  /* サービス内容について */
}
@media (max-width: 800px) {
  .solution {
    margin-bottom: 80px;
  }
}
.solution__title-area {
  padding: 32px 24px;
}
.solution__title--em::after {
  left: 0%;
  top: 95%;
  width: 370px;
}
@media (max-width: 800px) {
  .solution__title--em::after {
    width: 220px;
  }
}
.solution__lead {
  line-height: 1.8;
  margin-bottom: 80px;
}
@media (max-width: 800px) {
  .solution__lead {
    font-size: 1.6rem;
    margin-bottom: 60px;
  }
}
.solution__cards {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  justify-content: center;
  margin-bottom: 80px;
}
@media (max-width: 800px) {
  .solution__cards {
    gap: 40px;
  }
}
.solution__card {
  width: 280px;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}
@media (max-width: 800px) {
  .solution__card {
    width: 100%;
    max-width: 320px;
  }
}
.solution__card img {
  width: 100%;
  display: block;
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 800px) {
  .solution__card img {
    aspect-ratio: 2/1;
  }
}
.solution__text {
  letter-spacing: 0.01em;
}

/* 「60分プランのみ20％OFF」を強調 */
.solution__lead span {
  font-weight: bold;
  font-size: 1.2em;
  color: #d32f2f;
  text-decoration: underline;
}

/* -----------------------------------------*/
/* サービス内容・料金セクション */
/* -----------------------------------------*/
.service-options {
  margin-bottom: 120px;
}
@media (max-width: 800px) {
  .service-options {
    margin-bottom: 80px;
  }
}
.service-options__title {
  font-size: 28px;
  padding: 0 24px 12px;
  margin-bottom: 64px;
  border-bottom: 2px solid var(--color-accent);
  font-family: "M PLUS Rounded 1c", sans-serif;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 100%;
  margin: 0 auto 64px;
}
@media (max-width: 800px) {
  .service-options__title {
    font-size: 2rem;
    padding-bottom: 8px;
    margin-bottom: 24px;
  }
}

/* -----------------------------------------*/
/* ご利用時間と料金 */
/* -----------------------------------------*/
.service-time {
  margin-bottom: 80px;
}
@media (max-width: 800px) {
  .service-time {
    margin-bottom: 60px;
  }
}
.service-time__cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  justify-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  .service-time__cards {
    grid-template-columns: repeat(2, 1fr);
    max-width: 800px;
  }
}
@media (max-width: 800px) {
  .service-time__cards {
    grid-template-columns: repeat(1, 1fr);
  }
}

.service-plan {
  width: 70%;
  max-width: 300px;
  background: #fff;
  border-radius: 20px;
  padding: 32px 24px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: 0.3s ease;
  /* おすすめプラン */
}
@media (max-width: 1024px) {
  .service-plan {
    height: 250px;
  }
}
@media (max-width: 800px) {
  .service-plan {
    height: 220px;
  }
}
.service-plan__label {
  color: #5A8F2C;
}
.service-plan__title {
  font-size: 20px;
  position: relative;
}
@media (max-width: 800px) {
  .service-plan__title {
    font-size: 1.8rem;
    margin-bottom: 12px;
  }
}
.service-plan__time {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 12px;
}
@media (max-width: 800px) {
  .service-plan__time {
    font-size: 2.4rem;
  }
}
.service-plan__price {
  font-size: 20px;
  font-weight: 700;
  color: #333;
  display: flex;
  align-items: center;
  gap: 6px;
  justify-content: center;
}
@media (max-width: 800px) {
  .service-plan__price {
    font-size: 20px;
  }
}
.service-plan--recommend {
  border: 3px solid var(--color-accent);
  background: #f7ffe9;
  position: relative;
  width: 80%;
}
@media (max-width: 1024px) {
  .service-plan--recommend {
    width: 70%;
  }
}
.service-plan--recommend::before {
  content: "おすすめ";
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #5A8F2C;
  color: #fff;
  padding: 4px 16px;
  border-radius: 20px;
  font-size: 1.4rem;
  font-weight: 700;
}

.service-plan__price .service-plan__offprice {
  font-size: 22px;
  font-weight: 700;
  color: #5A8F2C;
  position: relative;
}
.service-plan__price .service-plan__offprice::before {
  content: "⇒";
  margin-right: 6px;
  color: #5A8F2C;
  font-weight: 700;
}

.service-plan__note {
  margin-top: 8px;
  font-size: 1.4rem;
  color: #5A8F2C;
  font-weight: 700;
}

/* =========================
   Voice（お客様の声）
   ========================= */
.voice {
  padding: 80px 16px;
  margin-bottom: 240px;
  background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)), url(../img/voicebg.webp) no-repeat left 0px top 0px/cover;
  background-blend-mode: multiply;
  /* 上段：画像＋テキスト */
  /* 下段：プラン名など */
  /* 左側：画像＋名前 */
  /* 右側：テキストエリア */
  /* ---------------------------- */
  /* お客様の声をもっと見るctaボタン */
  /* ---------------------------- */
}
@media (max-width: 800px) {
  .voice {
    margin-bottom: 80px;
  }
}
@media (max-width: 800px) {
  .voice__title {
    margin-bottom: 40px;
  }
}
.voice__title--en, .voice__title--em {
  color: #fff;
}
.voice__title--em::after {
  top: 100%;
  left: 0;
  width: 240px;
}
@media (max-width: 800px) {
  .voice__title--em::after {
    width: 150px;
  }
}
.voice__container {
  width: 50%;
  margin: 0 auto 60px;
}
@media (max-width: 1024px) {
  .voice__container {
    width: 90%;
  }
}
.voice__content {
  background: rgba(255, 255, 255, 0.9);
  background-image: url(https://www.transparenttextures.com/patterns/connected.png);
  border-radius: 16px;
  padding: 40px 60px;
  box-shadow: var(--shadow);
  margin-bottom: 40px;
}
@media (max-width: 800px) {
  .voice__content {
    padding: 2.4rem;
  }
}
.voice__content--top {
  display: flex;
  gap: 24px;
  align-items: center;
}
@media (max-width: 800px) {
  .voice__content--top {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }
}
.voice__content--bottom {
  color: var(--color-accent);
  font-weight: 700;
  background: lemonchiffon;
  border-radius: 50px;
  padding: 16px 80px;
  box-shadow: var(--shadow);
  display: flex;
  justify-content: center;
  align-items: center;
  letter-spacing: 0;
  margin: 32px auto 0;
}
@media (max-width: 800px) {
  .voice__content--bottom {
    border-radius: 30px;
    padding: 16px 24px;
    width: 80%;
    margin-top: 16px;
  }
}
.voice__img-area {
  width: 30%;
  text-align: center;
}
@media (max-width: 800px) {
  .voice__img-area {
    margin: 0 auto;
    width: 100%;
  }
}
.voice__img {
  width: 100px;
  margin: 0 auto 24px;
}
.voice__img-text {
  margin-top: 8px;
}
.voice__img-text p {
  font-size: 1.4rem;
  color: var(--color-text-sub);
  line-height: 1.4;
}
.voice__text-area {
  flex: 1;
  text-align: justify;
}
.voice__subtitle p {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-text-main);
  margin-bottom: 16px;
  border-bottom: 1px dotted;
  padding-bottom: 16px;
}
@media (max-width: 800px) {
  .voice__subtitle p {
    font-size: 1.4rem;
  }
}
.voice__text p {
  margin-bottom: 12px;
  color: var(--color-text-sub);
  font-size: 15px;
}
@media (max-width: 800px) {
  .voice__text p {
    font-size: 1.4rem;
  }
}
.voice__cta {
  text-align: center;
  margin-top: 60px;
}
.voice__cta-btn {
  position: relative;
  display: inline-flex;
  margin: 0 auto;
  justify-content: center;
  align-items: center;
  width: 240px;
  padding: 16px 60px;
  background: var(--color-accent);
  color: #ffffff;
  font-weight: 700;
  border-radius: 50px;
  box-shadow: var(--shadow);
  letter-spacing: 0.1em;
}
@media (max-width: 800px) {
  .voice__cta-btn {
    width: 170px;
    padding: 16px 32px;
  }
}
.voice__cta-btn::before, .voice__cta-btn::after {
  position: absolute;
  content: "";
  width: 2px;
  height: 30px;
  background-color: white;
  top: 50%;
}
@media (max-width: 800px) {
  .voice__cta-btn::before, .voice__cta-btn::after {
    display: none;
  }
}
.voice__cta-btn::before {
  transform: translateY(-50%) rotate(-40deg);
  left: 15%;
}
.voice__cta-btn::after {
  transform: translateY(-50%) rotate(40deg);
  right: 15%;
}

/* ----------------- */
/* faq */
/* ----------------- */
.faq__title {
  margin-bottom: 80px;
}
@media (max-width: 800px) {
  .faq__title {
    margin-bottom: 40px;
  }
}
.faq__title--em::after {
  width: 320px;
}
@media (max-width: 800px) {
  .faq__title--em::after {
    width: 200px;
  }
}
.faq__wrapper {
  max-width: 800px;
  margin: 0 auto;
}
@media (max-width: 800px) {
  .faq__wrapper {
    padding: 0 16px;
  }
}
.faq__item {
  margin-bottom: 24px;
  text-align: justify;
  background: #fff;
  overflow: hidden;
}
@media (max-width: 800px) {
  .faq__item {
    max-width: 400px;
    margin: 0 auto 16px;
  }
}
.faq__item.is-open .faq__question::after {
  transform: translateY(-50%) rotate(45deg);
}
.faq__question {
  font-weight: 500;
  line-height: 1.6;
  border-bottom: 1px solid #9f9c9c;
  padding: 8px 24px 8px 32px;
  position: relative;
  cursor: pointer;
  list-style: none;
}
@media (max-width: 800px) {
  .faq__question {
    padding: 8px 16px;
  }
}
.faq__question::after {
  content: "＋";
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2.4rem;
  color: var(--color-accent);
  transition: transform 0.3s ease;
}
@media (max-width: 800px) {
  .faq__question::after {
    right: 16px;
  }
}
.faq__content {
  height: 0;
  overflow: hidden;
  transition: height 0.3s ease-out;
}
.faq__answer {
  font-size: 1.4rem;
  padding: 16px 24px;
  line-height: 1.8;
  text-align: justify;
}
.faq__cta {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 100%;
  margin-top: 32px;
  border-bottom: 1px solid var(--color-accent);
  margin: 40px auto 0;
}
.faq__cta-btn:hover {
  transform: none;
}

/* ----------------- */
/* cta-final */
/* ----------------- */
.cta-final {
  position: relative;
}
.cta-final__title {
  margin-bottom: 80px;
}
.cta-final__title--em::after {
  width: 450px;
  left: 5%;
}
@media (max-width: 800px) {
  .cta-final__title--em::after {
    width: 270px;
  }
}
.cta-final__offer {
  margin-top: 24px;
  text-align: center;
}
@media (max-width: 800px) {
  .cta-final__offer {
    margin-top: 16px;
  }
}
.cta-final__offer--em {
  font-size: 1.8rem;
  font-weight: 700;
  display: inline-block;
  letter-spacing: 0.1em;
  color: #b22222;
  font-family: "M PLUS Rounded 1c", sans-serif;
}
.cta-final__price {
  position: relative;
  display: inline-block;
  border-bottom: 1px solid var(--color-accent);
}
.cta-final__price::after {
  content: "▲";
  position: absolute;
  width: 20px;
  height: 20px;
  right: -24px;
  top: 3px;
  color: var(--color-accent);
  display: contents;
}

.banner {
  left: 0;
  width: 100%;
  z-index: 90;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  background: rgba(255, 255, 255, 0.5);
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  pointer-events: none;
}
.banner.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.banner__stop-marker {
  position: relative;
  width: 100%;
  height: 100px;
}
@media (max-width: 800px) {
  .banner__stop-marker {
    height: 80px;
  }
}
.banner__link {
  max-width: 560px;
  margin: 0 auto;
  padding: 6px 0;
}
@media (max-width: 800px) {
  .banner__link {
    max-width: 400px;
    width: 90%;
    padding: 0;
  }
}
.banner__img {
  box-shadow: var(--shadow);
}

/* ----------------- */
/* footer */
/* ----------------- */
.footer {
  background-color: var(--color-footer);
  padding: 40px 0;
  margin-top: 240px;
}
@media (max-width: 800px) {
  .footer {
    margin-top: 80px;
  }
}
.footer__text {
  color: #fff;
  text-align: center;
}
@media (max-width: 800px) {
  .footer__text {
    margin-bottom: 0.8rem;
  }
}
.footer__text:hover {
  opacity: 1;
  transform: none;
}
.footer__year {
  display: inline;
  padding: 0 8px;
}
.footer__content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin: 0 auto 1.6rem;
  font-size: 1.4rem;
}
@media (max-width: 800px) {
  .footer__content {
    flex-direction: column;
    gap: 0px;
    font-size: 1.2rem;
  }
}
.footer__after::after {
  content: "|";
  margin: 0 8px;
  color: #fff;
}
@media (max-width: 800px) {
  .footer__after::after {
    display: none;
  }
}

/* ----------------- */
/* topへ戻るボタン */
/* ----------------- */
.btn__page-top {
  position: fixed;
  right: 5%;
  bottom: 20%;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
}
@media (max-width: 800px) {
  .btn__page-top {
    bottom: 15%;
  }
}
.btn__page-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.page-top__a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: var(--color-primary);
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  cursor: pointer;
}
@media (max-width: 800px) {
  .page-top__a {
    width: 50px;
    height: 50px;
  }
}
.page-top__a:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  opacity: 1;
}
@media (max-width: 800px) {
  .page-top__a:hover {
    transform: translateY(-3px);
  }
}
.page-top__a:hover .arrow::before, .page-top__a:hover .arrow::after {
  background-color: #fff;
}

.arrow {
  position: relative;
  width: 12px;
  height: 12px;
  display: block;
}
.arrow::before, .arrow::after {
  content: "";
  position: absolute;
  width: 3px;
  height: 15px;
  background-color: #fff;
  border-radius: 2px;
  transition: background-color 0.3s ease;
}
.arrow::before {
  left: 0;
  transform: rotate(45deg);
}
.arrow::after {
  right: 0;
  transform: rotate(-45deg);
}
/*# sourceMappingURL=style.css.map */