/* =========================================================
   スマイエ様 LP 静的コーディングデータ
   画像は images/ フォルダに配置してください。
   demopage10.nakata-sayaka.com は納品用コード内では極力除去しています。
   ========================================================= */

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  padding: 0;
  background: #fff;
  color: #333;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
}
a { color: inherit; }
img { max-width: 100%; height: auto; vertical-align: bottom; }
.lp-wrap {
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  padding: 0;
}
.lp-wrap figure { margin: 0; }
.lp-wrap img {
  width: 100%;
  max-width: 680px;
  height: auto;
  display: block;
  margin: 0 auto;
}


/* ===== WordPress追加CSS由来 ===== */
.lp-wrap {
    max-width: 680px !important;
    margin-left: auto !important;
    margin-right: auto !important; 
    width: 100% !important;
    padding: 0 !important;
}

.lp-wrap .wp-block-image {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center; 
}

.lp-wrap img {
    width: 100%;
    max-width: 680px;
    height: auto;
    vertical-align: bottom;
    display: block;
    margin: 0 auto;
}

.site-body-container.container {
    padding-left: 0;
    padding-right: 0;
}

@media (max-width: 767px) {
    /* 1. ブロック自体の左右余白をリセット */
    .wp-block-html,
    .reviews-section-wrapper {
        margin-left: calc(-50vw + 50%) !important;
        margin-right: calc(-50vw + 50%) !important;
        width: 100vw !important;
        max-width: 100vw !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
}
    
/* 2. 親要素のパディングによる制限を強制解除 */
.entry-content, 
.post-content,
.is-layout-flow > * {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

/* モバイルメニューボタンを非表示にする */
.vk-mobile-nav-menu-btn {
    display: none !important;
}

/* ヘッダー全体を非表示にする */
header, 
.site-header, 
.navbar {
    display: none !important;
}











/* --- 全体コンテナ --- */
.clean-form-container {
    background: #fff;
    border-radius: 12px;
    max-width: 600px;
    margin: 40px auto;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    position: relative;
    overflow: visible;
}

/* --- ヘッダー（紺）とバッジ（赤） --- */
.form-header {
    background: #001e43;
    padding: 20px;
    border-radius: 12px 12px 0 0;
    text-align: center;
}
.header-title {
    color: #fff !important;
    margin: 0 !important;
    font-size: 1.3rem !important;
}
.red-badge {
    position: absolute;
    top: -20px;
    left: -15px;
    background: #e60012;
    color: #fff;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: bold;
    line-height: 1.2;
    transform: rotate(-10deg);
    z-index: 5;
}

/* --- コンテンツエリア --- */
.form-content { padding: 25px 20px; }
.clean-form-container dt { font-weight: bold; margin-bottom: 5px; color: #333; }
.clean-form-container dd { margin: 0 0 15px 0; }
.req { color: #d53030; margin-left: 3px; }

/* --- オレンジ枠（二重枠を防止） --- */
.clean-form-container .wpcf7-form-control:not(.main-submit) {
    width: 100%;
    border: 2px solid #f39800 !important;
    border-radius: 6px !important;
    padding: 10px !important;
    box-sizing: border-box !important;
    background: #fff !important;
}

/* --- 写真アップロード（2列グリッド） --- */
.upload-box {
    background: #f8f8f8;
    padding: 15px;
    border-radius: 8px;
    margin: 20px 0;
}
.upload-label { font-weight: bold; margin-bottom: 10px; }
.upload-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 10px !important;
}
/* CF7のラップ要素から枠線を消してスッキリさせる */
.upload-grid .wpcf7-form-control-wrap {
    border: none !important;
    padding: 0 !important;
    background: transparent !important;
}
/* アップロードボタン単体の装飾 */
.upload-grid .wpcf7-file {
    font-size: 10px !important;
    border: 1px solid #ccc !important; /* ここは控えめな色に */
}

/* --- 送信ボタン（決定版） --- */
.button-area { text-align: center; margin-top: 25px; }
.main-submit {
    display: block !important;
    width: 100% !important;
    background: linear-gradient(to bottom, #ff9d00, #e67e22) !important;
    color: #fff !important;
    font-size: 1.3rem !important;
    font-weight: bold !important;
    padding: 18px 0 !important;
    border: none !important;
    border-bottom: 5px solid #d35400 !important;
    border-radius: 50px !important;
    cursor: pointer !important;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2) !important;
    text-indent: 0 !important; /* 文字消え防止 */
}
.main-submit:hover { transform: translateY(2px); border-bottom-width: 2px !important; }

/* --- スマホ対応 --- */
@media (max-width: 480px) {
    .upload-grid { grid-template-columns: 1fr !important; }
    .header-title { font-size: 1.1rem !important; }
}

.clean-form-container .header-title {
    /* 1. 線を消す */
    border-top: none !important;
    border-bottom: none !important;
    border: none !important;

    /* 2. 余計な余白（padding）をリセット */
    padding: 0 !important;

    /* 3. 背景や影なども念のためリセット */
    background: transparent !important;
    box-shadow: none !important;
}

/* ページトップへ戻るボタンを非表示にする */
#page_top.page_top_btn {
    display: none !important;
}

/* ===== 各カスタムHTMLセクション内CSS ===== */
/* スムーズスクロールの設定 */
html {
    scroll-behavior: smooth;
}

/* カスタムナビゲーションセクション */
.sumaie-custom-nav-section {
    width: 100%;
    background-color: #fff;
    border-bottom: none !important; 
    padding: 12px 0;
    position: sticky; 
    top: 0;
    z-index: 10000;
    font-family: sans-serif;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.nav-inner {
    max-width: 680px; 
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 15px;
    box-sizing: border-box;
}

/* ロゴエリア */
.nav-logo-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-logo-img {
    height: 16px; 
    width: auto;
}

.nav-logo-text {
    display: flex;
    flex-direction: column;
    text-align: left;
    line-height: 1.1;
}

.nav-logo-line1 {
    font-size: 13px;
    font-weight: 900;
    color: #02428a;
    white-space: nowrap;
}

.nav-logo-line2 {
    font-size: 16px;
    font-weight: 900;
    color: #02428a;
    letter-spacing: -0.02em;
    white-space: nowrap;
}

/* 高品質オレンジボタン */
.nav-btn-orange {
    background: linear-gradient(to bottom, #ffca58 0%, #ff9a00 100%);
    color: #fff !important;
    text-decoration: none !important;
    font-size: 16px; 
    font-weight: 900;
    padding: 12px 24px; 
    border-radius: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid #ffb733;
    box-shadow: 
        inset 0 1px 0 rgba(255, 255, 255, 0.4),
        0 3px 6px rgba(0,0,0,0.15);
    white-space: nowrap;
    transition: all 0.2s ease-in-out;
}

.nav-btn-orange:hover {
    transform: translateY(-1px);
    background: linear-gradient(to bottom, #ffd37a 0%, #ffa31a 100%);
    box-shadow: 
        inset 0 1px 0 rgba(255, 255, 255, 0.4),
        0 4px 8px rgba(0,0,0,0.2);
}

/* スマホ表示調整 */
@media (max-width: 767px) {
    .sumaie-custom-nav-section { 
        margin-left: calc(-50vw + 50%) !important;
        margin-right: calc(-50vw + 50%) !important;
        width: 100vw !important;
        max-width: 100vw !important;
        padding: 8px 0 !important; 
    }
    
    .nav-inner {
        padding: 0 15px;
    }
    
    .nav-logo-img { 
        height: 24px !important; 
        width: auto !important;
    }
    
    .nav-logo-line1 { font-size: 10px !important; }
    .nav-logo-line2 { font-size: 13px !important; }
    
    .nav-btn-orange { 
        font-size: 12px !important; 
        padding: 9px 15px !important;
        gap: 5px !important;
    }
}

html { scroll-behavior: smooth; }

.cta-vertical-spacer-v8 {
  height: 80px;
  display: block;
}

/* ===== 外枠（中央固定） ===== */
.gaiso-cta-outer-v8 {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

/* ===== CTA本体 ===== */
.gaiso-cta-box-v8 {
  width: 100%;
  max-width: 720px;
  border: 4px solid #000;
  background: #fff;
  padding: 40px 20px;
  box-sizing: border-box;
  text-align: center;
}

/* ===== キャッチコピー（装飾線をリセット） ===== */
.cta-header-v8 {
  color: #e60012 !important;
  font-size: clamp(14px, 5.2vw, 36px) !important;
  font-weight: 900 !important;
  margin: 0 0 35px 0 !important;
  line-height: 1.2 !important;
  text-shadow: 2px 2px 0 #fff, -2px -2px 0 #fff !important;
  white-space: nowrap !important;
  

  border: none !important;
  background: none !important;
  padding: 0 !important;
}


.cta-header-v8::before,
.cta-header-v8::after {
  content: none !important;
  display: none !important;
}

.exclamation-tight-v8 {
  letter-spacing: -0.25em;
  margin-left: -0.1em;
}

.catch-deco-v8 {
  display: inline-block;
  transform: scaleY(1.2);
}

/* ===== ボタンエリア ===== */
.cta-btn-group-v8 {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.cta-btn-v8 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 96px;
  margin-bottom: 20px;
  padding: 10px 45px 10px 15px;
  text-decoration: none !important;
  color: #fff !important;
  border-radius: 12px;
  box-sizing: border-box;
  box-shadow:
    inset 0 4px 0 rgba(255,255,255,0.4),
    0 5px 0 rgba(0,0,0,0.15);
  transition: all 0.2s;
}

/* ===== ボタン色 ===== */
.btn-color-orange {
  background: linear-gradient(to bottom, #ffca00 0%, #ff8800 50%, #ff7700 100%);
  border: 1px solid #ffb000;
}
.btn-color-red {
  background: linear-gradient(to bottom, #ff4d4d 0%, #e60000 50%, #cc0000 100%);
  border: 1px solid #d90000;
}
.btn-color-green {
  background: linear-gradient(to bottom, #7cfc00 0%, #00c800 50%, #00a000 100%);
  border: 1px solid #00b300;
}

/* ===== ボタン内テキスト ===== */
.btn-txt-v8 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  line-height: 1.1;
}
.is-flex {
  flex-direction: row;
  gap: 10px;
}
.btn-txt-s {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
  white-space: nowrap;
}
.btn-txt-m {
  font-size: clamp(14px, 5.5vw, 34px);
  font-weight: 900;
  white-space: nowrap;
}
.btn-txt-l {
  font-size: clamp(14px, 5vw, 30px);
  font-weight: 900;
  white-space: nowrap;
}
.btn-main-icon-v8 {
  font-size: 38px;
  flex-shrink: 0;
}

/* ===== 矢印 ===== */
.btn-icon-arrow {
  position: absolute;
  right: 15px;
  font-size: 20px;
}

/* ===== スマホ最適化 ===== */
@media (max-width: 600px) {
  .cta-vertical-spacer-v8 { height: 40px; }
  .gaiso-cta-box-v8 { padding: 30px 15px; }
  .cta-btn-v8 { min-height: 80px; padding-right: 35px; }
  .btn-main-icon-v8 { font-size: 26px; }
  .btn-icon-arrow { right: 10px; font-size: 16px; }
  .btn-txt-s { font-size: 12px; }
}

/* --- SUPER SALE セクション --- */
.sumaie-super-sale-wrapper {
    position: relative;
    width: 100%;
    max-width: 680px;
    margin: 40px auto;
    box-sizing: border-box;
    overflow: hidden;
    background: #f4f4f4;
}

/* 背景画像はCSSのbackground-imageではなく、HTML内の画像として表示 */
.sumaie-super-sale-bg-img {
    display: block;
    width: 100%;
    height: auto;
    margin: 0 auto;
    vertical-align: bottom;
}

/* スライダーを背景画像の上に重ねる */
.sumaie-sale-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: none !important;
    box-sizing: border-box;
    z-index: 2;
    pointer-events: none;
}

/* 矢印の基準になる外枠 */
.sumaie-swiper-outer {
    position: absolute;
    left: 50%;
    top: 43%;
    transform: translateX(-50%);
    width: 86%;
    max-width: 560px;
    margin: 0 auto;
    z-index: 3;
    pointer-events: auto;
}

/* スライダー本体 */
.sumaie-sale-swiper {
    width: 100%;
    margin: 0 auto;
    padding-bottom: 40px !important;
    overflow: hidden !important;
}

.swiper-slide img {
    width: 100%;
    height: auto;
    display: block;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* --- ナビゲーション（黒丸矢印） --- */
.sale-arrow {
    background-color: #333 !important;
    width: 60px !important;
    height: 60px !important;
    border-radius: 50%;
    color: #fff !important;
    top: 45% !important;
    z-index: 10;
}

.sale-arrow::after {
    font-size: 16px !important;
    font-weight: bold;
}

.sumaie-swiper-outer .swiper-button-prev { left: -75px !important; }
.sumaie-swiper-outer .swiper-button-next { right: -75px !important; }

.sale-dots { bottom: 5px !important; }
.swiper-pagination-bullet { background: #ccc !important; opacity: 1 !important; }
.swiper-pagination-bullet-active { background: #333 !important; }

/* --- スマホ表示調整 --- */
@media (max-width: 600px) {
    .sumaie-super-sale-wrapper {
        margin: 30px auto;
    }

    .sumaie-swiper-outer {
        top: 43.5%;
        width: 82%;
    }

    .sale-arrow {
        width: 40px !important;
        height: 40px !important;
    }

    .sale-arrow::after { font-size: 12px !important; }
    .sumaie-swiper-outer .swiper-button-prev { left: -35px !important; }
    .sumaie-swiper-outer .swiper-button-next { right: -35px !important; }
}


.gaiso-tel-banner {
    position: relative;
    width: 100%;
    max-width: 680px;
    margin: 40px auto;
    line-height: 0;
}

.banner-base img {
    width: 100%;
    height: auto;
}


.tel-button-overlay {
    position: absolute;
    bottom: 4%; 
    left: 50%;
    transform: translateX(-50%);
    width: 92%; 
    max-width: 550px;
    
    transition: all 0.2s;
    display: block;
}


.tel-button-overlay:hover {
    opacity: 0.9;
    transform: translateX(-50%) scale(1.02);
}


@media (max-width: 600px) {
    .tel-button-overlay {
        bottom: 2%; 
        width: 90%; 
    }
}

html { scroll-behavior: smooth; }

.cta-vertical-spacer-v8 {
  height: 80px;
  display: block;
}


.gaiso-cta-outer-v8 {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}


.gaiso-cta-box-v8 {
  width: 100%;
  max-width: 720px;
  border: 4px solid #000;
  background: #fff;
  padding: 40px 20px;
  box-sizing: border-box;
  text-align: center;
}






.exclamation-tight-v8 {
  letter-spacing: -0.25em;
  margin-left: -0.1em;
}

.catch-deco-v8 {
  display: inline-block;
  transform: scaleY(1.2);
}

/* ===== ボタンエリア ===== */
.cta-btn-group-v8 {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.cta-btn-v8 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 96px;
  margin-bottom: 20px;
  padding: 10px 45px 10px 15px;
  text-decoration: none !important;
  color: #fff !important;
  border-radius: 12px;
  box-sizing: border-box;
  box-shadow:
    inset 0 4px 0 rgba(255,255,255,0.4),
    0 5px 0 rgba(0,0,0,0.15);
  transition: all 0.2s;
}

/* ===== ボタン色 ===== */
.btn-color-orange {
  background: linear-gradient(to bottom, #ffca00 0%, #ff8800 50%, #ff7700 100%);
  border: 1px solid #ffb000;
}
.btn-color-red {
  background: linear-gradient(to bottom, #ff4d4d 0%, #e60000 50%, #cc0000 100%);
  border: 1px solid #d90000;
}
.btn-color-green {
  background: linear-gradient(to bottom, #7cfc00 0%, #00c800 50%, #00a000 100%);
  border: 1px solid #00b300;
}

/* ===== ボタン内テキスト ===== */
.btn-txt-v8 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  line-height: 1.1;
}
.is-flex {
  flex-direction: row;
  gap: 10px;
}
.btn-txt-s {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
  white-space: nowrap;
}
.btn-txt-m {
  font-size: clamp(14px, 5.5vw, 34px);
  font-weight: 900;
  white-space: nowrap;
}
.btn-txt-l {
  font-size: clamp(14px, 5vw, 30px);
  font-weight: 900;
  white-space: nowrap;
}
.btn-main-icon-v8 {
  font-size: 38px;
  flex-shrink: 0;
}

/* ===== 矢印 ===== */
.btn-icon-arrow {
  position: absolute;
  right: 15px;
  font-size: 20px;
}

/* ===== スマホ最適化 ===== */
@media (max-width: 600px) {
  .cta-vertical-spacer-v8 { height: 40px; }
  .gaiso-cta-box-v8 { padding: 30px 15px; }
  .cta-btn-v8 { min-height: 80px; padding-right: 35px; }
  .btn-main-icon-v8 { font-size: 26px; }
  .btn-icon-arrow { right: 10px; font-size: 16px; }
  .btn-txt-s { font-size: 12px; }
}

.product-selection-section {
  max-width: 680px;
  margin: 0 auto;
  background-color: #eef7fe;
  padding: 80px 0;
  text-align: center;
  font-family: sans-serif;
  box-sizing: border-box;
}

.product-header {
  padding: 0 15px;
  margin-bottom: 60px;
}

.subsidy-badge { display: inline-block; background-color: #f39800; color: #fff; padding: 6px 28px; border-radius: 50px; font-weight: bold; font-size: 16px; margin-bottom: 18px; }
.main-copy { font-size: 24px !important; font-weight: 900 !important; margin-bottom: 12px !important; line-height: 1.4 !important; border: none !important; background: none !important; padding: 0 !important; color: #333 !important; }
.red-text { color: #e60012; font-size: 1.25em; }
.catch-copy { font-size: 38px; font-weight: 900; color: #f39800; margin-bottom: 18px; line-height: 1.2; }
.sub-copy { font-size: 17px; font-weight: bold; color: #333; }

.product-slider {
  width: 100%;
  padding-bottom: 70px !important; 
  position: relative;
}

.product-slider .swiper-slide {
  opacity: 0.5;
  transition: 0.3s;
}

.product-slider .swiper-slide-active {
  opacity: 1;
  transform: scale(1.02);
}

.product-slider img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  display: block;
}

.product-pagination {
  bottom: 10px !important; 
}

.product-slider .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #ccc;
  opacity: 1;
  margin: 0 5px !important;
}

.product-slider .swiper-pagination-bullet-active {
  background: #f39800 !important;
}

.product-slider .product-next,
.product-slider .product-prev {
  color: #f39800 !important;
  top: 42% !important;
}

@media (max-width: 500px) {
  .product-selection-section { padding: 60px 0; }
  .product-header { margin-bottom: 40px; } 
  .main-copy { font-size: 19px !important; }
  .catch-copy { font-size: 28px; }
  .sub-copy { font-size: 15px; }
  .product-slider { padding-bottom: 60px !important; }
}

/* --- 全体レイアウト --- */
.gaiso-magazine-features {
  max-width: 720px;
  padding-top: 40px; 
  margin: 0 auto 80px;
  padding-left: 15px;
  padding-right: 15px;
  font-family: sans-serif;
  box-sizing: border-box;
}

.m-stack {
  display: flex;
  flex-direction: column;
  gap: 40px; 
}

/* --- カード本体 --- */
.m-card {
  position: relative;
  display: flex;
  align-items: flex-start;
  background: #fff;
  padding: 40px 30px;
  border: 2px solid #02428a;
  border-radius: 60px 20px 60px 20px;
  box-sizing: border-box;
}

.orange-accent { border-color: #f39900; }

/* --- ナンバリング --- */
.m-num-box {
  flex-shrink: 0;
  min-width: 105px;
  text-align: center;
  margin-right: 25px;
}

.m-num {
  font-size: 3.8rem;
  font-weight: 900;
  line-height: 1;
  color: rgba(2, 66, 138, 0.15); 
  -webkit-text-stroke: 0;
  font-style: italic;
  font-family: 'Arial Black', sans-serif;
  display: block;
  white-space: nowrap;
}

.orange-accent .m-num {
  color: rgba(243, 153, 0, 0.18);
}

.m-label {
  display: block;
  font-size: 11px;
  font-weight: 900;
  color: #02428a;
  letter-spacing: 0.1em;
  margin-top: 5px;
}

.orange-accent .m-label { color: #f39900; }

/* --- コンテンツエリア --- */
.m-body { flex: 1; text-align: left; }

.m-header { margin-bottom: 12px; }

.m-badge {
  display: inline-block;
  background: #02428a;
  color: #fff;
  font-size: 11px;
  font-weight: bold;
  padding: 3px 10px;
  border-radius: 3px;
  margin-bottom: 8px;
}

.orange { background: #f39900; }

.m-title {
  font-size: 1.5rem !important;
  font-weight: 900 !important;
  color: #333 !important;
  margin: 0 !important;
  line-height: 1.4 !important;
  border: none !important;
}

.m-highlight {
  background: linear-gradient(transparent 60%, #eef7fe 60%);
  color: #02428a;
}

.orange-line {
  background: linear-gradient(transparent 60%, #fdf2e2 60%);
  color: #f39900;
}

/* --- テキストと画像の横並びレイアウト --- */
.m-content-flex {
  display: flex;
  gap: 25px;
  align-items: flex-start;
}

.m-text {
  flex: 1;
  font-size: 0.95rem;
  line-height: 1.8;
  color: #444;
  margin: 0;
}

.m-text strong { font-weight: 900; color: #02428a; }

/* --- 画像エリアのスタイル（PC表示） --- */
.m-image-box {
  flex-shrink: 0;
  width: 160px; 
  height: 120px; 
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  background: #f0f4f8;
}

.m-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover; 
  display: block;
}

/* --- スマホ表示調整（修正箇所） --- */
@media (max-width: 600px) {
  .gaiso-magazine-features {
    padding-top: 30px; 
    margin-bottom: 40px;
  }

  .m-stack { gap: 30px; }

  .m-card {
    flex-direction: column;
    align-items: flex-start; /* 左揃えに変更 */
    text-align: left; /* 左揃えに変更 */
    padding: 35px 25px;
    border-radius: 50px 15px 50px 15px;
  }

  .m-num-box { 
    margin-right: 0; 
    margin-bottom: 10px; 
    text-align: left; /* ナンバーも左寄せ */
  }

  .m-num { 
    font-size: 3.2rem; 
    -webkit-text-stroke: 0; 
  }

  .m-body { width: 100%; }

  .m-content-flex {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start; /* コンテンツ全体を左寄せ */
  }
  
  .m-text {
    text-align: left; /* 文章を左揃えに変更 */
  }

  .m-image-box {
    width: 100%;
    max-width: 100%; /* スマホでは横幅いっぱいに */
    height: 200px; 
    border-radius: 20px;
    margin-top: 5px;
  }
}

/* --- 全体レイアウト --- */
.sumaie-reviews-wrapper {
    max-width: 680px;
    margin: 60px auto;
    background: #fff;
    border-radius: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    overflow: hidden;
    padding-bottom: 40px;
}

.reviews-header-bg {
    background: linear-gradient(135deg, #f39800, #ffb83d);
    padding: 40px 20px 60px;
    text-align: center;
    border-radius: 0 0 50% 50% / 0 0 20% 20%;
}

.reviews-main-title {
    color: #fff !important;
    font-size: 2.2rem !important;
    font-weight: bold !important;
    margin: 0 !important;
    letter-spacing: 2px;
}

.reviews-intro {
    text-align: center;
    padding: 30px 20px;
}

.intro-large {
    font-size: 1.6rem;
    font-weight: bold;
    color: #333;
    line-height: 1.4;
    margin-bottom: 10px;
}

.intro-small {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.6;
}

/* --- スライダー設定 --- */
.sumaie-reviews-swiper {
    padding: 20px 0 60px !important;
    position: relative;
    width: 100%;
}

.review-card {
    height: auto !important;
    transition: opacity 0.3s ease;
    opacity: 0.4;
}

.swiper-slide-active {
    opacity: 1;
}

.card-inner {
    background: #fff8ef;
    border: 2px solid #ffcc80;
    border-radius: 20px;
    padding: 25px 20px;
    height: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    margin: 0 10px;
}

.review-meta {
    text-align: center;
    border-bottom: 1px dashed #ffb83d;
    padding-bottom: 12px;
    margin-bottom: 15px;
}

.review-label { font-size: 11px; color: #f39800; text-transform: uppercase; font-weight: bold; }
.review-title { font-size: 1.3rem; font-weight: bold; color: #333; margin: 5px 0; }
.review-stars { color: #f39800; font-size: 1.4rem; }

.reviewer-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.reviewer-name { font-weight: bold; font-size: 1.15rem; display: block; color: #333; }
.work-date { font-size: 11px; background: #fff; padding: 3px 10px; border-radius: 50px; display: inline-block; margin-top: 5px; color: #e67e22; border: 1px solid #ffcc80; }

/* イラストサイズを強制固定 */
.sumaie-reviews-wrapper .reviewer-info img.reviewer-img {
    width: 80px !important;
    height: 80px !important;
    min-width: 80px !important;
    min-height: 80px !important;
    max-width: 80px !important;
    border-radius: 50% !important;
    border: 3px solid #fff !important;
    flex-shrink: 0 !important;
    object-fit: cover !important;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    margin: 0 !important;
    display: block !important;
}

.review-body { 
    font-size: 1rem; 
    line-height: 1.8; 
    color: #444; 
    text-align: justify;
}

/* --- ナビゲーション --- */
.reviews-arrow {
    background-color: #f39800 !important;
    width: 45px !important;
    height: 45px !important;
    border-radius: 50%;
    color: #fff !important;
    top: 50% !important;
    z-index: 10;
    display: flex !important;
}

.reviews-arrow::after { font-size: 18px !important; font-weight: bold; }

.swiper-button-prev { left: 8px !important; }
.swiper-button-next { right: 8px !important; }

.reviews-dots { bottom: 15px !important; }
.reviews-dots .swiper-pagination-bullet-active {
    background: #f39800 !important;
    width: 20px;
    border-radius: 5px;
}

/* --- スマホ調整 --- */
@media (max-width: 600px) {
    .reviews-main-title { font-size: 1.8rem !important; }
    .intro-large { font-size: 1.3rem; }
    .sp-only { display: block; }

    .sumaie-reviews-wrapper .reviewer-info img.reviewer-img { 
        width: 70px !important; 
        height: 70px !important; 
        min-width: 70px !important;
        min-height: 70px !important;
        max-width: 70px !important;
    }
    
    .card-inner { padding: 20px 15px; }
    .reviews-arrow { width: 38px !important; height: 38px !important; }
}

/* --- 全体レイアウト --- */
.faq-section-wrapper {
    max-width: 680px;
    margin: 80px auto !important;
    padding: 0 15px;
    box-sizing: border-box;
    font-family: sans-serif;
}

.faq-main-title {
    text-align: center !important;
    font-size: 1.8rem !important;
    font-weight: 900 !important;
    color: #333 !important;
    margin-bottom: 40px !important;
    border: none !important;
}

.faq-container {
    border-top: 1px solid #e0e0e0;
}

/* --- 各質問のスタイル --- */
.faq-item {
    border-bottom: 1px solid #e0e0e0;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    outline: none;
    padding: 20px 10px;
    display: flex;
    align-items: center;
    cursor: pointer;
    text-align: left;
    transition: background 0.3s;
}

.faq-question:hover {
    background-color: #f9f9f9;
}

/* Qマーク（スマイエ様のオレンジに合わせる場合は色を変更してください） */
.q-prefix {
    font-size: 1.5rem;
    font-weight: 900;
    color: #f39800; /* 青からオレンジに変更しました */
    margin-right: 15px;
    font-family: 'Arial', sans-serif;
}

/* 質問テキスト */
.q-text {
    flex: 1;
    font-size: 1rem;
    font-weight: bold;
    color: #333;
    line-height: 1.4;
}

/* プラス・マイナスアイコン */
.faq-icon {
    position: relative;
    width: 20px;
    height: 20px;
    margin-left: 10px;
}
.faq-icon::before, .faq-icon::after {
    content: "";
    position: absolute;
    background-color: #f39800; /* アイコンもオレンジに変更 */
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: transform 0.3s ease;
}
.faq-icon::before { width: 100%; height: 2px; }
.faq-icon::after { width: 2px; height: 100%; }

.faq-item.is-open .faq-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

/* --- 回答のスタイル --- */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    background-color: #fff8ef; /* 薄いオレンジ背景に変更 */
}

.answer-content {
    padding: 20px 20px 20px 50px;
    font-size: 0.95rem;
    line-height: 1.7;
    color: #444;
}

/* --- スマホ調整 --- */
@media (max-width: 500px) {
    .faq-main-title { font-size: 1.5rem !important; }
    .q-prefix { font-size: 1.3rem; }
    .q-text { font-size: 0.9rem; }
    .answer-content { padding: 15px 15px 15px 40px; font-size: 0.85rem; }
}

/* --- 全体設計 --- */
.flow-unified-section {
  max-width: 680px;
  margin: 100px auto !important;
  padding: 0 15px;
  box-sizing: border-box;
  font-family: sans-serif;
}

.flow-header { text-align: center; margin-bottom: 70px; }
.flow-badge-accent {
    display: inline-block;
    background: #f39900;
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    padding: 6px 20px;
    border-radius: 50px;
    margin-bottom: 15px;
}
.flow-main-title {
    font-size: 1.4rem !important;
    font-weight: bold !important;
    line-height: 1.4 !important;
    margin: 0 !important;
    border: none !important;
    color: #333 !important;
}
.title-main-bold {
    font-size: 3rem;
    font-weight: 900;
    color: #02428a;
    display: block;
    margin-top: 5px;
}

.flow-timeline-box {
    position: relative;
    padding-left: 0;
}

.flow-step-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 40px;
    position: relative;
}
.flow-step-item:last-child { margin-bottom: 0; }

.flow-step-item::before {
    content: "";
    position: absolute;
    left: 32.5px;
    top: 65px;
    bottom: -40px;
    width: 2px;
    background-image: linear-gradient(to bottom, #d0e3f7 60%, transparent 60%);
    background-size: 2px 14px;
    z-index: 1;
}
.flow-step-item:last-child::before { display: none; }

.flow-num-circle {
    flex-shrink: 0;
    width: 65px;
    height: 65px;
    background: #02428a;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    font-weight: 900;
    margin-right: 25px;
    z-index: 2;
    box-shadow: 0 5px 15px rgba(2, 66, 138, 0.15);
    border: 5px solid #fff;
}

.flow-card-body {
    flex: 1;
    background: #fff;
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.04);
    border: 1px solid #f0f4f8;
}

.flow-card-inner {
    display: flex;
    gap: 20px;
    align-items: center; 
}
.flow-icon-svg { width: 40px; height: 40px; flex-shrink: 0; }

.flow-text-content { flex: 1; }

/* 画像エリアのスタイル（PC表示：固定サイズ） */
.flow-step-image {
    flex-shrink: 0;
    width: 160px;
    height: 120px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    background: #f0f4f8;
}
.flow-step-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.flow-step-h3 {
    font-size: 1.3rem !important;
    font-weight: 900 !important;
    color: #02428a !important;
    margin: 0 0 10px 0 !important;
    border: none !important;
    line-height: 1.3 !important;
}
.orange-text { color: #f39900; font-weight: 900; }
.flow-step-p { font-size: 0.95rem; line-height: 1.7; color: #555; margin: 0; text-align: left; }

.method-tags { margin-top: 15px; display: flex; gap: 8px; flex-wrap: wrap; }
.method-tags span {
    background: #eef7fe;
    color: #02428a;
    font-size: 11px;
    font-weight: bold;
    padding: 5px 12px;
    border-radius: 4px;
}

/* --- スマホ調整 --- */
@media (max-width: 600px) {
    .flow-step-item::before {
        left: 24px;
        top: 48px;
        bottom: -40px;
    }
    .flow-num-circle { 
        width: 48px; 
        height: 48px; 
        font-size: 22px; 
        margin-right: 15px; 
        border-width: 3px; 
    }
    .title-main-bold { font-size: 2.2rem; }
    
    .flow-card-inner {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    
    /* 【修正】スマホでの画像スタイル：高さを240pxで統一 */
    .flow-step-image {
        width: 100%;
        max-width: 320px;
        height: 240px; /* 特徴セクションと統一 */
        margin-top: 5px;
    }

    .flow-step-h3 { font-size: 1.15rem !important; }
}

/* スマホ表示（767px以下）のみで追従 */
@media (max-width: 767px) {
    body {
        /* コンテンツがバーに隠れないよう底上げ */
        padding-bottom: 75px !important;
    }

    .smaie-fixed-bar {
        display: block !important;
        position: fixed !important; /* 常に画面に固定 */
        bottom: 0 !important;       /* 隙間なく一番下へ */
        left: 0 !important;
        width: 100% !important;
        height: 75px !important;    /* バーの高さ */
        z-index: 999999 !important; /* 最前面 */
        margin: 0 !important;
        background: #fff;
        box-shadow: 0 -3px 10px rgba(0,0,0,0.15);
    }

    .bar-flex-container {
        display: flex !important;
        width: 100% !important;
        height: 100% !important;
    }

    .bar-item {
        flex: 1 !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        text-decoration: none !important;
        color: #fff !important;
        border-radius: 0 !important; /* 四角（角丸なし） */
        transition: opacity 0.2s;
    }

    /* 各ボタンの背景色：旧GAISOブルーとLINEグリーンを維持 */
    .bar-tel { background-color: #02428a !important; }
    .bar-line { background-color: #06c755 !important; }

    /* アイコンと文字のサイズ調整 */
    .bar-item i {
        font-size: 18px !important;
        margin-bottom: 2px !important;
    }
    .bar-text-top {
        font-size: 10px !important;
        display: block !important;
        line-height: 1 !important;
        margin-bottom: 3px !important;
    }
    .bar-text-main {
        font-size: 15px !important;
        font-weight: 900 !important;
        line-height: 1.2 !important;
    }
    .bar-text-sub {
        font-size: 9px !important;
        display: block !important;
        opacity: 0.9;
        margin-top: 2px;
    }
}

/* PC（768px以上）では完全に非表示 */
@media (min-width: 768px) {
    .smaie-fixed-bar { display: none !important; }
}