@charset "utf-8";

:root {

/* .body-copy余白 */
  --bc-t: 25px;	/* .body-copyの余白 上 */
  --bc-b: 0;	/* .body-copyの余白 下 */
  --bc-r: 30px;	/* .body-copyの余白 右 */
  --bc-l: 30px;	/* .body-copyの余白 左 */

/* フォント種類 */
/*  --ff-sans: 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro','メイリオ', Meiryo, 'ＭＳ Ｐゴシック', sans-serif;*/
  --ff-sans: 'Noto Sans JP', sans-serif;
  --ff-mincho: "ヒラギノ明朝 Pro W6", "Hiragino Mincho Pro","HGS明朝E", "ＭＳ Ｐ明朝", serif;

/* フォントサイズ */
  --fs-root: 106.25%; /*17px相当*/ /* remの物差し（グローバル基準） */
  --fs-base: 1rem;	/* 本文の基準サイズ（意味トークン） */

/* line-height */
  --lh-body: 1.9; /* 本文の行間 */
  --lh-heading: 1.4; /* 見出しの行間 */
  --lh-narrow: 1.2; /* 行間狭め */

/* 本文 段落間隔 */
  --flow-space: 1.1rem;		/* 本文の標準段落間隔 */
  --flow-space-tight: 1.0rem;	/* 詰め版：カード内・箇条書き密集・補足文など、局所的に */
  --flow-space-loose: 2.0rem;	/* 広め版：重要見出し直後・区切り感を出したいブロックに */
  --media-space: 2.0rem;		/* メディア下：img/figure/動画/表などの直後はやや広めに */

/* 見出し段落間隔 */
  --h2-mt: calc(var(--flow-space) * 1.3);  /* 上を広め */
  --h2-mb: calc(var(--flow-space) * 1.0);  /* 下を詰める */
  --h2b-mt: calc(var(--flow-space) * 1.5);  /* 上を広め */
  --h2b-mb: calc(var(--flow-space) * 0.9);  /* 下を詰める */

/* カラー */
  --color-body: #333333;	/* 本文のフォント色 */
  --color-body-l: #444444;	/* 本文のフォント色（薄目） */
  --color-h2: #163357;	/* ■■■H2カラー■■■ */
  --color-wfot: #ffffff;		/* ホワイト系文字*/
  --color-subf: #333333;	/* 脚注などの薄め文字 */
  --color-main: #AEE0E6;	/* ■■■メインカラー■■■ */
  --color-sub: #;		/* ■■■サブカラー■■■ */
  --color-imp: #C0392B;		/* ■■■アクセントカラー■■■ */
  --color-a-link: #1A5D9A;	/* ■■■リンクカラー■■■ */
  --color-box-bg: #F9F9F9;	/* ■■■BOX背景カラー■■■ */
  --color-box-border: #163357;	/* ■■■BOX枠線カラー■■■ */
  --color-2stepbar: #007bff;		/* ■■■2stepオプトのカラーバーの色■■■ */

/* ボディコピー用装飾 */
  --dc-red: #d0713e;
  --dc-yellowline: linear-gradient(transparent 60%, #fff799 60%);
  --dc-bold: 700;

  /* グレー系 */
  --gray-20:  #fbfbfb; /* 最も薄い：背景、セクションの塗りつぶし */
  --gray-50:  #f5f5f5;/*#F5F7FA*/ /* かなり薄い：背景、セクションの塗りつぶし */
  --gray-100: #e6e6e6; /* 薄い：ボックス背景、淡い区切り線、フッター */
  --gray-200: #cccccc; /* 中間：ボーダー、非アクティブボタン */
  --gray-500: #999999; /* 補足文、キャプション */
  --gray-900: #333333; /* 濃い：本文より控えめな強調 */

  /* プロフィールBOX */
  --prof-bg: #f7f6ed;
  --prof-h2bottom-bar: #aaaaaa;
  --prof-font: #333333;
  --prof-border: #999999;

  /* CTAボタン */
  --color-cta-buttom: #27AE60; /* ボタン背景色 */
  --color-cta-border: #1e8449; /* ボタン枠線色 */
  --color-cta-shadow: #1e8449; /* ボタン陰色 */
  --color-cta-font: #ffffff; /* ボタン文字色 */

  /* LINE登録ボタン */
  --color-line-main: #00b900;
  --color-line-dark: #006500;
  --radius-md: 10px;
  --radius-sm: 9px;

  /* ボックス角丸 */
  --radius-xs: 5px;
  --radius-sm: 9px;
  --radius-md: 10px;
  --radius-lg: 12px;
}



.ivory{
	background-color:var(--color-main);
	position: absolute;
	top: 0;
	bottom: 0;
	width: 100%;
	height:25px;
  display: flex;           /* 中身を並べるためにflexを使用 */
  align-items: center;     /* 高さ方向で中央揃え */
  justify-content: flex-start; /* 左寄せ */
}


.logo-m {
  height: 18px;   /* バーより少し小さいサイズに調整 */
  width: auto;    /* アスペクト比維持 */
  padding-left: 10px;      /* 左端に余白をつけたい場合 */
}
.logo-p{display:none;}


/* 全体 */
* {
	font-style: normal;
	margin: 0;
	padding: 0;
}
html {
	font-size: var(--fs-root)
	}
hr {display: none;}


/* 画像 style */
img{
	width: 100%;
	max-width: 100%;
	height: auto;
}
img.sma {
	height: auto;
	text-align: center;
}
img.smab {
	display:block;
	width: 80%;
	height: auto;
	margin-right: auto;
	margin-left: auto;
}
img.smac {
	display:block;
	width: 50%;
	height: auto;
	margin-right: auto;
	margin-left: auto;
}

.resizeimg{
	width:100%;
	height:auto;
}
.header {
	margin-bottom:0;
	margin-top:1rem;
}


body {
	margin:0;
	color: var(--color-body);
	background-color: #fff;
	line-height: var(--lh-body);
	font-family: var(--ff-sans);
}
.mincho {
	font-family: var(--ff-mincho);
	text-shadow: 2px 2px 2px #eee;
	line-height: 1.5em;
}




/* ヘッド画像
--------------------------*/

.resizeimg{
	width:100%;
	height:auto;
}
.header{
}
.header_move {display:none;}

.header-bottom-text p{
font-size: calc(var(--fs-base) * 1.35)  !important;
	line-height: var(--lh-heading) !important;
}





.container {
	margin-right: 20px;
	margin-left: 20px;
	margin-top:0px;
}

/* ▼通常の本文部分
-----------------------*/

.wrapper {
	margin:35px 10px 35px;
	background-color: #fff;/* 白にする */
}
.wrapper p {
	font-size:var(--fs-base);
	line-height: var(--lh-body);
	color: var(--color-body);
	letter-spacing: 0.05em;
	margin-bottom: var(--flow-space-tight);
}




/* --ブロッククオート-- */
.quote-box {
  background-color: var(--prof-bg); /* プロフィールBOXと同じ薄い背景色(#f7f6ed) */
  border-left: 4px solid var(--color-main); /* 左側にアクセントカラーの線 */
  padding: calc(var(--flow-space) * 0.8) var(--bc-r); /* 上下は少し狭く、左右は.body-copyと同じ余白 */
  margin-top: var(--flow-space-loose); /* 上の段落との間を広めに */
  margin-bottom: var(--flow-space-loose); /* 下の段落との間を広めに */
  border-radius: 0 var(--radius-xs) var(--radius-xs) 0; /* 右側だけ少し角丸に */
}

/* 引用符 */
.quote-box::before {
    content: "“";
    display: block;
    font-size: 3em;
    color: #ccc;
	text-align: left;
    line-height: 0;
    margin-bottom: 20px;
}

.quote-box p {
  margin-bottom: 0; /* ボックス内のpタグの余白をリセット */
}





/* CTAエリア（クロージング） */
.cta-area {
  margin-top: var(--media-space); /* 前の要素から広めに空ける */
  padding: var(--flow-space) 0;
  background-color: var(--gray-50); /* 薄いグレーの背景でエリアを区切る */
  text-align: center; /* CTA周りは中央揃えで見やすく */
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}
.cta-area p {
  margin-bottom: 0;
}
.cta-lead {
  font-weight: 700; /* 誘導文は少し強調 */
}




/* ２ステップオプトインスタイル
--------------------------*/

/* ==========================================
   トリガーエリア（ボタン周辺の余白）
   ========================================== */
.trigger-area {
  text-align: center;
  /* 上下に広い余白を取り、ボタンの存在感を際立たせる */
  margin: 25px 0 30px;
  padding: 0 15px;
}

/* --- トリガーボタン本体（圧倒的な存在感と熱量） --- */
.js-open-modal-btn {
  /* レイアウト・サイズ */
  display: block;
  width: 100%;      /* スマホでは常に横幅いっぱい */
  box-sizing: border-box; /* paddingを含めた幅計算 */
  padding: 20px 15px; /* 上下に厚みを持たせて「押しやすさ」を強調 */
  
  /* タイポグラフィ */
  font-family: var(--ff-sans);
  font-size: calc(var(--fs-base) * 1.3);
  font-weight: 900; /* 最高レベルの太字で緊急性を表現 */
  color: var(--color-cta-font);
  text-decoration: none;
  line-height: 1.1;
  text-align: center;
  
  /* 形状・カラー（ビビッドオレンジの立体グラデーション） */
  border: none;
  border-radius: var(--radius-sm);
  background: var(--color-cta-buttom);
    box-shadow: 0 4px 0 var(--color-cta-shadow);
  text-shadow: 1px 1px 1px rgba(0,0,0,0.2); /* 文字の視認性を高める影 */
  
  /* インタラクション設定 */
  cursor: pointer; /* カーソルを指マークに */
  position: relative; /* 押した時の沈み込み用 */
  top: 0;
  transition: all 0.1s ease-in-out; /* 押した時の動きを滑らかに */

  /* OS標準のスタイルリセット */
  -webkit-appearance: none;
  appearance: none;
}

/* --- アイコン設定（視線誘導ギミック） --- */

/* Font Awesome アイコン (>>) を先頭に配置 */
.js-open-modal-btn::before {
  content: "\f101"; /* angle-double-right アイコンコード */
  font-family: "Font Awesome 6 Free"; /* ※お使いの環境に合わせて調整してください */
  font-weight: 900;
  margin-right: 12px; /* テキストとの間隔 */
  display: inline-block; /* アニメーションさせるために必要 */
  transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1); /* 滑らかで少しバウンドするような動き */
}

/* ホバー時にアイコンを右に動かすアニメーション */
/* （スマホではタップ時に一瞬動くことで、押した感触を強化する） */
.js-open-modal-btn:hover::before {
  transform: translateX(6px); /* 右に6px移動して未来へ誘導 */
}


/* --- アクティブ状態（押した瞬間）の挙動 --- */
.js-open-modal-btn:active {
  top: 3px; /* ボタン全体が3px沈み込む */
  /* 影を薄くして、物理的に押された状態を表現 */
    box-shadow: 0 4px 0 var(--color-cta-shadow);
}

/* --- ボタン下の注釈（リスク排除） --- */
.trigger-note {
  font-size: calc(var(--fs-base) * 0.85) !important; /* 少し小さめ */
  margin-top: 20px; /* ボタンとの間隔 */
  color: var(--gray-500); /* グレーで控えめに */
  line-height: 1.5 !important; /* 読みやすく */
  text-align: center;
}

/* =========================================
   ボタンの鼓動アニメーション（静かなブレス）
   ========================================= */

/* アニメーションの定義（修正済み） */
@keyframes subtle-breath {
  0% {
    transform: scale(1); /* 通常サイズ */
    /* 修正：オレンジボタン用の影色(#d37800)を直接指定 */
    box-shadow: 0 4px 0 var(--color-cta-shadow), 0 4px 10px rgba(0,0,0,0.2);
  }
  50% {
    transform: scale(1.03); /* ほんの少しだけ拡大（1.03倍） */
    /* 拡大時も影を維持（お好みで少しぼかしても良いが、そのままでOK） */
    box-shadow: 0 4px 0 var(--color-cta-shadow), 0 4px 10px rgba(0,0,0,0.2);
  }
  100% {
    transform: scale(1); /* 元に戻る */
    /* 修正：オレンジボタン用の影色(#d37800)を直接指定 */
    box-shadow: 0 4px 0 var(--color-cta-shadow), 0 4px 10px rgba(0,0,0,0.2);
  }
}

/* ボタンにアニメーションを適用 */
.js-open-modal-btn {
  /*
    アニメーション名: subtle-breath
    1回の時間: 2.5秒（ゆっくり）
    動き方: ease-in-out（滑らかに開始・終了）
    繰り返し: infinite（無限ループ）
  */
  animation: subtle-breath 2.5s ease-in-out infinite;

  /* アニメーションの基点を中央に設定 */
  transform-origin: center;
  
  /*（重要）Safariなどで動きを滑らかにするための設定 */
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  /* 念のため、GPUアクセラレーションを有効化してカクつきを防ぐ */
  will-change: transform;
}

/* PCでホバーした時は、アニメーションを止めて少し浮く挙動を優先する */
@media (min-device-width: 601px) {
  .js-open-modal-btn:hover {
    animation: none; /* アニメーション停止 */
    /* 既存のhoverスタイル（アイコン移動など）が優先されます */
  }
}


/* ==========================================
   モーダル（ポップアップ）本体
   ========================================== */
/* モーダルの背景 */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    padding: 15px;
    box-sizing: border-box;
}
.modal-overlay.is-active {
    display: flex;
}

/* モーダルの白い箱 */
.modal-wrap {
    width: 100%;
    max-width: 100%;
    padding: 15px 15px 10px 15px;
    position: relative;
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
    box-sizing: border-box;
    animation: modalSlideUp 0.3s ease-out;

    background-color: var(--color-wfot);
    border-radius: var(--radius-sm);
}


/* 閉じるボタン（×印） */
.modal-close-btn {
    position: absolute;
	top: -11px;
    right: -11px;
    width: 24px;  /* ボタンの直径 */
    height: 24px; /* ボタンの直径 */
    z-index: 10;  /* 最前面へ */
    cursor: pointer;

background-color: #000000; /* 黒い円 */
    border: 2px solid #ffffff; /* 外側の白い枠線 */
    border-radius: 50%;        /* 完全な円形にする */
    /* 視認性を高めるための影 */
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
    /* タップ時の挙動 */
    transition: transform 0.1s, background-color 0.2s;
}
/* ホバー・タップ時のアクション */
.modal-close-btn:hover,
.modal-close-btn:active {
    transform: scale(1.05); /* 少し大きくなる */
    background-color: #333333; /* 少し明るい黒へ */
}

/* --- CSSで白いバッテン（×）を描画 --- */
/* バッテンの共通スタイル（擬似要素で2本の線を作る） */
.modal-close-btn::before,
.modal-close-btn::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 15px; /* 線の長さ */
    height: 3px; /* 線の太さ */
    background-color: #ffffff; /* 白い線 */
    border-radius: 1px; /* 線の端を少し丸く */
}
/* 1本目の線（45度回転） */
.modal-close-btn::before {
    transform: translate(-50%, -50%) rotate(45deg);
}
/* 2本目の線（-45度回転させてクロスさせる） */
.modal-close-btn::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}
/* 表示アニメーション */
@keyframes modalSlideUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* --- ヘッダー画像 --- */
.modal-header-img img {
    width: 100%;
    height: auto;      /* 比率を保って伸縮 */
    display: block;    /* 画像下の隙間を消す */
    object-fit: cover; /* 枠に合わせてトリミング（念のため） */
	margin-bottom:16px;
}

/* --- 進捗バー --- */
.modal-progress-bar {
    width: 100%;
    height: 30px; /* バーの高さを指定 */
    background-color: #e0e0e0; /* バー全体の背景色（灰色） */
    position: relative;
    overflow: hidden; /* 角丸から中身がはみ出さないように */
    border-radius: var(--radius-xs);
	margin-bottom:15px;
}
.progress-bar-inner {
    width: 90%; /* 青斜線の割合（9割） */
    height: 100%;
    background-color: var(--color-2stepbar); /* 青色 */
    /* 斜線アニメーション */
    background-image: linear-gradient(
        -45deg,
        rgba(255, 255, 255, 0.15) 25%,
        transparent 25%,
        transparent 50%,
        rgba(255, 255, 255, 0.15) 50%,
        rgba(255, 255, 255, 0.15) 75%,
        transparent 75%,
        transparent 100%
    );
    background-size: 40px 40px;
    animation: moveStripe 2s linear infinite;
    position: absolute;
    top: 0;
    left: 0;
}
@keyframes moveStripe {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 40px 0;
    }
}

.progress-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
	font-size: calc(var(--fs-base) * 0.85) !important;
    color: #ffffff;
    font-family: var(--ff-sans);
    z-index: 1; /* 青斜線より前面に表示 */
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3); /* 文字を見やすくするために影を追加 */
}

/* =========================================
   モーダル内の送信フォーム回り
   ========================================= */

/* 入力フォーム上部の文字 */
.modal-content {
    font-size: calc(var(--fs-base) * 1.0) !important;
    margin-bottom: 20px !important;
    color: var(--color-body);
    font-family: var(--ff-sans);
}
.modal-content .form-box .form-box-title {
  text-align: center;
  margin-bottom: 15px;
}
.modal-content .form-box .form-box-title p{
	font-size: calc(var(--fs-base) * 0.85);
	line-height:var(--lh-narrow);
}

.title-main {
  font-size: calc(var(--fs-base) * 1.1);
  font-weight: 700;
  margin-bottom: 5px;
}
.title-sub {
  font-size: calc(var(--fs-base) * 0.85);
  color: var(--gray-500);
}

/* アドレス入力フォーム */
.modal-input-email {
    display: block;
    width: 100%;            /* 【重要】横幅を100%に */
    box-sizing: border-box; /* 【重要】paddingを含めた幅・高さ計算にする */

    /* ▼▼▼ 送信ボタン（.formbtn）と同じ設定値を適用 ▼▼▼ */
    padding: 6px 15px 8px;          /* 高さに関わる内側の余白 */
    font-size: 1.1em;       /* 高さに関わる文字サイズ */
    border-radius: var(--radius-xs);    /* 角丸の半径 */
    font-family: var(--ff-sans); /* フォント */
    /* ▲▲▲ ここまで ▲▲▲ */

    /* 入力欄独自のデザイン設定 */
    border: 2px solid #aaa; /* シンプルなグレーの枠線 */
    background-color: #fff; /* 背景色は白 */
    color: var(--color-body); /* 文字色 */
    /* margin-bottom: 0; ボタンの margin-top があるので、ここは0でOK */

    /* スマホでの入力欄のデフォルトスタイルをリセット */
    -webkit-appearance: none;
    appearance: none;
    box-shadow: none; /* デフォルトの影を消す */
    outline: none;    /* フォーカス時の青い枠線を消す（後で自前で設定するため） */
    transition: border-color 0.2s; /* 枠線色の変化を滑らかに */
}

/* (オプション) 入力中に枠線の色を変える */
.modal-input-email:focus {
    border-color: var(--color-main); /* メインカラーにする */
    /* 影をつけてフォーカス感を強調しても良い */
    box-shadow: 0 0 5px rgba(26, 93, 154, 0.3);
}

/* プレースホルダー（薄い文字）の色調整 */
.modal-input-email::placeholder {
    color: #999;
    opacity: 1; /* Firefox対策 */
}
/* 送信ボタン */
.modal-submit-btn {
  display: block;
  width: 100%;
  box-sizing: border-box;
  
  /* 文字スタイル */
  font-family: var(--ff-sans);
  font-size: calc(var(--fs-base) * 1.2); /* 少し大きく強調 */
  font-weight: 900;
  color: #ffffff;
  text-decoration: none;
  line-height: 1.3;
  
  /* ボタン形状・サイズ */
  padding: 18px 15px; /* 厚みを持たせる */
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  margin-top: 15px; /* 入力欄との間隔 */
  margin-bottom: 10px;
  
  /* カラー・立体感（トリガーと同じオレンジ） */
  background: var(--color-cta-buttom);
    box-shadow: 0 4px 0 var(--color-cta-shadow);
  text-shadow: 1px 1px 1px rgba(0,0,0,0.2);
  
  /* インタラクション */
  transition: all 0.1s ease-in-out;
  position: relative;
  top: 0;

  /* リセットCSS */
  -webkit-appearance: none;
  appearance: none;
}

/* アイコン設定 */
.modal-submit-btn::before {
  content: "\f101"; /* Font Awesome アイコン */
  font-family: "Font Awesome 6 Free"; /* 環境に合わせて調整 */
  font-weight: 900;
  margin-right: 10px;
  display: inline-block;
  transition: transform 0.2s;
}
/* ホバー時のアニメーション（PC用） */
.modal-submit-btn:hover::before {
  transform: translateX(5px);
}
/* 押した時の挙動 */
.modal-submit-btn:active {
  top: 3px;
  box-shadow: 0 1px 0 #d37800, 0 2px 5px rgba(0,0,0,0.2);
}


/* ボタン下脚注 */
.form-box .second-step-note ul {
	font-size: calc(var(--fs-base) * 0.7) !important;
	line-height:var(--lh-narrow);
	margin-top:22px;
}
.micro-copy-list {
    list-style: none;       /* デフォルトの・を消す */
    padding: 0;             /* 余白リセット */
    text-align: left;       /* 左寄せ */
    font-size: 0.85em;      /* 本文より少し小さく */
    color: var(--gray-500); /* 薄いグレー（#999999）で控えめに */
    line-height: 1.6;       /* 行間 */
}

/* 各リスト項目（テキスト部分） */
.micro-copy-list li {
    position: relative;    /* 「※」の位置の基準点にする */
    padding-left: 1.2em;   /* 左側に「※」が入る分のスペースを空ける */
    margin-bottom: 5px;    /* 項目間の余白 */
}

/* リストの先頭に「※」を挿入する擬似要素 */
.micro-copy-list li::before {
    content: "※";          /* ここで「※」という文字を挿入 */
    position: absolute;    /* 絶対配置で場所を固定 */
    top: 0;                /* 上端を揃える */
    left: 0;               /* 左端に配置 */
    font-size: 1em;        /* 本文と同じ大きさ */
    color: inherit;        /* 親の文字色（グレー）を引き継ぐ */
    /* 必要に応じて少し位置を微調整 */
    /* top: 0.1em; */
}




/*h2 br{display:none;}*/

#container {
	margin-right: auto;
	margin-left: auto;
	margin-top:10px;
}





.wider-box {
	margin-right: 20px;
	margin-left: 20px;
	margin-top:0px;
}








/* =========================================
   プロフィールセクション
   ========================================= */

/* プロフィールBOX外枠 */
.profile-box {
    background-color: var(--prof-bg); /* 定義済みの薄いベージュ背景(#f7f6ed) */
    padding: var(--media-space) var(--bc-r); /* 上下は広め(2rem)、左右は本文基準(30px) */
    margin-top: var(--flow-space-loose); /* 上の要素と広めに間隔を空ける */
    margin-bottom: var(--flow-space-loose); /* 下の要素とも広めに */
    border-radius: var(--radius-sm); /* 少し角丸にして柔らかさを出す */
    /* オプション：境界をはっきりさせたい場合は下のコメントアウトを外す */
    /* border: 1px solid var(--gray-200); */
}

/* プロフィール見出し（名前・肩書き） */
.profile-name {
    font-family: var(--ff-mincho); /* 権威と信頼の明朝体 */
    color: var(--color-h2); /* 定義済みのネイビー(#163357) */
    font-size: calc(var(--fs-base) * 1.4); /* 名前は大きく目立たせる(約24px相当) */
    font-weight: 700;
    line-height: var(--lh-narrow); /* 行間は狭めに引き締める */
    text-align: center; /* 中央揃えで堂々と */
    margin-top: 0; /* 上余白リセット */
    margin-bottom: var(--media-space); /* 本文との間隔を広めに */
    padding-bottom: var(--flow-space); /* 下線との間隔 */
    border-bottom: 2px solid var(--prof-h2bottom-bar); /* 定義済みのグレーの下線(#aaaaaa) */
}

/* 肩書き部分（少し小さく） */
.profile-position {
    font-size: calc(var(--fs-base) * 0.85); /* 本文より一回り小さく(約14px相当) */
    font-weight: normal; /* 名前よりは軽く */
    display: block; /* 改行させる */
    margin-bottom: 8px; /* 名前との間隔 */
    color: var(--color-body-l); /* 少し薄い黒(#444444) */
}

/* プロフィール本文エリア */
.profile-body {
    text-align: left; /* 本文は読みやすく左揃え */
}

/* 本文内の段落設定 */
.profile-body p {
    font-size: var(--fs-base);
    line-height: var(--lh-body); /* 読みやすい行間(1.9) */
    color: var(--prof-font); /* 定義済みの文字色(#333333) */
    margin-bottom: var(--flow-space); /* 標準の段落間隔(1.1remまたは1.0rem) */
}
/* 最後の段落の下余白を消す */
.profile-body p:last-child {
    margin-bottom: 0;
}

.profile-photo {
    text-align: center; /* 写真を中央揃え */
    margin-bottom: var(--media-space); /* 名前との間隔を広めに取る */
}

.profile-photo img {
    width: 160px; /* スマホで見やすい適切なサイズ感に固定 */
    height: 160px; /* 正方形にする */
    object-fit: cover; /* 枠に合わせてトリミング（念のため） */
    border-radius: 50%; /* 親しみやすさを出すため「円形」に切り抜く */
    /* もし円形が合わないと感じたら、border-radiusを削除して
       四角のままにするか、角丸（var(--radius-sm)）にしてください。
       今回の推奨は「円形」です。
    */
    border: 3px solid #ffffff; /* 写真の周りに白いフチをつけて清潔感を出す */
    box-shadow: 0 4px 10px rgba(0,0,0,0.1); /* 軽く影をつけて立体感を出す */
}

/* =========================================
   プロフィール内の証拠写真セクション
   ========================================= */

/* 写真とキャプションをまとめる枠 */
.profile-evidence {
  /* 上下に標準の段落間隔を空けて、本文と区切りをつける */
  margin: var(--flow-space) 0;
  display: block;
}

/* 写真本体のデザイン */
.evidence-photo {
  width: 100%;   /* 横幅いっぱいに広げる */
  height: auto;  /* 高さは自動調整 */
  
  /* 既存デザインに合わせた装飾 */
  border-radius: var(--radius-xs);     /* 他の要素に合わせて少し角丸に */
  border: 1px solid var(--gray-200);   /* 薄いグレーの枠線で引き締める */
  box-shadow: 0 2px 5px rgba(0,0,0,0.05); /* ほんのり影をつけてリッチに見せる */
  
  display: block; /* 画像下の微妙な隙間を消すおまじない */
}

/* キャプション（注釈テキスト）のデザイン */
.evidence-caption {
  margin-top: 8px; /* 写真との間隔 */
  
  /* テキストスタイル */
  font-size: calc(var(--fs-base) * 0.85); /* 本文(17px)より一回り小さく(約14px) */
  color: var(--gray-500); /* 定義済みの薄いグレー(#999999)にして控えめに */
  line-height: var(--lh-narrow); /* 行間を少し狭くして、まとまり感を出す */
  text-align: left; /* プロフィール本文に合わせて左寄せ */
}







/* =========================================
   フッターセクション
   ========================================= */

#footer {
    background-color: var(--gray-50); /* 最も薄いグレーの背景(#fbfbfb または #f5f5f5) */
    padding: var(--media-space) 0; /* 上下に適度な余白(2rem) */
    text-align: center; /* 全体を中央揃え */
    font-family: var(--ff-sans); /* ゴシック体 */
    font-size: calc(var(--fs-base) * 0.75); /* 本文より明確に小さく(約12~13px) */
    color: var(--gray-500); /* 薄いグレーの文字色(#999999) */
    border-top: 1px solid var(--gray-100); /* 上に薄い境界線を引いて区切りを明確に */
    margin-top: var(--flow-space-loose); /* 本文（またはプロフィール）との間を広めに空ける */
}

/* リンクのスタイル */
.footer-links a {
    color: inherit; /* 親の文字色(グレー)を引き継ぐ */
    text-decoration: none; /* 通常時は下線を消す（ノイズ排除） */
    transition: opacity 0.2s;
}

/* ホバー時に少し変化をつける */
.footer-links a:hover {
    opacity: 0.7; /* 少し透明にして反応を示す */
    text-decoration: underline; /* ホバー時のみ下線を表示 */
}

/* 区切り線（|） */
.footer-sep {
    margin: 0 0.8em; /* 左右に適度な余白 */
    color: var(--gray-200); /* リンク文字よりさらに薄くして目立たなくする */
}

/* コピーライト */
.footer-copy {
    margin-top: var(--flow-space-tight); /* 上のリンクとの間隔 */
    font-style: normal; /* addressタグのデフォルト斜体を解除 */
    font-size: 0.9em; /* リンクよりさらに少しだけ小さく */
}






/* -------------------------------------------------------
   その他
------------------------------------------------------- */


* {
	font-style: normal;
	margin: 0px;
	padding: 0px;
}
hr {
	display: none;
}
.underline {
	text-decoration: underline;
}
.center {
	text-align: center;
}
.img_center {
	text-align: center;
}

a:link {
	color:var(--color-a-link);
}


/* ■Videoタグレスポンシブ化用 */

.youtubeon{
position: relative ;
margin-top: 1.2em ;
/*margin-bottom: 1.2em ;*/
padding-top: 69px ;
padding-bottom: 50% ;
overflow: hidden ;
margin-bottom: 25px;
}

.youtubeon video {
position: absolute ;
top: 0 ;
left: 0 ;
height: 100% ;
width: 100% ;
}



/*font-style
-----------------------------------*/
.bold {font-weight: var(--dc-bold);}
.underline {text-decoration: underline;}
/*color*/
.red {color: var(--dc-red);}
.yellowline {background: var(--dc-yellowline);display: inline;}

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

/*size*/
.p70 {font-size: 70%;}
.p80 {font-size: 80%;}
.p105{font-size: 105%;}
.p110{font-size: 110%;}
.p120{font-size: 120%;}
.p130 {font-size: 130%;}
.p150 {font-size: 150%;}
.p170 {font-size: 170%;}
.p190 {font-size: 190%;}
.p220 {font-size: 220%;}
.p240 {font-size: 240%;}
.p350 {font-size: 350%;}

/*gyo-kan*/
.s0 {padding-bottom:0px;clear:both;}
.s10 {padding-bottom:10px;clear:both;}
.s15 {padding-bottom:15px;clear:both;}
.s25 {padding-bottom:25px;clear:both;}
.s35 {padding-bottom:35px;clear:both;}
.s45 {padding-bottom:45px;clear:both;}
.s50 {padding-bottom:50px;clear:both;}
.s60 {padding-bottom:60px;clear:both;}
.s65 {padding-bottom:65px;clear:both;}
.s75 {padding-bottom:75px;clear:both;}
.s100 {padding-bottom:100px;clear:both;}
.s115 {padding-bottom:115px;clear:both;}
.s125 {padding-bottom:125px;clear:both;}
.s150 {padding-bottom:150px;clear:both;}
.s400 {padding-bottom:400px;clear:both;}


/* 追加スタイル
----------------------------------*/
/*H2オーバーフロウ*/
.overflow h2{
	width: 100vw;
	margin-left: calc(50% - 50vw)
}
/*リストスタイル*/
.main ol{
	font-weight:bold;
	margin-bottom:35px;
	margin-left:40px;
}
.main ol li{
/*	list-style:none;*/
}

/*2段リストのスタイル*/
.main ol.nidan li:not(:last-child){
	margin-bottom:25px;
}


/*waku*/
.img-kakomi-waku {border: 1px solid var(--gray-200);}
.kyakuchu{font-size:70%;text-align: left;}
.waku {
	border: 1px solid var(--gray-200);
	padding:35px;
	margin-bottom:40px;
	background-color:var(--gray-100);
}
.waku h2 {
	font-size: 110%;
	margin-bottom: 5px;
	margin-top: 0px;
	border-bottom:solid 1px #aaa;
}
.waku p:last-child {
	margin-bottom:0px;
}

.waku-husen {
	font-weight:bold;
	padding: 0.5em 1em;
	margin: 2em 0;
	margin-bottom:40px;
	color: #232323;
	background: #fcf;
	border-left: solid 10px #f39;
}
.waku-husen p:last-child {
	margin-bottom:0px;
}

.waku-double {
	padding-top:35px;
	padding-right:25px;
	padding-bottom:15px;
	padding-left:15px;
	margin-bottom:40px;
	border: double #999;
}
.waku-double p:last-child {
	margin-bottom:0px;
}




