/* Theme Name: WIM for you
Author: WIM for you
Description: WIM for youのテーマ
Version: 1.0 */

/* -------------------------- */

/* -------------------------- */
/* 全体共通スタイル */
html {
  font-family: 'Shippori Mincho', 'Hiragino Mincho ProN', 'Yu Mincho', '游明朝', serif;
  color: #333;
  line-height: 1.6;
  font-weight: 400;
  overflow-x: hidden;
  max-width: 100vw;
  width: 100%;
  box-sizing: border-box;
}

body {
  overflow-x: hidden;
  max-width: 100vw;
  width: 100%;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* すべての要素にbox-sizingを適用 */
*, *::before, *::after {
  box-sizing: border-box;
}

@media (max-width: 768px) {
  html, body {
    overflow-x: hidden !important;
  }
  
  .container,
  .common-concerns,
  .strength_disc_img,
  picture {
    overflow-x: hidden;
  }
}


.font-sans {
  font-family: "Noto Sans JP", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif !important;
}
.font-sans--light { font-weight: 300; }
.font-sans--medium{ font-weight: 500; }
.font-sans--bold  { font-weight: 700; }


/* ====================
   共通ボタンスタイル（統一版）
==================== */
.btn,
.btn-consultation,
.btn-service,
.btn-faq,
.btn-contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 20px 48px;
  border-radius: 50px;
  font-size: 24px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  height: 64px;
  box-shadow: 2px 3px 6px rgb(162 158 160);
  white-space: nowrap;
  line-height: 1.2;
  margin-bottom: 16px;
  box-sizing: border-box;
}

/* ホバー効果（共通） */
.btn:hover,
.btn-consultation:hover,
.btn-service:hover,
.btn-faq:hover,
.btn-contact:hover {
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
  transform: translateY(-2px);
}

/* アクティブ効果（共通） */
.btn:active,
.btn-consultation:active,
.btn-service:active,
.btn-faq:active,
.btn-contact:active {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  transform: translateY(0);
}

/* ボタン右側のアイコン（共通） */
.btn::after,
.btn-consultation::after,
.btn-service::after,
.btn-faq::after,
.btn-contact::after {
  content: '▶';
  width: 24px;
  height: 24px;
  border: 2px solid #fff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 10px;
  color: #fff;
  line-height: 1;
}

/* 各ボタンの背景色 */
.btn-consultation,
.btn-contact {
  background: #f97316;
  color: #fff;
}

.btn-service,
.btn-faq {
  background: #b52c6b;
  color: #fff;
}

/* ホバー時の背景色変更 */
.btn-consultation:hover,
.btn-contact:hover {
  background: #ea580c;
}

.btn-service:hover,
.btn-faq:hover {
  background: #8b1a4a;
}

.btn_primary .container {
  display: flex;
  justify-content: center;
  gap: 92px;
  margin: 108px 0 128px;
  flex-wrap: wrap; /* 追加 */
}

/* ---------------------- */
/* FAQバナーセクション */
.faq-banner {
    padding: 20px 0;
	background-color: #f7f6fb;
}

.faq-title-box {
	max-width: 1248px;
    margin: 0 auto;
    height: 196px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none; 
}

.faq-title-box h2 {
    font-size: 2.5rem;
    color: #393939;
    margin: 0;
    font-weight: 600;
}

/* FAQ本体 */
.faq {
    padding-top: 40px;
	width: 100%;  
    max-width: 100vw; 
    overflow-x: hidden; 
    box-sizing: border-box;
}

.faq-title-box h2 {
  text-align: center;
  font-size: 2rem;
  font-weight: 600;
}

.faq .container {
    max-width: 1200px; 
    margin: 0 auto;  
    padding: 0 20px; 
}

/* ===== FAQリスト ===== */
.faq-list {
  max-width: 800px;
  margin: 0 auto 80px;
  display: grid;
  gap: 24px;
}

.faq-list > .faq-item:first-child {
  margin-top: 40px; 
}

/* ===== 各FAQアイテム ===== */
.faq-item {
  background: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  padding: 24px 28px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.faq-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
}

/* ===== 質問部分 ===== */
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  cursor: pointer;
  position: relative;
  gap: 12px; ;
}

.faq-question h3 {
  font-size: 1.1rem;
  color: #393939;
  font-weight: 600;
  padding-left: 40px;
  position: relative;
  flex: 1;
  text-align: left;
  margin: 0;
  line-height: 1.6; 
  word-break: break-word;
  overflow-wrap: break-word;
  display: flex; 
  align-items: center;
  gap: 8px;
}

/* Qマーク風の色アクセント */
.faq-question h3::before {
  content: "Q.";
  color: #b52c6b;
  font-weight: 700;
  position: absolute;
  left: 0;
  top: 0;
  line-height: 1.6;
}

/*  +  */
.faq-toggle {
  font-size: 1.5rem;
  font-weight: 700;
  color: #b52c6b;
  transition: transform 0.3s ease;
  flex-shrink: 0; 
  margin-left: 15px;
  line-height: 1;
}

.faq-toggle{
  background: none;
  border: 0;
  font: inherit;
  cursor: pointer;
  padding: .25em .4em;
  line-height: 1;
}
.faq-toggle:focus-visible{
	outline: 2px solid currentColor;
	outline-offset: 2px;
}

/* :has() を使って、ボタンが開いているカードの答えだけパディングを付ける */
@supports selector(.faq-item:has(.faq-toggle[aria-expanded="true"])) {
  .faq-item:has(.faq-toggle[aria-expanded="true"]) .faq-answer {
    padding: 0 24px 24px;
  }
}

/* ===== 答え部分 ===== */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 24px 0;
  background-color: #fff;
}

.faq-answer p {
  margin: 0;
  padding-left: 35px; /* A.のスペース確保 */
  position: relative;
  color: #333;
  font-size: 1rem;
  line-height: 1.6;
  text-align: justify;
  margin-top: 10px;
}

/* A マークは最初の段落だけ */
.faq-answer p:first-of-type::before {
  content: "A.";
  color: #b52c6b;
  font-weight: 700;
  position: absolute;
  left: 0;
  top: 0;
}

/* 2段落目以降には付けない（保険） */
.faq-answer p:not(:first-of-type)::before {
  content: none;
}

/* 空の段落は非表示（ブラウザが作る空p対策） */
.faq-answer p:empty {
  display: none;
}

/* <br>だけの段落も隠す（対応ブラウザでは有効） */
@supports selector(p:has(> br:only-child)) {
  .faq-answer p:has(> br:only-child) {
	  display: none; 
	}
}
/* -------------------------------------------------- */
/* メディアクエリ対応 */

/* 1024px以下 */
@media (max-width: 1024px) {
    .faq-list {
        max-width: 90%;
        padding: 0 20px;
    }
    
    .faq-question h3 {
        font-size: 1rem;
        padding-left: 30px;
    }
    
    .faq-question h3::before {
        font-size: 0.9rem;
    }
    
    .faq-answer p {
        padding-left: 30px;
        font-size: 0.95rem;
    }
}

/* 768px以下 */
@media (max-width: 768px) {
    .faq-banner {
        padding: 10px 0;
    }
    
    .faq-title-box {
        padding: 8px 15px;
        margin: 0 auto;
    }
    
    .faq-title-box h2 {
        font-size: 2rem;
    }
	
	.faq .container {
        padding: 0 20px;
    }
    
    .faq-list {
        max-width: 100%;
        padding: 0 20px 40px;
		margin: 0 auto;
		gap: 28px;
    }
    
    .faq-item {
        padding: 20px 24px;
/* 		margin: 0 0 20px 0; */
		max-width: 100%;
    }
	
	.faq-question {
        align-items: center;
		gap: 12px;
    }
    
    .faq-question h3 {
        font-size: 1.2rem;
        padding-left: 32px;
		text-align: left;
		line-height: 1.6;
		margin-bottom: 0;
        word-break: break-word;
        overflow-wrap: break-word; 
    }
    
    .faq-question h3::before {
        font-size: 0.9rem;
		line-height: 1.6;
    }
	
	.faq-toggle {
        margin-top: 0;  
    }
    
    .faq-answer {
        padding: 0 24px 0;
    }
    
    .faq-answer {
        padding: 0 24px 0;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 24px 20px;
    }
}

/* 480px以下 */
@media (max-width: 480px) {
    .faq-title-box {
        height: 130px; 
        padding: 20px 15px;
        margin: 0 auto;
		max-width: calc(100% - 30px);
    }
    
    .faq-title-box h2 {
        font-size: 1.8rem;
    }
	
	.faq .container {
        padding: 0 20px;
    }
    
    .faq-list {
        max-width: 100%;
        padding: 0;
		margin: 0 auto;
		box-sizing: border-box;
    }
    
    .faq-item {
        padding: 16px 20px;
        max-width: 100%;  
        box-sizing: border-box;
    }
    
    .faq-question h3 {
        font-size: 0.9rem;
        padding-left: 28px;
		text-align: left;
 		margin: 0;
		gap: 6px;
    }
    
    .faq-question h3::before {
        font-size: 1.6;
    }
    
    .faq-answer {
        padding: 0 20px 0;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 20px 16px;
    }
    
    .faq-answer p {
        padding-left: 25px;
        font-size: 0.85rem;
        line-height: 1.4;
    }
    
    .btn-faq:hover {
        background: #8b1a4a;
    }
/* 	---------------------- */
	.btn_single {
		padding: 60px 0;
	}
	
	.explanation-1{
		font-size: 1rem;
	}
 
  .btn_primary .container {
    padding: 0 20px; 
    margin: 32px auto 32px; 
  }

 .btn,
  .btn-consultation,
  .btn-service,
  .btn-faq,
  .btn-contact {
    width: 85%;
    max-width: 280px;
    font-size: 1.2rem;
    padding: 18px 32px;
    min-height: 64px;
    margin: 0 24px;
  }
  
  .btn_single {
    padding: 40px 20px;
  }
}

/* よくある質問ボタン */
.btn-faq {
  background: #b52c6b;  
  color: #fff;
}

.btn-faq:hover {
  background: #8b1a4a;
}

/* -------------------- */
.faq-toggle {
  background: none;
  border: 0;
  cursor: pointer;
  line-height: 1;
}

/* 開いている時の見た目は aria-expanded で判定 */
.faq-toggle[aria-expanded="true"] {
  transform: rotate(45deg); /* ＋→× 表現を踏襲 */
}

/* hidden は余白も消す */
.faq-answer[hidden] {
  display: none;
}
/* ------------------------------ */

/* お問い合わせボタン */
.btn-contact {
  background: #f97316;
  color: #fff;
}

.btn-contact:hover {
  background: #c2410c;
}

/* ====================
   無料相談ボタンセクション
==================== */
.btn_single {
	padding: 180px 0;
	text-align: center;
}

	/* ====================
   レスポンシブ: 768px以下
==================== */
@media (max-width: 768px) {
  body {
    padding-left: 10px;
    padding-right: 10px;
  }
  
  .btn_primary .container {
    flex-direction: column;
    gap: 40px; /* 56px → 40px に変更 */
    margin: 40px auto 40px; /* 0px → 40px に変更 */
    align-items: center;
    padding: 0 20px; /* 追加 */
  }
  
  .btn,
  .btn-consultation,
  .btn-service,
  .btn-faq,
  .btn-contact {
    width: 80%;
    max-width: 320px;
    height: auto;
    min-height: 66px;
    font-size: 1.4rem;
    padding: 18px 32px;
    margin: 0 auto 20px;
  }
  
  .btn_single {
    padding: 32px;
  }
}

/* ====================
   レスポンシブ: 480px以下
==================== */
@media (max-width: 480px) {
  .btn,
  .btn-consultation,
  .btn-service,
  .btn-faq,
  .btn-contact {
    width: 85%;
    max-width: 280px;
    font-size: 1.2rem;
    padding: 18px 32px;
    min-height: 64px;
	margin-bottom: 32px !important; 
    box-shadow: 2px 6px 10px rgba(162, 158, 160, 0.5)
  }
  
  .btn_single {
    padding: 20px;
  }
	
  /* ボタンの親要素にも余白を確保 */
  .btn_single,
  .introduce-content,
  .hero_content {
    padding-bottom: 40px !important;
  }
}

/* ヘッダー全体 */
.header {
  background: white;
  padding: 15px 96px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

/* ヘッダー上部のロゴと右側コンテンツを配置するコンテナ */
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ロゴの調整 */
.logo img {
  height: 92px;
  width: auto;
}

/* 右側のコンテンツ全体（ボタンとテキストリンク群） */
.header-right-content {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

/* 上部のボタンナビゲーション */
.nav-buttons {
  display: flex;
  gap: 15px;
  margin-bottom: 5px;
}

/* 下部の横メニューリンク */
.nav-text {
  display: flex;
  gap: 0; /* リンク間の余白を削除 */
}

.nav-text .nav-item:hover {
  color: #8B5CF6;
}

/* ヘッダーリンクメニューen表記 */
.nav-text .nav-item::after {
  content: attr(data-en);
  font-size: 13px;
  color: #999;
  margin-top: -8px;
  font-weight: 400;
}

.nav-text .nav-item:hover::after {
  color: #513394
}

.btn-primary:hover {
	background: #8b1a4a;
}

.btn-secondary {
  background: #f97316; /* オレンジ色 */
  color: white;
  padding: 12px 24px;
  border-radius: 0;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: #c2410c;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
/* ヘッダー下部の横メニュー */
.nav-text {
  font-size: 14px;
}

/* 下部の横メニューリンク */
.nav-text .nav-item {
    color: #393939;
    text-decoration: none;
    padding: 0 10px;
    font-weight: 500;
    font-size: 14px;
    flex-direction: column;
    align-items: center;
    position: relative;
    display: flex;
	letter-spacing: -1px;
} 

.nav-text .nav-item:hover {
  color: #513394;
}

/* button(よくある質問) */
 .btn-primary {
  background: #b52c6b;
  color: white;
  padding: 12px 24px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
} 

.btn-primary:hover {
  background: #8b1a4a;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* ヒーローセクション */
.top_hero_content {
    padding: 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-image-full {
    width: 100%;
    max-width: 1248px;
    margin: 0 auto;
}

.hero-image-full img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 0;
/* 	margin-bottom: 72px; */
}

.hero_text {	
  /* 行の読みやすさ */
  font-size: 1.3rem;
  font-weight:600;
  line-height: 1.5;
  letter-spacing: 0;

  /* レイアウト */
  max-width: min(800px, 90vw);
  margin: 32px auto;

  /* 日本語の改行最適化（効くブラウザで段階的に） */
  line-break: strict;
  word-break: normal;
  overflow-wrap: anywhere; 
  text-wrap: pretty;
  text-align: left; 
}

.hero_text:first-child {
	margin-top: 100px;
	margin-bottom: 10px;
}

/* デフォルトでは非表示 */
.pc-only {
	display: inline;
}

.sp-only {
  display: none;
}

/* SP表示時のみ改行を有効 */
@media screen and (max-width: 768px) {
	.hero_text {
    line-height: 1.4;
    max-width: 694px;
    padding: 0 22px;
	font-size: 1.25rem;
    font-weight: 600;
	margin: 40px auto;
	letter-spacing: 1px;
  }
}


/* ================================
   カルーセルセクション
================================= */
.carousel-section {
  width: 100%;
  max-width: 960px; /* PCで小さめに表示 */
  margin: 0 auto;
  padding: 40px 20px;
  overflow: hidden;
  position: relative;
  box-sizing: border-box;
}

/* カルーセルコンテナ */
.carousel-container {
  position: relative;
}

/* カルーセル全体 */
.carousel {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
}

/* トラック（横並び） */
.carousel-track {
  display: flex;
  gap: 24px;
  transition: transform 0.6s ease-in-out;
}

/* スライド - PC: 3枚表示 */
.carousel-slide {
  flex: 0 0 calc((100% - 48px) / 3); /* 3枚表示、gap考慮 */
  margin: 0;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  height: 420px;
}

/* 画像部分 */
.carousel-slide .slide-image {
  width: 100%;
  height: 140px;
  overflow: hidden;
  flex-shrink: 0;
}

.carousel-slide .slide-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* テキスト部分 */
.carousel-slide .slide-content {
  padding: 18px 16px 16px;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 8px;
  flex-grow: 1;
  overflow: hidden;
}

.carousel-slide .slide-content h3 {
  font-size: 1.05rem;
  margin-bottom: 4px;
  color: #333;
  text-align: center;
  line-height: 1.4;
}

.carousel-slide .slide-content p {
  font-size: 0.86rem;
  color: #555;
  line-height: 1.7;
  word-break: normal;
  overflow-wrap: anywhere;
  text-align: left;
  hyphens: auto;
}

.carousel-slide .slide-content p::after {
  content: "";
  display: inline-block;
  width: 0.6em;
}

/* ナビゲーションボタン */
.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(255, 255, 255, 0.8);
  color: #333;
  border: none;
  cursor: pointer;
  font-size: 2rem;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
  z-index: 10;
}

.carousel-nav:hover {
  background-color: #fcb034;
  color: #fff;
}

.carousel-nav.prev {
  left: -16px;
}

.carousel-nav.next {
  right: -16px;
}

/* インジケーター */
.carousel-indicators {
  display: flex;
  justify-content: center;
  margin-top: 40px;
  gap: 8px;
}

.carousel-indicators .indicator {
  width: 10px;
  height: 10px;
  background-color: #ccc;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.carousel-indicators .indicator.active {
  background-color: #fcb034;
}

.carousel,
.carousel-track {
  touch-action: pan-y;
}

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

/* タブレット: 2枚表示 */
@media (max-width: 1024px) and (min-width: 769px) {
  .carousel-slide {
    flex: 0 0 calc((100% - 24px) / 2);
    height: 440px;
  }
	
	.carousel-slide .slide-image {
    height: 150px;
  }
}
/* スマホ: 1枚表示・中央配置・左右余白 */
@media (max-width: 768px) {
  .carousel-section {
    max-width: 100%;
    padding: 40px 0;
  }
  
  .carousel-container {
    padding: 0; /* パディングなし */
  }
  
  .carousel {
    overflow: visible; /* 見切れるカードを表示 */
  }
  
  .carousel-track {
    gap: 16px; /* カード間の余白 */
    padding: 0 calc((100% - 75%) / 2); /* 中央に配置するためのパディング */
  }
  
  .carousel-slide {
    flex: 0 0 75%; /* カード幅を75%に縮小 */
    margin: 0;
    height: 430px; 
  }
  
  /* SPでボタンを非表示 */
  .carousel-nav {
    display: none;
  }
}

@media (max-width: 480px) {
  .carousel-slide {
    height: 460px;
  }
  
  .carousel-slide .slide-image {
    height: 150px;
  }
  
  .carousel-slide .slide-content {
    padding: 14px 12px 12px;
    gap: 6px;
  }
  
  .carousel-slide .slide-content h3 {
    font-size: 0.9rem;
  }
  
  .carousel-slide .slide-content p {
    font-size: 0.7rem;
    line-height: 1.8;
  }
}
/* ---------------------------------- */
.concerns-image-full,
.strength-image-full {
    width: 100%;
    max-width: 1248px;
    margin: 0 auto;
}

.concerns-image-full img,
.strength-image-full img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 0;
}

/* strengthセクション */
.strength-speech-bubble img {
	width: 260px;
    height: auto;
}

.our_strength_disc {
  width: 100%;
  text-align: center;
  margin-bottom: 40px;
  font-family: font-family: 'Noto Sans JP', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

/* ------------------------------ */
/* セクション全体 */
.instagram-era-section {
  width: 100%;
/*   padding: 64px 0; */
  background-color: #ffffff;
}

/* メインタイトル */
.main-title {
  font-size: 28px;
  font-weight: 500;
  text-align: center;
  line-height: 1.8;
  margin-bottom: 60px;
  color: #333333;
}

/* 質問セクション */
.question-section {
  text-align: center;
  margin-bottom: 40px;
}

/* "その理由とは？"の見出し */
.question {
	font-size: 1.5rem;
	font-weight: 600;
	letter-spacing: 2px;
	color: #393939;
}

/* "理由"の紫色テキスト */
.reason-highlight {
  color: #7c5cdc;
  font-weight: 700;
  font-size: 40px;
}

/* グラデーション三角形 */
.gradient-triangle {
  width: 100%;
  max-width: 1248px;
  height: 150px;
  margin: 80px auto 50px;
  background: linear-gradient(180deg, #7c5cdc 0%, #d1c7e7 100%);
  clip-path: polygon(0% 0%, 100% 0%, 100% 15%, 50% 100%, 0% 15%);
}

/* レスポンシブ */
@media (max-width: 768px) {
  .gradient-triangle {
    height: 100px;
    clip-path: polygon(0% 0%, 100% 0%, 100% 20%, 50% 100%, 0% 20%);
  }
}

/* 説明テキスト1（見出し） */
.explanation-1 {
  text-align: center;
  font-size: 1.6rem;
  font-weight: 600;
  color: #393939;
  margin: 0 0 25px 0;
  display: block;
}


/* 説明テキスト2（本文） */
.explanation-2 {
  font-size: 18px;
  font-weight: 500;
  color: #393939;
  text-align: center;
  line-height: 1.9;
  margin: 0;
  letter-spacing: -1px;
}

/* "投稿に価値"の紫色テキスト */
.post-highlight {
  color: #7c5cdc;
  font-weight: bold;
  font-size: 1.3rem;
}

.post-text {
	font-size: 1.3rem;
	font-weight: 600;
}

/* 下部のグラデーション正三角形（下向き） */
.bottom-gradient-shape {
  width: 160px;
  height: 96px;
  margin: 20px auto 64px;
  background: linear-gradient(180deg, #c2b8e1 0%, #7c5cdc 100%);
  clip-path: polygon(0% 0%, 100% 0%, 50% 100%);
}

.our_strength_disc ._3,
.our_strength_disc ._4,
.our_strength_disc ._5,
.our_strength_disc ._6,
.our_strength_disc ._7 {
  font-size: 1.35rem;
  color: #393939;
  font-weight: 600;
  line-height: 1.85;
  letter-spacing: 0.03em;
  font-feature-settings: "palt";
  margin: 0;
}

/* PC表示 */
.our_strength_disc ._3 {
  font-size: 1.35rem;
  color: #393939;
  font-weight: 600;
  line-height: 1.85;
  letter-spacing: 0.03em;
  font-feature-settings: "palt";
  margin: 0;
  text-align: center;
}


.our_strength_disc ._4,
.our_strength_disc ._6 {
  color: #b20042;
  font-weight: bold;
  display: inline;
  font-size: 1.35rem;
} 

.our_strength_disc .highlight {
  color: #b20042;
  font-weight: bold;
}

/* PC表示時の改行を表示 */
.pc-only {
  display: inline;
}

/* SP表示: 改行を非表示 */
.sp-only {
  display: none;
}

/* レスポンシブ */
@media (max-width: 768px) {
  .bottom-gradient-shape {
    width: 92px;
    height: 64px;
  }

  .main-title {
    font-size: 1.3rem;
    margin: 80px 40px;
  }
  
  .question {
    font-size: 26px;
  }
  
  .reason-highlight {
    font-size: 32px;
  }
  
  .gradient-triangle {
    width: 320px;
    height: 72px;
  }
  
  .explanation-section {
/*     padding: 0 20px; */
  }
  
  .explanation-1 {
    font-size: 24px;
    text-align: center;
  }
}

.post-highlight span{
	color: #623ccd;
}

.our_strength_disc ._1 {
  color: #b20042;
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 16px;
  letter-spacing: 0.05em;
  line-height: 1.4;
}

.our_strength_disc ._2 {
  color: #393939;
  font-size: 2.4rem;
  font-weight: bold;
  margin-bottom: 40px;
  letter-spacing: 0.08em;
  line-height: 1;
}



@media (max-width: 768px) {
  /* 既存のスタイル... */
  .our_strength_disc ._3,
  .our_strength_disc ._4,
  .our_strength_disc ._5,
  .our_strength_disc ._6,
  .our_strength_disc ._7 {
    display: inline;
    font-size: 1.2rem;
    line-height: 1.5;
    word-break: keep-all;
    overflow-wrap: break-word;
    letter-spacing: 0px;
  }

  .our_strength_disc ._3-7 {
    font-size: 1.2rem;
    line-height: 1.6;
  }
  
 .tablet-only {
    display: inline;
  }
/*   .sp-only:not(.tablet-only) {
    display: none;
  } */

  /* PC用改行を非表示 */
  .pc-only {
    display: none;
  }
  
  /* SP用改行を表示 */
  .sp-only {
    display: inline;
  }
}
/* ------------------------- */

.common-concerns .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
}

/* common-concernsセクション */
.common-concerns {
    padding: 0;
    text-align: center;
	margin-top: 92px;
}

.brand-text{
	font-size: 2.4rem;
	color: #bbb39994;
}

/* モバイル表示での上部余白調整 */
@media (max-width: 768px) {
    .common-concerns {
        margin-top: 40px;
    }
}

.concerns-image-full {
    width: 100%;
    max-width: 1248px; /* ヒーローセクションと同様に幅を制限 */
    margin: 0 auto;
}

.concerns-image-full img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 0;
    margin-top: 92px;
}

/* common-concernsのpicture要素対応 */
.common-concerns picture {
    display: block;
    width: 100%;
    max-width: 1248px;
    margin: 0 auto;
}

.common-concerns picture img{
    width: 100%;
    height: auto;
    display: block;
    border-radius: 0;
	margin-bottom: 92px;
}

.strength_disc_img picture img {
	width: 100%;
    height: auto;
    display: block;
    border-radius: 0;
 }	


/* モバイル表示でのcommon-concerns画像調整 */
@media (max-width: 768px) {
    .common-concerns picture {
        max-width: 100%;
        padding: 0 10px;
        margin: 0 auto;
    }
    
    .common-concerns picture img {
        width: 100%;
        min-width: 100%;
        max-width: none;
        height: auto;
    }
}

/* ===================================
   お悩みセクション（PC・タブレット・SP対応）
   =================================== */

/* PC表示（1025px以上） */
.worries-mobile-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.worries-mobile-row {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}

.worries-mobile-card {
    flex: 1;
    background-color: #fff;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
}

.worry-header {
    display: flex;
    align-items: flex-start;
    padding-bottom: 0;
    margin-bottom: 16px;
}

.worry-image {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    margin-right: 20px;
}

.worry-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.worry-title {
    flex: 1;
    font-size: 15px;
    color: #393939;
    font-weight: 500;
    margin-top: 24px;
    font-family: 'Noto Sans JP';
    line-height: 1.6;
}

.worry-description {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    font-family: 'Noto Sans JP';
    font-weight: 500;
    margin: 0;
}

/* タブレット対応（769px〜1024px） */
@media (min-width: 769px) and (max-width: 1024px) {
    .worries-mobile-container {
        padding: 0 40px;
    }
    
    .worries-mobile-row {
        gap: 24px;
        margin-bottom: 24px;
    }
    
    .worries-mobile-card {
        padding: 24px;
    }
    
    .worry-image {
        width: 100px;
        height: 100px;
        margin-right: 16px;
    }
    
    .worry-title {
        font-size: 14px;
        margin-top: 20px;
    }
    
    .worry-description {
        font-size: 14px;
        line-height: 1.7;
    }
}

/* 768px以下のモバイル表示 */
@media (max-width: 768px) {
    .worries-mobile-container {
        padding: 0 20px;
    }
    
    .worries-mobile-row {
        flex-direction: column;
        gap: 24px;
        margin-bottom: 0;
    }
    
    .worries-mobile-card {
        padding: 24px 20px;
    }
    
    /* 画像を上、テキストを下に配置 */
    .worry-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin-bottom: 16px;
    }

    .worry-image {
        width: 100px;
        height: 100px;
        margin-right: 0;
        margin-bottom: 16px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .worry-image img {
        width: 100%;
        height: 100%;
        margin: 0 auto;
    }

    .worry-title {
        font-size: 17px;
        font-family: 'Noto Sans JP';
        font-weight: 500;
        margin: 0 auto 16px;
        letter-spacing: 0;
        line-height: 1.6;
    }

    .worry-description {
        font-size: 0.9rem;
        font-weight: 400;
        font-family: 'Noto Sans JP';
        text-align: center;
        font-feature-settings: "palt" 1;
        line-height: 1.6;
        color: #494949;
    }
}

/* 480px以下のより小さなモバイル表示 */
@media (max-width: 480px) {
    .worries-mobile-container {
        padding: 0 16px;
    }
    
    .worries-mobile-card {
        padding: 20px 16px;
    }
    
    .worries-mobile-row {
        gap: 24px;
    }
    
    .worry-image {
        width: 90px;
        height: 90px;
        margin-bottom: 12px;
    }
	
	.worry-image img{
		margin-right: 36px;
	}
    
    .worry-title {
        font-size: 16px;
        line-height: 1.5;
        margin-bottom: 12px;
    }
    
    .worry-description {
        font-size: 0.85rem;
        line-height: 1.5;
    }
}

/* ----------------------------------- */
/* モバイル表示用のカードコンテナクラス */
.worries-mobile-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.worries-mobile-row {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}

.worries-mobile-card {
    flex: 1;
    background-color: #fff;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
}

.worry-header {
    display: flex;
    align-items: flex-start;
    padding-bottom: 0;
}

.worry-image {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
}

.worry-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    margin-left: 40px;
}

.worry-title {
    flex: 1;
    font-size: 15px;
    color: #393939;
    font-weight: 500;
    margin-top: 24px;
    font-family: 'Noto Sans JP';
}

.worry-description {
    font-size: 15px;
    color: #666;
    line-height: 1.5;
    font-family: 'Noto Sans JP';
    font-weight: 500;
}

/* 768px以下のモバイル表示 */
@media (max-width: 768px) {
    .worries-mobile-container {
        padding: 0 20px;
    }
    
    .worries-mobile-row {
        flex-direction: column;
        gap: 20px;
    }
    
    .worries-mobile-card {
        padding: 20px;
    }
    
    .worry-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .worry-image {
        width: 100px;
        height: 100px;
    }

    .worry-title {
        font-size: 17px;
        font-family: 'Noto Sans JP';
        font-weight: 500;
        margin: 0 auto 16px;
        letter-spacing: -1;
    }

    .worry-description {
        font-size: 0.9rem;
        font-weight: 400;
        font-family: 'Noto Sans JP';
        text-align: center;
        font-feature-settings: "palt" 1;
        line-height: 1.6;
        color: #494949;
    }
}

/* 480px以下のより小さなモバイル表示 */
@media (max-width: 480px) {
    .worries-mobile-container {
        padding: 0 15px;
    }
    
    .worries-mobile-card {
        padding: 15px;
    }
    
    .worries-mobile-row {
        gap: 30px;
    }
}
/* --------------------------- */

.our_strength img {
  width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
}

/* strength_2画像セクション */
.strength_2_image {
  text-align: center;
}

.strength_2_image img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* strength_2画像下テキスト */
.strength_2_text {
  text-align: center;
  padding: 96px 0;
  max-width: 800px;
  margin: 0 auto;
}

.strength_2_text p {
  font-size: 1.6rem;
  line-height: 1.8;
  color: #393939;
  margin: 0;
  font-weight: 600;
}

.transition-image-section {
    margin-top: 60px;
    text-align: center;
}

.transition-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

@media (max-width: 480px){
	.explanation-2{
		font-size: 1.1rem;
        line-height: 1.6;
        padding: 0 20px;
        word-break: break-all;
        overflow-wrap: break-word;
        text-align: justify;
	}
	
	.strength_2_text p {
		font-size: 1.2rem;
	}
}

/* ---------------------------------
   Strength Section
   --------------------------------- */
.strength-section {
  width: 100%;
  box-sizing: border-box;
  background: #fff;
}

/* 1440px 幅で左右 margin 96px 相当 */
.strength-container {
  max-width: 1248px; /* 1440 - 96*2 */
  margin: 0 auto;
  padding: 0 96px;
  box-sizing: border-box;
}

.strength-header {
  text-align: center;
  margin-bottom: 80px;
}

/* strength-blocks コンテナ */
.strength-blocks {
  max-width: 1248px; /* 1440 - 96*2 */
  margin: 0 auto;
  padding: 0 96px;
  box-sizing: border-box;
}

.strength-subtitle {
  color: #6B46C1;
  font-weight: 500;
  font-size: 20px;
  margin: 0;
}

.strength-speech-bubble img {
	width: 260px; /* 横幅を維持する */
	margin: 0 auto;
}

.concerns-speech-bubble img{
  width: 260px; /* 横幅を維持する */
  height: auto; /* 縦横比を保つ */
  margin: auto;
}

.strength-main-title {
  font-size: 32px;
  color: #393939;
  margin: 0;
  font-weight: 500;
  margin-bottom: 6rem;
}

/* ------------------------------------- */
.concerns_hedder {
  text-align: center;
}

.concerns-subtitle {
  position: relative;
  display: inline-block;
  line-height: 1.2;
  margin: 0;
  padding: 0;
  padding-bottom: 20px; /* 吹き出し画像のスペースを確保 */
  font-size: 16px;
  font-weight: 600;
	color: #393939;
}

.speech-underline {
  position: absolute;
  bottom: 0;
  left: 0;
  right: -6;
  line-height: 0;
  text-align: center;
}

.speech-bubble-img {
  width: 100%; 
  max-width: 100%;
  height: auto;
  display: inline-block;
}

/* --------------------------- */

/* ブロック間の余白 */
.strength-block {
  margin-bottom: 160px;
}
.strength-block:last-child {
  margin-bottom: 0;
}

/* コンテンツ横並び */
.strength-content {
  display: flex;
  align-items: flex-start;
  gap: 80px;
  justify-content: space-between;
}

/* テキスト側の幅 */
.strength-text-side {
  flex: 0 0 45%;
  max-width: 450px;
}

.strength-right {
  flex: 0 0 45%;
  max-width: 450px;
}

/* 画像側の幅（wrapper） */
.strength-image-side {
  flex: 0 0 40%;
  max-width: 520px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
}

.strength-left {
  flex: 0 0 40%;
  max-width: 520px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
}

/* ---------- 背景（画像の背後に置くピンクの四角） ---------- */
.strength-bg {
  position: absolute;
  z-index: 1;
  background: url('/wp-content/themes/WIM/images/strength_p_bg.jpg') center/cover no-repeat;
  /* デフォルトの配置。ブロック毎に微調整する */
  top: -20px;
  left: 48px;
  right: -48px;
  bottom: -64px;
 }

/* 各ブロックで細かい調整 */
.strength-block-01 .strength-bg {
  top: -20px;
  left: 48px;
  right: -48px;
  bottom: -64px;
}
.strength-block-02 .strength-bg {
  top: -20px;
  left: -40px;
  right: 30px;
  bottom: -64px;
}
.strength-block-03 .strength-bg {
  top: -20px;
  left: 48px;
  right: -48px;
  bottom: -64px;
}

/* ---------- 実際のコンテンツ画像（background-imageで持つ） ---------- */
.strength-image {
  position: relative;
  z-index: 2;
  width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-top: 58%; 
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
  overflow: hidden;
}

.strength-image-container {
  position: relative;
  width: 100%;
  z-index: 2;
}

.strength-pink-bg {
  position: absolute;
  z-index: 1;
  background: url('http://localhost:10004/wp-content/themes/WIM/images/strength_p_bg.jpg') center/cover no-repeat;
  top: -20px;
  left: 48px;
  right: -48px;
  bottom: -100px;
  min-height: 200px;
}

.strength-image-container .strength-image {
  position: relative;
  z-index: 2;
  width: 100%;
  height: auto;
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
  display: block;
  /* 既存の背景画像スタイルを無効化 */
  background: none !important;
  padding-top: 0 !important;
  overflow: visible !important;
}

.strength-number-overlay {
  position: absolute;
  bottom: -20px;
  right: 20px;
  z-index: 3;
}

/* ---------- 番号（01,02,03） ---------- */
.strength-number {
  position: absolute;
  z-index: 3;
  display: block;
  font-family: "Shippori Mincho", serif;
  font-size: 88px;
  font-weight: 600;
  color: rgba(243,216,229,1); /* 淡いピンク */
  line-height: 0.85;
  margin: 0;
}

/* ブロック別の番号位置 */
.strength-block-01 .strength-number {
  bottom: -96px;
  right: 26px;
}
.strength-block-02 .strength-number {
  bottom: -96px;
  right: 210px
}
.strength-block-03 .strength-number {
  bottom: -96px;
  right: 26px;
}

/* ---------- SUPPORT テキスト ---------- */
.strength-support {
  position: absolute;
  z-index: 4;
  display: block;
  font-family: "Shippori Mincho", serif;
  font-size: 16px;
  color: #b2aeae;
  font-weight: 600;
  letter-spacing: 0.04em;
  font-style: normal;
  /* デフォルト位置。必要ならブロック別に微調整 */
  bottom: -16px;
  right: 36px;
}

/* ブロック別に少し位置調整 */
.strength-block-01 .strength-support { 
	bottom: -107px; 
	right: 88px;
	font-style: italic;
}
.strength-block-02 .strength-support { 
	font-style: italic;
    bottom: -106px;
    right: 286px;
}
.strength-block-03 .strength-support {
	bottom: -108px;
    right: 98px;
	font-style: italic;
}

/* HTMLの構造に合わせた番号とSUPPORTテキストのスタイル */
.strength-number-overlay .strength-number {
  position: static;
  z-index: 4;
  display: block;
  font-family: "Shippori Mincho", serif;
  font-size: 88px;
  font-weight: 600;
  color: rgba(243,216,229,1);
  line-height: 0.85;
  margin: 0;
}

.strength-number-overlay .strength-support {
  position: static;
  z-index: 4;
  display: block;
  font-family: "Shippori Mincho", serif;
  font-size: 16px;
  color: #b2aeae;
  font-weight: 600;
  letter-spacing: 0.04em;
  font-style: normal;
  margin-top: -10px;
}

/* 紫の見出しボックス */
.strength-purple-box {
  display: block;
  background: #6B46C1;
  color: #fff;
/*   padding: 4px 24px; */
  margin-bottom: 20px;
  width: 100%;
  box-sizing: border-box; 
  text-align: center;
}

.strength-purple-box h3 {
  margin: 0;
  font-size: 18px;
  line-height: 1.6;
  font-weight: 600;
  padding: 8px 8px;
}

/* テキスト段落 */
.strength-text p {
  margin: 0 0 1em 0; /* 行間の調整 */
  color: #393939;
  font-size: 1.05rem;
  line-height: 1.9;
  text-align: center;
  font-weight: 500;
  text-align: justify;
  letter-spacing: -1px;
} 

/* 紫ボックス：中央寄せは維持しつつ、文字サイズを流体で拡大 */
.highlight-box{
  background-color:#7c5cdc;
  color:#fff;
  display:inline;
  width:fit-content;           /* 中身幅だけ。fit-contentでも可 */
  max-width:calc(100% - 40px);
  margin:0 auto 16px;       
  padding:0.55em 1.3em;        /* 少し厚めに */
  text-align:center;
/*   font-size:clamp(1.25rem, 1.05rem + 0.9vw, 1.70rem); */
  line-height:1.25;
}

/* PCは下の余白だけ元の見え方に戻す */
@media (min-width:1025px){
  .highlight-box{ margin-bottom:40px; }
}

/* ごく狭い端末は左右余白を少し緩める（はみ出し防止） */
@media (max-width:480px){
  .highlight-box{
	  max-width:calc(100% - 8px);
	  display: block;
	  font-size: 1.25rem;
	}
}

/* ===== レスポンシブ(タブレット・モバイル) ===== */
@media screen and (max-width: 768px) {
  .strength-section {
/*     padding-top: 60px; */
  }

  .strength-container,
  .strength-blocks {
    padding: 0 56px;
    max-width: 100%;
  }

  .strength-header {
    margin-bottom: 60px;
  }

  .strength-subtitle {
    font-size: 18px;
  }

  .strength-speech-bubble img {
    margin: 0 auto;
  }

  .strength-main-title {
    font-size: 22px;
    margin-bottom: 2rem;
  }
	.speech-underline{
		width: 100%;
	}

  /* ブロック間余白 */
  .strength-block {
    margin-bottom: 80px;
  }

  /* 縦並びレイアウト: 画像→テキストの順 */
  .strength-content {
    flex-direction: column;
    gap: 32px;
    align-items: center;
  }

  /* Block 02 (画像→テキスト) */
  .strength-block-02 .strength-content {
    flex-direction: column;
  }

  /* 画像側を上に配置 */
  .strength-image-side,
  .strength-left {
    flex: 0 0 auto;
    max-width: 100%;
    width: 100%;
    order: 1;
    margin-bottom: 0;
  }

  /* テキスト側を下に配置 */
  .strength-text-side,
  .strength-right {
    flex: 0 0 auto;
    max-width: 100%;
    width: 100%;
    order: 2;
  }
	
  /* 親要素も中央配置にする場合 */
  .question-section {
    text-align: center;
  }

/* -------------------------- */
  /* ピンク背景の調整 */
  .strength-bg {
    top: -24px !important;
    left: -40px !important;
    right: -24px !important;
    bottom: -16px !important;
  }

  /* 画像のアスペクト比調整 */
  .strength-image {
    padding-top: 75%;
  }

  /* 番号とSUPPORTテキストの位置 */
  .strength-number {
    font-size: 64px;
    bottom: -16px;
    right: 24px;
  }

  .strength-support {
    font-size: 14px;
    bottom: -24px;
    right: 24px;
  }

  /* 各ブロックの番号位置を統一 */
  .strength-block-01 .strength-number,
  .strength-block-02 .strength-number,
  .strength-block-03 .strength-number {
    bottom: -12px;
    right: 0px;
	color: #e2a6c2;
  }

  .strength-block-01 .strength-support,
  .strength-block-02 .strength-support,
  .strength-block-03 .strength-support {
    bottom: -20px;
    right: 64px;
	color: #494949;
    font-style: italic;
  }

  /* 紫ボックス */
  .strength-purple-box {
/*     padding: 8px 20px; */
    margin-bottom: 16px;
  }

  .strength-purple-box h3 {
    font-size: 1.3rem;
    line-height: 1.7;
	padding: 8px 20px;
  }

/* テキスト */
.strength-text p {
  font-size: 1.1rem;
  line-height: 1.4;
  text-align: justify;
  font-weight: 500;
  padding: 8px 40px;  
  letter-spacing: 0;
	}
}

@media screen and (max-width: 480px){
	.strength-main-title{
		font-size: 1.3rem;
		font-weight: 600;
	}
	        
	.strength-text p {
		text-align: justify;
            font-size: 1.1rem;
            line-height: 1.6;
            word-break: break-word;
            overflow-wrap: break-word;
		    font-feature-settings: "palt" 1;
        }
	
	  .our_strength_disc ._2 {
            font-size: 2.1rem;
            line-height: 1.3;
            word-break: keep-all;
            overflow-wrap: break-word;
            letter-spacing: -2px;
	}
	
	.btn {
        width: 65%;
        max-width: 300px;
        margin: 0px auto;
        height: 68px;
		font-size: 1.4rem;
    }
    
    /* 480px以下のボタンホバー効果 */
/*     .btn:hover {
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
        transform: translateY(-2px);
    }
    
    .btn-faq:hover {
        background: #8b1a4a;
    }
	 */
	.strength-bg {
        top: -24px !important;
        left: -32px !important;
        right: 12px !important;
        bottom: 12px !important;
    }
	
	.strength-container, .strength-blocks {
		padding: 0 20px;
	}
}
/* ====================
   ハンバーガーメニュー
==================== */
.hamburger-menu {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 30px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.hamburger-line {
  width: 100%;
  height: 3px;
  background-color: #333;
  transition: all 0.3s ease;
  border-radius: 2px;
}

/* ハンバーガーメニュー/アニメーション */
.hamburger-menu.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.hamburger-menu.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.hamburger-menu.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}

/* モバイルメニュー */
.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

.mobile-nav {
  padding: 20px;
}

.mobile-nav-item {
  display: block;
  padding: 15px 0;
  color: #333;
  text-decoration: none;
  border-bottom: 1px solid #eee;
}

.mobile-nav-item:last-child {
  border-bottom: none;
}

.mobile-nav-text {
  display: block;
  font-size: 16px;
  font-weight: 500;
}

.mobile-nav-en {
  display: block;
  font-size: 12px;
  color: #999;
  margin-top: 2px;
}

.mobile-nav-buttons {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mobile-btn {
  display: block;
  padding: 12px 20px;
  text-align: center;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 500;
}

.mobile-btn-primary {
  background: #b52c6b;
  color: white;
}

.mobile-btn-secondary {
  background: #f97316;
  color: white;
}

/* ====================
   フッター
==================== */

.footer {
  background: url('images/suggestion_back.webp') center/cover no-repeat;
  padding: 40px 0 20px;
  margin-top: 120px;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  gap: 20px;
  text-align: center;
  font-size: 2.4rem;
}

footer-ttl p {
  margin: 0;
  font-weight: 700;
  font-size: 32px;   
  line-height: 1.1;  
  color: #a9985c4d;
  display: inline-block; 
  white-space: nowrap;
}

.footer-copyright {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #eee;
  font-size: 12px;
  line-height: 1.4;
  color: #666;
  text-align: center;
}

/* SNS アイコン */
.footer-sns,
.footer-sns-list,
.footer-sns-item {
	list-style: none;
	margin: 0;
	padding: 0;
}

.footer-sns-list {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
}

.footer-sns-item a{
	display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;                     /* 固定 */
  height: 24px;                    /* 固定 */
  text-decoration: none;
}

.footer-sns-item img {
  display: block;
  width: 40px !important;          /* 強制固定（他の reset に勝つ） */
  height: 40px !important;
  max-width: none !important;      /* img{max-width:100%} 対策 */
  aspect-ratio: 1 / 1;
  object-fit: contain;
  vertical-align: middle;
  -webkit-user-drag: none;
  user-select: none;
  transition: opacity .3s ease;
}

.footer-sns-item img:hover {
	opacity: .7;
}


/* 上部へ戻るボタン */
#back-to-top {
  position: fixed !important;
  top: 50% !important;
  right: 20px !important;
  transform: translateY(-50%) translateZ(0);
  width: 30px;
  height: 128px;
  background: #b52c6b;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.8rem;
  display: none;
  z-index: 9999 !important;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  will-change: transform;
  text-align: center;
  line-height: 1;
  padding: 4px 2px;
  box-sizing: border-box;
  writing-mode: vertical-rl;
  text-orientation: upright;
  letter-spacing: 1px;
}

#back-to-top:hover {
  background: #8b1a4a;
  transform: translateY(-52%) translateZ(0);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

#back-to-top.show {
  display: block !important;
}

/* スマホ表示では非表示 */
@media (max-width: 768px) {
  #back-to-top,
  #back-to-top.show {
    display: none !important;
    visibility: hidden !important;
  }
}

/* ====================
   Suggestionセクション
==================== */
.suggestion {
  padding: 80px 0;
  margin-bottom: 80px;
  position: relative;
  background: url('images/strength_p_bg.jpg') center/cover no-repeat;
  background-attachment: fixed;
}

.suggestion .container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.suggestion-image {
  position: relative;
  z-index: 3;
  max-width: 600px;
  width: 100%;
}

.suggestion-image img {
  width: 100%;
  height: auto;
  display: block;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.suggestion-text {
  text-align: center;
  max-width: 800px;
  position: relative;
  z-index: 3;
}

.suggestion-text p {
  font-size: 22px;
  line-height: 1.8;
  color: #393939;
  margin: 0;
  font-weight: 500;
	text-align: justify;
}

/* PC表示時のみ表示する改行 */
.pc-only {
  display: inline;
}

/* SP表示時のみ表示する改行 */
/* .sp-only {
  display: none;
}
 */
/* @media (max-width: 768px) {
  .pc-only {
    display: none;
  } */
  
  .massage {
     text-align: center;
     margin: 80px 0;
     padding: 20px;
}

   .massage p {
      color: #393939;
            font-size: 1.6rem;
            margin: 0;
			font-weight: 500;
        }

@media (max-width: 480px){
	    .massage p{
		font-size: 1.2rem;
		color: #393939;
        word-wrap: break-word;
        word-break: auto-phrase;
      }
	}	
	
       
/* ====================
   About Page Styles
==================== */

/* ヒーロータイトルセクション */
.hero-ttl {
    background: url('/wp-content/themes/WIM/images/suggestion_back.webp') center/cover no-repeat;
    padding: 80px 0;
    text-align: center;
    position: relative;
}

.hero-title {
    font-size: 2.5rem;
    color: #393939;
    margin: 0;
    font-weight: 600;
    font-family: "しっぽり明朝", serif;
}

.hero-subttl {
	font-size: 18px;
	margin: 0;
}

/* ヒーローコンテンツセクション */
.hero-content-wrapper {
    display: flex;
    align-items: center;
    gap: 96px;
    max-width: 1155px;
    margin: 0 auto;
}

.hero-image {
    flex: 0 0 50%;
    text-align: center;
}

.hero-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.hero-text {
   flex: 0 0 41%;
    order: 2;
    word-break: break-word;
    word-wrap: break-word;
    font-feature-settings: "palt" 1;
    font-size: 1.2rem;
    letter-spacing: 1px;
    font-weight: 500;
    text-align: justify;
}

.hero-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #393939;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

/* ------------------------------------- */
/* hero_contentセクションの2カラムレイアウト */
.hero_content {
    padding: 96px 0;
    background: #fff;
}

.hero-content-wrapper_sv {
    display: flex;
    align-items: center;
    gap: 16px;
    max-width: 1248px;
    margin: 0 auto;
    padding: 0 20px 0 0;
}

.hero-image {
    flex: 0 0 50%;
    order: 1;
    text-align: center;
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

.hero-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #393939;
    margin-bottom: 1.5rem;
    font-weight: 500;
	text-align: left;
}

.hero-text p:last-child {
    margin-bottom: 0;
}

/* レスポンシブ対応（モバイル） */
@media (max-width: 768px) {
    .hero-content-wrapper {
        flex-direction: column;
        gap: 20px;
        padding: 0 16px;  /* 左右余白を削減 */
        max-width: 1000px;
        margin: 0 auto 24px;
    }
    
    .hero-image {
        flex: none;
        order: 1;
        width: 100%;
        text-align: center;
        display: flex;
        justify-content: center;
    }
    
    .hero-image img {
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
    }
    
    .hero-text {
        flex: none;
        order: 2;
        width: 100%; 
        line-height: 1.5;
        letter-spacing: 0px;
        padding: 40px 48px;
    }
    
    .hero-text p {
        font-size: 1rem;
        line-height: 1.7;
    }
}

/* 新規追加：480px以下での最適化 */
@media (max-width: 480px) {
    .hero_content {
        padding: 60px 0;  /* 上下の余白を削減 */
    }
    
    .hero-content-wrapper {
        padding: 0 16px;  /* 左右の余白を最小限に */
        gap: 20px;
        margin-bottom: 20px;
    }
    
    .hero-text {
        width: 100%;
        padding: 0 16px;
		letter-spacing: 0em;
		margin: 40px auto;
    }
    
    .hero-image img {
        width: 100%;
        max-width: 100%;
    }
}

/* ヒーローコンテンツセクションのタブレット対応 */
@media (min-width: 769px) and (max-width: 1024px) {
    .hero_content {
        padding: 60px 0;
    }
    
    .hero-content-wrapper {
        flex-direction: column;
        gap: 40px;
        max-width: 800px;
        margin: 0 auto;
        padding: 0 20px;
    }
    
    .hero-image {
        flex: none;
        order: 1;
        width: 100%;
        text-align: center;
    }
    
    .hero-image img {
        max-width: 500px;
        width: 100%;
    }
    
    .hero-text {
        flex: none;
        order: 2;
        width: 100%;
        text-align: justify;
		padding: 24px 48px;
    }
    
    .hero-text p {
        font-size: 1.1rem;
        line-height: 1.8;
    }
}

/* タブレット対応 - 小さいタブレット */
@media (min-width: 769px) and (max-width: 842px) {
    .hero-content-wrapper_sv {
        gap: 40px;
        max-width: 960px;
    }
    
    .hero-text p {
        font-size: 1.05rem;
    }
    
    /* ヘッダーボタンの調整 */
    .nav-buttons {
        gap: 8px;
    }
    
    .header .nav-buttons .btn {
        padding: 10px 20px !important;
        font-size: 14px !important;
    }
}

/* タブレット対応 - 大きいタブレット */
@media (min-width: 843px) and (max-width: 1024px) {
    .hero-content-wrapper_sv {
        gap: 40px;
        max-width: 960px;
    }
    
    .hero-text p {
        font-size: 1.05rem;
    }
    
    /* ヘッダーボタンの調整 */
    .nav-buttons {
        gap: 10px;
    }
    
    .header .nav-buttons .btn {
        padding: 12px 24px !important;
        font-size: 15px !important;
    }
}
/* 特徴セクション */
.feature {
    background: #fff;
    text-align: center;
}

.feature-image img {
    width: 100%;
    height: auto;
    margin-bottom: 36px;
    max-width: 1248px;
}

/* PC用画像表示、モバイル用画像非表示 */
.feature-pc {
    display: block;
}

.feature-sp {
    display: none;
}

/* 理由セクション */
/* Reasons Section */
.reasons-section {
    padding: 80px 0;
    background: #fff;
    width: 100%;
    overflow-x: hidden;
}

.reason-item {
    margin-bottom: 60px;
}

.reason-item:last-child {
    margin-bottom: 0;
}

.reason-content {
    display: flex;
    align-items: center;
    gap: 80px;
    width: 100%;
    margin: 0;
    padding: 0;
}

/* reason-right: テキスト左、画像右 */
.reason-right .reason-content {
    flex-direction: row;
}

/* reason-left: 画像左、テキスト右 */
.reason-left .reason-content {
    flex-direction: row-reverse;
}

.reason-text {
    flex: 0 0 50%;
    position: relative;
}

.reason-number {
    margin-bottom: 30px;
    text-align: left;
}

.reason-number .number {
    display: block;
    font-size: 5rem;
    color: rgba(243, 216, 229, 1);
    font-weight: 600;
    font-family: "しっぽり明朝", serif;
    line-height: 0.8;
    margin-bottom: 0;
}

.reason-number .support-text {
    display: block;
    font-size: 1.5rem;
    color: #b2aeae;
    font-weight: 600;
    font-style: italic;
    letter-spacing: 0.1em;
    margin-top: -32px;
    /* margin-left: 5px; */
}

.reason-texttitle {
    font-size: 2.2rem;
    color: #393939;
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.4;
}

.reason-description p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #393939;
    font-weight: 500;
    margin: 0;
	font-feature-settings: "palt" 1;
}

.reason-image {
    flex: 0 0 50%;
    position: relative;
}

.reason-image img {
    width: 90%;
    height: auto;
}

/* タブレット対応 */
@media (min-width: 769px) and (max-width: 1024px) {
    .reasons-section {
        padding: 60px 0;
    }
    
    .reasons-section > .container {
        padding: 0 40px;
    }
    
    .reason-content {
        flex-direction: column;
        gap: 40px;
        width: 100%;
        margin: 0;
    }
    
    .reason-right .reason-content,
    .reason-left .reason-content {
        flex-direction: column;
    }
    
    .reason-text {
        flex: none;
        order: 2;
        width: 100%;
    }
    
    .reason-image {
        flex: none;
        order: 1;
        width: 100%;
        text-align: center;
    }
    
    .reason-image img {
        max-width: 500px;
        width: 100%;
    }
    
    .reason-number .number {
        font-size: 4.5rem;
    }
    
    .reason-number .support-text {
        font-size: 1.2rem;
    }
    
    .reason-texttitle {
        font-size: 1.8rem;
        text-align: center;
    }
    
    .reason-description p {
        font-size: 1.1rem;
        text-align: center;
    }
}

/* モバイル対応 */
@media (max-width: 768px) {
    .reasons-section {
        padding: 4px 16px;
    }
    
    .reasons-section > .container {
        padding: 0 8px;
    }
    
    .reason-right .reason-content,
    .reason-left .reason-content { 
        flex-direction: column;
        align-items: center;
		gap: 8px;
        width: 100%;
        margin: 0;
    }
    
    .reason-text {
        flex: none;
        order: 2;
        width: 100%;
    }
    
    .reason-image {
        flex: none;
        order: 1;
        width: 98%;
        display: flex;
        justify-content: center;
    }
    
   .reason-image img {
    display: block;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto; /* 全画像の基本スタイル */
}

.reason-item:not(:first-child) .reason-image img {
    margin-top: 48px; /* 一番上以外にmargin-top */
}
    
   /* 追加: 02と04の番号を左側に統一 */
    .reason-left .reason-number {
        justify-content: flex-start !important;
    }
    
    .reason-number .number {
        font-size: 4rem;
        margin-left: 0 !important;
    }
    
    .reason-number .support-text {
        font-size: 0.9rem;
        margin-top: -3px;
        margin-left: 3px;
    }
    
    .reason-texttitle {
        font-size: 1.3rem;
    }
    
    .reason-description p {
        font-size: 1.05rem;
        font-weight: 500;
        line-height: 1.5;
    }
}
/* ----------------------------------------------- */
/* Reason 01とReason 03のスタイル */
.reason-right .reason-number .number {
    display: block;
    font-size: 5rem;
    color: rgba(243, 216, 229, 1);
    font-weight: 600;
    font-family: "しっぽり明朝", serif;
    line-height: 0.8;
    margin-bottom: 0;
/* 	margin-left: 110px */
	margin-top: -45px;
}

.reason-right .reason-number .support-text {
    display: block;
    font-size: 1.4rem;
    color: #b2aeae;
    font-weight: 600;
    font-style: italic;
}
/* ------------------ */
/* 01のモバイル修正 - margin-leftを強制的に0に */
@media (max-width: 768px) {
    .reason-right .reason-number .number {
        margin-left: 0 !important;
        margin-bottom: 0 !important;
    }
    
    .reason-right .reason-number .support-text {
        margin-top: -3px !important;
        margin-left: 3px !important;
    }
}

/* Reason 01とReason 03のスタイル */
.reason-right .reason-number {
    display: flex;
    align-items: baseline;
    gap: 0; /* 間隔を0に変更 */
    margin-bottom: 30px;
}

.reason-right .reason-number .support-text {
    display: inline-block;
    font-size: 1.4rem;
    color: #b2aeae;
    font-weight: 600;
    font-style: italic;
    letter-spacing: -1px;
    margin: 0;
    order: 1;
}

.reason-right .reason-number .number {
    display: inline-block;
    font-size: 5rem;
    color: rgba(243, 216, 229, 1);
    font-weight: 600;
    font-family: "しっぽり明朝", serif;
    line-height: 0.8;
    margin: 0;
    order: 2;
}

/* Reason 02とReason 04のスタイル */
.reason-left .reason-number {
    display: flex;
    align-items: baseline;
    justify-content: flex-end;
    gap: 0; /* 間隔を0に変更 */
    margin-bottom: 30px;
    position: relative;
}

.reason-left .reason-number .support-text {
    display: inline-block;
    font-size: 1.4rem;
    color: #b2aeae;
    font-weight: 600;
    font-style: italic;
    letter-spacing: 0;
    margin: 0;
    order: 1;
}

.reason-left .reason-number .number {
    display: inline-block;
    font-size: 5rem;
    color: rgba(243, 216, 229, 1);
    font-weight: 600;
    font-family: "しっぽり明朝", serif;
    line-height: 0.8;
    margin: 0;
    order: 2;
}

/* モバイル対応 */
@media (max-width: 768px) {
    .reason-right .reason-number,
    .reason-left .reason-number {
        gap: 0; /* モバイルでも間隔を0に変更 */
        margin-bottom: 4px;
    }
    
    .reason-right .reason-number .number,
    .reason-left .reason-number .number {
        font-size: 4rem;
    }
    
    .reason-right .reason-number .support-text,
    .reason-left .reason-number .support-text {
        font-size: 0.9rem;
    }
}



/* ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー */
/* 紹介セクション */
.introduce {
    background: #fff;
}

.introduce-header {
    background: url('/wp-content/themes/WIM/images/suggestion_back.webp') center/cover no-repeat;
    padding: 80px 0;
    text-align: center;
}

.introduce-title {
    font-size: 2.5rem;
    color: #393939;
    margin: 0;
    font-weight: 600;
    font-family: "しっぽり明朝", serif;
}

.introduce-content {
    padding: 80px 0;
    background: #fff;
}

.introduce-wrapper {
    display: flex;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.introduce-image {
    flex: 0 0 50%;
    text-align: center;
}

.introduce-image img {
    width: 100%;
    max-width: 400px;
    height: auto;
}

.introduce-text {
    flex: 0 0 52%;
}

.introduce-blocks {
    display: flex;
	gap: 20px;
    margin-bottom: 30px;
}

.introduce-block {
    flex: 1;
}

.introduce-block ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.introduce-block li {
    font-size: 1rem;
    color: #393939;
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
    font-weight: 500;
}

.introduce-block li::before {
    content: "・";
    position: absolute;
    left: 0;
    color: #b52c6b;
    font-weight: bold;
}

.introduce-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #393939;
    text-align: justify;
    font-weight: 500;
	margin-left: 20px;
}
/* --------------------------------------- */
/* スタッフ紹介セクション */
.staff-section {
  width: 100%;
  background-color: #f9f8f8;
  padding: 100px 0;
}

.staff-container {
  max-width: 1200px !important;
  margin: 0 auto !important;
  display: grid !important;
  grid-template-columns: repeat(2, 480px) !important;
  gap: 24px 20px !important;
  justify-content: center !important;
  padding: 0 96px !important;
  box-sizing: border-box !important;
}

.staff-card {
  background: #fff;
  border: 1px solid #e6e6e6;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  display: flex !important;
  flex-direction: row !important;
  align-items: flex-start;
  padding: 20px 16px;
  gap: 20px;
  width: 100%;
  height: auto;
  min-height: 156px;
  box-sizing: border-box;
}

.staff-card:hover {
  transform: none;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.staff-image {
  flex-shrink: 0;
}

.staff-image img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}

.staff-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 6px;
  min-width: 0;
  overflow: hidden;
}

.staff-name {
  font-size: 1.1rem;
  margin: 0;
  color: #333;
  font-weight: 600;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.staff-title {
  font-size: 0.9rem;
  margin: 0;
  color: #555;
  font-weight: 500;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.reasons-section
.staff-instalink {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 8px 0 0;
}

.staff-instalink a {
  display: inline-block;
  transition: opacity 0.3s ease;
}

.staff-instalink a:hover {
  opacity: 0.7;
}

.staff-instalink img {
  width: 28px;
  height: 28px;
  display: block;
   margin-left: 8px;
}

.staff-insta-url {
  font-size: 1.1rem;
  color: #555;
  text-decoration: none;
  line-height: 1;
  white-space: nowrap;
}

.staff-insta-url:hover {
  color: #E1306C;
  text-decoration: underline;
}

.staff-text {
  font-size: 0.9rem;
  line-height: 1.4;
  color: #555;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* タブレット対応 */
@media (max-width: 1024px) {
  .staff-container {
    grid-template-columns: repeat(2, minmax(0, 480px)) !important;
    padding: 0 40px !important;
    gap: 20px 16px !important;
  }
}

/* スマホ対応 */
@media (max-width: 768px) {
  .staff-section {
    padding: 60px 0;
  }
  
  .staff-container {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
    padding: 0 20px !important;
  }
  
  .staff-card {
    flex-direction: row !important;
    text-align: left;
    align-items: flex-start;
    padding: 16px 20px;
    max-width: 100%;
    height: auto;
    min-height: 120px;
    gap: 16px;
  }
  
  .staff-image img {
    width: 80px;
    height: 80px;
  }
  
  .staff-content {
    gap: 4px;
  }
  
  .staff-name {
    font-size: 1rem;
  }
  
  .staff-title {
    font-size: 0.85rem;
  }
  
  .staff-instalink img {
    width: 18px;
    height: 18px;
  }
  
  .staff-insta-url {
    font-size: 0.8rem;
  }
  
  .staff-text {
    font-size: 0.85rem;
    white-space: normal;
    overflow: visible;
  }
}

/* デザイナー一覧ボタン */
.staff-button-wrapper {
  text-align: center;
  margin-top: 60px;
}

.btn-designer-list {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 16px 60px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  background: transparent;
  color: #b52c6b;
  border: 2px solid #b52c6b;
  box-shadow: 0 2px 4px rgb(127 30 75);
  overflow: hidden;
  z-index: 1;
  min-height: 70px;
}

/* グラデーション背景 */
.btn-designer-list::before {
  content: '';
  position: absolute;
  inset: 0;
  width: 0;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(181, 44, 107, 0.35) 0%,
    #b52c6b 60%,
    #8b1a4a 100%
  );
  transition: width 0.4s ease;
  z-index: -1;
  border-radius: 50px;
}

.main-text-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.5rem;
  letter-spacing: 0.15em;
  line-height: 1.2;
}

.icon {
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.sub-text {
  font-size: 0.85rem;
  opacity: 0.9;
  font-weight: 500;
  letter-spacing: 0.1rem;
  line-height: 1.2;
  transition: opacity 0.3s ease;
}

.btn-designer-list:hover::before {
  width: 100%;
}

.btn-designer-list:hover {
  color: #fff;
  border-color: #b52c6b;
  box-shadow: 0 4px 12px rgba(181, 44, 107, 0.3);
  transform: translateY(-2px);
}

.btn-designer-list:hover .icon {
  animation: pulse 0.6s ease;
}

.btn-designer-list:hover .sub-text {
  opacity: 1;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.2); }
}

.btn-designer-list:active {
  border-color: #8b1a4a;
  box-shadow: none;
  transform: translateY(0);
}

.btn-designer-list:active::before {
  background: #8b1a4a;
}

.btn-designer-list::after {
  display: none;
}

/* タブレット対応 */
@media (max-width: 1024px) {
  .staff-button-wrapper {
    margin-top: 50px;
  }
  
  .btn-designer-list {
    padding: 14px 50px;
    min-height: 65px;
  }
  
  .main-text-wrapper {
    font-size: 1.3rem;
  }
  
  .icon {
    font-size: 1rem;
  }
  
  .sub-text {
    font-size: 0.8rem;
  }
}

/* スマホ対応 */
@media (max-width: 768px) {
  .staff-button-wrapper {
    margin-top: 8px;
    padding: 16px 20px;
  }
  
  .btn-designer-list {
    width: 100%;
    max-width: 320px;
    padding: 14px 40px;
    min-height: 65px;
	margin-top: 32px;
  }
  
  .main-text-wrapper {
    font-size: 1.2rem;
    gap: 6px;
  }
  
  .icon {
    font-size: 0.95rem;
  }
  
  .sub-text {
    font-size: 0.75rem;
  }
}

@media (max-width: 480px) {
  .btn-designer-list {
    padding: 12px 32px;
    min-height: 60px;
  }
  
  .main-text-wrapper {
    font-size: 1.1rem;
  }
  
  .icon {
    font-size: 0.9rem;
  }
  
  .sub-text {
    font-size: 0.7rem;
  }
}
/* ====================
   レスポンシブ対応
==================== */
@media (max-width: 768px) {
  /* ヘッダーの調整 */
  .header {
    padding: 15px 20px;
  }
  
  /* ハンバーガーボタンを表示 */
  .hamburger-menu {
    display: flex;
  }
  
  /* PC用のナビゲーションを非表示 */
  .header-right-content {
    display: none;
  }
  
  /* モバイルメニューを表示可能にする */
  .mobile-menu.active {
    display: block;
  }
  
  /* フッターのレスポンシブ対応 */
  .footer-content {
    text-align: center;
	color: #a49a79;
  }
  
/*   .footer-ttl p {
    font-size: 28px;
  } */
  
  .footer-copyright {
    font-size: 12px;
  }
  
  /* Suggestionセクションのレスポンシブ対応 */
  .suggestion {
/*     padding-bottom: 192px; */
    margin-top: 60px;
    background-attachment: scroll; /* モバイルでは固定背景を無効化 */
/* 	height: 380px; */
  }
  
  .suggestion .container {
    gap: 30px;
  }
  
  .suggestion-image {
    max-width: 100%;
    padding: 0 20px;
  }
  
  .suggestion-text {
    padding: 0 20px;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero_content {
    padding: 0;
  }

  .hero-image {
    flex: none;
    order: 1;
  }

  .hero-text p {
    font-size: 1rem;
  }

  .feature {
    padding: 40px 0;
  }
  
  /* モバイル用画像表示、PC用画像非表示 */
  .feature-pc {
    display: none;
  }

  .feature-sp {
    display: block;
  }

  .reason-header,
  .introduce-header {
    padding: 60px 0;
	margin-top: 60px;
  }

  .reason-title-line1 {
    font-size: 2rem;
  }

  .reason-title-line2 {
    font-size: 1rem;
  }

  .introduce-title {
    font-size: 1.7rem;
  }

  .reason-content .reason-block-01,
  .reason-content .reason-block-02,
  .reason-content .reason-block-03,
  .reason-content .reason-block-04 {
    margin-bottom: 10px !important;
  }
  
  .reason-content .reason-block-04:last-child {
    margin-bottom: 0 !important;
  }

  .reason-block-content {
    flex-direction: column;
    gap: 45px;
  }

  .reason-block-02 .reason-block-content,
  .reason-block-04 .reason-block-content {
    flex-direction: column;
  }

  .reason-text {
    flex: none;
    order: 2;
	padding: 0 24px;
  }

  .reason-number {
    font-size: 4rem;
  }

  .reason-text h3 {
    font-size: 1.3rem;
  }
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
            .faq {
                padding: 0px 0;
            }

            .faq-banner h2 {
                font-size: 24px;
				margin: 30px 0;
            }

            .faq-toggle {
                width: 28px;
                height: 28px;
                font-size: 20px;
            }

            .faq-answer-content {
                padding: 0 20px 20px;
            }

            .faq-answer p {
                font-size: 1rem;
				padding-left: 28px;
				line-height: 1.5;
            }
        }
/* タブレット対応 */
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .strength-container,
  .strength-blocks {
    padding: 0 40px;
    max-width: 960px;
  }

  .strength-content {
    gap: 60px;
  }

  .strength-text-side,
  .strength-right {
    flex: 0 0 48%;
    max-width: 48%;
  }

  .strength-image-side,
  .strength-left {
    flex: 0 0 48%;
    max-width: 48%;
  }

  .strength-purple-box h3 {
    font-size: 17px;
  }

  .strength-text p {
    font-size: 15px;
  }
	
  .our_strength_disc ._2{
		font-size: 2rem;
	}
}
	
@media (max-width: 768px) {
  /* カルーセルセクションのテキスト改行調整 */
  .carousel-slide .slide-content p {
    font-size: 14px;
    line-height: 1.6;
    word-break: keep-all;
    overflow-wrap: break-word;
  }
}
@media (max-width: 480px) {
 .carousel-slide {
    flex: 0 0 calc(100% - 20px);
  }

  .carousel-container { 
	  padding: 0 10px;
	}

  /* 悩みセクションのタイトル改行調整 */
 .worry-title {
     font-size: 1rem;
     line-height: 1.3;
     word-break: break-word;
     overflow-wrap: break-word;
	 margin-top: 8px;
	}

  /* 悩みセクションの説明文改行調整 */
  .worry-description {
    font-size: 14px;
    line-height: 1.3;
    word-break: keep-all;
    overflow-wrap: break-word;
  }

  /* インスタグラム時代セクションのテキスト改行調整 */
  .main-title {
    font-size: 22px;
    line-height: 1.6;
    word-break: keep-all;
    overflow-wrap: break-word;
  }

  .explanation-1 {
    font-size: 1.25rem;
    line-height: 1.6;
    word-break: keep-all;
    overflow-wrap: break-word;
  }

  .explanation-2 {
    font-size: 1.1rem;
    line-height: 1.6;
	padding: 0 36px;
    word-break: break-all;
    overflow-wrap: break-word;
	  text-align: left;
  }

  /* 強みセクションのテキスト改行調整 */
  .our_strength_disc ._1 {
    font-size: 1.8rem;
    line-height: 1.4;
    word-break: keep-all;
    overflow-wrap: break-word;
  }

  .our_strength_disc ._2 {
    font-size: 1.8rem;
    line-height: 1.4;
    word-break: keep-all;
    overflow-wrap: break-word;
	  letter-spacing: -2px;
  }

.our_strength_disc ._3 {
  font-size: 1.1rem;
  line-height: 1.6;
  letter-spacing: 0px;
  text-align: center;
}

/* PC表示時の改行を非表示 */
.pc-only {
  display: none;
}
/* ------------ */
  /* 強みブロックのテキスト改行調整 */
  .strength-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    word-break: break-word;
    overflow-wrap: break-word;
	text-align: justify;
  }

  /* 提案セクションのテキスト改行調整 */

  .suggestion-text p {
    font-size: clamp(14px, 3.75vw, 16px);
    line-height: 1.7;
    margin-top: 28px;
    text-align: center;
    white-space: normal;
    word-break: normal;
    overflow-wrap: anywhere;
    line-break: strict;
}

/* PC用改行を非表示 */
  .pc-only {
    display: none;
  }
  
  /* SP用改行を表示 */
  .sp-only {
    display: inline;
  }

/* ----------------------------------------------- */
/* ===== introduce：2列・中央寄せ・「・」の詰め（セクション限定） ===== */
.introduce .introduce-text{
  width: min(920px, 92%);
  margin-inline: auto;
}

.introduce .introduce-blocks{
  display: grid;
  grid-template-columns: repeat(2, auto);
  justify-content: center;
  align-items: start;
  column-gap: 40px;
  row-gap: 16px;
  margin: 0 auto 30px;
  text-align: left;
}

.introduce .introduce-block{ 
  display: flex; 
  flex-direction: column; 
  gap: 8px; 
}

.introduce .introduce-block ul{
  list-style: none;
  margin: 0;
  padding: 0;
}

.introduce .introduce-block li{
  display: flex;
  align-items: center; 
  gap: .3em;
  white-space: normal;
  font-size: .95rem;
  line-height: 1.8;
  font-weight: 500;
  color: #393939;
}

.introduce .introduce-block li::before{
  content: "・";
  color: #b52c6b;
  font-weight: 700;
  flex-shrink: 0;
}

.introduce-description{
  text-align: left;
  margin: 0 0 0 20px;
}

/* タブレット：769px〜1024px */
@media (min-width: 769px) and (max-width: 1024px){
  .introduce-wrapper{
    flex-direction: column;
    gap: 40px;
  }
  .introduce-image{
    order: 1;
  }
  .introduce-text{
    order: 2;
  }
  .introduce .introduce-blocks{
    grid-template-columns: repeat(2, auto);
    column-gap: 32px;
  }
}

/* 768px：481px〜768px（画像上、2列リスト、左揃え） */
@media (min-width: 481px) and (max-width: 768px){
  .introduce-wrapper{
    flex-direction: column;
    gap: 30px;
    padding: 0 20px;
  }
  .introduce-image{
    order: 1;
    width: 100%;
    text-align: center;
  }
  .introduce-image img{
    max-width: 300px;
    width: 100%;
  }
  .introduce-text{
    order: 2;
    width: 100%;
  }
  .introduce .introduce-blocks{
    grid-template-columns: repeat(2, auto);
    column-gap: 28px;
    justify-content: start;
    justify-items: start;
  }
  .introduce-description{
    margin-left: 20px;
  }
}

/* 480px以下（画像上、2列リスト、左揃え） */
@media (max-width: 480px){
  .introduce-wrapper{
    flex-direction: column;
    gap: 30px;
    padding: 0 20px;
  }
  .introduce-image{
    order: 1;
    width: 100%;
    text-align: center;
  }
  .introduce-image img{
    max-width: 280px;
    width: 100%;
  }
  .introduce-text{
    order: 2;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .introduce .introduce-blocks{ 
    grid-template-columns: repeat(2, auto);
    justify-content: center;
    column-gap: 24px;
    row-gap: 12px;
    width: fit-content;
  }
  .introduce .introduce-block li{ 
    font-size: .85rem;
    line-height: 1.7;
  }
  .introduce-description{
    margin-left: 0;
    font-size: 0.85rem;
    text-align: left;
    width: fit-content;
    align-self: flex-start;
    margin-left: calc((100% - fit-content) / 2);
  }
}
/* =========================================================
   About（page-id-301）だけのボタン最適化
========================================================= */
@media (max-width: 768px) {  

	
  .btn-consultation {
    display: flex;
    margin-left: auto;
    margin-right: auto;
  }
  
  /* レスポンシブ時のボタンホバー効果 */
  .btn:hover {
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
  }
  
  .btn-faq:hover {
    background: #8b1a4a;
  }
  
  .btn-contact:hover {
    background: #c2410c;
  }
  
  .btn-consultation:hover {
    background: #ea580c;
  }
	
  .btn_single {
    padding: 32px;
  }
	
/* 	 Aboutページ専用：ボタンサイズを他ページと統一  */
  .page-id-301 .btn,
  .page-id-301 .btn-consultation,
  .page-id-301 .btn-service {
    width: 85% !important;
    max-width: 280px !important;
    font-size: 1.2rem !important;
    padding: 18px 32px !important;
    min-height: 64px !important;
    height: auto !important;
    margin: 0 auto 24px !important;
  }
}
/* ------------------------ */

/* =========================================================
   reasons（769〜1024px：画像→テキスト、中央1カラム）
   ========================================================= */
/* 画像をコラム中央に固定（769–1024px） */
@media (min-width: 769px) and (max-width: 1024px){
  /* 万一の横流し指定や幅固定をリセット */
  section.reasons-section .reason-image{
    float: none;               
    clear: both;
    display: block;             /* flex/inlineの影響を断つ */
    width: 100%;
    margin: 0 auto 16px;        /* コラム内で中央 */
    padding: 0;                 /* 余計な左右パディングを排除 */
  }

  /* 画像そのものを“幅100%・中央”に */
  section.reasons-section .reason-image img{
    display: block;
    width: 100% !important;     /* 列幅いっぱい（ズレ防止） */
    max-width: 100% !important;
    height: auto;
    margin: 0 auto;             /* 念のため中央 */
  }
}

  /* テキストは列内で100%幅、左揃えのまま */
  section.reasons-section .reason-text{
    width: 100%;
    margin: 0 auto;
    text-align: left;
  }

  /* SUPPORT 01 の行を列の左起点に揃える（中央列の中での左） */
  section.reasons-section .reason-number{
    display: flex;
    justify-content: flex-start;
/*     gap: 8px; */
    width: 100%;
/*     margin: 0 auto 8px; */
  }
}

/* 〜480px：余白だけ少しタイトに（任意） */
@media (max-width: 480px){
  section.reasons-section > .container{ padding: 0 8px; }
  section.reasons-section .reason-content{ max-width: 100% !important; }
  
  .hero_content .hero-content-wrapper {
    padding: 0 12px;
  }
}

/* PC */
@media (min-width: 1025px){
  section.reasons-section > .container{
    box-sizing: border-box;
    max-width: 1248px;
    margin: 0 auto;
    padding: 0 96px;
  }
  
  .reasons-section .reason-content{
    display: flex;
    align-items: center;
  }
  .reasons-section .reason-image img{
    display: block;
    width: 100%;
    height: auto;
  }
}

/* ==== Chips: reasons-section 内だけに適用 ==== */
section.reasons-section .adl-chips {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 14px;
  width: 100%;
  box-sizing: border-box;
}

section.reasons-section .adl-chips .chip {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 16px;
  border-radius: 12px;
  background: #da96b5;
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1;
  white-space: nowrap;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
  text-decoration: none;
  box-sizing: border-box;
  
}

/* スマホ対応 */
@media (max-width: 480px) {
  section.reasons-section .adl-chips {
    gap: 10px;
    grid-template-columns: 1fr;
    padding: 0 16px;
	
  }
  
  section.reasons-section .adl-chips .chip {
    min-height: 40px;
    padding: 10px 12px;
    font-size: clamp(12px, 3.5vw, 15px);
  }
	
}

/* タブレット対応 */
@media (min-width: 481px) and (max-width: 1024px) {
  section.reasons-section .adl-chips {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* PC：Reason04 の下段（3番目・4番目）だけ 2行まで折り返し */
@media (min-width: 1025px) {
  section.reasons-section .adl-chips[data-adl="r01chips-04"] .chip:nth-child(n+3) {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    white-space: normal;
    text-align: center;
    line-height: 1.3;
    min-height: 56px;
    padding: 6px 16px;
  }
}



/* ----------- */
/* 共通のフレーム値（必要なら数値だけ変えてOK） */
:root{
  --page-max: 1248px;
}
@media (min-width:1025px){ :root{ --page-gutter: 96px; } }    /* PC */
@media (min-width:769px) and (max-width:1024px){ :root{ --page-gutter: 30px; } }  /* TB */
@media (max-width:768px){ :root{ --page-gutter: 20px; } }    /* SP */
/* ① ピンク見出し帯（タイトルセクション） */
section.hero-ttl > .container{
  box-sizing: border-box;
  max-width: var(--page-max);
  margin: 0 auto;
  padding-inline: var(--page-gutter);
}

/* ② reasons セクション */
section.reasons-section > .container{
box-sizing: border-box;
  max-width: 1248px;
  margin: 0 auto;
  padding: 0 20px;  
}

.reasons-section .reason-image img{
  display: block;
  max-width: 100%;
  height: auto;
}
/* - */
.reasons-section .reason-number{
  display: flex;
  align-items: baseline;    /* 文字のベースライン揃え */
}

/* 並び順：数字 → SUPPORT に入れ替え */
.reasons-section .reason-number .number{ order: 1; }
.reasons-section .reason-number .support-text{ order: 2; }

/* 個別の微調整ノブ */
.reasons-section .reason-number .number{
  line-height: 1;           /* 数字が大きい時の縦詰め */
  margin-right: .2em;       /* 数字→SUPPORT の片側だけ間隔調整 */
  position: relative;
  top: .02em;               /* 数字だけ上下微調整（±で調整） */
}

.reasons-section .reason-number .support-text{
  position: relative;
  top: -.02em;              /* SUPPORTだけ上下微調整 */
}

/* =======================================
   hero_content セクション専用調整
   ======================================= */
/* .hero_content .hero-content-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
} */

.hero_content .hero-image {
    flex: 0 0 auto;
    text-align: center;
}

.hero_content .hero-image img {
    display: block;
    margin: 0 auto;
}
/* --------------------------------------------------- */
/* お問い合わせセクション */
.contact-section {
  padding: 80px 0 100px;
  background: #fff;
}

.contact-intro {
  text-align: center;
}

/* お問い合わせセクション - 説明文 */
.contact-description {
  display: inline-block;   
  margin: 0;
  line-height: 1.8;
  color: #4d4d4d;
  margin-bottom: 40px;
  font-size: 1.2rem;
  font-weight: 600;
  white-space: nowrap;
}

/* フォームラッパー */
.contact-form-wrapper {
  max-width: 600px;
  margin: 0 auto;
}

/* Contact Form 7のスタイリング */
.wpcf7 {
  background: #fff;
}

.wpcf7-form {
  display: flex;
  flex-direction: column;
  gap: 24px; 
}

.wpcf7-form p {
  margin: 0;
  display: flex;
  flex-direction: column;
}

.wpcf7-form label {
  display: block;
  font-size: 14px;
  color: #333;
  margin-bottom: -20px;
  margin-top: 0;
  font-weight: 500;
}

/* 入力フィールド */
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  font-size: 14px;
  background: #fafafa;
  transition: all 0.3s ease;
  box-sizing: border-box;
  margin-top: 0;
}

.wpcf7-form input[type="text"]:focus,
.wpcf7-form input[type="email"]:focus,
.wpcf7-form textarea:focus {
  outline: none;
  border-color: #c2185b;
  background: #fff;
}

.wpcf7-form textarea {
  min-height: 200px;
  resize: vertical;
  font-family: inherit;
}

label[for="cf7-your-name"]::after,
label[for="cf7-your-email"]::after,
label[for="cf7-your-message"]::after{
  content:" *";
  color:#b52c6b;
  font-weight:600;
}


/* 送信ボタン */
/* transitionの対象プロパティを明示 */
.wpcf7-form input[type="submit"] {
  background: #fff;
  color: #333;
  border: 1px solid #333;
  padding: 15px 92px;
  font-size: 14px;
  border-radius: 30px;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease; /* 明示的に指定 */
  margin: 20px auto 0;
  display: block;
  letter-spacing: 0.05em;
}

.wpcf7-form input[type="submit"]:hover {
  background: #333;
  color: #fff;
}

/* バリデーションメッセージ */
.wpcf7-not-valid-tip {
  color: #c2185b;
  font-size: 12px;
  margin-top: 5px;
  display: block;
}

.wpcf7-response-output {
  margin: 20px 0 0;
  padding: 15px;
  border-radius: 4px;
  text-align: center;
}

.wpcf7-mail-sent-ok {
  border: 1px solid #4caf50;
  background: #e8f5e9;
  color: #2e7d32;
}

.wpcf7-validation-errors,
.wpcf7-mail-sent-ng {
  border: 1px solid #c2185b;
  background: #fce4ec;
  color: #c2185b;
}

/* タブレット対応（769px〜1024px） */
@media (min-width: 769px) and (max-width: 1024px) {
  .contact-description {
    font-size: 1.1rem;
    line-height: 1.75;
    padding: 0 20px;
  }
}

/* レスポンシブ対応 */
@media screen and (max-width: 768px) {
  .hero-ttl {
    padding: 40px 0;
	margin-bottom: 40px;
  }
  
  .hero-title {
    font-size: 24px;
  }
  
  .contact-section {
    padding: 50px 20px 60px;
  }
  
  .contact-intro {
    margin-bottom: 40px;
    padding: 0 10px;
  }
  
  .contact-description {
    white-space: normal;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 32px;
    letter-spacing: 0.02em;
    padding: 0 10px;
  }
  
  .contact-form-wrapper {
    padding: 0 10px;
  }
}

/* 480px以下：文字を少し縮めて2行のまま収める */
/* 480px以下：自動折返し許可＝最大3行に */
@media (max-width: 480px){
  .contact-intro { text-align: center; }
  .contact-section {
    padding: 40px 16px 50px;
  }
  
  .contact-intro {
    text-align: center;
    padding: 0;
  }
  
  .contact-description {
   white-space: normal;  /* 改行を許可 */
    font-size: clamp(14px, 4vw, 16px);
    line-height: 1.9;  /* 行間を広げる */
    margin-bottom: 28px;
    letter-spacing: 0.01em;
    padding: 0 12px;
    max-width: 100%;
    display: block;
    max-width: 100%;
  }
	
	/* SP用の改行を確実に表示 */
  .contact-description br.sp-only {
    display: block !important;
  }
  
  .contact-form-wrapper {
    padding: 0;
  }
	

  .wpcf7-form input[type="text"],
  .wpcf7-form input[type="email"],
  .wpcf7-form textarea {
    font-size: 16px; /* iOSのズーム防止 */
  }
  
  .wpcf7-form input[type="submit"] {
    width: 100%;
    max-width: 280px;
    padding: 15px 40px;
    font-size: 15px;
  }
}
/* -----------------------thanks */
/* サンクスセクション */
.thanks-section {
  padding: 80px 0 120px;
  background: #fff;
}

.thanks-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

/* アイコン */
.thanks-icon {
  margin-bottom: 30px;
  animation: scaleIn 0.5s ease-out;
}

@keyframes scaleIn {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* タイトル */
.thanks-title {
  font-size: 28px;
  font-weight: 500;
  color: #333;
  margin: 0 0 30px;
  letter-spacing: 0.05em;
}

/* メッセージ */
.thanks-message {
  font-size: 16px;
  line-height: 2;
  color: #494949;
  margin: 0 0 30px;
}

.thanks-note {
  font-size: 14px;
  line-height: 1.8;
  color: #595959;
  margin: 0 0 50px;
  padding: 20px;
  background: #f9f9f9;
  border-radius: 8px;
}

/* ボタン */
.thanks-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.btn.btn-primary {
  display: inline-block;
  background: #b52c6bc2;
  color: #fff;
  border: none;
  padding: 15px 50px;
  font-size: 1rem;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
  letter-spacing: 0.05em;
}

/* .btn-primary:hover {
  background: #b52c6b;
  color: #fff;
} */

/* レスポンシブ対応 */
@media screen and (max-width: 768px) {
  .hero-title {
    font-size: 24px;
  }
  
  .thanks-section {
    padding: 50px 0 80px;
  }
  
  .thanks-icon svg {
    width: 60px;
    height: 60px;
  }
  
  .thanks-title {
    font-size: 22px;
  }
  
  .thanks-message {
    font-size: 14px;
  }
  
  .thanks-note {
    font-size: 13px;
    padding: 15px;
  }
  
  .btn-primary {
    width: 100%;
    max-width: 300px;
  }
}
/* ------------------------- */
/* =========================
   Header buttons
   ========================= */
.header .nav-buttons .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;    /* ← お問い合わせと同寸 */
  border-radius: 0;     
  font-size: 1.1rem;  /* 文字サイズを固定して揃える */
  line-height: 1;         
  font-weight: 500;
  font-family: inherit;
  text-decoration: none;
  box-shadow: 0 2px 2px rgba(0,0,0,0.2), 0 -4px 5px -2px #8e2f57 inset;
  transform: none;
  transition: background-color .2s ease, filter .2s ease;
  height: auto;           
  gap: 0;                
}
.header .nav-buttons .btn::after {
  content: none;          /* ▶ の擬似要素をヘッダーでは無効化 */
}
.header .nav-buttons .btn:hover,
.header .nav-buttons .btn:active,
.header .nav-buttons .btn:focus {
  box-shadow: none;
  transform: none;        /* “巨大な背景”に見える崩れの根を断つ */
}

/* よくある質問（紫） */
.header .nav-buttons .btn-primary {
  background: #b52c6b;
  color: #fff;
}
.header .nav-buttons .btn-primary:hover {
  background: #8b1a4a;
}

/* お問い合わせ（オレンジ） */
.header .nav-buttons .btn-secondary {
  background: #f97316;
  color: #fff;
}
.header .nav-buttons .btn-secondary:hover {
  background: #c2410c;
}

/* タブレット微調整（既存方針を踏襲） */
@media (min-width: 843px) and (max-width: 1024px) {
  .header .nav-buttons { gap: 10px; }
  .header .nav-buttons .btn { padding: 12px 24px; font-size: 15px; }
}
/* 小さめタブレット */
@media (min-width: 769px) and (max-width: 842px) {
  .header .nav-buttons { gap: 8px; }
  .header .nav-buttons .btn { padding: 10px 20px; font-size: 14px; }
}


/* お問い合わせ（#f97316）*/
.header .nav-buttons .btn-secondary {
  background: #f97316 !important;
  color: #fff !important;
}
.header .nav-buttons .btn-secondary:hover {
  background: #c2410c !important;
}

/* =========================
   FIX: common-concerns の画像はみ出し(SP)
   ========================= */
@media (max-width: 768px) {
  .common-concerns picture img,
  .concerns-image-full img {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    height: auto !important;
    transform: none !important;         
    object-fit: contain;    
	margin: 40px 0 60px;
  }
}
/* -------------------------------------- */
@media (max-width: 768px) {
  /* introduce：左右並びを縦並びに */
  .introduce .introduce-wrapper {
    flex-direction: column;
  }
  .introduce .introduce-image,
  .introduce .introduce-text {
    padding: 20px 0;
  }
}

/* 一度だけ共通CSSに置く */
.sr-only{
  position:absolute !important; width:1px; height:1px; margin:-1px;
  overflow:hidden; clip:rect(0,0,0,0); clip-path:inset(50%);
  white-space:nowrap; border:0; padding:0;
}

/* FAQセクションの左右余白を強制適用 */
.faq .container {
  padding: 0 20px !important;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .faq .container {
    padding: 0 20px !important;
  }
}

@media (max-width: 480px) {
  .faq .container {
    padding: 0 20px 40px !important;
  }
}

@media (max-width: 768px) and (min-width: 481px) {
  .tablet-only {
    display: inline;
  }
  .sp-only:not(.tablet-only) {
    display: none;
  }
}

@media (max-width: 480px) {
  .sp-only {
    display: inline;
  }
}