@charset "UTF-8";
/* 全体のコンテナスタイル */
body {
  font-family: 'Hiragino Kaku Gothic ProN', 'Meiryo', sans-serif;
  margin: 0;
  background-color: #f5f5f5;
  color: #333;
}
.container {
  max-width: 1000px;
  margin: 0 auto;
  background-color: #fff;
  box-shadow: 0 0 15px rgba(0,0,0,0.1);
}
.site-header {
  background-color: #fff;
  border-bottom: 1px solid #eee;
  padding: 10px 0;
}

/* メインビジュアルのコンテナ */
.main-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
}

/* PC版のメインビジュアル画像 */
.main-visual-image.pc-only {
  max-width: 1000px;
  display: block;
  height: auto; /* 高さは自動調整 */
}

/* スマホ版のメインビジュアル画像（初期は非表示） */
.main-visual-image.sp-only {
  display: none;
}

/* スマホ用スタイル（768px以下で切り替え） */
@media (max-width: 768px) {
  .main-visual {
    /* スマホ版では高さを固定せず、画像に合わせて自動調整 */
    height: auto;
  }
  .main-visual-image.pc-only {
    display: none; /* スマホではPC版を非表示 */
  }
  .main-visual-image.sp-only {
    display: block; /* スマホではスマホ版を表示 */
    width: 100%;
    height: auto;
  }
}

.catch-copy {
  background-color: #fff;
  padding: 40px 20px;
  text-align: center;
  font-weight: bold;
  color: #e04e8d;
  font-size: 1.2rem; /* 基本はスマホ用（小さい画面） */
}

/* PC用（例: 幅768px以上） */
@media screen and (min-width: 768px) {
  .catch-copy {
    font-size: 1.7rem;
  }
}
.section {
  padding: 50px 20px;
  border-bottom: 1px solid #eee;
}
.section-header {
  background-color: #4f4cfa;
  color: #fff;
  padding: 15px 20px;
  text-align: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 30px;
}
.section-header h2 {
  color: #fff;
  font-size: 1.4rem;
  margin: 0;
}
.campaign-section {
  background-color: #fff3cd; /* 目を引く黄色 */
  border: 2px dashed #ffc107; /* 破線ボーダー */
  padding: 30px;
  margin: 20px auto;
  text-align: center;
  border-radius: 10px;
}
.campaign-section h2 {
  font-size: 1.5rem;
  color: #e04e8d;
  font-weight: bold;
  margin-bottom: 10px;
}
.campaign-section p {
  font-size: 1.1rem;
  color: #333;
  font-weight: bold;
}
.campaign-section table {
  width: 100%;
  margin-top: 20px;
  border-collapse: collapse;
}
.campaign-section th, .campaign-section td {
  border: 1px solid #ddd;
  padding: 10px;
  text-align: center;
}
.campaign-section th {
  background-color: #f8e8b2;
}
.campaign-section td {
  background-color: #fff;
}
.service-card {
  background-color: #f8f8f8;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  text-align: center;
  margin-bottom: 20px;
  transition: transform 0.3s ease-in-out;
}
.service-card:hover {
  transform: translateY(-5px);
}
.service-card h3 {
  font-size: 1.3rem;
  color: #007bff;
  margin-bottom: 15px;
}
.service-card .price {
  font-size: 2rem;
  font-weight: bold;
  color: #e04e8d;
}
.service-card .price small {
  font-size: 1rem;
  color: #666;
  font-weight: normal;
}
.btn-cta {
  display: inline-block;
  background-color: #e04e8d;
  color: #fff;
  padding: 15px 40px;
  font-size: 1.2rem;
  font-weight: bold;
  border-radius: 50px;
  text-decoration: none;
  transition: background-color 0.3s ease-in-out;
  box-shadow: 0 5px 10px rgba(0,0,0,0.2);
  margin-top: 20px;
}
.btn-cta:hover {
  background-color: #c73a7c;
  color: #fff;
}
.benefit-item {
  display: flex;
  align-items: center;
  background-color: #fff;
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}
.benefit-item .icon {
  background-color: #007bff;
  color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  margin-right: 20px;
}
.benefit-item p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
}

/* 安心の3つのポイント内の画像・テキストを中央に配置 */
.benefit-item > div {
  text-align: center;
}
/* さらに、もし画像がそれでも中央に寄らない場合は、画像（<picture>または<img>）をブロック要素にして中央マージンを適用します */
.benefit-item img {
  display: block; /* 画像をブロック要素に */
  margin: 0 auto; /* 左右マージン自動で中央寄せ */
  max-width: 100%;
  height: auto;
}

.review-card {
  background-color: #f8f8f8;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  margin-bottom: 20px;
}
.review-card .stars {
  color: #ffc107;
  font-size: 1.2rem;
  margin-bottom: 10px;
}
.review-card .comment {
  font-style: italic;
  margin-bottom: 10px;
}
.review-card .author {
  text-align: right;
  font-weight: bold;
}
.flow-step {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
}
.flow-step .step-number {
  background-color: #a20073;
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.2rem;
  font-weight: bold;
  margin-right: 20px;
}
.flow-step .step-description h3 {
  font-size: 1.1rem;
  font-weight: bold;
  color: #a20073;
  margin: 0;
}
.flow-step .step-description p {
  margin: 5px 0 0;
  font-size: 0.9rem;
  color: #555;
}
.footer-links {
  text-align: center;
  padding: 20px 0;
  border-top: 1px solid #eee;
  margin-top: 30px;
}
.footer-links a {
  color: #555;
  text-decoration: none;
  margin: 0 15px;
}
/* Sticky CTA button for mobile */
.mobile-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #e04e8d;
  color: #fff;
  text-align: center;
  padding: 15px;
  font-size: 1.2rem;
  font-weight: bold;
  z-index: 1000;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
  text-decoration: none;
}

.pulldown-container {
  overflow: hidden;
  padding: 5px 0;
}

.pulldown-container select {
  width: 100%;
  box-sizing: border-box;
}

/* 追加: 合計金額表示エリアのスタイル */
#total-price-area {
  background-color: #a20073;
  color: #fff;
  padding: 20px;
  margin-top: 30px;
  text-align: center;
  border-radius: 10px;
}
#total-price-area h3 {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 5px;
}
#total-price-area p {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 0;
}
#total-price-area .total-price {
  font-size: 2.5rem;
  font-weight: bold;
}
#total-price-area .discount-text {
  font-size: 1.1rem;
  color: #ffc107;
  font-weight: bold;
}

.banner {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  border: 1px solid #ccc;
  padding: 20px;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  flex-wrap: wrap; /* 小さい画面で折り返せるように */
}

.banner-text {
  flex: 1;
  margin-right: 20px;
  text-align: center; /* 小さい画面でも中央揃えに */
}

.banner-button {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 14px;
  background-color: #005BAC;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  font-size: 14px;
}

.banner img {
  flex: 1.5;
  max-width: 30%;
  height: auto;
  object-fit: contain;
}

/* ここからスマホ対応 */
@media (max-width: 480px) {
  .banner {
    flex-direction: column; /* 縦並びに切り替え */
    padding: 15px;
  }

  .banner-text {
    flex: 1;
    margin-right: 20px;
    min-width: 0;
  }

  .banner img {
    max-width: 100%; /* 横幅いっぱいに広げる */
    height: auto;
  }
}

/* 全体のコンテナスタイル */
.accordion-container {
  border: 1px solid #ccc; /* 枠線を追加 */
  border-radius: 8px; /* 角を丸くする */
  overflow: hidden; /* 角丸に合わせて内容を隠す */
  margin-bottom: 20px;
  background-color: #f7f3ed; /* 背景色を設定 */
}

/* アコーディオンのタイトル部分（開閉ボタン）のスタイル */
.accordion-summary {
  display: flex; /* Flexboxで中身を配置 */
  justify-content: center; /* タイトルを中央揃えに */
  align-items: center; /* 垂直方向の中央揃え */
  padding: 15px 20px;
  cursor: pointer;
  list-style: none; /* デフォルトのマーカー（三角矢印）を非表示に */
  font-size: 16px;
  font-weight: bold;
  color: #007bff;
  position: relative; /* 矢印の位置調整のために必要 */
}

/* 矢印のスタイル */
.accordion-summary::after {
  content: '❯'; /* 矢印の記号 */
  font-size: 16px;
  position: absolute;
  right: 20px; /* 右端に配置 */
  transition: transform 0.2s;
}

/* アコーディオンが開いたときの矢印のスタイル */
.accordion-details[open] .accordion-summary::after {
  transform: rotate(90deg); /* 矢印を90度回転 */
}

/* アコーディオンの中身のスタイル */
.accordion-content {
  padding: 0 20px 20px; /* 左揃えにするための余白 */
}

.accordion-content ul {
  font-size: 13px;
  list-style-type: disc; /* リストのマーカーをドットに設定 */
  margin: 0;
  padding-left: 20px; /* 左側にパディングを設定して字下げ */
  line-height: 1.6;
  color: #333; /* テキストの色を設定 */
}

.sp {
  display: none;
}
/* 768px以下の時だけbrを表示する */
@media screen and (max-width: 768px) {
  .sp {
    display: block;
  }
}

.icon-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-bottom: 30px;
  padding: 10px;
  border: 1px solid #4551ff;
  border-radius: 10px;
  background-color: #f9f9f9;
}
.icon-item {
  text-align: center;
  cursor: pointer;
  padding: 10px;
  border-radius: 8px;
  transition: transform 0.2s, box-shadow 0.2s;
  flex: 1 1 100px;
  max-width: 120px;
}

.icon-image {
  width: 100px;
  height: 100px;
  margin: 0 auto 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  border-radius: 50%;
  border: 1px solid #ddd;
}
.icon-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.icon-label {
  font-size: 15px;
  font-weight: bold;
  color: #333;
  /* white-space: nowrap; を削除 */
  /* overflow: hidden; を削除 */
  /* text-overflow: ellipsis; を削除 */
}

 :root {
            --colorT: #FF9800;
        }

        .option {
            position: relative;
            padding: 0px 0;
        }

        .option h2 {
            text-align: center;
            font-size: 40px;
            line-height: 1.5;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .option h2 span {
            line-height: 1.5;
            font-weight: 700;
            color: var(--colorT);
        }

        .bath_option {
            text-align: center;
            margin-bottom: 20px;
        }

        .bath_option img {
            max-width: 100%;
            height: auto;
        }

        .option .option_content {
            display: grid;
            grid-template-columns: repeat(3, calc((100% - 60px) / 3));
            gap: 40px 30px;
            margin: 0 auto;
            max-width: 1200px;
            padding: 0 15px;
            box-sizing: border-box;
            scroll-behavior: smooth; 
        }

        .option .option_item {
            background-color: #FFF;
            border-radius: 10px;
            display: flex;
            flex-direction: column;
            overflow: hidden;
        }

        .option .option_item img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-radius: 10px 10px 0 0;
        }

        .option .option_item > div {
            display: flex;
            flex-direction: column;
            gap: 10px;
            padding: 20px;
            flex-grow: 1;
        }

        .option .option_item > div h5 {
            font-weight: 700;
            font-size: 18px;
        }

        .option .option_item > div p {
            font-size: 16px;
            line-height: 1.6;
            display: flex;
            gap: 20px;
            align-items: center;
        }

        .option .option_item > div p:first-of-type {
            font-weight: 700;
            color: var(--colorT);
        }

        .option .option_item > div span {
            display: inline-block;
            background-color: #FCE9D7;
            width: 140px;
            font-size: 16px;
            line-height: 1.6;
            text-align: center;
            padding: 2px 0;
            border-radius: 5px;
        }

        .option .option_item > div p:last-of-type {
            display: block;
            margin-top: auto;
        }

        @media screen and (min-width: 768px) {
            .option .option_item img {
                height: 220px;
            }
        }

        @media (max-width: 1100px) {
            .option h2 {
                font-size: 36px;
            }
            .option .option_item > div h5 {
                font-size: 17px;
            }
            .option .option_item > div span {
                width: 120px;
                font-size: 14px;
            }
            .option .option_item > div p {
                font-size: 15px;
            }
        }

        @media (max-width: 991px) {
            .option h2 {
                font-size: 32px;
            }
            .option .option_content {
                gap: 20px 30px;
                grid-template-columns: repeat(3, calc((100% - 40px) / 3));
            }
            .option .option_item > div {
                padding: 15px;
                gap: 5px;
            }
            .option .option_item > div h5 {
                font-size: 16px;
            }
            .option .option_item > div p {
                flex-direction: column;
                gap: 5px;
                font-size: 14px;
                align-items: flex-start;
            }
        }
        
        @media (max-width: 767px) {
.carousel_nav {
        /* スマホ画面でのみFlexboxで表示し、矢印を有効にする */
        display: flex; 
    }

            .option h2 {
                font-size: 28px;
            }
            .option .option_content {
                display: flex;
                overflow-x: scroll;
                scroll-snap-type: x mandatory;
                gap: 20px;
                padding: 0 20px 20px 20px;
                grid-template-columns: unset;
                width: 100%;
                box-sizing: border-box;
                -webkit-overflow-scrolling: touch;
            }

            .option .option_content::-webkit-scrollbar {
                display: none;
            }
            .option .option_content {
                -ms-overflow-style: none;
                scrollbar-width: none;
            }

            .option .option_item {
                min-width: calc(100% - 40px);
                scroll-snap-align: center;
                margin: 0;
            }

            .option .option_item img {
                height: 180px;
            }

            .carousel_nav, .carousel_dots {
                display: flex;
            }
        }
        
        @media (max-width: 576px) {
            .option h2 {
                font-size: 26px;
            }
            .option .option_content {
                padding: 0 15px 20px 15px;
            }
            .option .option_item {
                min-width: calc(100% - 30px);
            }
        }
        
        @media (max-width: 450px) {
            .option .option_content {
                gap: 15px;
                padding: 0 10px 0px 10px;
            }
            .option .option_item {
                min-width: calc(100% - 20px);
            }
            .option h2 {
                font-size: 22px;
            }
        }

        @media (min-width: 768px) {
    .carousel_nav {
        display: none !important; /* PCでは確実に非表示 */
    }
}

        /* カルーセルナビゲーション (矢印) のスタイル */
        .carousel_nav {
            position: absolute;
            top: 50%;
            width: 100%;
            justify-content: space-between;
            align-items: center;
            transform: translateY(-50%);
            padding: 0 0px;
            box-sizing: border-box;
            pointer-events: none;
            z-index: 10;
        }

        .carousel_nav button {
            background: rgba(255, 255, 255, 0.8);
            border: none;
            border-radius: 50%;
            width: 30px;
            height: 30px;
            font-size: 20px;
            font-weight: bold;
            cursor: pointer;
            line-height: 25px;
            display: flex;
            justify-content: center;
            align-items: center;
            pointer-events: auto;
            box-shadow: 0 2px 5px rgba(0,0,0,0.2);
            margin: 0 5px;
            color: #333;
            transition: none;
            outline: none; /* フォーカス時のアウトラインを削除 */
        }
        .carousel_nav button:active,
        .carousel_nav button:focus { /* クリック時とフォーカス時のスタイルを固定 */
            background: rgba(255, 255, 255, 0.8);
            outline: none;
        }
        .carousel_nav .prev_btn {
            margin-left: 0px;
        }
        .carousel_nav .next_btn {
            margin-right: 0px;
        }

        /* カルーセルドット (ページネーション) のスタイル */
        .carousel_dots {
            text-align: center;
            margin-top: 15px;
            display: flex;
            justify-content: center;
        }

        .carousel_dots .dot {
            display: inline-block;
            width: 8px;
            height: 8px;
            margin: 0 4px;
            border-radius: 50%;
            background: #ccc;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        .carousel_dots .dot.active {
            background: var(--colorT);
        }


.image-row {
  display: flex;
  flex-wrap: wrap;         /* 折り返し */
  gap: 10px;               /* 画像の間隔 */
  justify-content: center; /* 中央寄せ */
}

.image-row img {
  max-width: 120px;  /* PC画面での画像サイズ */
  height: auto;
}

@media (max-width: 768px) {
  .image-row {
    justify-content: center; /* 横並びを中央寄せ */
  }
  .image-row img {
    flex: 1 1 calc(50% - 10px); /* 2枚で1行、隙間分を引く */
    max-width: calc(50% - 10px);
  }
}