@charset "UTF-8";
/* CSS Document */
/*
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
Twitter: @rich_clark
*/

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
    margin:0;
    padding:0;
    border:0;
    outline:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
}

body {
    line-height:1;
}

article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section {
    display:block;
}

nav ul {
    list-style:none;
}

blockquote, q {
    quotes:none;
}

blockquote:before, blockquote:after,
q:before, q:after {
    content:'';
    content:none;
}
a,a:hover,a:visited{
    color: inherit;
}
a {
    margin:0;
    padding:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
	text-decoration: none;
}

/* change colours to suit your needs */
ins {
    background-color:#ff9;
    color:#000;
    text-decoration:none;
}

/* change colours to suit your needs */
mark {
    background-color:#ff9;
    color:#000;
    font-style:italic;
    font-weight:bold;
}

del {
    text-decoration: line-through;
}

abbr[title], dfn[title] {
    border-bottom:1px dotted;
    cursor:help;
}

table {
    border-collapse:collapse;
    border-spacing:0;
}

/* change border colour to suit your needs */
hr {
    display:block;
    height:1px;
    border:0;  
    border-top:1px solid #cccccc;
    margin:1em 0;
    padding:0;
}

input, select {
    vertical-align:middle;
}

/*リセットCSSここまで*/

/* ====================================
   1. リセット・共通設定
   ==================================== */
body {
    margin: 0;
    padding: 0;
    font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
}

html, body {
    overflow-x: hidden; /* 横方向のはみ出しを隠す */
    width: 100%;        /* 幅を100%に固定（96%指定は避けるのが無難） */
}

/* ====================================
   2. PCデフォルトスタイル (最大1000px)
   ==================================== */

/* --- ヘッダーエリア --- */
.header {
    background-color: white; /* 背景色 (指定なしのため白に設定) */
}
.header-inner {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center; /* ロゴを中央配置 */
    padding: 0px 0;
}
.logo {
    /* 画像サイズ: 高さ62px 幅200px */
    height: auto;
    width: 200px;
    padding-top: 40px;
    /* 修正ポイント1: 画像をブロック要素にする（これで隙間が消える） */
    display: block;
    
    /* 修正ポイント2: ブロック要素にすると左右中央寄せが解除されるので、marginで調整 */
    margin: 0 auto;
}

.container {
  overflow: hidden;
}

.box01 {
  color: #fff;
  background: #d70915;
  position: relative;
  z-index: 15;
}
/* --- Box 05 (ブランドカラーの曲線の土台) --- */

.box05hed {
  background: #d70915;
  
  /* 1. カーブの深さを画面幅の10%に固定 */
  border-bottom-left-radius: 50% 7vw;
  border-bottom-right-radius: 50% 7vw;
  
  /* 2. 下の余白もカーブの深さと連動させる */
  padding-bottom: 7vw; 

  /* 3. 上の引き上げ量も比率で指定（50px ≒ 4.5vw くらい） */
  margin-top: -3.7vw;
  
  /* 4. 横へのはみ出し設定も比率へ（左右の合計を維持） */
  margin-left: -10vw;
  margin-right: -10vw;
  padding-left: 10vw;  /* ここは中身のpaddingに合わせる */
  padding-right: 10vw;

  position: relative;
  z-index: 1;
  width: auto; /* はみ出し設定を活かすため */
}


.box02 {
  padding-top: 100px;
  padding-bottom: 0px;
  max-width: 1200px;
    margin: 0 auto;
    position: relative;
     z-index: 11;
}
.box02 img{
  width: 100%;

}


.box03 {
  background: #fff;
  /* 縦の半径を150pxに強め、横は50%で画面幅に追従させる */
 border-bottom-left-radius: 50% 7vw;
  border-bottom-right-radius: 50% 7vw;
  
 /* 2. 下の余白もカーブの深さと連動させる */
  padding-bottom: 7vw; 

  /* 3. 上の引き上げ量も比率で指定（50px ≒ 4.5vw くらい） */
  margin-top: -3.7vw;
  
  /* 4. 横へのはみ出し設定も比率へ（左右の合計を維持） */
  margin-left: -10vw;
  margin-right: -10vw;
  padding-left: 10vw;  /* ここは中身のpaddingに合わせる */
  padding-right: 10vw;
  
  /* 重要：カーブの縦幅(150px)以上の高さを確保する */
  padding-bottom: 110px; 
  position: relative;
  z-index: 10;
}





/* 外側の枠：背景色を横幅いっぱいに広げる */
.full-width-bg {
background-color: #fbe4e5; /* 薄ピンク */
  margin: 0 auto;
  width: 100%;
  padding-top: 200px;
  padding-bottom: 100px;

  /* 前面に持ってくる設定 */
  position: relative;
  z-index: 1; /* 数字を大きくして上に重ねる */
  
  /* 上の要素に覆いかぶさるように上にずらす */
  margin-top: -40px; /* 曲線の形状に合わせて数字を調整してください */
}
.full-width-bg img{
  width: 100%;
}

.full-width-bg_RED {
background-color: #d70915; /* ブランドカラー */
  margin: 0 auto;
  width: 100%;
  padding-top: 200px;
  padding-bottom: 0px;

  /* 前面に持ってくる設定 */
  position: relative;
  z-index: 1; /* 数字を大きくして上に重ねる */
  
  /* 上の要素に覆いかぶさるように上にずらす */
  margin-top: -40px; /* 曲線の形状に合わせて数字を調整してください */
}
/* メインタイトル */
.inner-titlle {
    max-width: 1000px;
    margin: 0 auto;    /* 左右中央寄せ */
}

/* 内側の枠：中身の幅を制限して中央に寄せる */
.inner-content {
    max-width: 1000px;
    margin: 0 auto;    /* 左右中央寄せ */
    padding: 0 20px;   /* スマホで見た時に左右に少し隙間を作るための設定 */
    box-sizing: border-box; /* パディングを含めて幅を計算する */
    text-align: center;
}
.inner-content img{
    max-width: 1000px;
    height: auto;
}

/* 外側の枠：背景色を横幅いっぱいに広げる */
.full-width-bg-beige {
background-color: #fff9f3; /* ベージュ */
  margin: 0 auto;
  width: 100%;
  padding-top: 140px;
  padding-bottom: 100px;
 

  /* 前面に持ってくる設定 */
  position: relative;
  z-index: 1; /* 数字を大きくして上に重ねる */
  
  /* 上の要素に覆いかぶさるように上にずらす */
  margin-top: -80px; /* 曲線の形状に合わせて数字を調整してください */
}


.text-highlight {
    padding: 0px;
  /* 文字の基本設定 */
  font-size: 30px;
  font-weight: 700; /* 7W相当 */
  line-height: 1.7;
display: inline-block; /* 下線の幅を文字に合わせる */
  
  /* グラデーション下線の設定 */
  background-image: linear-gradient(to right, #e9767d,#d70915);
  background-repeat: no-repeat;
  background-size: 100% 5px; /* 横幅100%に対して、縦幅5pxの線にする */
  background-position: bottom; /* 下側に配置 */
  
  /* 文字と線の隙間を調整したい場合はpadding-bottomを微調整 */
  padding-bottom: 2px;
  margin-bottom: 36px;
}




@media (max-width: 767px) {
.logo {
    height: auto;
    width: 98px;
    padding-top: 16px;
}


.box02 {
    background-color: #ffff;
    position: relative;
    z-index: 11; /* box03(10)や背景(1)より数字を大きくする */
    padding-top: 20px;
    padding-bottom: 0px; /* 下の余白を完全にゼロにする */
    max-width: 96%;
    margin-bottom: 0px;  /* ここもゼロ */
  }

  .box02 img {
    width: 100%;
    display: block; /* 前にお伝えした「画像下の謎の隙間」を消す魔法です */
  }


.box03 {
    /* ここを追加！ */
    background: #ffffff;
    margin-top: -60px; /* 隙間に合わせて数値（-30px〜-80pxなど）を調整してください */
    position: relative;
    z-index: 10;
    padding-top: 0px;

    /* カーブを削らないために横幅を広げている設定がある場合、これも必要 */
    margin-left: -100px;
    margin-right: -100px;
  }

.inner-content {
  width: 100%;       /* 幅を確実に100%にする */
        padding: 0 0%;    /* 20pxから3%（約11px〜）に減らして横幅を確保 */
}
.inner-content img{
    max-width: 100%;
    height: auto;
}
  .text-highlight {
    font-size: 20px; /* スマホでは少し小さくする例 */
    background-size: 100% 3px; /* 線も少し細くするとバランスが良いです */
    padding-top: 20px;
  }



/* 外側の枠：背景色を横幅いっぱいに広げる */
.full-width-bg {
background-color: #fbe4e5; /* 薄ピンク */
  margin: 0 auto;
  width: 100%;
  padding-top: 140px;
  padding-bottom: 48px;

  /* 前面に持ってくる設定 */
position: relative;
    z-index: 1; /* 一番背面に設定 */
  
  /* 上の要素に覆いかぶさるように上にずらす */
  margin-top: -10px; /* 曲線の形状に合わせて数字を調整してください */
}
.full-width-bg img{
  width: 100%;
}

}

.textmidi{
 margin: 0 auto;
 max-width: 524px;
 text-align: left;
   font-size: 18px;
  font-weight: 700; /* 7W相当 */
  line-height: 1.7;
}
@media (max-width: 767px) {
    .textmidi{
 max-width: 90%;
 text-align: left;
   font-size: 16px;
  font-weight: 700; /* 7W相当 */
  line-height: 1.7;
}
}

/* ボタンコンテナ */
.btn-container {
    text-align: center;
    margin: 0 auto;
    margin-top: 40px;
    width: 100%;
    display: flex;
    flex-direction: column; /* 縦に並べる */
    align-items: center;    /* 中央寄せ */
    gap: 16px;              /* ボタン間の隙間を16pxに設定 */
}

/* 共通スタイル（サイズ、文字の配置など） */
.btn-red-square, .btn-white-square {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 500px;
    height: 80px;
    text-decoration: none;
     transition: transform 0.2s ease, opacity 0.2s ease;
    box-sizing: border-box; /* 枠線を含めてサイズ計算 */
}

/* 1つ目のボタン（赤） */
.btn-red-square {
    background-color: #d70915;
    color: #ffffff !important;
}

/* 2つ目のボタン（白） */
.btn-white-square {
    background-color: #ffffff;
    color: #d70915 !important; /* 文字色を赤に */
    border: 1px solid #d70915; /* 1pxの赤い縁 */
}

.btn-red-square:hover, .btn-white-square:hover {
    opacity: 0.8;
    transform: translateY(-2px); /* ホバー時に少し浮かす演出 */
}

/* 文字サイズ設定 */
.btn-main {
    font-size: 22px;
    font-weight: bold;
    line-height: 1.2;
}

.btn-sub {
    font-size: 14px; /* 赤ボタンは14pxを維持 */
    margin-top: 4px;
    font-weight: bold;
    line-height: 1.4;
}
/* --- 白ボタン専用のサブテキスト設定（13pxに上書き） --- */
.btn-white-square .btn-sub {
    font-size: 13px;
}
/* スマホ用のレスポンシブ調整 */
@media (max-width: 520px) {
    .btn-red-square, .btn-white-square {
        width: 312px;
        height: 64px;
        padding: 15px 10px;
    }
    .btn-main {
        font-size: 15px;
    }
/* スマホ時はさらに少し小さくして可読性を確保 */
    .btn-sub {
        font-size: 11px;
    }
    .btn-white-square .btn-sub {
        font-size: 11px;
    }
    /* ボタンコンテナ */
.btn-container {
    width: 100%;
    display: flex;
    flex-direction: column; /* 縦に並べる */
    align-items: center;    /* 中央寄せ */
    gap: 8px;              /* ボタン間の隙間を16pxに設定 */
}
}






/* 説明セクションの外枠 */
.explanation-box {
    max-width: 1000px;
    margin: 100px auto 0; /* 上に100pxの余白 */
    background-color: #ffffff;
    border-radius: 10px;
    padding: 40px 0; 
    box-shadow: 0 4px 15px rgba(0,0,0,0.05); /* 軽く影を付けて背景との境界を明瞭に */
}

/* 内部のコンテンツエリア（最大700px） */
.explanation-inner {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 20px; /* スマホ時の余白 */
    box-sizing: border-box;
}

/* 見出しスタイル */
.explanation-title {
    font-size: 26px;
    color: #d70915;
    font-weight: bold;
    margin-bottom: 30px;
    text-align: left;
}

/* 2カラムレイアウト */
.explanation-content {
    display: flex;
    justify-content: space-between; /* 左右に振り分けて中央に余白を作る */
    align-items: flex-start;
}

/* 左側：説明文（314px） */
.explanation-text {
    width: 307px;
    flex-shrink: 0;
    font-size: 18px;
    line-height: 1.6;
    color: #333;
}

/* 右側：図（最大368px） */
.explanation-figure {
    max-width: 364px;
    width: 50%; /* 700pxに対して約364px前後になるよう調整 */
    flex-shrink: 1;
}

.resp-img {
    width: 100%;
    height: auto;
    display: block;
    padding-top: 8px;
}

/* スマホ用のレスポンシブ調整 */
@media (max-width: 768px) {
    .explanation-box {
        margin-top: 60px; /* スマホでは余白を少し詰める */
        padding: 20px 0;
        width: 95%;
    }
    
    .explanation-content {
        flex-direction: column; /* 縦並びに */
        align-items: center;
    }

    /* 見出しスタイル */
.explanation-title {
    font-size: 20px;
    margin-bottom: 20px;
}
    
    .explanation-text {
        font-size: 16px;
        width: 100%;
        margin-bottom: 30px;
    }
    
    .explanation-figure {
        width: 100%;
        max-width: 368px;
    }
}



/* 16pxの白い余白 */
.spacer-white-16 {
    height: 16px;
    background-color: #ffffff;
    width: 100%;
}




/* 全幅ベージュエリア */
.section-beige {
    width: 100%;
    background-color: #fff9f3;
    padding-top: 90px;
    padding-bottom: 0px; /* ここを100pxにする */
    box-sizing: border-box;
}

.section-beige2 {
    width: 100%;
    background-color: #fff9f3;
    padding-top: 90px;
    padding-bottom: 100px; /* ここを100pxにする */
    box-sizing: border-box;
}

/* 本文エリア（MAX 700px） */
.inner-700 {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 0px;
    box-sizing: border-box;
}

/* タイトル設定 */
.section-title {
    font-size: 26px;
    color: #d70915;
    font-weight: bold;
    margin-bottom: 40px; /* 指定：下の余白40px */
    text-align: left;
}

/* フレックスボックスで2カラム化 */
.flex-container {
    display: flex;
    justify-content: space-between; /* 左右に振り分け */
    align-items: flex-start;
}

/* 左：説明文（幅264px） */
.text-box-262 {
    width: 242px;
    flex-shrink: 0;
    font-size: 16px;
    line-height: 1.7; /* 14行の文章を読みやすくするための行間 */
    color: #333;
}

/* 右：画像エリア */
.image-box {
    width: calc(100% - 264px);
    z-index: 1;
}

.full-resp-img {
    width: 100%;
    height: auto;
    display: block;
}

/* スマホ用のレスポンシブ対応 */
@media (max-width: 768px) {

/* 16pxの白い余白 */
.spacer-white-16 {
    height: 8px;
}


    .section-beige2 {
    padding-top: 48px;
    padding-bottom: 48px; 
    box-sizing: border-box;
}

    
/* タイトル設定 */
.section-title {
    font-size: 20px;
    margin-bottom: 20px; /* 指定：下の余白40px */
    text-align: left;
}


    .section-beige {
        padding-top: 48px !important; 
        padding-bottom: 0px; /* 下も合わせる場合は調整してください */
        position: relative; /* z-indexを有効にするために必須 */
        z-index: 10;         /* 一番後ろにする */
    
    }

/* 2. タイトル自体のマージンも0にして隙間を固定する */
    .section-title {
        margin-top: 0;
        margin-bottom: 24px; /* タイトルと下の文章の間の余白 */
        font-size: 22px;    /* スマホ向けサイズ（任意） */
        text-align: left;
    }

    /* 3. コンテナの幅（全体的なコンテンツの広がり） */
    .inner-700 {
        width: 100%;
        max-width: none;
    }

    /* 4. テキストボックスを96%にする */
    .text-box-262 {
        width: 96% !important;
        margin: 0 auto 20px; /* 下に画像がくるので下に少し余白 */
        float: none;         /* もしPCでfloatを使っていた場合、解除 */
    }

    /* 5. 画像も横幅を合わせる */
    .image-box {
        width: 96%;
        margin: 0 auto;
    }
    
    .flex-container {
        display: block; /* スマホでは横並びを解除 */
    }


}



/* --- Box 04 (ベージュの曲線の土台) --- */
.box04 {
  background: #fff9f3;
  border-bottom-left-radius: 50% 7vw;
  border-bottom-right-radius: 50% 7vw;
  
 /* 2. 下の余白もカーブの深さと連動させる */
  padding-bottom: 7vw; 

  /* 3. 上の引き上げ量も比率で指定（50px ≒ 4.5vw くらい） */
  margin-top: -3.7vw;
  
  /* 4. 横へのはみ出し設定も比率へ（左右の合計を維持） */
  margin-left: -10vw;
  margin-right: -10vw;
  padding-left: 10vw;  
  padding-right: 10vw;
  
  /* 重要：高さもカーブに合わせて確保したままにする（例: 150px） */
  padding-bottom: 110px; 
  position: relative;
  z-index: 10;
  margin-top: -10px;
}

/* --- 重なり順の微調整 --- */
.full-width-bg, .full-width-bg_RED {
  position: relative;
  z-index: 1;
  /* 上のBoxに食い込ませる量を調整（カーブの深さに合わせる） */
  margin-top: -110px; 
}


/* --- Box 05 (ブランドカラーの曲線の土台) --- */
.box05 {
  background: #d70915;
  border-bottom-left-radius: 50% 7vw;
  border-bottom-right-radius: 50% 7vw;
  
 /* 2. 下の余白もカーブの深さと連動させる */
  padding-bottom: 7vw; 

  /* 3. 上の引き上げ量も比率で指定（50px ≒ 4.5vw くらい） */
  margin-top: -3.7vw;
  
  /* 4. 横へのはみ出し設定も比率へ（左右の合計を維持） */
  margin-left: -10vw;
  margin-right: -10vw;
  padding-left: 10vw;  /* ここは中身のpaddingに合わせる */
  padding-right: 10vw;
  /* 重要：高さもカーブに合わせて確保したままにする（例: 150px） */
  padding-bottom: 110px; 
  position: relative;
  z-index: 10;
  margin-top: -20px;
}


/* ボックスを配置するセクション全体の背景（ボックスを際立たせるため白地に配置） */
.info-boxes-section {
    padding: 0px 0;
}

/* 600pxに制限するコンテナ */
.inner-600-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 16px; /* ボックス同士の隙間16px */
}

/* 共通ボックススタイル */
.info-box {
    background-color: #fff9f3; /* 指定：#fff9f3 */
    border-radius: 10px;        /* 指定：10px丸く */
    padding: 40px;             /* 指定：上下左右に40px（テキストエリアの余白） */
    box-sizing: border-box;
    text-align: left;
}

/* ボックス内タイトル */
.info-box-title {
    font-size: 26px;           /* 指定：26px */
    color: #d70915;            /* 指定：#d70915 */
    font-weight: 700;
    margin-bottom: 16px;       /* タイトル下の余白 */
    line-height: 1.4;
}
.text-blid-10{
    font-weight: 700;
}

/* ボックス内本文 */
.info-box-text {
    font-size: 18px;           /* 指定：18px */
    color: #000000;            /* 指定：黒文字 */
    line-height: 1.6;
    margin: 0;
}

/* スマホ用の調整 */
@media (max-width: 768px) {
    .inner-600-container {
        width: 90%;
        gap: 8px; /* ボックス同士の隙間16px */
    }
    .info-box {
        padding: 20px 20px; /* スマホでは余白を少し調整 */
    }
    .info-box-title {
        font-size: 18px;
    }
    .info-box-text {
        font-size: 16px;
    }
}
/* PDFボタンエリアの配置 */
.pdf-download-area {
    margin-top: 30px; /* 本文との間隔 */
    text-align: center; /* 画像を中央に配置 */
}

/* リンク自体の設定 */
.pdf-btn {
    display: inline-block;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.pdf-btn:hover {
    opacity: 0.8;
    transform: translateY(-2px); /* ホバー時に少し浮かす演出 */
}

/* 画像サイズ設定 */
.pdf-img {
    max-width: 500px; /* 指定：最大幅500px */
    width: 100%;      /* スマホ等で500px以下の時に幅に合わせる */
    height: 80px;     /* 指定：縦80px */
    object-fit: contain; /* 画像が歪まないように調整 */
    display: block;
}

/* スマホ用の微調整 */
@media (max-width: 600px) {
    .pdf-img {
        height: auto; /* スマホで横幅が狭くなった時は高さを自動にしてアスペクト比を維持 */
        max-height: 80px;
    }


  .full-width-bg_RED {
    position: relative; /* z-indexを有効にするために必須 */
    z-index: 2;         /* 一番後ろにする */
    padding-top: 170px;  
  }

/* 外側の枠：背景色を横幅いっぱいに広げる */
.full-width-bg-beige {
    position: relative; /* z-indexを有効にするために必須 */
    z-index: 1;         /* 一番後ろにする */
    padding-top: 88px;  
    padding-bottom: 48px;
}


.box04, .box05{
  padding-bottom: 60px; 
  position: relative;
  z-index: 10;
  margin-top: -10px;
}

}





/* 1. トップ画像まわり */
.beige-top-img {
    margin-bottom: 40px; /* 下に余白40px */
}

/* 2. 本文エリア */
.beige-main-text {
    font-size: 18px;
    line-height: 1.8;
    color: #000;
    margin-bottom: 40px; /* 下に余白40px */
}
.text-red-10 {
    color: #d70915; /* 赤色 */
    font-weight: bold;
}

/* 3. 2カラム（左画像・右テキスト） */
.flex-row-245 {
    display: flex;
    gap: 20px; /* 画像とテキストの間の余白20px */
    align-items: flex-start;
    margin-bottom: 40px; /* 下に余白40px */
}
.col-img {
    flex-shrink: 0;
}
.shadow-img {
    width: 245px;
    height: 165px;
    object-fit: cover;
    /* 変更前: box-shadow: 0 4px 12px rgba(0,0,0,0.1); */
    
    /* 変更後: 右に4px、下に4px、ぼかし0、色#f7ced0 */
    box-shadow: 4px 4px 0 #f7ced0;
    
    display: block;
}
.col-text {
    font-size: 18px;
    line-height: 1.6;
}

/* 4. 枠付きエリア */
.pink-bordered-frame {
    border: 1px solid #f7ced0; /* 縁の色 #f7ced0 */
    background-color: #fff;    /* 背景白 */
    border-radius: 20px;        /* 角丸20px */
    padding: 40px;             /* 内側の余白40px */
    box-sizing: border-box;
   
}

.frame-title {
    font-size: 26px;           /* タイトル26px */
    color: #db616d;            /* 文字色 #db616d */
    font-weight: bold;
    margin-bottom: 40px;       /* 下に余白40px */
}

/* 番号付きアイテム */
.numbered-item {
    display: flex;
    align-items: flex-start; 
    gap: 12px;
}
.num-box {
    display: inline-block;
    width: 28px;
    height: 28px;
    line-height: 26px;         /* 枠線分を考慮して調整 */
    text-align: center;
    border: 1px solid #db616d; /* 四角の枠色 #db616d */
    color: #db616d;            /* 文字色 #db616d */
    font-weight: bold;
    font-size: 18px;
    box-sizing: border-box;
    flex-shrink: 0;
    border-radius: 2px;        /* 角丸20px */
}
.item-desc {
    font-size: 18px;
    color: #333;
}

/* 1.4pxの線 */
.hr-pink {
    height: 1.4px;             /* 線の太さ 1.4px */
    background-color: #db616d; /* 線の色 #db616d */
    margin: 16px 0;            /* 線の上下余白16px */
    border: none;
}

/* スマホ対応 */
@media (max-width: 600px) {
    .beige-main-text {
    font-size: 16px;
    line-height: 1.8;
    color: #000;
    margin-bottom: 20px; /
}
/* 1. 縦に並べず、横並びを維持 */
    .flex-row-245 {
        display: flex;
        flex-direction: row; /* 横並びを強制 */
        align-items: flex-start; /* 上揃え（中央ならcenter） */
        gap: 12px; /* 画像とテキストの間の隙間 */
    }

    /* 2. 画像の親要素：幅を固定して潰れないようにする */
    .col-img {
        flex: 0 0 126px; /* 幅126pxから伸縮させない */
    }

    /* 3. 画像自体のサイズ指定 */
    .shadow-img {
        width: 126px !important; /* 指定の126px */
        height: auto;
        display: block;
    }

    /* 4. テキスト側の調整 */
    .col-text {
        flex: 1; /* 残りの幅をすべて使う */
         font-size: 16px;
    }

    .col-text p {
        margin: 0;
        line-height: 1.5;
    }

    /* 4. 枠付きエリア */
.pink-bordered-frame {
    padding: 20px;         
    box-sizing: border-box;
   
}

.frame-title {
        font-size: 18px;           /* タイトル26px */
    margin-bottom: 20px;       /* 下に余白40px */
}
.num-box {
    display: inline-block;
    width: 39px;
    height: 39px;
    line-height: 36px;         /* 枠線分を考慮して調整 */
    font-size: 18px;
    flex-shrink: 0;
}
.item-desc {
    font-size: 14px;
}
}




/* 全幅水色エリア */
.section-blue {
    width: 100%;
    background-color: #e6f2fc; /* 指定の水色 */
    padding-top: 100px;
    padding-bottom: 100px;
    box-sizing: border-box;
}

/* 共通の画像コンテナ設定 */
.blue-element {
    width: 100%;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* 各要素の下の余白 */
.title-img ,.main-img-large{
    margin-bottom: 40px; /* 指定：40px */
}


.main-img-medium {
    margin-bottom: 0px; /* 指定：100px */
}

/* 画像自体のレスポンシブ設定 */
.resp-img-fixed {
    display: block;
    width: 100%;
    height: auto; /* 比率を維持して歪みを防ぐ */
}

/* PCブラウザで高さの目安を維持したい場合（任意設定） */
@media (min-width: 700px) {
    .title-img img { height: 146px; }
    .main-img-large img { height: auto; }
    .main-img-medium img { height: auto; }
}


/* 全幅赤（薄ピンク）エリア */
.section-pink {
    width: 100%;
    background-color: #fbe4e5; /* 指定の色 */
    padding-top: 100px;
    padding-bottom: 100px;
    box-sizing: border-box;
}

/* QA */
/* タイトル：左寄せに修正 */
.qa-main-title {
    font-size: 26px;
    font-weight: 800; /* W8 */
    color: #d70915;
    text-align: left; /* 指定：左寄せ */
    margin-bottom: 40px;
}

/* 区切り線（1px #d86f79、上下40px余白） */
.qa-separator {
    height: 1px;
    background-color: #d86f79;
    margin: 40px 0; /* 上下に40pxの余白 */
    width: 100%;
    border: none;
}

/* QAの行レイアウト */
.qa-q-row, .qa-a-row {
    display: flex;
    align-items: flex-start; /* ラベルを上端に固定 */
    gap: 8px; /* ラベルとテキストの間の距離 */
}

.qa-q-row {
    margin-bottom: 16px; /* 質問の下に16pxの余白 */
}

/* アイコンラベル共通設定 (26px × 16px) */
.qa-icon-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 16px;
    flex-shrink: 0; /* ラベルが潰れないように固定 */
    color: #ffffff;
    font-size: 11px; /* 小さな枠に収めるためのサイズ */
    font-weight: bold;
    line-height: 1;
    margin-top: 4px; /* テキストの一行目と高さを合わせる微調整 */
}

/* Qラベルの色 */
.q-icon {
    background-color: #d70915;
}

/* Aラベルの色 */
.a-icon {
    background-color: #009fd2;
}

/* 質問文スタイル */
.qa-q-text {
    font-size: 17px;
    font-weight: 700; /* W7相当 */
    color: #000000;
    line-height: 1.4;
    margin: 0;
}

/* 回答文スタイル（回り込み防止） */
.qa-a-text {
    flex: 1; /* 残りの幅をすべて使う */
    font-size: 18px;
    color: #000000;
    line-height: 1.6;
}

.qa-a-text p {
    margin: 0;
}




/* 全幅赤エリア */
.section-red {
    width: 100%;
    background-color: #d70915; /* 指定の色 */
    padding-top: 100px;
    padding-bottom: 100px;
    box-sizing: border-box;
}


/* お問い合わせセクション専用の調整 */
.contact-section {
    text-align: center; /* タイトルとテキストを中央寄せにする場合 */
}

/* タイトル画像 (174px) */
.contact-title-img {
    margin-bottom: 40px; /* 下に40px余白 */
}

.contact-title-img img {
    width: 174px; /* 指定：174px */
    height: auto;
    display: block;
    margin: 0 auto; /* 中央寄せ */
}

/* リードテキスト (20px / W7) */
.contact-lead-text {
    font-size: 20px;       /* 指定：20px */
    font-weight: 700;      /* 指定：W7 */
    line-height: 1.6;      /* 3行が綺麗に見える行間 */
    color: #ffff;
    margin-bottom: 40px;   /* 下に40px余白 */
    text-align: left;
}

/* 背景白のBOX */
.contact-white-box {
    background-color: #ffffff; /* 指定：背景白 */
    padding: 40px 40px;        /* BOX内の余白（適宜調整してください） */
    box-shadow: 0 4px 20px rgba(0,0,0,0.05); /* 軽い影でBOXを際立たせる */
    width: 100%;
    box-sizing: border-box;
}

/* スマホ対応 */
@media (max-width: 768px) {
        /* 全幅水色エリア */
.section-blue ,.section-red{
    padding-top: 48px;
    padding-bottom: 48px;
}

.main-img-medium {
    margin-bottom: 0px; /* 指定：100px */
}

    /* 区切り線（1px #d86f79、） */
.qa-separator {
    margin: 20px 0;  */
}
    /* 全幅赤（薄ピンク）エリア */
.section-pink {
    padding-top: 35px;
    padding-bottom: 48px;
}

    /* 全幅赤エリア */
    .contact-lead-text {
        font-size: 16px; 
        margin-bottom: 20px;   /
    }
    .contact-white-box {
        padding: 20px 20px;
    }

/* QA */
/* タイトル：左寄せに修正 */
.qa-main-title {
    font-size: 20px;
    margin-bottom: 20px;
}


/* 区切り線（1px #d86f79） */
.qa-separator {
    margin: 20px 0; /
    width:  100%;
    border: none;
}

/* タイトル画像 (174px) */
.contact-title-img {
    margin-bottom: 20px; 
}

.main-img-large {
    margin-bottom: 20px; 
}

.qa-q-row {
    margin-bottom: 8px; /* 質問の下に16pxの余白 */
}
}



/* コールセンター タイトル */
.contact-box-title {
    font-size: 22px;       /* 指定：22px */
    font-weight: 700;      /* 指定：W7 */
    color: #d70915;        /* 指定：#d70915 */
    margin-bottom: 16px;   /* 指定：下に16px余白 */
    text-align: center;
}

/* 電話番号エリア */
.tel-display-row {
    display: flex;
    align-items: center;   /* 垂直方向中央寄せ */
    justify-content: center;
    margin-bottom: 16px;   /* 指定：下に16px余白 */
}

/* フリーコール画像 */
.freecall-img {
    width: 58px;           /* 指定：w58px */
    height: 46px;          /* 指定：H46px */
    margin-right: 8px;     /* 指定：右に8px余白 */
    object-fit: contain;
}

/* 電話番号テキスト */
.tel-num-main {
    font-size: 52px;       /* 指定：52px */
    font-weight: 600;      /* 指定：W6 */
    color: #d70915;          /* 電話番号の色（任意） */
    line-height: 1;
    font-family: sans-serif; /* 数字を綺麗に見せるフォント */
}

/* 受付時間 */
.business-hours-text {
    font-size: 14px;       /* 指定：14px */
    font-weight: 400;      /* 指定：太字なし */
    text-align: center;    /* 指定：中央寄せ */
    line-height: 1.6;      /* 改行の読みやすさ */
    color: #d70915; 
}

/* スマホ用のレスポンシブ調整 */
@media (max-width: 768px) {
/* コールセンター タイトル */
.contact-box-title {
    font-size: 15px;       /* 指定：22px */
    margin-bottom: 16px;   /* 指定：下に16px余白 */
    text-align: left; 
}
.business-hours-text {
    font-size: 14px;       /* 指定：14px */
    text-align: left;    /* 指定：中央寄せ */
}
    /* 電話番号エリア */
.tel-display-row {
    display: flex;
    align-items: left;   /* 垂直方向中央寄せ */
    justify-content: left;
    margin-bottom: 8px;   /* 指定：下に16px余白 */
}

    .tel-num-main {
        font-size: 30px;   /* スマホでは画面からはみ出さないよう縮小 */
    }
    .freecall-img {
        width: 40px;   
        height: auto;
    }
}









/* -------------------------------------
   フッターエリア
------------------------------------- */
.footer {
    text-align: center;
    padding: 0px 0;
}

/* 画像のスタイル */
.footer img {
    width: 1000px;
    max-width: 100%;
    height: auto;
    display: inline-block; /* text-alignを効かせるためにinline-blockも有効 */
}

/* -------------------------------------
   インフォエリア
------------------------------------- */
.info {
    text-align: center;
    background-color: #606060;
    width: 100%; /* 画面幅いっぱい */
    color: #fff;
    padding: 10px 0px;
}
.infoeria{max-width: 700px; margin: 0 auto; }
.info p{ padding: 0px 0px; text-align: left; font-size: 15px;}

@media (max-width: 768px) {
    .infoeria p{ font-size: 12px; }}


@media (min-width: 769px) {
    .pc { display: block !important; /* PC用要素を表示 */}
    .sp { display: none !important; /* SP用要素を非表示 */}
}
@media (max-width: 768px) {
    /* PC/SP 切り替え用クラス */
    .sp { display: block !important; /* SP用要素を表示 */}
    .pc { display: none !important; /* PC用要素を非表示 */}
}




/* ====================================
   3. スマートフォン設定 (768px以下)
   ==================================== */
@media (max-width: 768px) {
    
    /* --- 共通: body幅の調整 --- */

    
    /* body幅を96%にしたため、幅いっぱいにしたい要素も96%にする */
    .maineria, .creamyellow, .info{
        width: 100vw; /* ビューポート幅いっぱいに設定 */
        margin-left: calc(50% - 50vw); /* 画面幅いっぱいに広げるテクニック */
        margin-right: calc(50% - 50vw);
    }
    .header-inner, .maineria-inner ,.infoeria{
        padding-left: 2%; /* bodyの余白に合わせる */
        padding-right: 2%;
        padding-top: 2%;
        padding-bottom: 2%;
        box-sizing: border-box;
    }

       .inner-titlle {
        padding-left: 1%; /* bodyの余白に合わせる */
        padding-right: 1%;
        padding-top: 0%;
        padding-bottom: 1%;
        box-sizing: border-box;
        margin: 0 auto;
    }
    .inner-700 {
        padding-left: 4%; /* bodyの余白に合わせる */
        padding-right: 4%;
        padding-top: 2%;
        padding-bottom: 2%;
        box-sizing: border-box;
    }
        .inner-700_blue {
        padding-left: 0%; /* bodyの余白に合わせる */
        padding-right: 0%;
        padding-top: 0%;
        padding-bottom: 0%;
        box-sizing: border-box;
    }
       .header-inner {
        padding-top: 0px;
        padding-bottom: 0px;
       }








}