@charset "UTF-8";

/* 2026-06-26: PDF v36 修正 ─ 実機調整用変数(光彩) */
:root {
 --no-img02-glow-blur: 8px; /* Photoshop 光彩(外側) ぼかし px */
 --no-img02-glow-opacity: 0.75; /* 同 不透明度 0-1 */
 --no-img02-glow-color: 255, 255, 255; /* 同 色 R,G,B(白) */
}

/* フォント設定は変更なし */
@font-face {
 font-family: "KozGoPr6N";
 src: url("KozGoPr6N-ExtraLight.otf") format("opentype");
 font-weight: 200;
 font-style: normal;
}

@font-face {
 font-family: "KozGoPr6N";
 src: url("KozGoPr6N-Light.otf") format("opentype");
 font-weight: 300;
 font-style: normal;
}

@font-face {
 font-family: "KozGoPr6N";
 src: url("KozGoPr6N-Regular.otf") format("opentype");
 font-weight: 400;
 font-style: normal;
}

@font-face {
 font-family: "KozGoPr6N";
 src: url("KozGoPr6N-Medium.otf") format("opentype");
 font-weight: 500;
 font-style: normal;
}

@font-face {
 font-family: "KozGoPr6N";
 src: url("KozGoPr6N-Bold.otf") format("opentype");
 font-weight: 700;
 font-style: normal;
}

@font-face {
 font-family: "KozGoPr6N";
 src: url("KozGoPr6N-Heavy.otf") format("opentype");
 font-weight: 900;
 font-style: normal;
}

/* 基本設定 */
/* 2026-06-25: Firefox互換修正
 旧コード=body { background:url(...); background-attachment:fixed; overflow-x:hidden; }
 は Firefox 既知バグ=overflow-x:hidden と background-attachment:fixed の組合せで
 背景が viewport 固定にならず白抜け表示(Chrome は正常表示)。
 解: body::before に position:fixed で背景を全画面固定配置=どのブラウザでも viewport基準で安定。 */
body {
 font-family: "KozGoPr6N", "小塚ゴシック Pro", "Kozuka Gothic Pro", sans-serif;
 color: #fff;
 background-color: #000;
 overflow-x: hidden;
 position: relative;
}
body::before {
 content: "";
 position: fixed;
 inset: 0;
 z-index: -1;
 background: url("img/main_bg.jpg") no-repeat center/cover;
 pointer-events: none;
}

.bg {
 width: 100vw;
 display: flex;
 justify-content: center;
 align-items: flex-start;
 position: absolute;
 top: -45px;
 left: 0;
}

.bg img {
 width: 1080px;
 display: flex;
 justify-content: center;
 align-items: flex-start;
 opacity: 0.2;
}

.red {
 color: #e60012;
}

/* ヘッダー */
/* 2026-06-25: クロスブラウザ中央寄せ修正(v2 = 100vw基準)
 旧コード= left:50% + transform:translateX(-50%) + margin-left:-17px
 は viewport幅の「スクロールバー込み/除外」解釈差で Chrome/Firefox/Edge 間で
 水平位置が-2〜-17pxずれてた(Firefoxは0、Chromeは-15、Edgeは-17で揃う既知の不整合)。

 v1 (left:0+right:0+margin-inline:auto) は Firefox=中央0px完璧だが
 Chromiumがスクロールバー幅(15px)を viewport から引いて計算する仕様で-7pxズレ。

 v2: left:50vw + translateX(-50%) で 100vw=スクロールバー込み viewport幅 を
 CSS仕様で常時一定の基準にして両ブラウザの差を吸収。
 transform:translateX(-50%) は要素自身の50%幅シフトでブラウザ間差なし。 */
.header {
 position: fixed;
 top: 0;
 left: 50vw;
 transform: translateX(-50%);
 width: 54.55vw;
 min-width: 1080px;
 padding: 10px 0;
 z-index: 1000;
 background: rgba(0, 0, 0, 0.3);
 transition: opacity 0.3s ease;
 opacity: 1;
}

.header__nav {
 display: flex;
 justify-content: left;
 align-items: center;
 font-size: 1rem;
 font-weight: 700;
 margin-left: 1rem;
 padding-left: 2rem;
 gap: 5px;
}

.header__nav img {
 width: 30px;
 margin-right: 1rem;
}

.header__nav a {
 color: #fff;
 text-decoration: none;
 text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

/* メインビジュアル（TOP） */
.main-visual {
 position: relative;
 width: 54.55vw;
 min-width: 1080px;
 height: 85vh;
 display: flex;
 flex-wrap: wrap;
 align-items: center;
 justify-content: left;
 margin: 0 auto;
 text-align: center;
 overflow: hidden;
}

.main-visual .logo {
 width: 100%;
 margin-top: 3.8rem;
 padding-left: 2rem;
}

.main-visual p img {
 width: 16vw;
}

.main-visual .main-visual_content {
 width: 100%;
 position: relative;
 z-index: 2;
 top: 0;
}

.main-visual_content h1 {
 width: 100%;
 margin-top: -0.5rem;
 margin-bottom: 20px;
}

h1 img {
 margin-left: 5vw;
 width: 26vw;
}

.main-visual_content h2 {
 width: 100%;
 text-align: right;
 font-size: 2rem;
 color: #fff;
 margin-bottom: 1rem;
 padding-right: 15%;
}

.main-visual_content p {
 display: flex;
 justify-content: right;
 align-items: center;
 font-size: 1rem;
 text-align: justify;
 letter-spacing: 1.5px;
 margin-bottom: 20px;
 padding-right: 15%;
}

.sp {
 display: none;
}

/* 強みセクション */
.strength {
 position: relative;
 width: 54.55vw;
 min-width: 1080px;
 min-height: 1445px;
 margin: 0 auto;
 padding: 125px 20px;
 text-align: center;
 background: url("img/strength_bg.png") no-repeat center;
 background-size: 1080px 1445px;
}

.strength h2 {
 font-size: 2rem;
 font-weight: 900;
 transform: rotate(90deg);
 transform-origin: left top;
 position: absolute;
 left: 100px;
 top: 350px;
 margin: 0;
 letter-spacing: 3px;
 color: #e60012;
}

.strength .bar {
 font-size: 2rem;
 transform: rotate(90deg);
 transform-origin: left top;
 position: absolute;
 left: 125px;
 top: 32rem;
 margin: 0;
 color: #e60012;
 border-bottom: 3px solid #e60012;
}

.strength_text {
 width: 700px;
 margin: 0 auto;
 padding-top: 650px;
 font-size: 2rem;
 font-weight: 900;
 text-align: left;
 letter-spacing: 4px;
 line-height: 1.2;
}

.strength p {
 margin-bottom: 30px;
}

.strength__features {
 width: 690px;
 display: flex;
 justify-content: center;
 margin: 0 auto;
 margin-bottom: 30px;
}

.strength__features .feature1 {
 position: relative;
 top: 60px;
}

.strength__features .feature2 {
 position: relative;
 top: 30px;
}

.strength__features .feature3 {
 position: relative;
 top: 0;
}

.strength__features img {
 width: 230px;
}

/* シーンセクション */
.scene {
 display: flex;
 flex-wrap: wrap;
 justify-content: space-around;
 align-items: top;
 position: relative;
 width: 54.55vw;
 min-width: 1080px;
 padding: 65px 20px;
 text-align: center;
 background: #e60012;
 z-index: -1;
 margin: 0 auto;
 margin-top: -200px;
 padding-top: 200px;
}

.scene h2 {
 width: 100%;
 font-size: 2rem;
 font-weight: 900;
 transform: rotate(90deg);
 transform-origin: right top;
 position: absolute;
 bottom: -10px;
 right: 40px;
 margin: 0;
 letter-spacing: 3px;
 color: #000;
}

.scene .bar {
 font-size: 2rem;
 transform: rotate(90deg);
 transform-origin: right top;
 position: absolute;
 right: 14px;
 bottom: -115px;
 margin: 0;
 color: #000;
 border-bottom: 3px solid #000;
}

.scene_small {
 font-size: 1.5rem;
 line-height: 0;
 font-weight: 900;
}

.scene h3 {
 width: 100%;
 position: relative;
 top: -120px;
 right: 70px;
 font-size: 2.2rem;
 font-weight: 900;
 text-align: right;
 letter-spacing: 3px;
 line-height: 1;
 color: #fff;
}

.scene_image {
 width: 31%;
 aspect-ratio: 481 / 657;
 object-fit: contain;
 max-width: 100%;
 display: block;
 margin-top: -65px;
 margin-right: 4%;
}

.scene_features {
 width: 65%;
 display: flex;
 justify-content: left;
 flex-wrap: wrap;
}

.scene h4 {
 width: 100%;
 font-family: "KozGoPr6N", "小塚ゴシック Pro", "Kozuka Gothic Pro", sans-serif;
 font-size: 1.5rem;
 font-weight: 900;
 text-align: left;
 line-height: 1.2;
 letter-spacing: -1px;
 color: #000;
}

.scene_feature01,
.scene_feature02,
.scene_feature03,
.scene_feature04 {
 position: relative;
 display: flex;
 flex-wrap: wrap;
 align-items: flex-start;
 width: 48%;
 height: 110px;
 padding: 0.8rem;
 padding-top: 0;
 padding-bottom: 0;
 gap: 2%;
 border-left: 5px solid #000;
 margin-bottom: 10px;
}

.scene_imagetext01,
.scene_imagetext02,
.scene_imagetext03,
.scene_imagetext04 {
 position: absolute;
 width: 25%;
}

.scene_feature02,
.scene_feature04 {
 margin-top: -33px;
}

.scene_feature03,
.scene_feature04 {
 top: -33px;
}

.scene_feature01 p,
.scene_feature02 p,
.scene_feature03 p,
.scene_feature04 p {
 width: 73%;
 text-align: left;
 font-weight: 500;
 line-height: 1.1;
 white-space: nowrap;
}

.scene_imagetext01 {
 top: 1px;
 right: 45px;
 width: 37%;
}

.scene_imagetext02 {
 top: -12px;
 right: 92px;
 width: 35%;
}

.scene_imagetext03 {
 top: -15px;
 right: 7px;
 width: 36%;
}

.scene_imagetext04 {
 top: -15px;
 right: 120px;
 width: 22%;
}

.scene_no {
 width: 17%;
 object-fit: contain;
}

/* Scene p内の改行 PC/SP 切替 — pc-only=PC表示・sp-only=SP表示 */
.scene .pc-only {
 display: inline;
}
.scene .sp-only {
 display: none;
}

/* マップセクション */
.map {
 display: flex;
 flex-wrap: wrap;
 justify-content: space-around;
 align-items: top;
 position: relative;
 width: 54.55vw;
 min-width: 1080px;
 padding: 65px 20px;
 text-align: center;
 background: url("img/map_bg.png") no-repeat center;
 background-size: 1080px 723px;
 z-index: -1;
 margin: 0 auto;
 margin-top: -150px;
 padding-top: 225px;
}

.map h2 {
 font-size: 2rem;
 font-weight: 900;
 transform: rotate(90deg);
 transform-origin: left top;
 position: absolute;
 left: 100px;
 top: 170px;
 margin: 0;
 letter-spacing: 3px;
 color: #fff;
}

.map .bar {
 font-size: 2rem;
 transform: rotate(90deg);
 transform-origin: left top;
 position: absolute;
 left: 125px;
 top: 16rem;
 margin: 0;
 color: #fff;
 border-bottom: 3px solid #fff;
}

.map_content {
 width: 100%;
 position: relative;
 top: -45px;
 display: flex;
 flex-wrap: wrap;
 justify-content: left;
 align-items: top;
 padding-left: 115px;
 gap: 5px;
 margin-top: -10px;
}

.map_l {
 width: 43%;
}

.map_s {
 width: 22.55%;
 display: flex;
 flex-direction: column;
 gap: 5px;
}

.map_m {
 display: flex;
}

.map_m img {
 /* 2026-06-26: PDF v36 修正反映 ─ 実機指示 32.2% */
 width: 32.2%;
 height: auto;
 object-fit: contain;
 /* 2026-06-26: 光彩(外側) ─ Ai のスクリーン+白+ぼかし8px+不透明度75% を CSS化 */
 filter: drop-shadow(0 0 var(--no-img02-glow-blur) rgba(var(--no-img02-glow-color), var(--no-img02-glow-opacity)));
}

.map_m h3 {
 padding: 15px;
 font-size: 2.4rem;
 letter-spacing: 2px;
 text-align: left;
}

/* 基本料金セクション */
.fee {
 display: flex;
 flex-wrap: wrap;
 justify-content: space-around;
 align-items: top;
 position: relative;
 width: 54.55vw;
 min-width: 1080px;
 padding: 65px 20px;
 text-align: center;
 color: #000;
 background: #fff;
 z-index: -2;
 margin: 0 auto;
 margin-top: -200px;
 padding-top: 200px;
 padding-bottom: 200px;
}

.fee h2 {
 width: 100%;
 font-size: 2rem;
 font-weight: 900;
 transform: rotate(90deg);
 transform-origin: right top;
 position: absolute;
 bottom: 472px;
 right: 40px;
 margin: 0;
 letter-spacing: 3px;
 color: #000;
}

.fee .bar {
 font-size: 2rem;
 transform: rotate(90deg);
 transform-origin: right top;
 position: absolute;
 right: 14px;
 bottom: 40px;
 margin: 0;
 color: #000;
 border-bottom: 3px solid #000;
}

.scene_small {
 font-size: 1.5rem;
 line-height: 0;
 font-weight: 900;
}

.fee h3 {
 width: 100%;
 position: relative;
 top: -85px;
 right: 70px;
 font-size: 2.2rem;
 font-weight: 900;
 text-align: right;
 letter-spacing: 3px;
 line-height: 1;
 color: #000;
}

.fee h4 {
 font-size: 1.5rem;
 color: #000;
}

/* 2026-06-27: SP料金表 画像差替 ─ PCでは画像非表示・SPでは画像表示+table非表示 */
.fee_content .sp-only-table {
 display: none;
}

.fee_content table {
 width: 100%;
 border-collapse: collapse;
 border: 1px solid #666;
 background-color: #fff;
 color: #000;
}

.fee_content thead th {
 text-align: center;
 border: 2px solid #666;
}

.fee_content th,
.fee_content td.table_title {
 font-size: 1.8rem;
 font-weight: 700;
 padding: 10px;
 text-align: center;
 white-space: nowrap;
}

.fee_content tbody tr {
 height: 4rem;
 min-height: 4rem;
}

.table_title p {
 display: flex;
 justify-content: center;
 text-align: center;
}

.fee_content td.table_title {
 min-width: 100px;
 font-weight: 700;
}

/* 2026-06-27: 見本合わせ ─ 数字2.1rem・秒は1.4rem+両方とも太字+秒を数字の下付き化(align-self: flex-end) */
.fee_content td.table_title p {
 font-size: 2.1rem;
 font-weight: 700;
 line-height: 1.1;
 align-items: flex-end;
}

.fee_content td.table_title p .second {
 font-size: 1.4rem;
 font-weight: 700;
 align-self: flex-end;
 line-height: 1.5;
}

.fee_content td {
 position: relative;
 padding: 5px;
 border: 2px solid #666;
 font-size: 1rem;
 font-weight: 700;
 text-align: center;
}

.fee_content td p {
 display: flex;
 justify-content: center;
 flex-wrap: nowrap;
 font-size: 1.2rem;
 font-weight: 700;
}

.fee_content td p:first-of-type span {
 font-size: 0.8rem;
 font-weight: 700;
}

.fee_content td p:nth-of-type(2) {
 position: absolute;
 bottom: 0;
 right: 3px;
 color: #fff;
 font-size: 0.6rem;
 text-align: right;
 z-index: 1;
}

.fee_content td p:nth-of-type(2) span {
 font-size: 0.8rem;
 font-weight: 700;
 line-height: 0.2;
}

.fee_content td:not(.table_title)::after {
 content: "";
 position: absolute;
 bottom: 0;
 right: 0;
 width: 0;
 height: 0;
 border-style: solid;
 border-width: 0 0 27px 100px;
 border-color: transparent transparent #000 transparent;
}

.fee_content td span {
 display: block;
 margin-top: 5px;
 font-size: 0.9rem;
 font-weight: 400;
 white-space: nowrap;
}

.fee_content td span span {
 white-space: nowrap;
}

.table_big {
 display: inline-flex;
 justify-content: right;
 align-items: flex-end;
 flex-wrap: nowrap;
}

/* 2026-06-27: 見本合わせ ─ 背景#9fa0a0+白太字+上下パディング極小 */
.fee_content .panel-title-banner {
 width: 100%;
 background-color: #9fa0a0;
 color: #fff;
 font-size: 1.6rem;
 font-weight: 700;
 text-align: center;
 padding: 2px 12px;
 letter-spacing: 2px;
 margin-top: 24px;
 margin-bottom: -3px;
 line-height: 1.5;
}

.fee_content .panel-title-banner:first-of-type {
 margin-top: 0;
}

@media (max-width: 1079px) {
 .fee_content h4 {
 font-size: 1.2rem;
 }

 .fee_content th,
 .fee_content td.table_title {
 font-size: 1rem;
 padding: 8px;
 }

 .fee_content td {
 font-size: 0.9rem;
 padding: 10px;
 }

 .fee_content td:not(.table_title)::after {
 border-width: 0 0 30px 30px;
 }
}

.fee_time {
 width: 100%;
 display: flex;
 justify-content: center;
 align-items: center;
 margin-top: 15px;
}

.fee_time p {
 min-height: 40px;
}

.fee_time p span {
 width: 25px;
 margin-right: 5px;
}

.fee_time p span img {
 width: 100%;
 aspect-ratio: 1;
 object-fit: cover;
}

.fee_time p:first-of-type {
 display: flex;
 justify-content: center;
 align-items: center;
 width: 20%;
 font-size: 1.3rem;
 font-weight: 700;
 color: #fff;
 background-color: #e60012;
 border: 2px solid #e60012;
 box-sizing: border-box;
}

.fee_time p:nth-of-type(2) {
 width: 35%;
 font-size: 1.5rem;
 font-weight: 900;
 border: 2px solid #e60012;
 box-sizing: border-box;
}

.fee_right {
 width: 100%;
 text-align: right;
 margin-top: 3rem;
 margin-bottom: 0.5rem;
}

.fee_bottom {
 width: 100%;
 text-align: right;
 font-size: 1.2rem;
 font-weight: 900;
 color: #e60012;
}

/* ディスプレイセクション */
/* 2026-06-26: PDF v36 修正反映 ─ 透明PNG斜めデザインを壊さんよう単一bgで元戻し
 (背景の高さ追従は 側で背景画像縦長版を差替対応する前提) */
.display {
 display: flex;
 flex-wrap: wrap;
 justify-content: space-around;
 align-items: top;
 position: relative;
 width: 54.55vw;
 height: 607px;
 min-width: 1080px;
 padding: 65px 20px;
 text-align: center;
 background: url("img/display_bg.png") no-repeat center;
 background-size: 1080px 573px;
 z-index: -1;
 margin: 0 auto;
 margin-top: -150px;
 padding-top: 295px;
}

.display h2 {
 font-size: 2rem;
 font-weight: 900;
 transform: rotate(90deg);
 transform-origin: left top;
 position: absolute;
 left: 100px;
 top: 190px;
 margin: 0;
 letter-spacing: 3px;
 color: #fff;
}

.display h3 {
 position: absolute;
 top: 100px;
 font-size: 1.8rem;
 width: 100%;
 text-align: center;
 color: #fff;
}

.display .bar {
 font-size: 2rem;
 transform: rotate(90deg);
 transform-origin: left top;
 position: absolute;
 left: 125px;
 top: 20.5rem;
 margin: 0;
 color: #fff;
 border-bottom: 3px solid #fff;
}

.display_content {
 width: 100%;
 position: relative;
 display: flex;
 flex-wrap: wrap;
 justify-content: center;
 align-items: center;
 gap: 5px;
 margin-top: -11rem;
}

.display_content dl {
 width: 100%;
 display: flex;
 justify-content: center;
 align-items: stretch;
 flex-wrap: wrap;
 gap: 2px;
 position: relative;
 top: -17px;
}

.display_content dt {
 display: flex;
 justify-content: center;
 align-items: center;
 width: 16%;
 min-height: 30px;
 font-size: 1rem;
 padding: 3px;
 font-weight: 700;
 text-align: center;
 color: #fff;
 background: linear-gradient(to right, #e32331, #80284e);
 margin-left: 26%;
 margin-bottom: 5px;
}

/* 2026-06-26: PDF v36 ─ 長文 dt(ビジョンサイズ/ビジョンサイズ全長/リフレッシュレート) */
.display_content dt.long {
 font-size: 0.85em;
 letter-spacing: 0;
}

.display_content dd {
 display: flex;
 justify-content: left;
 align-items: center;
 width: 31%;
 min-height: 30px;
 font-size: 0.8rem;
 padding: 3px;
 padding-left: 1rem;
 font-weight: 700;
 text-align: left;
 color: #fff;
 background: linear-gradient(to right, #194d82, #e32331);
 margin-right: 26%;
 margin-bottom: 5px;
}

/* フローチャートセクション */
.flow {
 display: flex;
 flex-wrap: wrap;
 justify-content: space-around;
 align-items: top;
 position: relative;
 width: 54.55vw;
 min-width: 1080px;
 padding: 65px 20px;
 text-align: center;
 color: #000;
 background: #fff;
 z-index: -2;
 margin: 0 auto;
 margin-top: -200px;
 padding-top: 200px;
 padding-bottom: 200px;
}

.flow h2 {
 width: 100%;
 font-size: 2rem;
 font-weight: 900;
 transform: rotate(90deg);
 transform-origin: right top;
 position: absolute;
 bottom: 800px;
 right: 40px;
 margin: 0;
 letter-spacing: 3px;
 color: #000;
}

.flow .bar {
 font-size: 2rem;
 transform: rotate(90deg);
 transform-origin: right top;
 position: absolute;
 right: 14px;
 bottom: -60px;
 margin: 0;
 color: #000;
 border-bottom: 3px solid #000;
}

.flow h3 {
 width: 100%;
 position: relative;
 top: -90px;
 right: 70px;
 font-size: 2.2rem;
 font-weight: 900;
 text-align: right;
 letter-spacing: 3px;
 line-height: 1;
 color: #000;
}

.flow h4 {
 width: 100%;
 font-size: 1.5rem;
 font-weight: 900;
}

.flow h4 + p {
 width: 100%;
 font-size: 1.2rem;
 font-weight: 500;
 margin-bottom: 1rem;
}

.flow_item {
 width: 100%;
 display: flex;
 justify-content: center;
 align-items: flex-start;
 flex-wrap: wrap;
 margin-bottom: 10px;
 gap: 5px;
}

.flow_item p:first-of-type {
 width: 180px;
 height: auto;
}

.flow_item p:nth-of-type(2) {
 width: 50%;
 padding-top: 0.5rem;
 padding-left: 0.5rem;
 height: auto;
 text-align: left;
 line-height: 1.3;
}

.flow_bold {
 font-weight: 900;
}

.flow_small {
 font-size: 0.8rem;
}

.flow_messege {
 display: block;
 width: 50%;
 font-size: 1rem;
 margin: 0 auto;
}

.flow_messege h4 {
 width: 100%;
 font-size: 1rem;
 font-weight: 800;
 text-align: left;
}

.flow_messege .flow_small2 {
 font-size: 0.9rem;
 text-align: left;
}

.flow_messege2 p {
 font-weight: 800;
}

/* FAQセクション */
.faq_top,
.faq_bottom {
 width: 54.55vw;
 min-width: 1080px;
 margin: 0 auto;
}

.faq_top {
 margin-top: -149px;
}

.faq {
 position: relative;
 width: 54.55vw;
 min-width: 1080px;
 margin: 0 auto;
 padding: 50px 20px;
 text-align: center;
 background: #000;
}

.faq h2 {
 font-size: 2rem;
 font-weight: 900;
 transform: rotate(90deg);
 transform-origin: left top;
 position: absolute;
 left: 100px;
 top: 20px;
 margin: 0;
 letter-spacing: 3px;
 color: #fff;
}

.faq h3 {
 position: absolute;
 top: -20px;
 font-size: 1.8rem;
 width: 100%;
 text-align: center;
 color: #fff;
}

.faq .bar {
 font-size: 2rem;
 transform: rotate(90deg);
 transform-origin: left top;
 position: absolute;
 left: 125px;
 top: 6.5rem;
 margin: 0;
 color: #fff;
 border-bottom: 3px solid #fff;
}

.faq details {
 margin-bottom: 20px;
 text-align: left;
 max-width: 600px;
 margin: 0 auto 20px;
 overflow: hidden;
 border: 1px solid #fff;
}

.faq summary {
 display: flex;
 position: relative;
 justify-content: left;
 align-items: center;
 font-size: 1rem;
 font-weight: 900;
 padding: 10px;
 padding-left: 1em;
 background-color: #fff;
 color: #000;
 cursor: pointer;
 list-style: none;
}

.faq summary span {
 position: absolute;
 right: 10px;
}

.faq summary img {
 width: 20px;
 height: auto;
 transition: transform 0.3s ease-out;
}

.faq details[open] summary img {
 transform: rotate(180deg);
}

.faq summary::-webkit-details-marker,
.faq summary::marker {
 display: none;
}

.faq p {
 padding: 10px;
 background-color: rgba(34, 34, 34, 0.8);
 margin: 0;
 max-height: 0;
 opacity: 0;
 transform: translateY(-10px);
 transition:
 max-height 0.3s ease-out,
 opacity 0.3s ease-out,
 transform 0.3s ease-out;
}

.faq details[open] p {
 font-size: 1rem;
 font-weight: 900;
 padding-left: 1em;
 background: #000;
 color: #fff;
 max-height: 200px;
 opacity: 1;
 transform: translateY(0);
}

/* 代理店セクション */
.agency {
 width: 54.55vw;
 min-width: 1080px;
 margin: 0 auto;
 position: relative;
 padding: 50px 20px;
 text-align: center;
 background: #fff;
 padding-top: 200px;
 margin-top: -200px;
 z-index: -1;
}

.agency h2 {
 font-size: 1.6rem;
 font-weight: 900;
 margin-bottom: 20px;
 color: #000;
}

.agency_icons {
 width: 600px;
 margin: 0 auto;
 display: flex;
 justify-content: center;
 align-items: center;
 gap: 20px;
}

.agency_icons img {
 width: 150px;
 height: 150px;
}

/* 運営会社セクション */
.company {
 width: 54.55vw;
 min-width: 1080px;
 margin: 0 auto;
 margin-top: -50px;
 padding: 50px 20px;
 text-align: center;
 background: #fff;
}

.company h2 {
 font-size: 1.6rem;
 font-weight: 900;
 margin-bottom: 20px;
 color: #000;
}

.company_content {
 width: 600px;
 margin: 0 auto;
 color: #000;
}

.company_content dl {
 width: 500px;
 margin: 0 auto;
 margin-bottom: 1.5rem;
 display: flex;
 flex-wrap: wrap;
 justify-content: center;
 align-items: center;
 gap: 1%;
}

.company_content dt {
 width: 16%;
 font-size: 1.2rem;
 text-align: justify;
 text-justify: inter-character;
 display: block;
 line-height: 1.5;
}

.company_content dd {
 width: 79%;
 font-size: 1.2rem;
 text-align: left;
}

.line_space {
 width: 100%;
 text-align: center;
 margin-top: 2rem;
}

.line_space h3 {
 width: 100%;
 font-size: 1.5rem;
 font-weight: 900;
 padding: 0.5rem;
}

.line_space p:nth-of-type(1) {
 width: 100%;
 font-size: 1.2rem;
 letter-spacing: 1px;
 text-align: center;
 margin-bottom: 0.8rem;
}

.line_bottom {
 width: 100%;
 display: flex;
 justify-content: center;
 align-items: center;
}

.gray_small {
 width: 100%;
 font-size: 0.8rem;
 margin-top: 0.6rem;
 letter-spacing: 2px;
 color: #757575;
}

/* お問い合わせフォームセクション */
.contact_bottom {
 width: 100%;
 background: #fff;
 margin: 0 auto;
 margin-top: 2rem;
 margin-bottom: 1rem;
}

.contact_bottom img {
 margin: 0 auto;
 transition: transform 0.3s ease-out;
}

.contact_bottom img:hover {
 transform: scale(1.1);
}

.contact {
 width: 54.55vw;
 min-width: 1047px;
 margin: 0 auto;
 margin-top: 0;
 padding: 50px 20px;
 text-align: center;
 background: #fff;
}

.contact h2 {
 font-size: 2rem;
 font-weight: 900;
 margin-top: 40px;
 margin-bottom: 20px;
 color: #000;
}

.contact form {
 max-width: 600px;
 margin: 0 auto;
 text-align: left;
 padding: 20px;
 color: #000;
 font-weight: 700;
}

.contact label {
 width: 100%;
 display: flex;
 flex-wrap: wrap;
 align-items: center;
 margin-bottom: 20px;
}

.contact label span {
 display: flex;
 justify-content: center;
 align-items: center;
 background-color: #e60012;
 padding: 1px 8px;
 padding-top: 2px;
 margin-left: 0.5rem;
 color: #fff;
 font-size: 0.8rem;
 font-weight: 400;
}

.contact input,
.contact textarea {
 width: 100%;
 padding: 5px;
 background-color: #fff;
 border: 2px solid #000;
 border-radius: 5px;
 color: #000;
}

.contact textarea {
 height: 200px;
}

.contact button {
 width: 55%;
 margin: 0 auto;
 cursor: pointer;
 display: flex;
 justify-content: center;
}

.contact button img {
 height: auto;
 margin: 0 auto;
 margin-top: 15px;
 margin-bottom: 20px;
 border-radius: 10px;
 transition: transform 0.3s ease-out;
}

.contact button img:hover {
 transform: scale(1.1);
}

form p {
 width: 100%;
 display: flex;
 justify-content: center;
 align-items: center;
}

form p img {
 transition: transform 0.3s ease-out;
}

form p img:hover {
 transform: scale(1.1);
}

/* ハンバーガーメニューのスタイル */
.hamburger {
 position: fixed;
 top: 15px;
 right: 15px;
 background: none;
 border: none;
 cursor: pointer;
 z-index: 1100;
 width: 40px;
 height: 30px;
 padding: 0;
}

.hamburger span {
 display: block;
 width: 30px;
 height: 3px;
 background: #ffffff;
 margin: 5px auto;
 transition: all 0.3s ease;
 box-shadow: 0 0 3px rgba(0, 0, 0, 0.5);
 /* シャドウを追加 */
}

.hamburger.active span:nth-child(1) {
 transform: translateY(8px) rotate(45deg);
}

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

.hamburger.active span:nth-child(3) {
 transform: translateY(-8px) rotate(-45deg);
}

/* PCでの設定 */
@media (min-width: 1080px) {
 .header {
 display: block;
 opacity: 1;
 }

 .header__logo {
 display: none;
 }

 .hamburger {
 display: none !important;
 }
}

/* SP用のスタイル（修正） */
@media (max-width: 1079px) {
 .sp {
 display: initial !important;
 }

 .pc {
 display: none !important;
 }

 body {
 width: 100vw;
 height: auto;
 overflow-x: hidden;
 max-width: 100vw;
 }

 .main-visual .main-visual_content {
 width: 100%;
 position: relative;
 z-index: 2;
 top: 150px;
 }

 /* 2026-06-28: SP縦線レイアウト 再々設計(heightベース)
 旧版=top+bottom絶対指定+display:flex の組合せでbox計算破綻し bottom が全く効かなかった真因に対応。
 新版=top + 明示height(calc) で親100%基準にバインド。display:flex は維持(span flex:1 で内部分割継続)。
 ─ knob ──────────────────────────
 --vline-color : 縦線の色
 --vline-overshoot: 親底からのはみ出し量(正値=下にはみ出し・負値=短縮) ※ 旧版と符号逆!
 --vline-x-offset : 縦線の左右位置
 --vline-top : 親top基準のオフセット(タイトル画像の位置に合わせる)
 ────────────────────────────────
 ロールバック退避: docs/backups/2026-06-28_vline-redesign/style.css.bak */
 .title_space_r,
 .title_space_l {
 position: absolute;
 top: var(--vline-top, 0px);
 height: calc(100% - var(--vline-top, 0px) + var(--vline-overshoot, 10vw));
 width: 5vw;
 /* !important = 208行/1511行の `.sp { display: initial !important }` に勝つ。
 div.sp.title_space_l は .sp の !important で block にされる罠だった真因(2026-06-28判明) */
 display: flex !important;
 flex-direction: column;
 z-index: 1;
 }

 .title_space_r {
 right: 1.15vw;
 --vline-top: -7vw;
 --vline-x-offset: -2.3vw; /* R側デフォルト=画像中心に縦線が来る計測値(viewport 500px時) */
 }

 .title_space_l {
 left: 1.15vw;
 --vline-top: calc(0.8rem);
 --vline-x-offset: 2.3vw; /* L側デフォルト=画像中心に縦線(正値=右へ・負値=左へ で意味統一) */
 }

 .title_space_r span,
 .title_space_l span {
 flex: 1;
 width: 5vw;
 margin-top: 0.5rem;
 }

 /* R/L両方とも margin-left で統一(flex column cross axis で margin-right は線位置に影響しないため・2026-06-28 Chrome実測判明) */
 .title_space_r span {
 border-right: 2px solid var(--vline-color, #000);
 margin-left: var(--vline-x-offset);
 }

 .title_space_l span {
 border-left: 2px solid var(--vline-color, #000);
 margin-left: var(--vline-x-offset);
 }

 /* ─ セクションごとの個別 knob ────────────────
 必要な時だけ追加: --vline-color / --vline-overshoot / --vline-x-offset / --vline-top
 既定値(色#000・overshoot 10vw・x-offset デフォ・top デフォ)で良い時は何も書かない */
 .scene .title_space_r {
 --vline-color: #000;
 }
 .fee .title_space_r {
 --vline-color: #000;
 }
 .flow .title_space_r {
 --vline-color: #000;
 }

 .strength .title_space_l {
 --vline-color: #e60012;
 --vline-top: calc(0.8rem + 35vw);
 }
 .map .title_space_l {
 --vline-color: #fff;
 --vline-top: calc(0.8rem + 15vw);
 }
 .display .title_space_l {
 --vline-color: #fff;
 --vline-top: calc(0.8rem + 20vw);
 }
 .faq .title_space_l {
 --vline-color: #fff;
 --vline-overshoot: 30vw; /* faqは下に長く伸ばす(他代理店業務までの空きを埋める) */
 }

 /* ヘッダー */
 .header {
 min-width: 100%;
 width: 100vw;
 height: 100vh;
 left: 0;
 transform: none;
 display: none;
 opacity: 0;
 background-color: rgba(0, 0, 0, 0.8);
 }

 .header.active {
 display: block;
 opacity: 1;
 }

 .hamburger {
 display: block !important;
 }

 .header__nav {
 flex-direction: column;
 justify-content: center;
 align-items: center;
 margin: 50px;
 margin-top: 0;
 margin-bottom: 0;
 padding: 20px 0;
 padding-top: 65px;
 }

 .header__nav a {
 border-bottom: 2px solid #fff;
 border-radius: 5px;
 font-size: clamp(1rem, 4vw, 1.5rem);
 /* フォントサイズを相対単位に */
 padding: 10px 0;
 width: 100%;
 text-align: center;
 box-shadow:
 0 0 3px rgba(255, 255, 255, 0.2),
 0 0 7px rgba(255, 255, 255, 0.5),
 0 0 10px rgba(255, 255, 255, 0.7);
 }

 .header__logo {
 position: absolute;
 left: 20px;
 top: 10px;
 }

 .header__logo img {
 width: 45vw;
 max-width: 200px;
 height: auto;
 }

 /* メインビジュアル */
 .main-visual {
 position: relative;
 width: 100%;
 min-width: 100%;
 min-height: 75vw;
 max-height: 147.2222vw;
 display: block;
 margin: 0 auto;
 margin-bottom: -100px;
 text-align: center;
 overflow: hidden;
 background-image: url("img/main_bg.jpg"), url("img/top_bg.png");
 background-size: cover, cover;
 background-position:
 center 70%,
 center 70%;
 background-repeat: no-repeat, no-repeat;
 z-index: 0;
 }

 .main-visual .logo {
 width: 100%;
 margin: 0;
 padding: 0;
 position: relative;
 top: 0;
 left: 0;
 }

 .main-visual p img {
 width: 42vw;
 max-width: 215px;
 margin-left: 15px;
 margin-top: 10px;
 }

 .main-visual_content h1 {
 width: 100%;
 margin-top: 0;
 margin-bottom: 20px;
 }

 h1 img {
 width: 50vw;
 margin-top: -120px;
 margin-bottom: 30px;
 }

 .main-visual_content h2 {
 width: 100%;
 display: block;
 text-align: center;
 font-size: clamp(1.5rem, 7vw, 2rem);
 color: #fff;
 margin-bottom: 1rem;
 padding-right: 0;
 white-space: nowrap;
 letter-spacing: initial;
 }

 .main-visual_content p {
 display: flex;
 justify-content: center;
 align-items: center;
 font-size: clamp(0.95rem, 3vw, 1.2rem);
 text-align: justify;
 letter-spacing: initial;
 margin-bottom: 20px;
 padding-right: 0;
 width: 90%;
 margin: 0 auto;
 font-weight: 500;
 }

 /* 強みセクション */
 .strength {
 position: relative;
 width: 100vw;
 min-width: 100%;
 height: auto;
 min-height: 161.1111vw;
 margin: 0 auto;
 padding: 0;
 text-align: center;
 background: url("img/sp_strength_bg.png") no-repeat center top;
 /* 2026-06-28: 100% auto は iPhone Safari で vw計算と画像比率計算に誤差が出てズレた。
 sp_strength_bg.png は 1080×1740 (=161.1111vw) で min-height と完全一致設計なので、100% 100% で
 要素サイズに直接合わせる=ブラウザ間の計算差を排除。歪みなし(min-height とアスペクト比一致のため) */
 background-size: 100% 100%;
 box-sizing: border-box;
 z-index: 0;
 }

 /* 2026-06-28: iOS Safari限定で strength の下に余白追加=h3飛び出し位置調整。
 値は実機目測で調整するノブ。10.34vw だと余白が大きすぎ body::before main_bg.jpg(夜景)が透けた。
 減らしながらピッタリ値を探る。 */
 @supports (-webkit-touch-callout: none) {
 .strength {
 margin-bottom: 8.4vw;
 }
 }

 /*
 .strength::after {
 content: '';
 position: absolute;
 bottom: 0;
 left: 0;
 width: 100%;
 height: 50px;
 background: #e60012;
 z-index: 0;
 }
 */

 .strength h2 {
 font-size: clamp(0.6rem, 2vw, 0.8rem);
 left: 8%;
 top: 35vw;
 margin: 0;
 letter-spacing: 2px;
 }

 .strength .bar {
 top: calc(35vw + 75px);
 left: calc(8% + 39px);
 border-bottom: 2px solid #e60012;
 }

 .strength_text {
 display: block;
 width: 100%;
 margin: 0 auto;
 margin-bottom: 0px;
 padding-top: 74vw;
 padding-left: 10vw;
 font-size: clamp(1rem, 3vw, 1.7rem);
 font-weight: 900;
 text-align: justify;
 letter-spacing: 0;
 line-height: 1.3;
 }

 .strength__features {
 width: 85%;
 margin: 0 auto;
 margin-left: 10vw;
 margin-top: -35px;
 margin-bottom: -35px;
 padding: 0;
 display: flex;
 justify-content: center;
 flex-wrap: nowrap;
 box-sizing: border-box;
 }

 .strength__features .feature1,
 .strength__features .feature2,
 .strength__features .feature3 {
 position: relative;
 width: 33.33%;
 min-width: 120px;
 max-width: none;
 top: 0;
 transform: scale(0.95);
 transform-origin: center;
 margin-left: -11px;
 margin-right: -8px;
 }

 .strength__features .feature1 {
 padding-top: 20px;
 }

 .strength__features .feature2 {
 padding-top: 10px;
 }

 .strength__features .feature3 {
 padding-top: 0;
 }

 .strength__features img {
 width: 100%;
 height: auto;
 display: block;
 }

 /* シーンセクション */
 .scene {
 position: relative;
 width: 100vw;
 min-width: 100%;
 height: auto;
 min-height: 132.778vw;
 margin: 0 auto;
 margin-top: 0;
 padding: 0;
 background: url("img/sp_scene_bg.png") no-repeat center top;
 background-size: 100% auto;
 box-sizing: border-box;
 z-index: 1;
 background: #e60012;
 }

 .scene h2 {
 font-size: clamp(0.6rem, 2vw, 0.8rem);
 transform: rotate(90deg);
 transform-origin: right top;
 position: absolute;
 right: 3%;
 top: 0;
 bottom: initial;
 margin: 0;
 letter-spacing: 0;
 display: flex;
 justify-content: flex-end;
 color: #000;
 }

 .scene .bar {
 top: calc(35vw + 75px);
 left: calc(8% + 39px);
 color: #fff;
 border-bottom: 2px solid #fff;
 }

 .scene_small {
 font-size: clamp(1rem, 3vw, 1.2rem);
 line-height: 1;
 font-weight: 900;
 }

 .scene h3 {
 width: 100%;
 position: relative;
 top: -10.34vw;
 right: 10%;
 font-size: clamp(1.5rem, 4vw, 2rem);
 font-weight: 900;
 text-align: right;
 letter-spacing: 2px;
 line-height: 1;
 color: #fff;
 }

 .scene_image {
 width: 80%;
 aspect-ratio: 481 / 657;
 object-fit: contain;
 max-width: 60vw;
 display: block;
 margin: 0;
 margin-top: -20vw;
 transform: rotate(-102deg);
 transform-origin: center;
 }

 .scene_features {
 width: 100%;
 margin: 0 auto;
 margin-top: 4.5vw;
 margin-left: 10px;
 padding: 0 5px;
 display: flex;
 justify-content: center;
 flex-wrap: wrap;
 gap: 5px;
 box-sizing: border-box;
 }

 .scene_feature01,
 .scene_feature02,
 .scene_feature03,
 .scene_feature04 {
 position: relative;
 display: flex;
 flex-wrap: wrap;
 align-items: flex-start;
 width: 48%;
 min-height: 120px;
 padding: 0;
 padding-left: 5px;
 gap: 5px;
 border-left: 4px solid #000;
 margin-bottom: 15px;
 box-sizing: border-box;
 transform: scale(0.95);
 transform-origin: left center;
 }

 .scene h4 {
 width: 100%;
 font-size: clamp(0.8rem, 3vw, 1.2rem);
 font-weight: 900;
 text-align: left;
 line-height: 1.1;
 letter-spacing: 0;
 color: #000;
 }

 .scene_imagetext01,
 .scene_imagetext02,
 .scene_imagetext03,
 .scene_imagetext04 {
 position: absolute;
 top: 0;
 right: 0;
 width: 40%;
 max-width: 120px;
 margin-right: 0;
 }

 /* 2026-06-28: 旧 @media (max-width: 427px) と 1079px の二段階値による境界ジャンプを撤廃。
 360px基準で実機チューニングした 427pxブロックの値を vw単位で 1079px に統一=画面幅全域で線形=「相対」を維持 */
 .scene_imagetext01 {
 top: 2.5vw; /* 9px @ 360px */
 right: 4.17vw; /* 15px @ 360px */
 width: 45%;
 }

 .scene_imagetext02 {
 top: 1.39vw; /* 5px @ 360px */
 right: 2.78vw; /* 10px @ 360px */
 width: 45%;
 }

 .scene_imagetext03 {
 top: 0.56vw; /* 2px @ 360px */
 right: -3.33vw; /* -12px @ 360px */
 width: 45%;
 }

 .scene_imagetext04 {
 top: -0.28vw; /* -1px @ 360px */
 right: 0.83vw; /* 3px @ 360px */
 width: 40%;
 }

 /* 2026-06-28: 461〜1079px 帯では top: -15% で位置調整
 460px以下は上のvw値で OK(=現状)。461px以上で画面広いと imagetext がテキストに被る対策 */
 @media (min-width: 461px) {
 .scene_imagetext01,
 .scene_imagetext02,
 .scene_imagetext03,
 .scene_imagetext04 {
 top: -15%;
 }
 }

 .scene_feature01 p,
 .scene_feature02 p,
 .scene_feature03 p,
 .scene_feature04 p {
 width: 65%;
 text-align: left;
 font-size: clamp(0.7rem, 2.8vw, 1rem);
 font-weight: 500;
 line-height: 1.3;
 white-space: nowrap;
 position: relative;
 }

 .scene_feature01 p {
 left: -0.5rem;
 }

 /* SP用に Scene p内の改行を切替 */
 .scene .pc-only {
 display: none;
 }
 .scene .sp-only {
 display: inline;
 }

 .scene_no {
 width: 37%;
 max-width: 60px;
 object-fit: contain;
 }

 @media (max-width: 427px) {
 .scene_features {
 margin-left: 0;
 margin-top: 3vw;
 }

 .scene_feature01 p,
 .scene_feature02 p,
 .scene_feature03 p,
 .scene_feature04 p {
 font-size: 0.7em;
 white-space: nowrap;
 position: relative;
 }

 /* 2026-06-28: 427pxブロックは1079pxに統一済=このネスト不要のため削除 */

 .scene_no {
 width: 31%;
 }

 .scene_image {
 margin-top: -90px;
 }
 }

 .scene_feature02,
 .scene_feature04 {
 margin-top: -2rem;
 }

 .scene_feature03,
 .scene_feature04 {
 top: 0;
 }

 /* マップセクション */
 .map {
 position: relative;
 width: 100vw;
 min-width: 100%;
 min-height: 124.7222vw;
 margin: 0 auto;
 margin-top: -1px;
 padding: 0;
 text-align: center;
 background: url("img/sp_map_bg.png") no-repeat center top;
 background-size: 100% auto;
 box-sizing: border-box;
 z-index: 0;
 }

 .map h2 {
 font-size: clamp(0.6rem, 2vw, 0.8rem);
 transform: rotate(90deg);
 transform-origin: left top;
 position: absolute;
 left: 8%;
 top: 17vw;
 margin: 0;
 letter-spacing: 2px;
 color: #fff;
 }

 .map .bar {
 font-size: clamp(0.6rem, 2vw, 0.8rem);
 transform: rotate(90deg);
 transform-origin: left top;
 position: absolute;
 left: 10.5%;
 top: calc(28vw);
 margin: 0;
 color: #fff;
 border-bottom: 2px solid #fff;
 }

 .map_content {
 width: 90%;
 margin: 0 auto;
 margin-top: 30vw;
 padding: 0;
 display: flex;
 align-content: flex-start;
 flex-wrap: wrap;
 justify-content: center;
 gap: 0;
 box-sizing: border-box;
 }

 .map_l {
 order: 1;
 width: 100%;
 margin-left: 20px;
 margin-bottom: 1rem;
 }

 .map_l img {
 width: 80%;
 margin: 0 auto;
 height: auto;
 object-fit: contain;
 }

 .map_s {
 order: 3;
 width: 91%;
 display: flex;
 flex-direction: row;
 flex-wrap: wrap;
 justify-content: flex-start;
 gap: 5px;
 }

 .map_s img {
 width: 40%;
 height: auto;
 object-fit: contain;
 }

 .map_m {
 order: 2;
 position: relative;
 width: 91%;
 display: flex;
 align-items: center;
 margin-bottom: -8px;
 }

 .map_m img {
 width: 50%;
 max-width: 60vw;
 height: auto;
 object-fit: contain;
 margin-bottom: 13px;
 }

 .map_m h3 {
 font-size: clamp(1.5rem, 4vw, 2rem);
 font-weight: 900;
 text-align: right;
 letter-spacing: 0;
 line-height: 1.2;
 color: #fff;
 width: 48%;
 position: absolute;
 top: -18px;
 right: -24px;
 display: flex;
 flex-wrap: wrap;
 justify-content: right;
 }

 /* 基本料金セクション */
 .fee {
 position: relative;
 width: 100vw;
 min-width: 100%;
 height: auto;
 min-height: 112.5vw;
 margin: 0 auto;
 margin-top: -1px;
 padding: 0;
 text-align: center;
 background: url("img/sp_fee_bg.png") no-repeat center top;
 background-size: 100% auto;
 background: #fff;
 box-sizing: border-box;
 z-index: 1;
 }

 .fee h2 {
 font-size: clamp(0.6rem, 2vw, 0.8rem);
 transform: rotate(90deg);
 transform-origin: initial;
 position: absolute;
 left: calc(50% - 1.2rem);
 right: initial;
 top: -5px;
 bottom: initial;
 margin: 0;
 letter-spacing: 2px;
 color: #000;
 text-align: right;
 }

 .fee .bar {
 font-size: clamp(0.6rem, 2vw, 0.8rem);
 transform: rotate(90deg);
 transform-origin: initial;
 position: absolute;
 left: 11.9%;
 top: 484px;
 bottom: initial;
 right: initial;
 margin: 0;
 color: #000;
 border-bottom: 2px solid #000;
 }

 .fee h3 {
 width: 100%;
 position: relative;
 top: -8.5vw;
 right: 10%;
 font-size: clamp(1.5rem, 4vw, 2rem);
 font-weight: 900;
 text-align: right;
 letter-spacing: 2px;
 line-height: 1;
 color: #000;
 }

 .fee_content {
 width: 90%;
 margin: 0 auto;
 margin-top: -5vw;
 padding: 0;
 display: flex;
 flex-wrap: wrap;
 justify-content: center;
 gap: 10px;
 }

 .fee_content h4 {
 width: 100%;
 font-size: clamp(1.2rem, 3vw, 1.5rem);
 font-weight: 900;
 text-align: center;
 color: #000;
 margin-bottom: 0;
 }

 /* 2026-06-27: SP は table非表示+SP専用画像で代替 */
 .fee_content table {
 display: none;
 }

 .fee_content .sp-only-table {
 display: block;
 width: 100%;
 height: auto;
 margin: 0 auto;
 }

 .fee_content th,
 .fee_content td.table_title {
 font-size: clamp(0.6rem, 2vw, 0.9rem);
 padding: 5px;
 }

 .fee_content td {
 font-size: clamp(0.5rem, 1.5vw, 0.8rem);
 padding: 5px;
 }

 .fee_content td:not(.table_title)::after {
 border-width: 0 0 20px 20px;
 }

 .fee_time {
 width: 90%;
 margin: 0 auto;
 display: flex;
 align-items: center;
 gap: 0;
 }

 .fee_time p:first-of-type {
 width: 30%;
 min-height: 33px;
 font-size: clamp(0.8rem, 2vw, 1rem);
 }

 .fee_time p:nth-of-type(2) {
 width: 64%;
 min-height: 33px;
 font-size: clamp(1.2rem, 3vw, 1.5rem);
 display: flex;
 justify-content: center;
 align-items: center;
 }

 .fee_time p span {
 width: 20px;
 margin: 0;
 padding-right: 5px;
 }

 .fee_right {
 width: 90%;
 margin: 0;
 font-size: clamp(0.8rem, 2vw, 0.8rem);
 text-align: left;
 }

 .fee_bottom {
 width: 90%;
 font-size: clamp(1rem, 3vw, 1.5rem);
 text-align: center;
 font-weight: 900;
 margin-top: 0.5rem;
 line-height: 1.1;
 }

 .table_sp {
 width: 95%;
 padding-right: 5%;
 margin: 0 auto;
 }

 /* 2026-06-27: SP も上下パディング極小化(背景/文字色はPC継承=#9fa0a0+白) */
 .fee_content .panel-title-banner {
 font-size: clamp(0.9rem, 2.5vw, 1.2rem);
 padding: 2px 8px;
 letter-spacing: 1px;
 margin-top: 16px;
 margin-bottom: 8px;
 line-height: 1.4;
 }

 /* 2026-06-27: SP の数字サイズは見本路線(大きめ太字)を維持しつつ画面幅に合わせ縮小 */
 .fee_content td.table_title p {
 font-size: clamp(1.4rem, 4.5vw, 2rem);
 line-height: 1.1;
 }
 .fee_content td.table_title p .second {
 font-size: clamp(0.9rem, 2.8vw, 1.2rem);
 }

 /* ディスプレイセクション */
 /* 2026-06-26: PDF v36 修正反映 ─ SP も透明PNG斜めを壊さんよう元の単一bgに戻す */
 .display {
 position: relative;
 width: 100vw;
 min-width: 100%;
 height: auto;
 min-height: 146.889vw;
 margin: 0 auto;
 margin-top: 0;
 padding: 0;
 text-align: center;
 background: url("img/sp_display_bg.png") no-repeat center top;
 background-size: auto 100%;
 box-sizing: border-box;
 z-index: 0;
 }

 .display h2 {
 font-size: clamp(0.6rem, 2vw, 0.8rem);
 transform: rotate(90deg);
 transform-origin: left top;
 position: absolute;
 left: 8%;
 top: 16vw;
 margin: 0;
 letter-spacing: 2px;
 color: #fff;
 }

 .display .bar {
 font-size: clamp(0.6rem, 2vw, 0.8rem);
 transform: rotate(90deg);
 transform-origin: left top;
 position: absolute;
 left: calc(10.5%);
 top: calc(12vw + 75px);
 margin: 0;
 color: #fff;
 border-bottom: 2px solid #fff;
 }

 .display h3 {
 width: 100%;
 position: relative;
 top: 16vw;
 font-size: clamp(1rem, 4vw, 1.5rem);
 font-weight: 900;
 text-align: center;
 letter-spacing: 2px;
 color: #fff;
 }

 .display_content {
 width: 90%;
 margin: 0 auto;
 margin-top: -31.3889vw;
 padding: 0;
 display: flex;
 flex-wrap: wrap;
 justify-content: center;
 margin-left: 30px;
 }

 .display_content dl {
 width: 100%;
 display: flex;
 flex-wrap: wrap;
 justify-content: center;
 gap: 2px;
 }

 .display_content dt {
 width: 28%;
 min-height: 8.3333vw;
 max-height: 50px;
 font-size: clamp(0.75rem, 2vw, 0.8rem);
 margin-left: 0;
 padding: 5px;
 }

 .display_content dt:nth-of-type(4),
 .display_content dt.long {
 font-size: 0.7em;
 }

 .display_content dd {
 width: 70%;
 min-height: 8.3333vw;
 max-height: 50px;
 font-size: clamp(0.62rem, 1.5vw, 0.62rem);
 margin-right: 0;
 padding: 5px;
 text-align: left;
 }

 /* フローチャートセクション */
 .flow {
 position: relative;
 width: 100vw;
 min-width: 100%;
 min-height: 243.8889vw;
 margin: 0 auto;
 margin-top: 0;
 padding: 0;
 text-align: center;
 background: #fff;
 box-sizing: border-box;
 z-index: 0;
 padding-bottom: 40px;
 }

 .flow h2 {
 font-size: clamp(0.6rem, 2vw, 0.8rem);
 transform: rotate(90deg);
 transform-origin: right top;
 position: absolute;
 right: 2.5%;
 top: 365px;
 margin: 0;
 letter-spacing: 2px;
 color: #000;
 }

 .flow .bar {
 font-size: clamp(0.6rem, 2vw, 0.8rem);
 transform: rotate(90deg);
 transform-origin: right top;
 position: absolute;
 left: initial;
 bottom: -59px;
 right: -3px;
 top: initial;
 margin: 0;
 color: #000;
 border-bottom: 2px solid #000;
 }

 .flow h3 {
 width: 100%;
 position: relative;
 top: -8.34vw;
 right: 10%;
 font-size: clamp(1.5rem, 4vw, 2rem);
 font-weight: 900;
 text-align: right;
 letter-spacing: 2px;
 line-height: 1;
 color: #000;
 }

 .flow_content {
 width: 90%;
 margin: 0 auto;
 margin-top: -20px;
 padding: 0;
 display: flex;
 flex-wrap: wrap;
 justify-content: center;
 gap: 10px;
 }

 .flow h4 {
 width: 100%;
 font-size: clamp(1.2rem, 3vw, 1.5rem);
 text-align: center;
 }

 .flow h4 + p {
 width: 100%;
 font-size: clamp(0.8rem, 2vw, 0.9rem);
 text-align: center;
 }

 .flow_item {
 width: 100%;
 flex-direction: initial;
 align-items: center;
 gap: 0;
 }

 .flow_item p:first-of-type {
 width: 37%;
 max-width: 150px;
 }

 .flow_item p:nth-of-type(2) {
 width: 63%;
 font-size: clamp(0.8rem, 1.5vw, 0.7rem);
 text-align: left;
 }

 .flow_small {
 font-size: clamp(0.8rem, 1.5vw, 0.7rem);
 }

 .flow_messege,
 .flow_messege2 {
 width: 100%;
 margin: 0 auto;
 }

 .flow_messege h4,
 .flow_messege2 h4 {
 font-size: clamp(0.8rem, 2vw, 0.9rem);
 text-align: center;
 }

 .flow_messege2 h4 {
 font-size: clamp(0.8rem, 3vw, 1.2rem);
 }

 .flow_messege .flow_small2,
 .flow_messege2 p {
 font-size: clamp(0.8rem, 2vw, 0.8rem);
 text-align: left;
 }

 .flow_messege2 p {
 font-size: clamp(0.8rem, 3vw, 1rem);
 }

 /* FAQセクション */
 .faq_top,
 .faq_bottom {
 z-index: 2;
 position: relative;
 width: 100vw;
 min-width: 100%;
 margin-top: -13.6122vw;
 }

 .faq_bottom {
 margin-top: -1px;
 }

 .faq {
 position: relative;
 width: 100%;
 min-width: 100%;
 height: auto;
 min-height: 62.7778vw;
 margin: 0 auto;
 margin-top: 0;
 padding: 0;
 padding-bottom: 12px;
 text-align: center;
 background: #000;
 box-sizing: border-box;
 z-index: 33;
 }

 .faq h2 {
 font-size: clamp(0.6rem, 2vw, 0.8rem);
 transform: rotate(90deg);
 transform-origin: left top;
 position: absolute;
 left: 8%;
 top: 23px;
 margin: 0;
 letter-spacing: 2px;
 color: #fff;
 }

 .faq .bar {
 font-size: clamp(0.6rem, 2vw, 0.8rem);
 transform: rotate(90deg);
 transform-origin: left top;
 position: absolute;
 left: calc(39px);
 top: calc(57px);
 margin: 0;
 color: #fff;
 border-bottom: 2px solid #fff;
 }

 .faq h3 {
 width: 100%;
 position: relative;
 top: -5px;
 font-size: clamp(1.4rem, 4vw, 2rem);
 font-weight: 900;
 text-align: center;
 letter-spacing: 0;
 color: #fff;
 }

 .qa {
 min-height: 54.7471vw;
 display: grid;
 place-items: center;
 /* 垂直・水平方向の中央寄せ */
 }

 .faq details {
 width: 90%;
 max-width: 80%;
 margin: 0 auto 10px;
 font-size: clamp(0.7rem, 2vw, 1.2rem);
 }

 .faq details:first-of-type {
 margin-top: 1vw;
 }

 .faq summary {
 font-size: clamp(0.7rem, 1.5vw, 1rem);
 padding: 7px;
 font-weight: 500;
 }

 @media (max-width: 390px) {
 details:nth-of-type(5) summary {
 font-size: clamp(0.63rem, 1.5vw, 0.7rem);
 padding: 7px;
 }
 }

 .faq summary span {
 position: absolute;
 right: 5px;
 }

 .faq summary img {
 width: 15px;
 }

 .faq details[open] p {
 font-size: clamp(0.7rem, 1.5vw, 0.7rem);
 font-weight: 400;
 padding: 3px;
 }

 /* 代理店業務セクション */
 .agency {
 position: relative;
 width: 100%;
 min-width: 100%;
 margin: 0 auto;
 margin-top: -100px;
 padding: 0;
 padding-top: 90px;
 text-align: center;
 background: #fff;
 box-sizing: border-box;
 z-index: 0;
 }

 .agency h2 {
 width: 100%;
 position: relative;
 top: 10px;
 font-size: clamp(1.4rem, 3vw, 2rem);
 font-weight: 900;
 text-align: center;
 letter-spacing: 0;
 color: #000;
 }

 .agency_icons {
 width: 90%;
 margin: 20px auto;
 display: flex;
 flex-wrap: wrap;
 justify-content: center;
 gap: 10px;
 }

 .agency_icons img {
 width: 50%;
 max-width: 150px;
 height: auto;
 }

 /* 運営会社セクション */
 .company {
 position: relative;
 width: 100%;
 min-width: 100%;
 margin: 0 auto;
 margin-top: -21px;
 padding: 0;
 padding-top: 20px;
 padding-bottom: 10px;
 text-align: center;
 background: #fff;
 box-sizing: border-box;
 z-index: 0;
 }

 .company h2 {
 width: 100%;
 position: relative;
 top: 10px;
 font-size: clamp(1.4rem, 3vw, 2rem);
 font-weight: 900;
 text-align: center;
 letter-spacing: 0;
 color: #000;
 }

 .company_content {
 width: 90%;
 margin: 20px auto;
 padding: 0;
 }

 .company_content dl {
 width: 100%;
 display: flex;
 flex-wrap: wrap;
 justify-content: center;
 gap: 0;
 }

 .company_content dt {
 width: 17%;
 font-size: clamp(0.8rem, 2vw, 1.2rem);
 font-weight: 700;
 text-align: justify;
 letter-spacing: 1px;
 }

 .company_content dd {
 width: 79%;
 font-size: clamp(0.85rem, 2vw, 1.2rem);
 font-weight: 500;
 text-align: left;
 }

 .company_map {
 width: 100%;
 margin-top: 20px;
 }

 .company_map iframe {
 width: 100%;
 height: 200px;
 }

 /* お問い合わせフォームセクション */
 .line_space h3 {
 font-size: clamp(1.4rem, 3vw, 2rem);
 padding: 0.5rem;
 }

 .line_space p:nth-of-type(1) {
 width: 100%;
 font-size: clamp(0.8rem, 2vw, 1rem);
 letter-spacing: 1px;
 text-align: center;
 margin-bottom: 0.8rem;
 }

 .contact_bottom {
 width: 100%;
 margin: 0 auto;
 margin-top: -1px;
 margin-bottom: 20px;
 }

 .contact_bottom img {
 width: 100%;
 max-width: 90%;
 margin: 0 auto;
 }

 .contact {
 position: relative;
 width: 100%;
 min-width: 100%;
 margin: 0 auto;
 margin-top: -21px;
 padding: 0;
 padding-top: 20px;
 padding-bottom: 15px;
 text-align: center;
 background: #fff;
 box-sizing: border-box;
 }

 .contact h2 {
 width: 100%;
 position: relative;
 top: 0;
 font-size: clamp(1.2rem, 3vw, 1.5rem);
 font-weight: 900;
 text-align: center;
 letter-spacing: 2px;
 color: #000;
 }

 .contact form {
 width: 90%;
 margin: 20px auto;
 padding: 10px;
 }

 .contact label {
 margin-bottom: 15px;
 font-size: clamp(0.6rem, 2vw, 0.9rem);
 font-weight: 500;
 }

 .contact input,
 .contact textarea {
 font-size: clamp(0.6rem, 2vw, 0.9rem);
 padding: 8px;
 }

 .contact textarea {
 height: 200px;
 }

 .contact button {
 width: 100%;
 margin: 0 auto;
 cursor: pointer;
 display: flex;
 justify-content: center;
 }

 .contact button img {
 width: 80%;
 max-width: 300px;
 margin: 20px auto;
 }

 form p {
 margin-top: -10px;
 }

 form p img {
 width: 80%;
 max-width: 300px;
 margin: 0 auto;
 }
}

/*お問い合わせ確認・完了*/
.logo2 {
 width: 100%;
 margin-top: 20px;
 margin-bottom: 10px;
}

.logo2 img {
 width: 33%;
 display: flex;
 justify-content: center;
 margin: 0 auto;
 align-items: center;
}

.contact2 {
 width: 1080px;
 margin: 0 auto;
 padding: 10rem;
 background: #fff;
 color: #000;
 border-radius: 10px;
}

.contact2 h2 {
 width: 100%;
 text-align: center;
 margin: 0 auto;
 margin-bottom: 1rem;
}

.contact2 p {
 width: 100%;
 text-align: center;
 margin: 0 auto;
 margin-bottom: 1rem;
}

.contact2 .homeback {
 width: 100%;
 text-align: center;
 margin: 0 auto;
 margin-bottom: 1rem;
 padding: 1rem;
}

.homeback a {
 background: #e60012;
 border-radius: 3px;
 position: relative;
 display: flex;
 justify-content: space-around;
 align-items: center;
 margin: 0 auto;
 max-width: 280px;
 padding: 10px 25px;
 color: #fff;
 transition: 0.3s ease-in-out;
 font-weight: 500;
}

.homeback a:hover {
 background: #000;
 color: #fff;
}

.homeback a:after {
 content: "";
 width: 5px;
 height: 5px;
 border-top: 3px solid #000;
 border-right: 3px solid #000;
 transform: rotate(45deg) translateY(-50%);
 position: absolute;
 top: 50%;
 right: 20px;
 border-radius: 1px;
 transition: 0.3s ease-in-out;
}

.homeback a:hover:after {
 border-color: #fff;
}

.contact2 dl {
 width: 80%;
 margin: 0 auto;
 padding: 1rem;
 display: flex;
 flex-wrap: wrap;
 justify-content: left;
 align-items: center;
 gap: 5px;
}

.contact2 dt {
 width: 25%;
 font-weight: 700;
 padding-right: 0.8rem;
}

.contact2 dd {
 width: 74%;
 padding-right: 0.8rem;
}

#submit_button {
 display: inline-block;
 border-radius: 5%;
 font-size: 1rem;
 text-align: center;
 cursor: pointer;
 padding: 12px 33px;
 background: #e60012;
 color: #fff;
 line-height: 1em;
 transition: 0.3s;
 border: 1px solid #e60012;
}

#submit_button:hover {
 color: #e60012;
 background: #fff;
}

.back_botton {
 display: inline-block;
 border-radius: 5%;
 font-size: 1rem;
 text-align: center;
 cursor: pointer;
 padding: 12px 33px;
 background: #999;
 color: #fff;
 line-height: 1em;
 transition: 0.3s;
 border: 1px solid #999;
}

.back_botton:hover {
 color: #999;
 background: #fff;
}

.inquiry_button {
 width: 100%;
 display: flex;
 justify-content: center;
 align-items: center;
 gap: 15px;
}

@media (max-width: 1079px) {
 .contact2 {
 width: 95vw;
 margin: 0 auto;
 padding: 1rem;
 background: #fff;
 color: #000;
 border-radius: 10px;
 }

 .contact2 h2 {
 width: 100%;
 text-align: center;
 margin: 0 auto;
 margin-bottom: 0px;
 margin-bottom: 1rem;
 font-size: 1.2rem;
 }

 .contact2 dl {
 width: 100%;
 margin: 0 auto;
 padding: 0.5rem;
 display: flex;
 flex-wrap: wrap;
 justify-content: left;
 align-items: center;
 gap: 3px;
 }

 .contact2 dt {
 width: 100%;
 font-weight: 700;
 padding-right: 0.8rem;
 }

 .contact2 dd {
 width: 100%;
 padding-right: 0.8rem;
 }
}
