@charset "UTF-8";

html {
    overflow-x: hidden;
    width: 100%;
}

body {
    margin: 0;
    overflow-x: hidden;
    width: 100%;
    color: #333333;
    font-family:
      "Yu Gothic",
      "游ゴシック",
      "YuGothic",
      "Hiragino Kaku Gothic ProN",
      "Hiragino Sans",
      Meiryo,
      sans-serif;
  }


a{
color:#009b63;
text-decoration: underline;
}

a:hover{
opacity: 0.6;
}

em{
font-style:normal;
}

p {
  font-size: 18px!important;
  line-height: 1.8; /* 読みやすさのために行間も整えると◎ */
}

@media screen and (max-width: 750px) {
  p {
    font-size: 16px!important; /* スマホでの可読性を重視 */
  }
}


/* 見出しと段落を対象に設定 */
h1, h2, h3, h4, h5, h6, p {
  letter-spacing: 0.08em;
}



.clear{
clear:both;
}

.clearfix:after {
  content: "";
  display: block;
  clear: both;
} 
.clearfix:before {
  content: "";
  display: block;
  clear: both;
} 
.clearfix {
  display: block;
}




/*========== header ==========*/
header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 60px;
}

/* ===== ロゴ ===== */
.logo img {
  height: 60px;
}

/* ===== 電話エリア（PC） ===== */
.tel-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-left: auto;
}

.tel-number {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 36px!important;
  font-weight: bold;
  text-decoration: none;
  color: #333333;
}

.tel-number img {
  width: 26px;
  height: 26px;
}

.tel-time {
  font-size: 16px!important;
  margin-top: 2px;
}

/* ===== SP ===== */
@media screen and (max-width: 768px) {

  .header-inner {
    padding: 10px 15px;
  }

  .logo img {
    height: 36px;
  }

  .tel-number {
    font-size: 22px!important;
    gap: 5px;
  }

  .tel-number img {
    width: 16px;
    height: 16px;
  }

  .tel-time {
    font-size: 11px!important;
  }
}



/*========== FV ==========*/
.fv {
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.fv img {
  width: 100%;
  height: 100%;
  object-fit: cover;   /* 画面いっぱい＆はみ出しOK */
  object-position: top center; /* 上に合わせる */
  display: block;
}




/*========== 悩みセクション ==========*/
.section-nayami {
  background: #F9E5E5;
  padding-top: 76px;
  text-align: center;
  overflow: hidden; /* 画像のはみ出し防止 */
}

/* タイトル */
.section-nayami h2 {
  font-size: 39px;
  font-weight: bold;
  line-height: 1.5;
  margin: 0;
}

/* ピンクライン */
.section-nayami .accent {
  background: linear-gradient(transparent 60%, #f3b6b6 60%);
}

/* 画像エリア */
.section-nayami .nayami-image {
  width: 1100px;
  max-width: 100%;
  display: block;
  margin: 0 auto;
}

.section-nayami .nayami-image img {
  width: 100%;
  height: auto;
  display: block; /* これで画像下の謎の隙間（ベースライン余白）を解消 */
  vertical-align: bottom; /* 念押しで隙間を消す設定 */
}

/* ===== スマホ対応 (750px以下) ===== */
@media screen and (max-width: 750px) {
  .section-nayami {
    padding-top: 50px;
    padding-bottom: 0; /* セクション自体の下の余白を0にして画像と密着させる */
  }

  .section-nayami h2 {
    font-size: 26px;
    line-height: 1.4;
    margin-bottom: 10px; /* タイトルと画像の間の距離 */
  }

  /* HTML側のmedia属性も750pxに揃えるのがおすすめです */
}


/*========== 解決セクション ==========*/
.section-kaiketu {
  background: #F7F0F0;
  padding: 40px 0 60px;
  text-align: center;
}

/* タイトル */
.section-kaiketu h2 {
  font-size: 39px;
  font-weight: bold;
  line-height: 1.5;
  margin: 0 0 80px;
}

/* ピンクライン */
.section-kaiketu .accent {
  background: linear-gradient(transparent 60%, #f3b6b6 60%);
}

/* 逆三角形 (PC) */
.section-kaiketu h2::before {
  content: "";
  display: block;
  margin: 0 auto 30px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 47px 73px 0 73px;
  border-color: #f3b6b6 transparent transparent transparent;
}

/* 改行クラスの初期設定（PCでは非表示） */
.section-kaiketu .sp-br {
  display: none;
}

/* 3カラムコンテナ */
.section-kaiketu .kaiketu-container {
  max-width: 1100px;
  margin: 0 auto;
}

.section-kaiketu .point-inner {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

/* カード本体 */
.section-kaiketu .point-card {
  background: #fff;
  border: 1px solid #F3B6B6;
  border-radius: 10px;
  padding: 50px 25px 30px;
  width: 33.3%;
  position: relative;
  text-align: center;
  box-sizing: border-box;
}

/* 数字 (丸) */
.section-kaiketu .point-number {
  position: absolute;
  top: -35px;
  left: 50%;
  transform: translateX(-50%);
  background: #AD524F;
  color: #fff;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  font-weight: bold;
}

.section-kaiketu .point-title {
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #333;
  line-height: 1.3;
}

.section-kaiketu .point-image {
  width: 120px;
  height: 120px;
  margin: 0 auto 20px;
}

.section-kaiketu .point-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.section-kaiketu .point-text {
  text-align: left;
  font-size: 15px;
  line-height: 1.8;
  margin: 0;
}

/* ボタン */
.section-kaiketu .kaiketu-btn {
  text-align: center;
  margin-top: 60px;
}

.section-kaiketu .kaiketu-btn img {
  width: 506px;
  max-width: 100%;
  height: auto;
}

/* ===== スマホ対応 (750px以下) ===== */
@media screen and (max-width: 750px) {
  .section-kaiketu {
    padding: 30px 20px 30px;
  }

  .section-kaiketu h2 {
    font-size: 26px;
    line-height: 1.4;
    margin-bottom: 60px;
  }

  /* SPで改行を有効化 */
  .section-kaiketu .sp-br {
    display: block;
  }

  /* 逆三角形 (SP) */
  .section-kaiketu h2::before {
    border-width: 30px 45px 0 45px;
    margin-bottom: 20px;
    margin-top: 0;
  }

  .section-kaiketu .point-inner {
    flex-direction: column;
    align-items: center;
    gap: 60px;
  }

  .section-kaiketu .point-card {
    width: 100%;
    max-width: 400px;
  }

  .section-kaiketu .point-title {
    font-size: 24px;
  }

  .section-kaiketu .kaiketu-btn {
    margin-top: 25px;
  }
}




/*========== 理念セクション ==========*/
.section-rinen {
  width: 100%;
  min-height: 480px;
  padding: 80px 0;
  /* 画像パスは環境に合わせて調整してください */
  background: url(../../images/rinen_img01.jpg) no-repeat right top;
  background-size: auto 499px;
}

.section-rinen .rinen-inner {
  max-width: 1100px;
  margin: 0 auto;
}

/* テキスト幅・共通制御 */
.section-rinen h2,
.section-rinen .rinen-desc,
.section-rinen .rinen-text {
  max-width: 720px;
}

/* 小見出し */
.section-rinen .rinen-lead {
  color: #B8423D;
  font-size: 23px!important;
  margin-bottom: 20px;
}

/* メイン見出し */
.section-rinen h2 {
  font-size: 35px;
  line-height: 1.6;
  margin-bottom: 30px;
  font-weight: bold;
}

/* マーカー風アクセント */
.section-rinen .accent {
  background: linear-gradient(transparent 60%, #FFD0D0 60%);
	color: #B22E2A;
}

/* 説明文 */
.section-rinen .rinen-desc {
  font-size: 14px;
  line-height: 2;
  font-weight: bold;
}

/* 画像エリア：PC用 */
.rinen-fullimg img {
  width: 100%;
  height: auto;
  display: block;
}

/* 画像エリア：SP用（デフォルト非表示） */
.rinen-spimg {
  display: none;
}

/* 改行クラスの初期設定 */
.section-rinen .pc-br { display: inline; }
.section-rinen .sp-br { display: none; }

/* ===== スマホ対応 (750px以下) ===== */
@media screen and (max-width: 750px) {
  .section-rinen {
    background: none;
    padding: 60px 30px 0;
  }

  .section-rinen .rinen-inner,
  .section-rinen h2,
  .section-rinen .rinen-desc,
  .section-rinen .rinen-text {
    max-width: none;
  }

  .section-rinen h2 {
    font-size: 28px;
  }

  /* SPでの改行出し分け：pc-brを消してsp-brを出す（3行化対応） */
  .section-rinen .pc-br { display: none; }
  .section-rinen .sp-br { display: block; }

  /* クラス指定がない通常のbrや説明文内のbrをSPで無効化 */
  .section-rinen h2 br:not(.sp-br),
  .section-rinen .rinen-desc br {
    display: none;
  }

  /* SP画像の表示設定 */
.rinen-spimg {
    display: block;
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
    margin-top: 40px;
    margin-bottom: 0;
    overflow: hidden;
}

  .rinen-spimg img {
    width: 100%;
    height: auto;
    display: block;
  }

  .rinen-fullimg {
    display: none;
  }
}

/*========== 3つの誠実セクション ==========*/
.section-rinen3 {
  padding: 80px 0;
  background: #fff;
  text-align: center;
}

.section-rinen3 .rinen3-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* メイン見出し */
.section-rinen3 h2 {
  font-size: 35px;
  font-weight: bold;
  margin-bottom: 60px;
  color: #333;
  line-height: 1.4;
}

.section-rinen3 h2 span {
  color: #B8423D;
}

/* 3カラムコンテナ */
.rinen3-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}

.rinen3-card {
  flex: 1;
}

/* 数字装飾 (01, 02...) */
.rinen3-number {
  font-size: 60px;
  font-weight: bold;
  color: #F4CBCB;
  line-height: 1;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

/* 数字横の斜線（左 \ 右 / ） */
.rinen3-number::before,
.rinen3-number::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 1px;
  height: 30px;
  background-color: #F4CBCB;
}

.rinen3-number::before {
  left: -25px;
  transform: translateY(-50%) rotate(-25deg);
}

.rinen3-number::after {
  right: -25px;
  transform: translateY(-50%) rotate(25deg);
}

/* カードタイトル */
.rinen3-title {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #333;
}

/* イラスト画像エリア */
.rinen3-image {
  width: 100%;
  max-width: 240px;
  margin: 0 auto 20px;
  position: relative;
}

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

/* 説明文 */
.rinen3-text {
  font-size: 15px;
  line-height: 1.8;
  text-align: left;
  color: #333;
  margin: 0;
}

.rinen3-text strong {
  font-weight: bold;
}

/* SP用改行（デフォルト非表示） */
.rinen3-text .sp-br {
  display: none;
}

/* ===== スマホ対応 (750px以下) ===== */
@media screen and (max-width: 750px) {
  .section-rinen3 {
    padding: 50px 0;
  }

  .section-rinen3 h2 {
    font-size: 24px;
    margin-bottom: 30px;
    padding: 0 10px;
  }

  /* カード同士の上下の隙間をギュッと詰める */
  .rinen3-container {
    flex-direction: column;
    align-items: center;
    gap: 20px; 
  }

  /* カードデザイン：ボーダー2px・角丸15px */
  .rinen3-card {
    width: 100%;
    max-width: 340px;
    border: 2px solid #F1DEDE; 
    border-radius: 15px;      
    padding: 20px 15px;       
    background-color: #fff;
    box-sizing: border-box;
  }

  .rinen3-number {
    font-size: 50px;
    margin-top: 5px;
    margin-bottom: 10px;
  }

  .rinen3-title {
    font-size: 22px;
    margin-bottom: 15px;
  }

  /* イラストを小さくして高さを抑える */
  .rinen3-image {
    max-width: 160px; 
    margin-bottom: 10px;
  }

  .rinen3-text {
    text-align: center;
    min-height: 0; 
  }

  /* スマホ用改行を有効化 */
  .rinen3-text .sp-br {
    display: block;
  }
}




/*========== 保証セクション ==========*/
.section-hosyou {
  background-color: #F9E5E5;
  padding: 80px 0;
  text-align: center;
}

.section-hosyou .hosyou-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.hosyou-lead {
  color: #B8423D;
  font-size: 18px;
  margin-bottom: 15px;
}

/* 帯（バッジ）：完全無料のサイズと文字間 */
.hosyou-badge {
  display: inline-block;
  background-color: #B8423D;
  color: #fff;
  padding: 10px 30px;
  border-radius: 5px;
  font-weight: bold;
  font-size: 18px; /* ← ここでサイズ調整（お好みで増減してください） */
  margin-bottom: 25px;
  letter-spacing: 0.2em;
}

.section-hosyou h2 {
  font-size: 35px;
  font-weight: bold;
  margin-bottom: 50px;
  color: #333;
  line-height: 1.4;
}

.section-hosyou h2 span {
  background: linear-gradient(transparent 60%, #f3b6b6 60%);
	color:#B22E2A;
}

/* SP用改行の基本設定 */
.section-hosyou .sp-br { display: none; }

/* カードコンテナ */
.hosyou-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 10px; /* カード下の注釈との隙間を詰めました */
}

/* カード本体：はっきりした影 */
.hosyou-card {
  flex: 1;
  max-width: 520px;
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 10px 10px 0 rgba(184, 66, 61, 0.1); 
  display: flex;
  flex-direction: column;
}

.hosyou-image {
  padding: 20px 20px 0;
}

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

.hosyou-content {
  padding: 30px 30px 35px;
  text-align: center;
}

.hosyou-title {
  font-size: 28px; 
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: 20px;
  color: #333;
}

.hosyou-title span {
  color: #B8423D;
}

.hosyou-text {
  font-size: 15px;
  line-height: 1.7;
  text-align: left;
  color: #333;
}
.hosyou-text .atnt{
display:block;
margin-top:5px;
font-size:0.9em!important;
line-height:1.2em!important;
letter-spacing:0;
border:solid 1px #bababa;
border-radius:5px;
padding:10px;
}
.hosyou-text .atnt em{
font-weight:bold;
}

/* 注釈：さらに小さく、位置をカードに近づけました */
.hosyou-note {
  font-size: 14px!important; /* ← ここでサイズ調整 */
  text-align: left;
  max-width: 1070px;
  margin: 0 auto;
  padding-left: 10px;
	 padding-top: 10px;
	line-height:1.6em;
}
.hosyou-note em{
  font-weight:bold;
}


/* ===== スマホ対応 (750px以下) ===== */
@media screen and (max-width: 750px) {
  .section-hosyou {
    padding: 60px 0;
  }

  /* SPで改行を有効化 */
  .section-hosyou .sp-br {
    display: block;
  }

  .section-hosyou h2 {
    font-size: 26px;
    margin-bottom: 35px;
  }

  .hosyou-container {
    flex-direction: column;
    align-items: center;
    gap: 40px; 
  }

  .hosyou-card {
    width: calc(100% - 15px);
    margin-right: 10px;
  }

  .hosyou-title {
    font-size: 24px;
  }

  .hosyou-note {
    padding: 10px 20px;
    margin-top: 5px;
	 font-size: 13px!important; /* ← ここでサイズ調整 */
  }
}




/*========== フローセクション ==========*/
.section-flow {
  padding: 80px 0;
  background-color: #fff;
  text-align: center;
}

.flow-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.flow-sub {
  color: #B8423D;
  font-weight: normal;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}

.section-flow h2 {
  font-size: 35px;
  font-weight: bold;
  margin-bottom: 60px;
  color: #333;
}

.flow-container {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 40px;
  margin-bottom: 40px; /* 60から40へ微減 */
  position: relative;
}

.flow-card {
  flex: 1;
  background: #fff;
  border: 2px solid #EAEAEA;
  border-radius: 15px;
  padding: 40px 15px 30px;
  position: relative;
}

.flow-num {
  font-size: 48px;
  font-weight: bold;
  color: #B8423D;
  line-height: 1;
  margin-bottom: 15px;
  display: inline-block;
  position: relative;
}

.flow-num::after {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  background: #B8423D;
  margin: 5px auto 0;
}

.flow-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 25px;
  color: #333;
}

.flow-icon {
  width: 130px;
  height: auto;
  margin: 0 auto 30px;
}

.flow-icon img {
  width: 100%;
  height: auto;
}

.flow-list {
  text-align: left;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 17px;
  line-height: 1.5;
}

.flow-list li {
  position: relative;
  padding-left: 1.2em;
  margin-bottom: 4px;
}

.flow-list li::before {
  content: "・";
  position: absolute;
  left: 0;
}

.flow-list .red {
  color: #B8423D;
  font-weight: bold;
}

/* 共通ボタン設定 */
.kaiketu-btn {
  text-align: center;
  margin-top: 40px; /* PCも少し詰め気味に */
  padding: 0 15px;
  box-sizing: border-box;
}

.kaiketu-btn img {
  width: 506px;
  max-width: 100%;
  height: auto;
  display: inline-block;
}

/* PC用：カード間の三角形の矢印 */
@media screen and (min-width: 751px) {
  .flow-card:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -28px;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 0 10px 14px;
    border-color: transparent transparent transparent #D9C8C8;
  }
}

/*========== ムービーセクション ==========*/
.section-movie {
  width: 100%;
  padding: 80px 0;
  background: url(../../images/movie_bg.jpg) no-repeat center center;
  background-size: cover;
  text-align: center;
  color: #fff;
  box-sizing: border-box;
}

.movie-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.movie-sub {
  font-size: 16px;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
  display: block;
}

.section-movie h2 {
  font-size: 35px;
  font-weight: bold;
  margin-bottom: 40px;
  color: #fff;
}

.movie-container {
  max-width: 650px;
  margin: 0 auto;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  background: #000;
  
}

.movie-wrap {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}

.movie-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
  border: none;
}

/* ===== スマホ対応 (750px以下) まとめて整理 ===== */
@media screen and (max-width: 750px) {
  
  /* フローSP */
  .section-flow {
    padding: 60px 0 30px; /* 下余白を30に */
  }
  .section-flow h2 {
    font-size: 26px;
    margin-bottom: 40px;
  }
  .flow-container {
    flex-direction: column;
    align-items: center;
    gap: 45px;
    margin-bottom: 20px; /* ボタンとの距離を詰める */
  }
  .flow-card {
    width: 100%;
    padding: 30px 20px 25px;
  }
  .flow-title {
    font-size: 20px;
    margin-bottom: 15px;
  }
  .flow-icon {
    width: 100px;
    margin-bottom: 20px;
  }
  /* 下向き矢印 */
  .flow-card:not(:last-child)::after {
    content: "";
    position: absolute;
    bottom: -32px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 15px 10px 0 10px;
    border-color: #D9C8C8 transparent transparent transparent;
  }
  .section-flow .kaiketu-btn {
    margin-top: 0; /* 余白をゼロに */
  }

  /* ムービーSP */
  .section-movie {
    padding: 60px 0;
  }
  .section-movie h2 {
    font-size: 24px;
    margin-bottom: 30px;
  }
  .movie-container {
    width: 100%;
  }
}




/*========== メディア掲載セクション ==========*/
.section-media {
  /* 上下のスペースを 80px → 30px に大幅縮小 */
  padding: 30px 0;
  background-color: #fff;
  text-align: center;
}

.media-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* 見出し：下の余白も 30px → 20px へ少し調整 */
.section-media h2 {
  display: block;
  margin-bottom: 20px;
  text-align: center;
}

/* 見出しの中身：改行対応ライン */
.section-media h2 span {
  display: inline;
  font-size: 28px;
  font-weight: bold;
  color: #333;
  line-height: 1.8;
  box-shadow: 0 -12px 0 #FFD0D0 inset; 
  padding: 0 4px; 
}

.media-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 20px; /* 下との間隔も少し詰めました */
}

.media-item {
  width: calc(16.66% - 15px);
  min-width: 120px;
  border: none;
  padding: 0;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
}

.media-item img {
  width: 100%;
  height: auto;
  display: block;
}

.media-text-list {
  font-size: 13px!important;
  color: #666;
  letter-spacing: 0.05em;
  margin-top: 15px; /* 上の間隔を少し詰めました */
}

/* ===== スマホ対応 (750px以下) ===== */
@media screen and (max-width: 750px) {
  .section-media {
    /* スマホも 50px → 25px へ縮小 */
    padding: 25px 0;
  }

  .section-media h2 {
    margin-bottom: 10px;
  }

  .section-media h2 span {
    font-size: 18px;
    box-shadow: 0 -10px 0 #FFD0D0 inset;
    line-height: 1.7;
  }

  .media-grid {
    gap: 10px;
    margin-bottom: 10px;
  }

  .media-item {
    width: calc(33.33% - 10px);
    min-width: auto;
  }

  .media-text-list {
    font-size: 11px!important;
    line-height: 1.8;
    padding: 0 10px;
    margin-top: 0;
  }
}


/*========== お客様の声セクション ==========*/
.section-voice {
  padding: 60px 0; /* セクション自体の上下も少し詰めました */
  background-color: #F7F0F0;
  text-align: center;
}

.voice-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

/* 見出しスタイル（以前のFLOW準拠） */
.flow-sub {
  color: #B8423D;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.1em;
  margin-bottom: 5px;
}

.section-voice h2 {
  margin-bottom: 30px; /* 見出し下の余白を30pxに縮小 */
}

.section-voice h2 span {
  display: inline;
  font-size: 32px;
  font-weight: bold;
  color: #333;
  line-height: 1.8;
  box-shadow: 0 -12px 0 #FFD0D0 inset;
  padding: 0 4px;
}

/* グラフ周りのスペースを最小化 */
.voice-graph {
  margin-bottom: 30px; /* 60pxから30pxへ半分に縮小 */
}

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

.voice-container {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
}

.voice-card {
  width: calc(50% - 13px);
  background: #fff;
  /* 縦の空白をさらに詰めました（上下15px） */
  padding: 15px 20px; 
  box-sizing: border-box;
  display: flex;
  align-items: flex-start;
  border-radius: 10px;
  box-shadow: 6px 6px 0 rgba(209, 142, 142, 0.15);
}

.voice-left {
  width: 120px;
  flex-shrink: 0;
  margin-right: 20px;
  display: flex;
  flex-direction: column;
  gap: 5px; /* 吹き出しと写真の間もさらに詰めました */
}

.voice-balloon {
  width: 100%;
  height: auto;
  display: block;
}

.customer-photo {
  width: 100%;
  height: auto;
  border-radius: 4px;
}

.voice-right {
  flex: 1;
}

.voice-name-wrapper {
  border-bottom: 1px solid #D18E8E;
  margin-bottom: 8px; /* 下との隙間を少し詰めました */
  padding-bottom: 3px;
  margin-top: 2px; 
}

.voice-name {
  font-weight: bold;
  font-size: 17px!important;
  color: #D18E8E;
  line-height: 1.2;
}

.voice-text {
  font-size: 16px!important;
  line-height: 1.7; /* 行間も少しだけタイトに */
  color: #333;
  text-align: left;
}

/* ===== スマホ対応 (750px以下) ===== */
@media screen and (max-width: 750px) {
  .section-voice {
    padding: 40px 0;
  }
  .section-voice h2 span {
    font-size: 24px;
  }
  .voice-card {
    width: 100%;
  }
.voice-name {
  font-size: 16px!important;
}

.voice-text {
  font-size: 15px!important;
}
}


/*========== 解体業者の声セクション ==========*/
.section-voice-gyousya {
  padding: 60px 0;
  text-align: center;
  background-color: #fff;
}

.voice-gyousya-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.voice-gyousya-sub {
  color: #B8423D;
  font-weight: normal;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
  font-size: 14px;
}

.section-voice-gyousya h2 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 40px;
  color: #333;
}

.voice-gyousya-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.voice-gyousya-card {
  position: relative;
  display: flex;
  align-items: center;
  background: #fffafa; 
  border: 2px solid #EFDADA;
  border-radius: 10px;
  padding: 20px 40px; 
  text-align: left;
}

/* 左上の引用アイコン（装飾） */
.voice-gyousya-card::before {
  content: "“";
  position: absolute;
  top: -20px; 
  left: 20px;
  font-size: 80px;
  color: #df9898;
  font-family: serif;
  line-height: 1;
  padding: 0 10px;
  pointer-events: none;
  z-index: 1;
}

.voice-gyousya-photo {
  width: 150px;
  height: 150px;
  flex-shrink: 0;
  margin-right: 30px;
}

.voice-gyousya-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.gyousya-name {
  color: #B8423D;
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 10px;
}

.gyousya-text {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
}

/* スマホ対応 */
@media screen and (max-width: 768px) {
  .section-voice-gyousya {
    padding: 40px 0;
  }
  .section-voice-gyousya h2 {
    font-size: 24px;
    margin-bottom: 30px;
  }
  .voice-gyousya-card {
    /* 横並びを維持 */
    flex-direction: row; 
    padding: 25px 15px 20px;
    align-items: flex-start; /* 上揃えに変更 */
  }
  .voice-gyousya-photo {
    /* 写真を小さくして横並びを可能に */
    width: 80px; 
    height: 80px;
    margin-right: 15px;
    margin-bottom: 0;
  }
  .voice-gyousya-card::before {
    /* 中央寄せにせず左側に配置 */
    left: 10px; 
    top: -15px;
    font-size: 60px;
    transform: none;
  }
  .gyousya-name {
    font-size: 15px;
    margin-bottom: 5px;
  }
  .gyousya-text {
    font-size: 14px;
    line-height: 1.6;
  }
}


/*========== よくある質問セクション ==========*/
.section-faq {
  background-color: #f6f0f0; 
  padding: 80px 0;
  text-align: center;
}

.faq-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.faq-sub {
  color: #B8423D;
  font-weight: normal; 
  letter-spacing: 0.1em;
  margin-bottom: 10px;
  font-size: 14px;
}

.section-faq h2 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 40px;
  color: #333;
}

.faq-container {
  text-align: left;
}

.faq-item {
  margin-bottom: 20px;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  /* シャドウを削除し、指定のボーダーを追加 */
  border: 2px solid #EFDADA;
}

/* 質問（Q）部分 */
.faq-q {
  background-color: #f1d8d7;
  padding: 15px 25px;
  font-weight: bold;
  display: flex;
  align-items: center;
  font-size: 18px;
  color: #333;
}

.faq-q span {
  background-color: #B8423D;
  color: #fff;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  flex-shrink: 0;
  font-size: 16px;
}

/* 回答（A）部分 */
.faq-a {
  padding: 20px 25px 20px 68px;
  line-height: 1.8;
  color: #444;
  font-size: 16px;
}

/* スマホ対応 */
@media screen and (max-width: 768px) {
  .section-faq {
    padding: 50px 0;
  }
  .section-faq h2 {
    font-size: 24px;
    margin-bottom: 30px;
  }
  .faq-q {
    font-size: 16px;
    padding: 12px 15px;
  }
  .faq-a {
    padding: 15px 15px 15px 15px;
    font-size: 15px;
  }
}



/*========== 代表挨拶セクション ==========*/
.section-message {
  padding: 80px 0;
  background-color: #fff;
  text-align: center;
}

.message-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.message-sub {
  color: #B8423D;
  font-weight: normal;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
  font-size: 14px;
}

.section-message h2 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 60px;
  color: #333;
}

.message-container {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 68px;
  text-align: left;
}

.message-photo {
  width: 315px;
  flex-shrink: 0;
}

.message-photo img {
  width: 100%;
  height: auto;
}

.message-content {
  flex: 1;
  min-width: max-content; 
}

.message-lead {
  font-size: 25px !important; 
  font-weight: bold;
  line-height: 1.8;
  margin-bottom: 35px;
  color: #333;
  white-space: nowrap;
}

.pc-only { display: block; }
.sp-only { display: none; }

.message-text p {
  font-size: 14.5px;
  line-height: 2.2;
  margin-bottom: 20px;
  color: #444;
  white-space: nowrap;
}

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

.message-signature {
  text-align: right;
  margin-top: 20px;
}

.message-signature img {
  max-width: 220px;
  height: auto;
}

/* スマホ・タブレット対応 */
@media screen and (max-width: 1024px) {
  .message-content {
    min-width: auto;
  }
  .message-lead,
  .message-text p {
    white-space: normal !important;
  }
}

/* スマホ対応 */
@media screen and (max-width: 768px) {
  .section-message {
    padding: 50px 0;
  }
  .message-inner {
    padding: 0 20px;
  }
  .section-message h2 {
    font-size: 24px;
    margin-bottom: 30px;
  }
  .message-container {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }
  .message-photo {
    /* SPの写真幅を約280pxに拡大 */
    width: 200px;
    max-width: 90%; /* 画面からはみ出さないよう配慮 */
  }

  .pc-only { display: none; }
  .sp-only { display: block; }

  .message-lead {
    /* SPのフォントサイズを大きく調整 */
    font-size: 22px !important; 
    text-align: center;
    line-height: 1.8 !important; 
    margin-bottom: 25px;
    white-space: normal !important;
  }
  
  .message-text p {
    font-size: 14px;
    line-height: 1.8;
    text-align: left;
    margin-bottom: 15px;
    white-space: normal !important;
  }

  .message-signature img {
    max-width: 140px; /* 写真に合わせて署名も少し調整 */
  }
}





/*========== 会社概要セクション ==========*/
.section-company {
  padding: 50px 0 100px 0;
  background-color: #F9F1F0;
  text-align: center;
  margin-bottom: 0px;
}

.company-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 40px;
}

.company-sub {
  color: #B8423D;
  font-size: 14px;
  letter-spacing: 0.2em;
  margin-bottom: 5px;
}

.section-company h2 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 30px;
  color: #333;
}

.company-table {
  border-top: 1px solid #E0D5D4;
}

.company-table dl {
  display: flex;
  margin: 0;
  border-bottom: 1px solid #E0D5D4;
}

.company-table dt {
  width: 30%;
  padding: 15px 20px;
  text-align: left;
  font-weight: bold;
  color: #333;
  box-sizing: border-box;
  position: relative;
  line-height: 1.6;
}

/* 上の赤ライン */
.company-table dt::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #B8423D;
}

/* PC：最後の行の下に赤ライン */
.company-table dl:last-child dt::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #B8423D;
}

.company-table dd {
  width: 70%;
  margin: 0;
  padding: 15px 30px;
  text-align: left;
  color: #333;
  box-sizing: border-box;
  line-height: 1.6;
}

/* リンクのデフォルト装飾 */
.company-table dd a {
  color: inherit;
  text-decoration: none;
}

/* スマホ対応 */
@media screen and (max-width: 768px) {
  .section-company {
    padding: 40px 0;
  }

  .section-company h2 {
    font-size: 24px;
    margin-bottom: 20px;
  }

  .company-table dl {
    flex-direction: column;
  }

  .company-table dt,
  .company-table dd {
    font-size: 13px;
    width: 100%;
  }

  .company-table dt {
    padding: 12px 15px 4px 0;
  }

  .company-table dd {
    padding: 0 0 12px 0;
  }

  /* SP：dtの下ラインを消す */
  .company-table dl:last-child dt::after {
    display: none;
  }

  /* SP：ddの下に赤ライン */
  .company-table dl:last-child dd {
    position: relative;
  }

  .company-table dl:last-child dd::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #B8423D;
  }

  .company-table dd a[href^="tel"],
  .company-table dd a[href^="fax"] {
    pointer-events: none;
    color: inherit;
    text-decoration: none;
  }
}







/*========== 固定フッター ==========*/
.fixed-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background:#B13B38;
  box-shadow: 0 -3px 15px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  padding: 12px 0 calc(10px + env(safe-area-inset-bottom));
}

.fixed-footer-inner {
  max-width: 1100px; 
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}

.footer-left-box {
  flex: 0 1 350px; 
  margin-right: 30px;
}

.footer-left-box img {
  width: 100%;
  height: auto;
  display: block;
}

.footer-right-btns {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.footer-btn {
  display: block;
  line-height: 0;
  transition: opacity 0.3s;
  flex: 1;
  max-width: 280px; 
}

.footer-btn img {
  width: 100%;
  height: auto;
  display: block;
}

/* ▼ここだけが今回の本題（SP完全非表示） */
@media screen and (max-width: 750px) {
  .fixed-footer {
    display: none;
  }
}



/*========== SP固定フッター ==========*/
.fixed-footer-sp {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #B13B38;
  z-index: 1000;
  padding: calc(10px + env(safe-area-inset-bottom)) 10px 10px;
  box-shadow: 0 -3px 15px rgba(0,0,0,0.15);
}

.footer-sp-inner {
  padding: 6px;
}

/* ===== 電話エリア ===== */
.footer-sp-tel {
  background: linear-gradient(180deg, #ffffff 0%, #ececec 100%);
  border: 1px solid #d0d0d0;
  border-radius: 12px;
  padding: 8px 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
  gap: 6px;
text-decoration: none;
  color: inherit;
}

/* 改行させない */
.tel-label,
.tel-number {
  white-space: nowrap;
}

.tel-label {
  font-weight: bold;
  font-size: 10px;
}

.tel-number {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  color: #333;
}

.tel-icon {
  width: 18px;
  height: 18px;
}

.tel-time {
  font-size: 10px;
white-space: nowrap;
  color: #555;
  text-align: right;
  line-height: 1.2;
}

/* ===== ボタンエリア ===== */
.footer-sp-btns {
  display: flex;
  gap: 8px;
}

/* 共通 */
.btn {
  flex: 1;
  text-align: center;
  padding: 14px 0;
  border-radius: 12px;
  font-weight: bold;
  text-decoration: none;
  color: #fff;
  font-size: 16px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

/* LINE（グラデ） */
.line-btn {
  background: linear-gradient(180deg, #20d66b 0%, #06c755 100%);
}

/* フォーム（グラデ） */
.form-btn {
  background: linear-gradient(180deg, #ff8a00 0%, #ff5e00 100%);
}

/* PCでは非表示 */
@media screen and (min-width: 751px) {
  .fixed-footer-sp {
    display: none;
  }
}





/*========== フォーム ==========*/

/* 外側：背景エリア */
.form-wrap{
  width:100%;
  background:#F2D5D5;   /* 背景色 */
  padding:60px 0 60px 0;  /* 上下余白 */
}

/* 内側：フォーム幅 */
.form-inner{
  width:94%;
  margin:3px auto;        /* 中央寄せ */
  border-radius:12px;
  overflow:hidden; 
}

/* iframe */
.form-inner iframe{
  width:100%;
  height:1000px; /* 初期値 PC */
  border:none;
  display:block;
}
.form-bottom {
  height: 60px;
}

/* スマホ */
@media (max-width:768px){
.form-wrap{
  padding-bottom:80px;       /* 上下余白 */
}

	
/* 内側：フォーム幅 */
.form-inner{
  width:94%;
}
	
	
.form-inner iframe{
  height: 700px;  /* 初期値 スマホ */
  /*height:600px;*/
}
}



/* タブレット（iPad） */
@media (min-width:769px) and (max-width:1024px){

  .form-inner{
    width:96%;
  }

  .form-inner iframe{
    height:1000px; /* 初期値 タブレット*/
  }

  .form-bottom {
    height: 30px;
  }

}


/*フォームタイトル*/
.form-title-area {
  text-align: center;
  margin-bottom: 20px; /* フォームとの間隔 */
  padding: 0 20px;
}

.form-title-area h2 {
  display: inline-block;
  font-size: 42px;
  font-weight: bold;
  color: #000;
  margin: 0 0 30px;
  padding-bottom: 10px;
  border-bottom: 4px solid #9c000c; /* 赤い下線 */
  letter-spacing: 0.05em;
}

.form-info {
  line-height: 1.8;
}

.form-info p {
  font-size: 18px !important;
  margin: 0;
  color: #333;
}

.form-info p span,
.form-info p.red {
  color: #e60000;
  font-weight: bold;
}

.form-info-atnt{
  max-width: 25em;
	margin:0 auto;
	
}
.form-info-atnt p{
  text-align:left;
	
}
.form-info p em{
  font-weight:bold;
	white-space: 0.5em;
	
}

/* スマホ対応 (750px以下) */
@media screen and (max-width: 750px) {
  .form-title-area h2 {
    font-size: 24px;
    border-bottom-width: 3px;
    margin-bottom: 20px;
  }

  .form-info p {
    font-size: 15px !important;
    line-height: 1.6;
  }
.form-info-atnt{
  max-width: 100%;
	
}	
	
	
}

/* PCではSP用改行を非表示にする */
.form-title-area .sp-br {
  display: none;
}

/* スマホ対応 (750px以下) */
@media screen and (max-width: 750px) {

  .form-wrap{
    padding-top:30px;
  }

  .form-title-area{
      padding:0 25px!important;
  }
    
  .form-title-area .sp-br {
    display: block; /* スマホで改行を有効化 */
  }

  .form-title-area h2 {
    font-size: 24px;
    border-bottom-width: 3px;
    margin-bottom: 20px;
    line-height: 1.4; /* 2行になった時の行間を調整 */
    padding-bottom: 5px;
    display: inline-block; /* 下線を文字幅に合わせる */
    text-align: center;
  }

  .fixed-footer-sp {
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
}



