@charset "UTF-8";

/* ==========================================================================
 * Font face
 * ========================================================================== */
@font-face {
	font-family: "Noto Sans JP";
	src: local("Yu Gothic Medium");
	font-weight: 100 400;
}

@font-face {
	font-family: "Noto Sans JP";
	src: local("Yu Gothic Bold");
	font-weight: 500 900;
}

@font-face {
	font-family: "Bahnschrift";
	src: local("Bahnschrift");
	font-weight: 100 900;
}

/* ==========================================================================
 * Root
 * ========================================================================== */
*,
::before,
::after {
	background-repeat: no-repeat;
	box-sizing: border-box;
}

html {
	-ms-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
	font-size: 62.5%;
}

:root {
	font-family: "Bahnschrift", "Noto Sans JP", "Hiragino Sans", "BIZ UDPGothic", Meiryo, sans-serif;
}

body {
	margin: 0;
	font-size: 1.8em;
	font-size: 1.8rem;
	line-height: 1.5;
	background-color: #fff;
}

/* ==========================================================================
 * HTML5 display definitions
 * ========================================================================== */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
	display: block;
}

audio,
canvas,
progress,
video {
	display: inline-block;
	vertical-align: baseline;
}

audio:not([controls]) {
	display: none;
	height: 0;
}

/* ==========================================================================
 * Anchor
 * ========================================================================== */
a:link,
a:visited {
	background-color: transparent;
	color: #fff;
	text-decoration: none;
}

a:active,
a:hover {
	outline: 0;
}

/* ==========================================================================
 * Embedded
 * ========================================================================== */
img {
	max-width: 100%;
	height: auto;
	border: 0;
	vertical-align: bottom;
}

svg:not(:root) {
	overflow: hidden;
}

/* ==========================================================================
 * Grouping
 * ========================================================================== */
figure {
	margin: 0;
}

hr {
	box-sizing: content-box;
	height: 0;
	border: none;
	border-top: 1px solid #bbb;
}

dd {
	margin-left: 0;
}

/* ==========================================================================
 * Float
 * ========================================================================== */
.clear {
	clear: both;
}

.clearfix:before,
.clearfix:after {
	content: " ";
	display: table;
}

.clearfix:after {
	clear: both;
}

/* ==========================================================================
 * List
 * ========================================================================== */
ul,
ol {
	padding: 0;
}

ul {
	margin: 0;
	list-style: none;
}

ul.list-disc {
	margin-left: 1.55em;
	list-style: disc;
}

ul.list-annotation {
	margin-left: 1.3em;
}

ul.list-annotation li::before {
	margin-left: -1.3em;
	content: "※\0020";
}

ol {
	margin-left: 1.3em;
}

ol.list-annotation {
	margin-left: 2em;
	padding: 0;
	counter-reset: number;
	list-style: none;
}

ol.list-annotation li::before {
	margin-left: -2em;
	counter-increment: number;
	content: "※" counter(number)"\0020";
}

ul.list-disc li+li,
ul.list-annotation li+li,
ol li+li {
	margin-top: 8px;
}

/* ==========================================================================
 * Text
 * ========================================================================== */
b,
strong {
	font-weight: bold;
}

mark {
	background: #ff0;
	color: #000;
}

small,
.txt-small {
	font-size: 80%;
}

sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sub {
	bottom: -0.25em;
}

sup {
	top: -0.5em;
}

address {
	font-style: normal;
}

h1,
.h1 {
	font-size: 3.2rem;
	line-height: 1.2;
	margin: 0;
}

h2,
.h2 {
	font-size: 2.4rem;
	line-height: 1.2;
	margin: 0;
}

h3,
.h3 {
	font-size: 1.8rem;
	line-height: 1.2;
	margin: 0;
}

h4,
.h4 {
	font-size: 1.6rem;
	line-height: 1.2;
	margin: 0;
}

p {
	margin: 0;
}

p+p {
	margin-top: .5em;
	margin-bottom: 0;
}

.txt-left {
	text-align: left;
}

.txt-center {
	text-align: center;
}

.txt-right {
	text-align: right;
}

.txt-unbold {
	font-weight: normal;
}

.txt-bold {
	font-weight: bold;
}

.txt-emphasis {
	color: #e74c3c;
}

.txt-notes {
	color: #7f8c8d;
	font-size: 1.2rem;
}

/* ==========================================================================
 * Table
 * ========================================================================== */
table {
	border-collapse: collapse;
	border-spacing: 0;
}

td,
th {
	padding: 0;
}

/* ==========================================================================
 * Form
 * ========================================================================== */
button,
input,
optgroup,
select,
textarea {
	color: inherit;
	font: inherit;
	margin: 0;
	border: 1px solid #999;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
	width: 100%;
	padding: 14px 6px;
}

button {
	overflow: visible;
}

button,
select {
	text-transform: none;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
	-webkit-appearance: button;
	cursor: pointer;
}

button[disabled],
html input[disabled] {
	cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
	border: 0;
	padding: 0;
}

input {
	line-height: normal;
}

input[type="checkbox"],
input[type="radio"] {
	box-sizing: border-box;
	padding: 0;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
	height: auto;
}

input[type="search"] {
	-webkit-appearance: textfield;
	box-sizing: content-box;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
	-webkit-appearance: none;
}

textarea {
	overflow: auto;
}

/* ==========================================================================
 * Spacing
 * ========================================================================== */
.margin-none {
	margin: 0 !important;
}

.padding-none {
	padding: 0 !important;
}

.margin-T0 {
	margin-top: 0 !important;
}

.margin-T5 {
	margin-top: 5px !important;
}

.margin-T10 {
	margin-top: 10px !important;
}

.margin-T15 {
	margin-top: 15px !important;
}

.margin-T20 {
	margin-top: 20px !important;
}

.margin-T25 {
	margin-top: 25px !important;
}

.margin-T30 {
	margin-top: 30px !important;
}

.margin-T35 {
	margin-top: 35px !important;
}

.margin-T40 {
	margin-top: 40px !important;
}

.margin-T45 {
	margin-top: 45px !important;
}

.margin-T50 {
	margin-top: 50px !important;
}

.margin-T60 {
	margin-top: 60px !important;
}

.margin-T70 {
	margin-top: 70px !important;
}

.margin-T80 {
	margin-top: 80px !important;
}

.margin-T90 {
	margin-top: 90px !important;
}

.margin-T100 {
	margin-top: 100px !important;
}

.margin-R0 {
	margin-right: 0 !important;
}

.margin-R5 {
	margin-right: 5px !important;
}

.margin-R10 {
	margin-right: 10px !important;
}

.margin-R15 {
	margin-right: 15px !important;
}

.margin-R20 {
	margin-right: 20px !important;
}

.margin-B0 {
	margin-bottom: 0 !important;
}

.margin-B5 {
	margin-bottom: 5px !important;
}

.margin-B10 {
	margin-bottom: 10px !important;
}

.margin-B15 {
	margin-bottom: 15px !important;
}

.margin-B20 {
	margin-bottom: 20px !important;
}

.margin-B100 {
	margin-bottom: 100px !important;
}

.margin-L0 {
	margin-left: 0 !important;
}

.margin-L5 {
	margin-left: 5px !important;
}

.margin-L10 {
	margin-left: 10px !important;
}

.margin-L15 {
	margin-left: 15px !important;
}

.margin-L20 {
	margin-left: 20px !important;
}

.padding-T0 {
	padding-top: 0 !important;
}

.padding-T5 {
	padding-top: 5px !important;
}

.padding-T10 {
	padding-top: 10px !important;
}

.padding-T15 {
	padding-top: 15px !important;
}

.padding-T20 {
	padding-top: 20px !important;
}

.padding-T25 {
	padding-top: 25px !important;
}

.padding-T30 {
	padding-top: 30px !important;
}

.padding-T35 {
	padding-top: 35px !important;
}

.padding-T40 {
	padding-top: 40px !important;
}

.padding-T45 {
	padding-top: 45px !important;
}

.padding-T50 {
	padding-top: 50px !important;
}

.padding-T60 {
	padding-top: 60px !important;
}

.padding-T70 {
	padding-top: 70px !important;
}

.padding-T80 {
	padding-top: 80px !important;
}

.padding-T90 {
	padding-top: 90px !important;
}

.padding-T100 {
	padding-top: 100px !important;
}

.padding-R0 {
	padding-right: 0 !important;
}

.padding-R5 {
	padding-right: 5px !important;
}

.padding-R10 {
	padding-right: 10px !important;
}

.padding-R15 {
	padding-right: 15px !important;
}

.padding-R20 {
	padding-right: 20px !important;
}

.padding-B0 {
	padding-bottom: 0 !important;
}

.padding-B5 {
	padding-bottom: 5px !important;
}

.padding-B10 {
	padding-bottom: 10px !important;
}

.padding-B15 {
	padding-bottom: 15px !important;
}

.padding-B20 {
	padding-bottom: 20px !important;
}

.padding-L0 {
	padding-left: 0 !important;
}

.padding-L5 {
	padding-left: 5px !important;
}

.padding-L10 {
	padding-left: 10px !important;
}

.padding-L15 {
	padding-left: 15px !important;
}

.padding-L20 {
	padding-left: 20px !important;
}

/* ==========================================================================
 * Common
 * ========================================================================== */
#page-container {
	max-width: 2000px;
	margin: 0 auto;
}

.inner--width {
	max-width: 920px;
	margin: 0 auto;
}

@media screen and (max-width: 640px) {
	.inner--width {
		width: 90%;
		margin: 0 auto;
	}

	#page--container {
		max-width: 640px;
		overflow: hidden;
		min-width: unset;
	}

	img {
		width: 100%;
	}
}
/* ==========================================================================
 * Responsive
 * ========================================================================== */
/*PCのみ表示(640px以下非表示)*/
@media screen and (max-width: 640px) {
	.visible-pc {
		display: none !important;
	}
}

/*SPのみ表示(641px以上非表示)*/
@media screen and (min-width: 641px) {
	.visible-sp {
		display: none !important;
	}
}

/*PCのみ非表示(640px以上非表示)*/
@media screen and (min-width: 640px) {
	.hidden-pc {
		display: none !important;
	}
}

/*SPのみ非表示(641px以下非表示)*/
@media screen and (max-width: 641px) {
	.hidden-sp {
		display: none !important;
	}
}

/* ==========================================================================
 * Layout & Colors
 * ========================================================================== */
/* --- 変数定義 --- */
:root {
	--color-main-red: #e8341c;
	/* アクセントカラー（赤） */
	--color-main-blue: #23235a;
	/* メインカラー（青） */
	--color-main-yellow: #d4a017;
	/* アクセントカラー（黄色） */
	--color-bg-light: #f2f3f8;
	/* 薄い青背景 */
	--header-height: 60px;
	/* ヘッダーの高さ */
}

/* --- ユーティリティクラス --- */
.bg-red {
	background-color: var(--color-main-red);
}

.bg-light {
	background-color: var(--color-bg-light);
}

.bg-img {
	background-image: url('../images/pc/img_bg.png');
	background-color: var(--color-bg-light);
	background-position: top center;
	background-repeat: no-repeat;
}

.bg-white {
	background-color: #fff;
}

.txt-white {
	color: #fff;
}

.txt-red {
	color: var(--color-main-red) !important;
}

.txt-blue {
	color: var(--color-main-blue) !important;
}

.txt-yellow {
	color: var(--color-main-yellow) !important;
}

.font-size-120 {
	font-size: 1.2em;
}

@media screen and (max-width: 640px) {
	.bg-img {
		background-image: url('../images/sp/img_bg.png');
		background-color: var(--color-bg-light);
		background-size: contain;
	}
}

/* ==========================================================================
 * Header
 * ========================================================================== */
header {
	position: sticky;
	top: 0;
	z-index: 9999;
	background: #fff;
	width: 100%;
	box-shadow: 0 0 5px rgba(0, 0, 0, .15)
}

.header__box {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 10px 0 10px;
}

.header__logo {
	width: 20%;
}

.header__navi {
	display: flex;
	align-items: center
}

.header__sp-area {
	display: none;
}

/* Global Navi */
.gnavi__hamburger-menu {
	position: relative
}

a.gnavi__link.active {
	color: var(--color-main-blue)
}

.nav__list {
	display: flex;
	align-items: center;
}

.nav__item {
	margin-right: 10px;
	display: flex;
	text-align: center
}

.nav__item:last-child {
	margin-right: 0
}

.nav__item a {
	font-size: 1.6rem;
	line-height: 1.0;
}

.nav__item--btn {
	filter: drop-shadow(0px 3px 2px rgba(0, 0, 0, 0.2));
}

.nav__item--tel {
	display: block;
	flex-direction: column;
	text-align: left;
}

.nav__item--tel a {
	display: block;
	font-size: 3.0rem;
	letter-spacing: -1px;
	color: #333;
	text-decoration: none;
}

.tel__small {
	font-family: "Noto Sans JP", "Bahnschrift", "Hiragino Sans", "BIZ UDPGothic", Meiryo, sans-serif;
	font-size: 1.0rem;
}

/* ==========================================================================
 * FV
 * ========================================================================== */
.fv {
	background: url('../images/pc/fv_bg.jpg') no-repeat center center /cover;
	padding: 35px 0;
}

.fv__wrap {
	position: relative;
	overflow: hidden;
}

.fv__img {
	position: absolute;
	right: -470px;
	top: 52px;
	width: 100%;
	height: 100%;
}

.fv__subtxt {
	display: inline-block;
	padding: 3px 10px;
	background-color: rgb(255 255 255 / 0.1);
	color: #fff;
	border: 1px solid #fff;
	border-radius: 5px;
	font-size: 1.8rem;
	line-height: normal;
}

.fv__title {
	font-size: 4.8rem;
	color: #fff;
	line-height: 1.2;
	margin-top: 20px;
	letter-spacing: -2px;
}

.strong__y {
	color: var(--color-main-yellow);
	font-weight: bold;
	font-size: 7.2rem;
}

.fv__achievement {
	text-align: center;
	margin-top: 35px;
}

.annotation {
	font-size: 1.2rem;
	color: #fff;
	line-height: 1.5;
	display: block;
	padding-right: 460px;
}

/* ==========================================================================
 * CTA
 * ========================================================================== */
.cta {
	text-align: center;
	margin: 30px 0;
	color: #23235a;
}

.cta__wrap {
	padding-top: 10px;
	display: flex;
	justify-content: space-evenly;
}

.cta__wrap a+a {
	padding-left: 20px;
}

.cta__btn {
	filter: drop-shadow(0px 3px 2px rgba(0, 0, 0, 0.2));
}
.cta2 {
	margin-bottom: 100px;
}
/* ==========================================================================
 * データベース
 * ========================================================================== */
.database {
	background: #23235a;
	padding: 100px 0;
}

.header__wrap {
	text-align: center;
	margin-bottom: 32px;
}

.label {
	font-size: 2.4rem;
	font-weight: 500;
	color: var(--color-main-yellow);
}

.sec__title {
	font-size: 4.8rem;
	color: #fff;
	margin: 10px 0;
}

.database .search-box {
	background: rgba(255, 255, 255, .07);
	border: 1px solid rgba(255, 255, 255, .12);
	border-radius: 16px;
	padding: 20px;
	margin-bottom: 24px;
}

.database .search-row {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}

.database .search-row input,
.database .search-row select {
	flex: 1;
	min-width: 160px;
	padding: 12px 14px;
	border-radius: 8px;
	border: none;
	font-size: 16px;
	font-family: inherit;
	background: #fff;
	color: #333;
}

.database .search-row input {
	min-width: 220px;
}

.database .search-row button {
	padding: 12px 24px;
	border-radius: 8px;
	border: none;
	background: var(--color-main-red);
	color: #fff;
	font-size: 13px;
	font-weight: 700;
	font-family: inherit;
	cursor: pointer;
	white-space: nowrap;
}

.database .search-row button:hover {
	opacity: .85;
}

.database .tags {
	margin-top: 12px;
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	align-items: center;
}

.database .tags span {
	font-size: 11px;
	color: #b0b4cc;
}

.database .tag {
	font-size: 11px;
	font-weight: 700;
	padding: 3px 10px;
	border-radius: 99px;
	border: 1px solid rgba(255, 255, 255, .25);
	color: #e2e8f0;
	background: transparent;
	cursor: pointer;
}

.database .tag:hover {
	background: rgba(255, 255, 255, .12);
}

#search-results-wrap.hidden {
	display: none;
}

.database .result-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 16px;
}

.database .result-header #search-status {
	font-size: 13px;
	font-weight: 700;
	color: #fff;
}

.database .result-header #search-page-info {
	font-size: 11px;
	color: #b0b4cc;
}

#search-results {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-bottom: 24px;
}

.database .card {
	background: #fff;
	color: #333;
	border-radius: 10px;
	overflow: hidden;
}

.database .card:hover {
	box-shadow: 0 4px 18px rgba(0, 0, 0, .2);
}

.database .card-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 12px;
	padding: 14px 16px;
}

.database .card-badge {
	display: inline-block;
	font-size: 10px;
	font-weight: 700;
	padding: 2px 7px;
	border-radius: 4px;
	background: #f0f1f8;
	color: var(--color-main-blue);
	margin-bottom: 4px;
}

.database .card-part {
	font-size: 15px;
	font-weight: 700;
	color: var(--color-main-blue);
	text-decoration: underline;
	text-underline-offset: 3px;
	margin-bottom: 4px;
	cursor: pointer;
}

.database .card-part:hover {
	color: var(--color-main-red);
}

.database .card-meta {
	font-size: 11px;
	color: #666;
	line-height: 1.7;
}

.database .card-meta span {
	margin-right: 8px;
}

.database .card-btn {
	flex-shrink: 0;
	padding: 8px 14px;
	border-radius: 7px;
	border: none;
	background: var(--color-main-blue);
	color: #fff;
	font-size: 12px;
	font-weight: 700;
	font-family: inherit;
	white-space: nowrap;
	cursor: pointer;
}

.database .card-btn:hover {
	opacity: .82;
}

#search-pagination {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 6px;
}

.pg {
	min-width: 34px;
	height: 34px;
	border-radius: 7px;
	font-size: 13px;
	font-weight: 700;
	font-family: inherit;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 1px solid rgba(255, 255, 255, .2);
	color: #e2e8f0;
	background: rgba(255, 255, 255, .07);
	cursor: pointer;
}

.pg:hover {
	background: rgba(255, 255, 255, .18);
}

.pg.active {
	background: var(--color-main-red);
	border-color: var(--color-main-red);
	color: #fff;
}

.pg:disabled {
	opacity: .35;
	cursor: not-allowed;
}

#search-noresult {
	text-align: center;
	padding: 48px 0;
	color: #fff;
}

#search-noresult.hidden {
	display: none;
}

#search-noresult p {
	margin-bottom: 6px;
	font-size: 13px;
	color: #b0b4cc;
}

#search-noresult a {
	display: inline-block;
	margin-top: 12px;
	padding: 10px 20px;
	border-radius: 8px;
	background: var(--color-main-red);
	color: #fff;
	font-size: 13px;
	font-weight: 700;
	text-decoration: none;
}

/* ==========================================================================
 * PROBLEMS
 * ========================================================================== */

.problems {
	background: url('../images/pc/problems_bg.jpg') no-repeat top /cover;
	padding: 100px 0;
	padding-bottom: 50px;
}

.pb__items--wrap {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
}

.pb__items--wrap li+li {
	margin-top: 20px;
}

.pb__item {
	width: 600px;
	background: #fff;
	background-image: url(../images/pc/attention.png);
	background-repeat: no-repeat;
	background-position: left 25px center;
	color: var(--color-main-blue);
	padding: 25px;
	border-radius: 10px;
	font-weight: bold;
	padding-left: 86px;
}

.pb__item p:nth-child(1) {
	font-size: 2.4rem;
}

.pb__txt-wrap {
	padding-top: 30px;
}

.pb__txt {
	background: #fff;
	font-size: 3.6rem;
	font-weight: bold;
	color: var(--color-main-blue);
	line-height: 1.5;
	padding: 2px 10px;
	width: fit-content;
}

/* ==========================================================================
 * reasons1
 * ========================================================================== */
.reasons {
	padding: 100px 0;
}

.reason__txt {
	width: 58%;
}

.reason__img {
	padding-left: 30px;
}

.reasons__wrap--txt {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
}

.reason__num {
	font-size: 10rem;
	color: var(--color-main-yellow);
	line-height: 10rem;
}

.reason__title {
	font-size: 3.0rem;
	font-weight: bold;
	color: var(--color-main-blue);
	line-height: 1.5;
	width: fit-content;
}

.reason__desc {
	font-size: 1.6rem;
	color: var(--color-main-blue);
	margin-top: 10px;
}

.reason__points {
	padding: 40px 50px;
}

.reason__points li+li {
	margin-top: 20px;
}

.reason__points--item {
	background: var(--color-main-blue);
	color: #fff;
	padding: 15px 20px;
	padding-left: 30px;
	border-radius: 10px;
	font-size: 2.4rem;
	font-weight: bold;
}

.reason__points li::before {
	content: '';
	display: inline-block;
	width: 40px;
	height: 35px;
	background-image: url(../images/pc/check.png);
	vertical-align: -8px;
	margin-right: 20px;
}

.reason__parts {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.reason__parts--item {
	background: #f2f3f8;
	width: 49%;
	border-radius: 10px;
	padding: 30px 20px;
	padding-left: 160px;
}

.reason__title--sub {
	font-size: 2.4rem;
	font-weight: bold;
	color: var(--color-main-blue);
}

.reason__parts--desc {
	font-size: 1.6rem;
	color: var(--color-main-blue);
}

.reason__parts--item {
	background: url(../images/pc/parts_01.png) no-repeat 20px center;
	background-color: #f2f3f8;
}

.reason__parts li:nth-child(2) {
	background: url(../images/pc/parts_02.png) no-repeat 20px center;
	background-color: #f2f3f8;
}

.reason__parts li:nth-child(3) {
	background: url(../images/pc/parts_03.png) no-repeat 20px center;
	background-color: #f2f3f8;
}

.reason__parts li:nth-child(4) {
	background: url(../images/pc/parts_04.png) no-repeat 20px center;
	background-color: #f2f3f8;
}

.reason__parts li:nth-child(5) {
	background: url(../images/pc/parts_05.png) no-repeat 20px center;
	background-color: #f2f3f8;
}

.reason__parts li:nth-child(n+3) {
	margin-top: 2%;
}

/* ==========================================================================
 * reasons2
 * ========================================================================== */
.reasons2 {
	padding: 50px 0 100px;
	background: #f2f3f8;
	overflow: hidden;
}

.price__head {
	font-size: 3.0rem;
	font-weight: bold;
	color: #fff;
	line-height: normal;
	text-align: center;
	margin-top: 20px;
	background: var(--color-main-blue);
	border-radius: 10px 10px 0 0;
	padding: 15px 0;
}

.price__body {
	display: flex;
	justify-content: space-between;
}

.price__col {
	background: #fff;
	width: 50%;
	border-radius: 0 0 10px 10px;
	padding: 20px 10px 10px;
}

.price__col1 {
	border-radius: 0 0 0 10px;
}

.price__col2 {
	border-radius: 0 0 10px 0;
	background: #e5e6ed;
}

.price__col--ttl {
	font-size: 3.0rem;
	font-weight: bold;
	color: var(--color-main-blue);
	text-align: center;
}

.check__list {
	color: var(--color-main-blue);
	padding: 15px 20px;
	border-radius: 10px;
	font-size: 2.4rem;
	font-weight: bold;
}

.check__list li::before {
	content: '';
	display: inline-block;
	width: 40px;
	height: 35px;
	background-image: url(../images/pc/check2.png);
	vertical-align: -8px;
	margin-right: 20px;
}

.strength {
	padding: 60px 0 0;
	background: var(--color-bg-light);
}

.strength__lead {
	font-size: 3.0rem;
	color: var(--color-main-blue);
	font-weight: bold;
}

.strength__title {
	font-size: 4.8rem;
	font-weight: bold;
	color: var(--color-main-blue);
	margin-top: 5px;
}

.strength__list {
	display: flex;
	align-items: center;
	justify-content: center;
}

.strength__item+.strength__item {
	display: flex;
	align-items: center;
}

.strength__item+.strength__item::before {
	content: "";
	display: block;
	flex-shrink: 0;
	width: 36px;
	height: 36px;
	margin: 0 20px;
	position: relative;
	background:
		linear-gradient(to bottom right,
			transparent calc(50% - 1px),
			var(--color-main-blue) calc(50% - 1px),
			var(--color-main-blue) calc(50% + 1px),
			transparent calc(50% + 1px)),
		linear-gradient(to bottom left,
			transparent calc(50% - 1px),
			var(--color-main-blue) calc(50% - 1px),
			var(--color-main-blue) calc(50% + 1px),
			transparent calc(50% + 1px));
}

.strength__circle {
	width: 240px;
	height: 240px;
	border-radius: 50%;
	border: 2px solid var(--color-main-blue);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 20px;
	text-align: center;
}

.strength__name {
	font-size: 4.8rem;
	font-weight: bold;
	color: var(--color-main-blue);
	line-height: 1.2;
}

.strength__desc {
	font-size: 1.4rem;
	color: var(--color-main-blue);
	margin-top: 10px;
	line-height: 1.6;
}

.reason__achievement {
	text-align: center;
	padding-top: 50px;
}

/* ==========================================================================
 * reasons3
 * ========================================================================== */
.reasons3 {
	padding: 100px 0;
	background: #fff;
}

/* ==========================================================================
 * COMPARISON
 * ========================================================================== */
.comparison {
	padding: 100px 0;
	background: var(--color-bg-light);
}

.comparison__table-wrap {
	overflow-x: auto;
	margin-top: 40px;
}

.comparison__table {
	width: 100%;
	border-collapse: separate;
	border-spacing: 0;
	table-layout: fixed;
}

.comparison__table thead th {
	background: var(--color-main-blue);
	color: #fff;
	font-size: 1.8rem;
	font-weight: bold;
	text-align: center;
	padding: 20px 10px;
	border-right: 1px solid rgba(255, 255, 255, .2);
}

.comparison__table thead th:first-child {
	border-radius: 10px 0 0 0;
}

.comparison__table thead th:last-child {
	border-right: none;
	border-radius: 0 10px 0 0;
}

.comparison__th--rix {
	background: var(--color-main-red) !important;
}

.comparison__table tbody th {
	background: #5a5b82;
	color: #fff;
	font-size: 1.8rem;
	font-weight: bold;
	text-align: center;
	padding: 20px 15px;
	border-top: 1px solid rgba(255, 255, 255, .2);
}

.comparison__table tbody td {
	background: #fff;
	font-size: 1.6rem;
	color: var(--color-main-blue);
	text-align: center;
	padding: 20px 10px;
	border-top: 1px solid var(--color-bg-light);
	border-right: 1px solid var(--color-bg-light);
	font-weight: bold;
	vertical-align: middle;
	line-height: 1.5;
}

.comparison__table tbody td:last-child {
	border-right: none;
}

.comparison__table tbody tr:last-child th {
	border-radius: 0 0 0 10px;
}

.comparison__table tbody tr:last-child td:last-child {
	border-radius: 0 0 10px 0;
}

.comparison__td--rix {
	background: var(--color-main-red) !important;
	color: #fff !important;
}

.mark {
	display: block;
	font-size: 2.4rem;
	line-height: 1.2;
}

.mark--dbl {
	color: var(--color-main-red);
}

.mark--ok {
	color: var(--color-main-blue);
}

.mark--tri {
	color: var(--color-main-blue);
}

.mark--ng {
	color: #999;
}

.comparison__td--rix .mark {
	color: #fff;
}

.comparison__note {
	font-size: 1.2rem;
	color: #7f8c8d;
	text-align: center;
	margin-top: 16px;
}

@media screen and (max-width: 641px) {
	.comparison__table {
		min-width: 100%;
	}

	.comparison__table thead th,
	.comparison__table tbody th,
	.comparison__table tbody td {
		font-size: 1.2rem;
        padding: 10px 2px;
	}

	.mark {
		font-size: 2.0rem;
	}
}

/* ==========================================================================
 * process
 * ========================================================================== */
.process {
	padding: 100px 0 20px;
}

.flow__list {
	display: flex;
	justify-content: space-between;
	gap: 30px;
	margin-top: 60px;
	list-style: none;
	padding: 0;
	counter-reset: none;
}

.flow__item {
	flex: 1;
}

.flow__circle {
	width: 100px;
	height: 100px;
	border-radius: 50%;
	background: var(--color-main-blue);
	color: #fff;
	font-size: 5.0rem;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px;
}

.flow__item--rix .flow__circle {
	background: var(--color-main-red);
}

.flow__ttl {
	font-size: 1.8rem;
	font-weight: bold;
	color: var(--color-main-blue);
	text-align: center;
	margin-bottom: 12px;
}

.flow__desc {
	font-size: 1.6rem;
	color: var(--color-main-blue);
	line-height: 1.7;
}

.flow__item+.flow__item {
	position: relative;
}

.flow__item+.flow__item::before {
	content: "";
	position: absolute;
	top: 38px;
	left: -22px;
	width: 12px;
	height: 12px;
	border-top: 2px solid var(--color-main-blue);
	border-right: 2px solid var(--color-main-blue);
	transform: rotate(45deg);
}
/* ==========================================================================
 * case
 * ========================================================================== */
.case {
	padding: 100px 0;
	background: var(--color-bg-light);
}

.case__list {
	display: flex;
	flex-direction: column;
	gap: 30px;
	margin-top: 40px;
}

.case__item {
	display: flex;
	background: #fff;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 2px 12px rgba(0, 0, 0, .08);
}

.case__left {
    width: 180px;
    background: var(--color-main-blue);
    color: #fff;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    text-align: center;
}

.case__num {
	font-size: 1.8rem;
	font-weight: bold;
	color: var(--color-main-yellow);
	letter-spacing: .1em;
}

.case__industry {
	font-size: 2.4rem;
	font-weight: bold;
	line-height: 1.3;
	margin-top: 0;
}

.case__tag {
	display: inline-block;
	background: var(--color-main-red);
	color: #fff;
	font-size: 1.2rem;
	font-weight: bold;
	padding: 4px 12px;
	border-radius: 99px;
}

.case__right {
	flex: 1;
	padding: 30px;
}

.case__meta {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-bottom: 12px;
}

.case__badge {
	display: inline-block;
	border: 1px solid var(--color-main-blue);
	color: #fff;
	font-size: 1.2rem;
	font-weight: bold;
	padding: 3px 12px;
	border-radius: 99px;
	background-color: var(--color-main-blue);
}

.case__model {
	display: inline-block;
	color: var(--color-main-blue);
	font-size: 1.2rem;
	font-weight: bold;
	padding: 3px 12px;
	border-radius: 99px;
	background-color: var(--color-bg-light);
}

.case__eol {
	display: inline-block;
	color: var(--color-main-red);
	font-size: 1.2rem;
	font-weight: bold;
	padding: 3px 12px;
	border-radius: 99px;
	background-color: #fff0f0;
}

.case__title {
	font-size: 2.4rem;
	font-weight: bold;
	color: var(--color-main-blue);
	line-height: 1.5;
	margin-bottom: 20px;
}

.case__body {
	display: flex;
	gap: 16px;
	margin-bottom: 20px;
}

.case__col {
	flex: 1;
	border-radius: 8px;
	padding: 15px;
}

.case__col--before {
	background: #fff3f0;
}

.case__col--after {
	background: #f0f8f0;
}

.case__col-ttl {
	font-size: 1.4rem;
	font-weight: bold;
	color: var(--color-main-blue);
	margin-bottom: 10px;
}

.case__col--before .case__col-ttl {
	color: var(--color-main-red);
}

.case__col--after .case__col-ttl {
	color: #2a7a3b;
}

.case__desc {
	list-style: none;
	padding: 0;
	margin: 0;
	font-size: 1.4rem;
	color: var(--color-main-blue);
	line-height: 1.7;
}

.case__desc li {
	padding-left: 1em;
	text-indent: -1em;
}

.case__desc li::before {
	content: "・";
}

/* 結果バッジ */
.case__results {
	display: flex;
	gap: 24px;
	list-style: none;
	padding: 0;
	margin: 0;
}

.case__result {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 2.0rem;
	font-weight: bold;
	color: var(--color-main-blue);
}

.case__result::before {
	content: '';
    display: inline-block;
    width: 40px;
    height: 35px;
    background-image: url(../images/pc/check2.png);
}
/* ==========================================================================
 * contact
 * ========================================================================== */
.contact {
	padding: 100px 0;
	background: var(--color-bg-light);
}

/* ==========================================================================
 * FAQ
 * ========================================================================== */
.faq {
	padding: 100px 0;
	background: #e5e7f0;
}

.faq__list {
	margin-top: 40px;
	gap: 12px;
}
.faq__list div+div {
	margin-top: 30px;
}
.faq__item {
	background: #fff;
	border-radius: 10px;
	overflow: hidden;
}

/* Q行 */
.faq__q {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 22px 24px;
	cursor: pointer;
	user-select: none;
}

.faq__q-label {
	flex-shrink: 0;
	font-size: 3rem;
	color: var(--color-main-yellow);
}

.faq__q-txt {
	flex: 1;
	font-size: 1.8rem;
	font-weight: bold;
	color: var(--color-main-blue);
	line-height: 1.5;
}

/* ∧∨アイコン */
.faq__icon {
	flex-shrink: 0;
	width: 16px;
	height: 20px;
	position: relative;
}

.faq__icon::before,
.faq__icon::after {
	content: "";
	position: absolute;
	width: 10px;
	height: 2px;
	background: var(--color-main-blue);
	top: 50%;
	transition: transform .3s;
}

.faq__icon::before {
	left: 0;
	transform: translateY(-50%) rotate(45deg);
}

.faq__icon::after {
	right: 0;
	transform: translateY(-50%) rotate(-45deg);
}

/* 開いているとき（∧） */
.faq__q.is-open .faq__icon::before {
	transform: translateY(-50%) rotate(-45deg);
}

.faq__q.is-open .faq__icon::after {
	transform: translateY(-50%) rotate(45deg);
}


/* A行 */
.faq__a {
	display: flex;
	align-items: flex-start;
	gap: 16px;
	padding: 0 24px 24px;
	margin: 0;
}

.faq__a-label {
	font-size: 3.0rem;
	color: var(--color-main-yellow);
}

.faq__a-txt {
	flex: 1;
	font-size: 1.8rem;
	color: var(--color-main-blue);
	line-height: 1.8;
}

.faq__a-txt p+p {
	margin-top: .8em;
}
/* ==========================================================================
 * FOOTER
 * ========================================================================== */
.footer {
	padding: 50px 0 30px;
	background: #fff;
	text-align: center;
}

.footer__logo {
	margin-bottom: 24px;
}

.footer__logo img {
	width: auto;
}

.footer__nav-list {
	display: flex;
	justify-content: center;
	gap: 40px;
	margin-bottom: 24px;
}

.footer__nav-item a {
	font-size: 1.4rem;
	color: var(--color-main-blue);
	text-decoration: underline;
}

.footer__nav-item a:hover {
	text-decoration: none;
}

.footer__copy {
	font-size: 1.2rem;
	color: #888;
}
/* ==========================================================================
 * * Responsive Styles (SP: max-width 640px)
 * * ========================================================================== */

@media screen and (max-width: 641px) {

	/* Header */
	.header__navi {
		display: none !important;
	}

	.header__sp-area {
		display: block !important;
	}

	header .inner-width {
		min-width: unset
	}

	.header__box {
		height: 60px
	}

	.gnavi__link {
		color: #249e3e;
		font-weight: 700;
		background-color: #fff;
		text-decoration: none
	}

	.menu__btn {
		align-items: center;
		display: flex;
		height: 30px;
		justify-content: center;
		position: fixed;
		top: 15px;
		right: 15px;
		padding: 0;
		z-index: 9999;
		width: 30px;
		cursor: pointer;
	}

	.menu__btn span,
	.menu__btn span:before,
	.menu__btn span:after {
		content: '';
		background: var(--color-main-blue);
		border-radius: 3px;
		display: block;
		height: 3px;
		position: absolute;
		width: 25px
	}

	.menu__btn span:before {
		bottom: 8px
	}

	.menu__btn span:after {
		top: 8px
	}

	#menu__btn--check:checked~.menu__btn span {
		background-color: rgba(255, 255, 255, 0)
	}

	#menu__btn--check:checked~.menu__btn span:before {
		bottom: 0;
		transform: rotate(45deg)
	}

	#menu__btn--check:checked~.menu__btn span:after {
		top: 0;
		transform: rotate(-45deg)
	}

	#menu__btn--check {
		display: none
	}

	.gnavi__hamburger-menu {
		background-color: var(--color-main-blue);
		height: calc(100% - 60px);
		position: fixed;
		top: 60px;
		left: 100%;
		z-index: 100;
		transition: all .5s;
		width: 100%
	}

	#menu__btn--check:checked~.gnavi__hamburger-menu {
		left: 0;
	}

	.gnavi__hamburger-menu ul {
		padding: 30px 10px 0;
	}

	.gnavi__hamburger-menu ul li {
		list-style: none;
		padding: 0 0 0 3%;
		width: 100%
	}

	.gnavi__hamburger-menu ul li a {
		box-sizing: border-box;
		color: #fff;
		display: block;
		font-size: 13vw;
		padding: 10px 15px 15px 0;
		position: relative;
		text-decoration: none;
		width: 100%;
		text-align: center;
	}

	.gnavi__hamburger-menu ul li:last-child {
		border-bottom: none;
		margin: 10px 0 0;
		padding: 0
	}

	.gnavi__hamburger-menu ul li:last-child a:before {
		border-top: none;
		border-right: none;
		display: none
	}

	.navi__link {
		background: 0 0
	}

	.navi__link a {
		color: #000 !important
	}

	.navi__link a:before {
		border-top: solid 2px #000 !important;
		border-right: solid 2px #000 !important
	}

	#menu__btn--check:checked~.menu__btn {
		z-index: 10000;
	}
	.tel__small {
		font-size: 1.8rem;
		text-align: center;
		color: #fff;
	}

	.header__logo {
		width: 60px;
	}
	.fv {
		background: none;
		background-color: var(--color-main-blue);
	}
	.fv__wrap {
		text-align: center;
	}
	.strong__y {
		font-size: 15vw;
	}
	.fv__title {
		font-size: 8vw;
	}
	.fv__img {
		position: static;
        padding-top: 20px;
	}
	.fv__achievement {
		width: 100%;
		margin-top: 20px;
	}
	.fv__subtxt {
		font-size: 5vw;
	}
	.annotation {
		padding: 0;
	}
	.cta {
		font-size: 4vw;
	}
	.cta__wrap {
		display: block;
	}
	.cta__wrap a {
		display: block;
	}
	.cta__wrap a+a {
		padding: 10px 0 0;
	}
	.sec__title {
		font-size: 9vw;
	}
	.database {
		padding: 50px 0;
	}
	.database .search-row input, .database .search-row select {
		padding: 16px 14px;
	}
	.database .card-inner {
		flex-direction: column;
	}
	.database .card-meta {
		font-size: 13px;
	}
	.database .card-part {
		font-size: 20px;
	}
	.txt-left-sp {
		text-align: left;
	}
	.problems {
		padding: 50px 0;
	}
	.pb__item {
		width: 100%;
		padding: 20px;
		padding-top: 70px;
		background-position: center 20px;
	}
	.pb__item p:nth-child(1) {
		font-size: 7vw;
		text-align: center;
	}
	.pb__item p:nth-child(2) {
		font-weight: normal;
		font-size: 1.6rem;
	}
	.problems {
		background: url(../images/sp/problems_bg.jpg) no-repeat center 106%;
		background-size: contain;
		background-color: #f2f3f8;
	}
	.pb__txt {
		font-size: 8vw;
	}
	.pb__txt-wrap {
		padding-top: 76%;
	}
	.reasons__wrap--txt {
		width: auto;
        display: block;
	}
	.reason__txt {
		width: 100%;
	}
	.reason__num {
		font-size: 17vw;
        text-align: center;
		line-height: normal;
	}
	.reason__title {
		width: auto;
		font-size: 6vw;
		text-align: center;
		line-height: normal;
	}
	.reason__img {
		padding: 15px 0 0;
		margin-right: 0 !important;
	}
	.reason__points {
		padding: 20px 0;
	}
	.reason__points li::before {
		margin-right: 10px;
		background-image: url(../images/sp/check.png);
		background-size: contain;
	}
	.reason__parts {
		display: block;
	}
	.reason__parts--item {
		width: auto;
	}
	.reason__parts li:nth-child(n+3) {
		margin-top: 0;
	}
		.reason__parts li:nth-child(n+2) {
		margin-top: 20px;
	}
	.reason__parts--item {
		padding-left: 20px;
		padding-top: 150px;
	}
	.reason__parts li:nth-child(1) {
		background: url(../images/sp/parts_01.png) no-repeat center 20px;
		background-color: #f2f3f8;
		background-size: 145px;
	}
	.reason__parts li:nth-child(2) {
		background: url(../images/sp/parts_02.png) no-repeat center 20px;
		background-color: #f2f3f8;
		background-size: 110px;
	}
	.reason__parts li:nth-child(3) {
		background: url(../images/sp/parts_03.png) no-repeat center 20px;
		background-color: #f2f3f8;
		background-size: 140px;
	}
	.reason__parts li:nth-child(4) {
		background: url(../images/sp/parts_04.png) no-repeat center 20px;
		background-color: #f2f3f8;
		background-size: 120px;
	}
	.reason__parts li:nth-child(5) {
		background: url(../images/sp/parts_05.png) no-repeat center 20px;
		background-color: #f2f3f8;
		background-size: 130px;
	}
	.price__head {
		margin-top: 0;
        line-height: 1.2em;
        font-size: 2.4rem;
	}
	.price .inner--width {
		width: auto;
	}
	.price__body {
		display: block;
	}
	.price__col {
		width: 100%;
	}
	.price__col1 {
		border-radius: 0;
	}
	.price__col--ttl {
		font-size: 2.4rem;
	}
	.check__list {
		font-size: 1.8rem;
		padding: 15px 10px;
	}
	.check__list li::before {
		content: '';
        display: inline-block;
        width: 30px;
        height: 28px;
        background-image: url(../images/sp/check2.png);
        background-size: contain;
        vertical-align: -8px;
        margin-right: 10px;
	}
	.price__col2 {
		border-radius: 0 0 10px 10px;
	}
	.strength .inner--width {
		width: auto;
	}
	.strength__lead {
		font-size: 5vw;
	}
	.strength__title {
		font-size: 11vw;
	}
	.strength__list {
		display: block;
	}
	.strength__item+.strength__item::before {
		display: none;
	}
	.strength__circle {
		width: auto;
		height: auto;
        border-radius: 10px;
		border: 1px solid var(--color-main-blue);
		flex-direction: row;
		text-align: left;
		padding: 10px 20px;
	}
	.strength__name {
		font-size: 7vw;
        width: 190px;
	}
	.strength__list li+li {
		margin-top: 10px;
	}
	.strength__desc {
		margin-top: 0;
	}
	.reasons {
		padding: 50px 0;
	}
	.reasons2 {
		padding: 50px 0;
	}
	.reasons3 {
		padding: 50px 0;
	}
	.reason__achievement {
		padding-top: 20px;
        width: 80%;
        margin: 0 auto;
	}
	.comparison {
		padding: 50px 0;
	}
	.comparison__table-wrap {
		overflow-x: unset;
	}
	.process {
		padding: 50px 0 10px;
	}
	.flow__list {
		flex-direction: column;
		gap: 40px;
		margin: 0;
	}
	.flow__item+.flow__item::before {
		top: -28px;
		left: 50%;
		transform: translateX(-50%) rotate(135deg);
	}
	.flow__ttl {
		text-align: left;
		margin-bottom: 0;
	}
	.flow__item {
		display: flex;
		justify-content: center;
	}
	.flow__circle {
		width: 60px;
		height: 60px;
		font-size: 3rem;
		margin: 0;
        margin-right: 20px;
	}
	.flow__desc {
		margin: 0;
	}
	.flow__txt {
		width: 70%;
	}
	.cta2 {
		margin-bottom: 50px;
	}
	.case {
		padding: 50px 0;
	}
	.case__item {
		flex-direction: column;
	}
	.case__left {
		width: 100%;
		display: block;
		align-items: center;
		padding: 20px;
		gap: 16px;
	}
	.case__body {
		flex-direction: column;
	}
	.case__results {
		flex-direction: column;
		gap: 12px;
	}
	.case__num {
		font-weight: normal;
	}
	.case__meta {
		display: block;
	}
	.case__right {
		padding: 20px;
	}
	.case__model {
		margin-top: 10px;
	}
	.case__title {
        font-size: 1.8rem;
	}
	.case__result::before {
		width: 30px;
		height: 28px;
		background-size: contain;
		background-image: url(../images/sp/check2.png);
	}
	.case__eol {
		margin-top: 10px;
	}
	.faq {
		padding: 50px 0;
	}
	.footer__nav-list {
		gap: 16px;
	}
}
/* ==========================================================================
 * Contact Section（フォームエリア）
 * style.css の末尾に追記してください
 * ========================================================================== */
/* ---------- セクション全体 ---------- */
.contact {
	padding: 100px 0;
	background: var(--color-bg-light);
}

/* ---------- タブ切り替えボタン ---------- */
.contact__tabs {
	display: flex;
	border: 2px solid var(--color-main-blue);
	border-radius: 10px;
	overflow: hidden;
	margin-bottom: 30px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, .08);
}

.contact__tab {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 18px 16px;
	font-size: 1.5rem;
	font-weight: bold;
	font-family: inherit;
	border: none;
	cursor: pointer;
	transition: background .2s, color .2s;
	background: #fff;
	color: var(--color-main-blue);
	line-height: 1.3;
	text-align: center;
}

.contact__tab--dl.contact__tab--active {
	background: var(--color-main-blue);
	color: #fff;
}

.contact__tab--diag.contact__tab--active {
	background: var(--color-main-red);
	color: #fff;
}

.contact__tab:not(.contact__tab--active):hover {
	background: var(--color-bg-light);
}

/* ---------- フォームカード ---------- */
.contact__card {
	background: #fff;
	border-radius: 10px;
	box-shadow: 0 4px 24px rgba(0, 0, 0, .10);
	overflow: hidden;
}

/* ---------- パネル ---------- */
.contact__panel--hidden {
	display: none !important;
}

/* ---------- パネルヘッダー ---------- */
.contact__panel-head {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 20px 32px;
	color: #fff;
}

.contact__panel-head--dl {
	background: var(--color-main-blue);
}

.contact__panel-head--diag {
	background: var(--color-main-red);
}

.contact__panel-title {
	font-size: 1.8rem;
	font-weight: bold;
	line-height: 1.3;
	margin: 0;
}

.contact__panel-sub {
	font-size: 1.2rem;
	opacity: .8;
	margin: 4px 0 0;
}

/* ---------- 資料プレビュー ---------- */
.contact__doc-preview {
	display: flex;
	align-items: flex-start;
	gap: 16px;
	margin: 24px 32px;
	background: var(--color-bg-light);
	border: 1px dashed #cdd5e0;
	border-radius: 10px;
	padding: 16px;
}

.contact__doc-icon {
	width: 44px;
	height: 56px;
	background: var(--color-main-blue);
	border-radius: 6px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.contact__doc-title {
	font-size: 1.5rem;
	font-weight: bold;
	color: var(--color-main-blue);
	margin: 0 0 6px;
}

.contact__doc-list {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 20px;
	list-style: none;
	padding: 0;
	margin: 0;
}

.contact__doc-list li {
	font-size: 1.3rem;
	color: #666;
}

.contact__doc-list li::before {
	content: '✓ ';
	color: var(--color-main-blue);
	font-weight: bold;
}

/* ---------- 安心バー ---------- */
.contact__assurance {
	display: flex;
	justify-content: space-around;
	background: var(--color-bg-light);
	border-bottom: 1px solid #dde3ec;
	padding: 12px 20px;
}

.contact__assurance span {
	font-size: 1.6rem;
	font-weight: bold;
	color: var(--color-main-blue);
}

.contact__assurance em {
	font-style: normal;
	color: var(--color-main-red);
	margin-right: 4px;
}

/* ---------- フォーム共通 ---------- */
.contact__panel form {
	padding: 24px 32px 32px;
}

.contact__field {
	margin-bottom: 16px;
}

.contact__field-row {
	display: flex;
	gap: 16px;
	margin-bottom: 16px;
}

.contact__field-row .contact__field {
	flex: 1;
	margin-bottom: 0;
}

.contact__label {
	display: block;
	font-size: 1.3rem;
	font-weight: bold;
	color: var(--color-main-blue);
	margin-bottom: 6px;
}

.contact__required {
	display: inline-block;
	font-size: 1.1rem;
	font-weight: bold;
	color: #fff;
	background: var(--color-main-red);
	border-radius: 3px;
	padding: 1px 5px;
	margin-left: 6px;
	vertical-align: middle;
	line-height: 1.4;
}

.contact__input {
	width: 100%;
	padding: 11px 14px;
	font-size: 1.5rem;
	font-family: inherit;
	border: 1.5px solid #cdd5e0;
	border-radius: 8px;
	background: #fff;
	color: #333;
	box-sizing: border-box;
	transition: border-color .2s, box-shadow .2s;
	-webkit-appearance: none;
	appearance: none;
}

.contact__input:focus {
	outline: none;
	border-color: var(--color-main-blue);
	box-shadow: 0 0 0 3px rgba(35, 35, 90, .10);
}

textarea.contact__input {
	resize: vertical;
	min-height: 100px;
}

select.contact__input {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%2323235a' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 14px center;
	padding-right: 36px;
	cursor: pointer;
}

/* ---------- チェックボックス ---------- */
.contact__checkbox-label {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	cursor: pointer;
	font-size: 1.3rem;
	color: #555;
	line-height: 1.6;
	margin-bottom: 20px;
}

.contact__checkbox-label input[type="checkbox"] {
	width: 18px;
	height: 18px;
	flex-shrink: 0;
	margin-top: 2px;
	border: 1.5px solid #cdd5e0;
	border-radius: 3px;
	cursor: pointer;
	accent-color: var(--color-main-blue);
}

.contact__checkbox-label a {
	color: var(--color-main-blue);
	text-decoration: underline;
	font-weight: bold;
}

/* ---------- 送信ボタン ---------- */
.contact__submit {
	display: block;
	width: 100%;
	padding: 18px;
	font-size: 1.8rem;
	font-weight: bold;
	font-family: inherit;
	color: #fff;
	border: none;
	border-radius: 10px;
	cursor: pointer;
	transition: opacity .2s, transform .1s;
	text-align: center;
	-webkit-appearance: none;
	appearance: none;
}

.contact__submit:hover {
	opacity: .88;
}

.contact__submit:active {
	transform: scale(.98);
}

.contact__submit--dl {
	background: var(--color-main-blue);
}

.contact__submit--diag {
	background: var(--color-main-red);
}

.contact__submit.disabled {
	background: #b0b4cc;
	cursor: not-allowed;
	opacity: .7;
}

.contact__submit-note {
	font-size: 1.2rem;
	color: #888;
	text-align: center;
	margin-top: 10px;
}

/* ---------- バリデーション（フォームフラグメント内） ---------- */
.contact__panel input:invalid,
.contact__panel select:invalid,
.contact__panel textarea:invalid {
	border-color: #ffa69d;
	background-color: #fff8f7;
}

/* ---------- 緊急電話バナー ---------- */
.contact__tel-banner {
	display: flex;
	align-items: center;
	gap: 16px;
	background: var(--color-main-blue);
	border-radius: 12px;
	padding: 24px 28px;
	margin-top: 20px;
	flex-wrap: wrap;
}

.contact__tel-icon {
	width: 44px;
	height: 44px;
	background: var(--color-main-red);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.contact__tel-txt {
	flex: 1;
}

.contact__tel-lead {
	font-size: 1.5rem;
	font-weight: bold;
	color: #fff;
	margin: 0;
}

.contact__tel-sub {
	font-size: 1.2rem;
	color: rgba(255, 255, 255, .65);
	margin: 4px 0 0;
}

.contact__tel-num {
	font-size: 2.8rem;
	font-weight: bold;
	color: #fff;
	letter-spacing: -1px;
	text-decoration: none;
	flex-shrink: 0;
}

.contact__tel-num:hover {
	color: var(--color-main-yellow);
	text-decoration: none;
}


/* ==========================================================================
 * Contact Section - レスポンシブ（SP: max-width 640px）
 * ========================================================================== */
@media screen and (max-width: 640px) {

	.contact {
		padding: 50px 0;
	}

	.contact__tabs {
		flex-direction: column;
		border-radius: 10px;
	}

	.contact__tab {
		font-size: 1.5rem;
		padding: 16px;
		border-bottom: 1px solid #eee;
	}

	.contact__tab:last-child {
		border-bottom: none;
	}

	.contact__panel-head {
		padding: 16px 20px;
	}

	.contact__panel-title {
		font-size: 1.5rem;
	}

	.contact__doc-preview {
		margin: 16px 20px;
		padding: 12px;
	}

	.contact__assurance {
		flex-direction: column;
		align-items: flex-start;
		gap: 6px;
		padding: 12px 20px;
	}

	.contact__panel form {
		padding: 16px 20px 24px;
	}

	.contact__field-row {
		flex-direction: column;
		gap: 0;
		margin-bottom: 0;
	}

	.contact__field-row .contact__field {
		margin-bottom: 16px;
	}

	.contact__input {
		font-size: 1.6rem;
		/* SP入力しやすいサイズ */
		padding: 14px;
	}

	.contact__submit {
		font-size: 1.6rem;
		padding: 16px;
	}

	.contact__tel-banner {
		flex-direction: column;
		text-align: center;
		padding: 20px;
	}

	.contact__tel-num {
		font-size: 3.2rem;
	}
}