@charset "utf-8";




/*
ブラウザリセット
========================================
フォーム部品やテーブルのブラウザ設定を初期化します
*/

/* =============================================================================
   Forms
   ========================================================================== */
form {
    margin: 0;
}
fieldset {
    border: 1px solid #c0c0c0;
    margin: 0 2px;
    padding: 0.35em 0.625em 0.75em;
}
legend {
    border: 0;
    padding: 0;
    white-space: normal;
    margin-left: -7px;
}
button,
input,
select,
textarea {
    font-size: 100%;
    margin: 0;
    vertical-align: baseline;
    vertical-align: middle;
}
button,
input {
    line-height: normal;
}
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
    cursor: pointer;
    -webkit-appearance: button;
    overflow: visible;
}
button[disabled],
input[disabled] {
    cursor: default;
}
input[type="checkbox"],
input[type="radio"] {
    box-sizing: border-box;
    padding: 0;
    height: 13px;
    width: 13px;
}
input[type="search"] {
    -webkit-appearance: textfield;
    -moz-box-sizing: content-box;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
}
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button {
    -webkit-appearance: none;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
    border: 0;
    padding: 0;
}
textarea {
    overflow: auto; /* 1 */
    vertical-align: top; /* 2 */
}
/* =============================================================================
   Tables
   ========================================================================== */
table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* ページのスタイリング
========================================
以下、フォーム専用のスタイリングです。
*/
.l-width-header {
	box-sizing: border-box;
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 20px 0 20px;
}
.l-width-contents {
	box-sizing: border-box;
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 20px 0 20px;
}
.page--header {
	border-bottom: 1px solid #333;
	margin-bottom: 40px;
}


/* フォームのスタイリング
========================================
以下、フォーム専用のスタイリングです。
*/

/*フォーム全域を囲うエリア*/
.form_area {
	/* width: 80%; */
	margin: 0 auto;
	color: #333;
}


/* ページガイド
========================================
*/
.form_area--guide {
	min-width: 600px;
}
.form_area--guide--container {
	display: flex;
	justify-content: center;
	column-gap: 60px;
}
.form_area--guide--pane {
	width: 100px;
	display: flex;
	flex-direction: column;
	align-items: center;
	row-gap: 10px;
	position: relative;
}
.form_area--guide--pane:not(:first-of-type)::before {
	position: absolute;
	content: "";
	width: calc(calc(100px / 2) + 60px);/* (.form_area--guide--pane width / 2) + .form_area--guide--container column-gap */
	height: 3px;
	background-color: #aaa;
	top: 25px;
	right: calc(50% + calc(50px / 2));/* 50% + (.form_area--guide--circle width / 2) */
	transform: translateY(-50%);
}
/* .form_area--guide--pane--top {} */
/* .form_area--guide--pane--middle {} */
.form_area--guide--circle {
	background-color: #aaa;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
}
.form_area--guide--text {
	font-size: 14px;
}

.form_area--guide--pane.is-check .form_area--guide--circle {
	background-color: #4d8daa;
}
.form_area--guide--pane.is-check.form_area--guide--pane:not(:first-of-type)::before {
	background-color: #4d8daa;
}


/* テーブル
========================================
*/

.form_area table {
	width: 100%;
	border-left: 1px solid #bbb;
}
.form_area th,
.form_area td {
	border: 1px solid #bbb;
	border-left: none;
	padding: 8px;
}
.form_area th {
	text-align: left;
	background: #eee;
}
.form_area .error {
	background-color: red;
	color: #fff;
	padding: 15px 20px;
	margin: 10px 0;
	border-radius: 10px;
}
.form_area .error-text {
	color: red;
	margin: 5px 0;
	font-weight: bold;
}
table .form_area--title-col {
	font-size: 24px;
	text-align: center;
	letter-spacing: 0.5em;
	writing-mode: vertical-lr;
}
.form_area--required {
	display: inline-block;
	background-color: #ee0000;
	color: #fff;
	font-size: 12px;
	padding: 2px 6px;
	margin-left: 10px;
	border-radius: 4px;
}
.text--danger {
	color: #ee0000;
}
/* フォーム
========================================

送信ボタンは、input=submitではなくbuttonを使用する
<button type="submit" class="btn btn_submit">
	ボタンのテキスト
</button>
*/

/*フォーム部品の初期化*/
input[type="text"],
input[type="file"],
input[type="radio"],
input[type="checkbox"],
input[type="password"],
input[type="submit"],
textarea,
select,
button{
	outline:none;
	margin: 0;
	padding: 0;
}
/*テキスト入力、選択系のボックスの共通スタイリング*/
.form_text,
input[type="text"],
.form_file,
input[type="file"],
select,
.form_select,
textarea,
.form_textarea　{
	display: inline-block;
	vertical-align: middle;
	padding: 5px;
	margin: 3px;
	background: #fff;
	border-radius: 3px;
	border: 1px solid #999;
}
/*テキスト入力系フォームの共通insetシャドウ*/
.form_text,
input[type="text"],
.form_file,
input[type="file"],
select,
.form_select,
textarea,
.form_textarea {
	box-shadow: inset 1px 1px 2px rgba(80,80,80,0.2);
}
/*個別指定*/
select,
.form_select {
	cursor: pointer;
	padding: 5px;
}
/*個別指定*/
.form_file,
input[type="file"] {
	cursor: pointer;
	box-shadow: none;
}
.form_file:hover,
input[type="file"]:hover {
	background: #eee;
}
/*個別指定*/
textarea,
.form_textarea {
	height: 150px;
	width: 95%;
}
/*フォーム部品と横並びのテキスト位置のズレを調整*/
input[type="radio"],
input[type="checkbox"] {
	position:relative;
	top:1px;
	margin-right: 3px;
}
/*ラベルタグのスタイル*/
label {
	cursor: pointer;
	margin-right: 15px;
	padding: 5px;
}
/*readonly指定が入った時の指定*/
input[readonly],
input[type="text"]:readonly,
input[type="file"]:readonly,
input[type="radio"]:readonly,
input[type="checkbox"]:readonly,
input[type="password"]:readonly,
input[type="submit"]:readonly,
textarea:readonly,
select:readonly,
button:readonly {
	background: #eee;
}
/*disabled指定が入った時の指定*/
input[disabled],
input[type="text"]:disabled,
input[type="file"]:disabled,
input[type="radio"]:disabled,
input[type="checkbox"]:disabled,
input[type="password"]:disabled,
input[type="submit"]:disabled,
textarea:disabled,
select:disabled,
button:disabled {
	/* opacity: 0.6; */
}

/* ボタン
========================================
ボタン共通
* フォームタグはbuttonに付与
	* input=submitは使わない
* aタグにも付与可能
* 基本的に入力フォームと設定を合わせる
*/
.btn {
	display: inline-block;
	vertical-align: middle;
	padding: 4px 1.4em;
	background: #f5f5f5;
	border-radius: 5px;
	border: 1px solid #1c7cd5;
	cursor: pointer;
}
/*ボタンホバー時*/
.btn:hover {}
/*リンクがボタン化された時のスタイル*/
a.btn {
	text-decoration: none;
	/* color: #333; */
}
/*最下部のボタンエリア*/
.btn_area {
	display: flex;
	column-gap: 20px;
	margin-top: 10px;
	padding-top: 20px;
	padding-bottom: 20px;
}
.btn_area-center {
	justify-content: center;
}
.btn_area>div {
	order: 2;
}
.btn.g-recaptcha {
	order: 1;
}
/*特大サイズのボタン*/
.btn_large-ex {
	text-align: center;
	font-size: 18px;
	padding: 24px 60px;
}
/*大サイズのボタン*/
.btn_large {
	font-size: 14px;
	padding: 12px 45px;
}
/*送信ボタンのスタイル*/
.btn_submit {
	background-color: #1c7cd5;
	color: #fff;
}
.btn_submit:hover {
	opacity: .8;
}
/*戻るボタンのスタイル*/
.btn_back {
	background-color: #fff;
	color: #1c7cd5;
}
/*戻るボタンのスタイル*/
.btn_back:hover {
	opacity: .8;
}
.btn-disabled {
	background-color: #666;
	border-color: #666;
	cursor: initial;
}
.btn-disabled:hover {
	opacity: 1;
}

/* 見出し
========================================
*/
.heading-lg {
	display: flex;
	flex-direction: column;
	row-gap: 2px;
	padding: 10px 0;
}
.heading-lg .title {
	font-size: 32px;
	margin: 0;
}
.heading-lg .sub_title {
	font-size: 20px;
}
.heading-md .title {
	font-size: 24px;
}

/* テキスト
========================================
*/
.text_box {
	text-align: center;
	line-height: 1.8;
}
.text_box .text + .text {
	margin-top: 16px;
}
.text-denger {
	color: red;
}

/* 照会ページ
========================================
*/
.reference--input-tel {
	width: 80px;
}