/*
Theme Name:ちゅらクリーン
*/
/*====================================================*/
/*                       リセット                      */
/*====================================================*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  color: #333;
  padding-top: 30px;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

section {
  overflow: hidden;
}

.inner {
  width: 95%;
  max-width: 1200px;
  margin: 0 auto;
}

/*====================================================*/
/*                     カラー定義                     */
/*====================================================*/
:root {
  --color-primary: #3e585d; /* ターコイズブルー */
  --color-secondary: #f0fdfe; /* 淡い水色 */
  --color-accent: #ffca28; /* 黄色系 */
  --color-text: #333333;
  --color-bg-light: #ffffff;
  --color-bg-faq: #f1f8e9;
}

/*====================================================*/
/*                       見出し                       */
/*====================================================*/
.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-primary);
  text-align: center;
  margin-bottom: 3rem;
}

.section-title span {
  font-size: 1.2rem;
  font-weight: normal;
  display: block;
  margin-top: 10px;
}

/*====================================================*/
/*                      ヘッダー                        */
/*====================================================*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--color-bg-light);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
  z-index: 100;
}
.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 60px;
}

/* 左：ロゴ */
.header__logo img {
  height: 40px;
}

.header__nav {
  margin-right: auto;
  margin-left: 5%;
}

/* 右：ナビ */
.header__nav .nav__list {
  display: flex;
  gap: 1rem;
}
.nav__item a {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 0.7rem;
  color: #63909d;
  transition: color 0.2s;
}
.nav__item a:hover {
  color: var(--color-primary);
}
.nav__jp {
  font-weight: normal;
}
.nav__en {
  font-size: 0.625rem;
  margin-top: 2px;
}

/* ドロップダウンメニュー */
.nav__item--dropdown {
  position: relative;
}

.nav__dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background-color: #fff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  padding: 10px 0;
  min-width: 150px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 1000;
}

.nav__item--dropdown:hover .nav__dropdown {
  opacity: 1;
  visibility: visible;
}

.nav__dropdown li {
  padding: 0;
}

.nav__dropdown a {
  display: block;
  padding: 8px 15px;
  color: #333;
  font-size: 0.875rem;
  transition: background-color 0.2s ease;
  border-radius: 0;
}

.nav__dropdown a:hover {
  background-color: var(--color-secondary);
  color: var(--color-primary);
}

.contact_bnr {
  display: flex;
  position: absolute;
  height: 60px;
  width: 325px;
  right: 0;
}

.contact_bnr img {
  display: block;
  max-width: 100%;
}

.line_floating {
  display: none;
}

/*====================================================*/
/*                   ヒーローセクション                */
/*====================================================*/
.hero {
  position: relative;
  width: 100%;
  height: 600px;
  background: url("./images/02_1stview_img_pc.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero::before {
  content: "";
  width: 100%;
  height: 70px;
  position: absolute;
  bottom: 0;
  left: 0;
  background: #d0edf0;
}

/* 内側コンテンツ */
.hero__inner {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  height: 100%;
}

/* ● ロゴ */
.hero__logo {
  flex: 1; /* 上下中央寄せ */
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__logo img {
  max-width: 700px; /* 必要に応じて微調整 */
  width: 80%;
  position: relative;
  top: -50px;
}

/* ● 吹き出し 3つ */
.hero__bubbles {
  display: flex;
  justify-content: center;
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 15;
  max-width: 650px;
  width: 55vw;
}

/* ● スタッフイラスト */
.hero__staff {
  position: absolute;
  right: 3%;
  bottom: 70px;
  z-index: 20;
}
.hero__staff img {
  max-width: 350px; /* 必要に応じて微調整 */
  width: 30vw;
}

/*====================================================*/
/*       課題提起セクション                           */
/*====================================================*/
.problem {
  background-color: #fff; /* 背景を白に */
  padding: 4rem 0;
}
.problem__inner {
  text-align: center;
}
/* サブタイトル */
.problem__subtitle {
  font-size: 0.9rem;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}
/* メインタイトル */
.problem__title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 2rem;
}
/* 吹き出し＋アイコンを縦並び */
.problem__rows {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
}
.problem__row {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 800px;
}
/* 吹き出し共通 */
.problem__bubble {
  max-width: 60%;
  background-color: #8a9b9e;
  border-radius: 8px;
  padding: 1rem 1.5rem;
  position: relative;
}
.problem__bubble p {
  color: #fff;
  font-size: 1rem;
  line-height: 1.4;
}

/* アイコン */
.problem__icon {
  width: 100px;
  max-width: 15%;
  margin: 0 1rem;
}
.problem__icon img {
  width: 100%;
  height: auto;
}
/* アイコン右配置 */
.problem__icon--right {
  order: 2;
}
/* アイコン左配置 */
.problem__icon--left {
  order: 1;
}
/* 吹き出し右配置 */
.problem__bubble--right {
  order: 1;
}
/* 吹き出し左配置 */
.problem__bubble--left {
  order: 2;
}

/*====================================================*/
/*       サービス一覧セクション                        */
/*====================================================*/
.service {
  background: white;
}
.service__inner {
  text-align: center;
  position: relative;
  padding-top: 50px;
}
/* 見出しエリア */
.service__heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #fff;

  max-width: 1000px;
  margin: auto;
}

.service_wrap {
  background-color: #d0edf0;
  padding-bottom: 6rem;
}
/* 左：女性スタッフ */
.service__staff--female {
  flex: 1;
  display: flex;
  justify-content: center;
}
.service__staff--female img {
  width: 140px;
  max-width: 80%;
}
/* 中央：見出し画像 */
.service__title {
  flex: 2;
  display: flex;
  justify-content: center;
}
/* 右：男性スタッフ */
.service__staff--male {
  flex: 1;
  display: flex;
  justify-content: center;
}
.service__staff--male img {
  width: 140px;
  max-width: 80%;
}
/* 見出し下三角矢印 */
.service__arrow-down {
  width: 0;
  height: 0;
  border-left: 60px solid transparent;
  border-right: 60px solid transparent;
  border-top: 60px solid white;
  margin: 0 auto;
}

/* ■ サービス一覧のタイトル */
.service__section-title {
  font-size: 1.5rem;
  font-weight: normal;
  color: #3e585d;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

/* サービスカードグリッド（常時 3 列） */
.service__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.service__card img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/*====================================================*/
/*       選ばれる理由セクション                        */
/*====================================================*/
.reason {
  background: url("./images/02_1stview_img_pc.jpg") center/cover no-repeat;
  position: relative;
  padding-bottom: 6rem;
}

.reason::before {
  content: "";
  background: url(./images/yellow_arrow.png) center/cover no-repeat;
  background-size: contain;
  display: block;
  width: 600px;
  height: 100px;
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}

.reason__inner {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding-top: 150px;
}
.reason__card {
  width: 100%;
  max-width: 1200px;
  position: relative;
  padding: 1.5rem;
}
.reason__desc {
  margin-bottom: 1rem;
}

.title_img {
  width: 600px;
  margin: auto;
  margin-bottom: 50px;
}

/*====================================================*/
/*       料金プランセクション                          */
/*====================================================*/
.price {
  background-color: var(--color-secondary);
  padding: 4rem 0 6rem;
}

.price_title span {
  display: block;
  font-size: 0.8rem;
}
.price__inner {
  text-align: center;
  max-width: 900px;
  width: 95%;
}
.price__table-wrap {
  overflow-x: auto;
  margin: auto;
  margin-top: 2rem;
  width: 100%;
  max-width: 900px;
  margin-bottom: 2rem;
}
.price__table {
  width: 900px;
  margin: 0 auto;
  border-collapse: collapse;
  background-color: #fff;
  overflow: hidden;
  color: #3e585d;
}
.price__table th,
.price__table td {
  padding: 1rem 0.5rem;
  border: 1px solid #3e585d;
  text-align: center;
  font-size: 1rem;
  width: 20%;
}

.price__table th {
  font-size: 1.2rem;
}

.price__table td {
  font-size: 1.1rem;
}

.price__table td span {
  font-size: 0.8rem;
  display: block;
}

.price__table td:nth-of-type(1) {
  background: #61a9b1;
  color: white;
  font-weight: bold;
}
.price__discount img {
  max-width: 700px;
  width: 90%;
  margin: auto;
}
.discount__item {
  background-color: #fff;
  border: 2px dashed var(--color-accent);
  border-radius: 8px;
  padding: 1rem 2rem;
  text-align: center;
}
.discount__item--2times p,
.discount__item--3times p {
  font-size: 0.9rem;
}
.discount__rate {
  font-size: 1.5rem;
  color: var(--color-accent);
  font-weight: 700;
}

.price__inner ul {
  max-width: 500px;
  width: 100%;
  margin: auto;
  text-align: left;
}

/* ■ 特徴ポイント（チェックリスト） */
.price__features {
  list-style: none;
  padding: 0;
  text-align: left;
  margin: 2rem auto;
  max-width: 700px;
  width: 100%;
}
.price__features li {
  margin-bottom: 10px;
  font-size: 1rem;
  line-height: 1.4;
  color: #333;
  position: relative;
  padding-left: 30px;
}

.price__features li::before {
  content: "✔";
  display: block;
  font-size: 25px;
  position: absolute;
  left: 0;
  transform: translateY(-50%);
  top: 50%;
  color: forestgreen;
}

/* ■ セクション見出し（h3）共通 */
.price__inner h3 {
  text-align: center;
  font-size: 1.3rem;
  margin: 2rem 0 1rem;
  color: var(--color-primary);
}

/* ■ オプション料金・交通費・備考 */
.price__options,
.price__transport,
.price__remarks {
  max-width: 800px;
  margin: 0 auto 2rem;
  text-align: center;
}
.price__options ul,
.price__transport > ul,
.price__remarks ul {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  display: inline-block;
  text-align: left;
}
.price__options li,
.price__remarks li {
  position: relative;
  padding-left: 1em;
  margin-bottom: 0.6rem;
  font-size: 0.95rem;
  color: #555;
}
.price__options li::before,
.price__remarks li::before {
  content: "・";
  position: absolute;
  left: 0;
  color: #555;
}

/* 交通費リストのネスト */
.price__transport > ul > li {
  margin-bottom: 1rem;
  font-size: 0.95rem;
  color: #555;
}
.price__transport ul ul {
  margin-top: 0.4rem;
  padding-left: 1.2rem;
}
.price__transport ul ul li {
  margin-bottom: 0.3rem;
  font-size: 0.9rem;
}

.contact_btn {
    max-width: 800px;
    width: 95%;
    display: flex;
    margin: auto;
}

.contact_btn a {
  width: calc(100%/2 - 2%);
  margin: 1%;
}

/*====================================================*/
/*       ご利用の流れセクション                        */
/*====================================================*/
.flow {
  background-color: #f0fdfe;
  padding: 4rem 0 0;
  position: relative;
}

.flow::after {
  content: "";
  background: url(./images/07_flow_07.png) center / cover no-repeat;
  width: 100%;
  height: 300px;
  position: relative;
  display: block;
}
.flow__inner {
  text-align: center;
}

.flow__steps {
  max-width: 700px;
  width: 90%;
  margin: auto;
  text-align: center;
}

.flow__steps li {
  margin-bottom: 30px;
}

.flow__steps img {
  margin: auto;
}

.bottom_arrow {
  width: 50%;
  margin: auto;
}

/* 下部デコレーション */
.flow__bottom-deco img {
  width: 100%;
  margin-top: 2rem;
}

.payment_btn {
  font-size: 1rem;
  text-align: right;
  transition: background 0.3s;
  color: var(--color-primary);
}
/*====================================================*/
/*       ご利用者の声セクション                       */
/*====================================================*/
.testimonial {
  background-color: #fcf8c6;
}
.testimonial::after {
  content: "";
  background: url(./images/bg_bottom.png) center / cover no-repeat;
  width: 100%;
  height: 300px;
  position: relative;
  display: block;
}
.testimonial__inner {
  text-align: center;
}
.testimonial__cards {
  max-width: 700px;
  width: 90%;
  margin: auto;
}

.testimonial__card {
  margin-bottom: 50px;
}

/*====================================================*/
/*       FAQ セクション                                */
/*====================================================*/
.faq {
  background-color: #fff;
  padding-bottom: 6rem;
}
.faq__inner {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.faq__item + .faq__item {
  margin-top: 16px;
}
.faq__item {
  border: 1px solid #38524a;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}
.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  cursor: pointer;
  border-bottom: 1px solid #e0e0e0;
  background: #fff;
}
.faq__q-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #5fa9a9;
  color: #fff;
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-right: 16px;
}
.faq__question-text {
  flex: 1;
  color: #38524a;
  font-size: 1.125rem;
  font-weight: 600;
  white-space: pre-wrap;
  text-align: left;
}
.faq__toggle-icon {
  font-size: 1.5rem;
  color: #38524a;
}
.faq__answer {
  display: flex;
  align-items: flex-start;
  padding: 0 24px;
  background-color: #f9f9f9;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.5s ease, opacity 0.5s ease, padding 0.5s ease;
}
.faq__answer.open {
  max-height: 400px;
  opacity: 1;
  padding: 16px 24px;
}
.faq__a-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #38524a;
  color: #fff;
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-right: 16px;
  margin-top: 4px;
}
.faq__answer p {
  margin: 0;
  color: #38524a;
  line-height: 1.8;
  text-align: left;
}

/* ===== お問い合わせセクション ===== */
.contact {
  background-color: #ffffff;
  padding: 4rem 0 6rem;
}
.contact__inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.contact__lead {
  font-size: 1rem;
  color: #555;
  margin-bottom: 3rem;
}

.contact__methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.contact__box {
  background: #f9f9f9;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
  padding: 2rem;
  text-align: left;
}

.contact__box h3 {
  font-size: 1.2rem;
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.contact__box p {
  font-size: 0.95rem;
  margin-bottom: 1rem;
  color: #444;
}

.contact__box ul {
  margin-bottom: 1rem;
  padding-left: 1.2rem;
}

.contact__box ul li {
  list-style: disc;
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 0.5rem;
}

.contact__line-btn {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.contact__qr {
  width: 80%;
  height: auto;
  border: 1px solid #ccc;
  border-radius: 8px;
  margin: auto;
}

.tel-link {
  font-size: 1.2rem;
  font-weight: bold;
  color: var(--color-primary);
  display: inline-block;
  margin-bottom: 0.5rem;
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 30px;
  font-weight: bold;
  font-size: 0.95rem;
  text-align: center;
  transition: background 0.3s;
}

.btn--line {
  background-color: #00c300;
  color: #fff;
}

.btn--line:hover {
  background-color: #009900;
}

.btn--form {
  background-color: #007acc;
  color: #fff;
  margin-top: 1rem;
}

.btn--form:hover {
  background-color: #005fa3;
}

/*====================================================*/
/*       フッター                                    */
/*====================================================*/
.footer {
  background-color: var(--color-text);
  color: #fff;
  padding: 2rem 0;
  text-align: center;
}
.footer__contact a {
  color: #fff;
  font-weight: 600;
  transition: color 0.2s;
}
.footer__contact a:hover {
  color: var(--color-accent);
}
.footer__copyright {
  font-size: 0.85rem;
  margin-top: 1rem;
}

/*====================================================*/
/*     レスポンシブ対応                               */
/*====================================================*/

@media (max-width: 768px) {
  /* ヒーローセクション */
  .hero {
    height: 480px;
  }

  .hero::before {
    height: 40px;
  }
  .hero__bubbles {
    bottom: 10px;
  }
  .hero__bubble img {
    width: 140px;
  }
  .hero__staff {
    bottom: 40px;
  }
  .hero__staff img {
    width: 25vw;
  }

  .service__section-title,
  .problem__title,
  .section-title {
    font-size: 1.5rem;
  }

  .section-title span {
    font-size: 0.8rem;
  }

  /* 課題提起セクション */
  .problem__rows {
    gap: 1.5rem;
  }

  /* サービスセクション */
  .service__heading {
    gap: 0rem;
  }
  .service__staff--female img,
  .service__staff--male img {
    width: 100%;
  }
  .service__staff {
    max-width: 15%;
  }
  .service__title img {
    max-width: 90%;
  }
  .service__arrow-down {
    width: 0;
    height: 0;
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
    border-top: 30px solid white;
    margin: 0 auto;
  }
  .service__inner {
    padding-top: 0;
  }
  .service_wrap {
    padding-bottom: 3rem;
  }
  /* 横3列 → 横2列 */
  .service__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    padding: 0 0 2rem;
  }
  .service__card img {
    max-width: 100%;
  }

  /* 選ばれる理由セクション */
  .reason {
    padding-bottom: 3rem;
  }
  .reason::before {
    width: 70vw;
    height: 12vw;
  }
  .title_img {
    width: 70%;
    margin-bottom: 30px;
  }

  .reason__inner {
    width: 100%;
  }
  .reason__cards {
    flex-direction: column;
    gap: 1.5rem;
  }
  .reason__card {
    max-width: 100%;
  }
  .reason__img img {
    height: 180px;
  }

  /* 料金プランセクション */

  .price {
    padding-bottom: 3rem;
  }


  .price__table th,
  .price__table td {
    font-size: 0.85rem;
    padding: 0.75rem 0.2rem;
  }

  .price__discount img {
    width: 70%;
  }

  /* ご利用者の声セクション：そのまま */
  .flow {
    padding: 2rem 0 0;
  }
  .flow::after {
    height: 100px;
  }

  .testimonial::after {
    height: 100px;
  }
  /* FAQセクション */
  .faq__question {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .service__section-title,
  .section-title {
    font-size: 1.2rem;
    margin-bottom: 30px;
  }

  .header__nav .nav__list {
    gap: 1rem;
  }
  .nav__item a {
    font-size: 0.75rem;
  }
  /* ヒーローさらに縮小 */
  .hero {
    height: 50vh;
  }
  .hero__logo img {
    width: 100%;
    top: -25px;
  }
  .hero__bubbles {
    width: 95%;
    left: 49%;
  }
  .hero__bubble img {
    width: 100%;
  }
  .hero__staff {
    display: none;
  }

  .hero__inner {
    position: unset;
  }

  /* 課題提起セクションを縦積み */

  .problem__title {
    font-size: 1.1rem;
  }
  .problem__row {
    flex-direction: column;
  }
  .problem__icon {
    margin: 0 auto 1rem;
  }
  .problem__bubble {
    max-width: 90%;
  }

  .price__table-wrap p {
    text-align: left !important;
  }

  .price__discount img {
    width: 90%;
  }

  .contact_btn {
    display: block;
  }
  .contact_btn a {
    width: 100%;
  }

  /* サービスセクションを1列に */
  .service__grid {
    grid-template-columns: 1fr;
    padding: 0 0 1.5rem;
  }
  .service__card img {
    max-width: 100%;
  }

  /* 選ばれる理由セクション：文字を少し縮小 */
  .reason__desc {
    font-size: 0.9rem;
  }

  .reason__inner {
    padding-top: 80px;
  }

  .title_img {
    margin-bottom: 0;
  }

  .testimonial__card {
    margin-bottom: 30px;
  }

  .payment_btn {
    font-size: 1rem;
  }

  /* FAQセクション：そのまま */

  .faq__question-text {
    font-size: 14px;
  }

  .faq__answer p {
    font-size: 12px;
  }

  .faq__answer.open,
  .faq__question {
    padding: 10px 5px;
  }

  .faq__a-icon,
  .faq__q-icon {
    margin-right: 10px;
  }
}

.hamburger_wrap {
  background: #47929f;
  height: 60px;
  width: 50px;
  text-align: center;
  padding-top: 24px;
    color: white;
    position: absolute;
    right: 0;
    z-index: 200;
    display: none;
}

.hamburger {
  display: none;
  position: relative;
  width: 22px;
  border: none;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  background: white;
  z-index: 150;
}
.hamburger span,
.hamburger span::before,
.hamburger span::after {
  content: "";
  position: absolute;
  width: 30px;
  height: 3px;
  left: 0;
  background: white;
  border-radius: 1px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.hamburger span {
  transform: translateY(0);
}
.hamburger span::before {
  transform: translateY(-8px);
}
.hamburger span::after {
  transform: translateY(8px);
}

.hamburger_wrap.active {
  background: white;
}
.hamburger.active span {
  background: var(--color-primary);
  transform: rotate(45deg);
}
.hamburger.active span::before {
  background: var(--color-primary);
  transform: rotate(90deg);
}
.hamburger.active span::after {
  opacity: 0;
}
@media (max-width: 950px) {
  .header__nav {
    display: none;
  }
  .hamburger {
    display: flex
    ;
            width: 30px;
            margin: auto;
  }

  .contact_bnr {
    height: 60px;
    top: 0;
    width: 163px;
    right: 50px;
  }
  .contact_line {
    display: none;
  }

  .contact_bnr img {
    height: 100%;
  }

  .header__logo img {
    height: 40px;
  }
}

/* モバイルナビ */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 50%;
  max-width: 300px;
  height: 100vh;
  background: var(--color-bg-light);
  box-shadow: -2px 0 8px rgba(0, 0, 0, 0.15);
  transition: right 0.3s ease;
  display: flex;
  flex-direction: column;
  padding: 4rem 1rem;
  z-index: 140;
}

/* open クラスでスライドイン */
.mobile-nav.open {
  right: 0;
}

/* 閉じるボタン */
.mobile-nav .close-btn {
  align-self: flex-end;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--color-primary);
  margin-bottom: 1.5rem;
}

/* モバイルメニュー内のリンクリスト */
.mobile-nav .nav__list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

/* —————————————————————————————— */
/* ハンバーガーボタンの位置調整＆開閉制御 */
/* —————————————————————————————— */
.hamburger {
  display: none; /* もともとの display:block は既存の @media で制御 */
  align-items: center;
  justify-content: center;
  z-index: 200; /* ナビより手前に表示 */
  margin: auto;
}

.mobile-nav .close-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 210; /* ハンバーガーより上 */
}

/* メディアクエリ（既存のものと合わせて） */
@media (max-width: 950px) {
  .header__nav {
    display: none;
  }
  .hamburger {
    display: flex;
  } /* 既に定義済み */

  .line_floating {
    display: block;
    position: fixed;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    max-width: 500px;
    width: 95%;
    margin: auto;
    z-index: 200;
  }
  .hamburger_wrap {
    display: block;
  }
}

/*====================================================*/
/*       動き追加 アニメーション設定 (末尾追記)     */
/*====================================================*/

/* スライドアップ */
@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.animate-up {
  opacity: 0;
  transform: translateY(100px);
}
.animate-up.in-view {
  animation: slideInUp 0.8s ease-out forwards;
}

/* スライドイン左 */
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.animate-left {
  opacity: 0;
  transform: translateX(-100px);
}
.animate-left.in-view {
  animation: slideInLeft 0.8s ease-out forwards;
}

/* スライドイン右 */
@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.animate-right {
  opacity: 0;
  transform: translateX(100px);
}

.animate-right.in-view {
  animation: slideInRight 0.8s ease-out forwards;
}

@keyframes slideInLeftStaff {
  from {
    opacity: 0;
    transform: translateX(-90%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.animate-left-staff {
  opacity: 0;
  transform: translateX(-90%);
}
.animate-left-staff.in-view {
  animation: slideInLeftStaff 0.8s ease-out forwards;
}

@keyframes slideInRightStaff {
  from {
    opacity: 0;
    transform: translateX(90%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.animate-right-staff {
  opacity: 0;
  transform: translateX(90%);
}

.animate-right-staff.in-view {
  animation: slideInRightStaff 0.8s ease-out forwards;
}

/*====================================================*/
/*   ヒーローバブルの浮遊アニメーション               */
/*====================================================*/
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}
.hero__bubble,
.text {
  animation: float 4s ease-in-out infinite;
}
