@charset "utf-8";

*{
	margin: 0px;
	padding: 0px;
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	        box-sizing: border-box;
		-webkit-appearance: none;
}
img{
	border: none;
	vertical-align: middle;
}

body{
	font-size: 16px;
	width: 100%;
	-webkit-text-size-adjust: 100%;
	flex-direction: column;
}

/* フッター下固定用 */
html, body {
	height: 100%;
	margin: 0;
	padding: 0;
}
.wrapper {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}
article{
	display: flex;
}

/** 色ベース **/
/*
.color-bg-header {
	background-color:#ea0001;
	color:#fff;
}
*/
.color-bg-footer {
	background-color:#dddddd;
	color:#555;
}
.color-bg-contents {
	background-color:#f0f0f0;
	color:#444;
}
.color-bg-header2 {
	background-color:#eeeeee;
	color:#333;
}
.color-bg-window {
	background-color:#ffffff;
}
.color-red {
	color:#ff3333;
}
.color-gray {
	color:#777777;
}



/** ヘッダー **/
#header {
	width: 100%;
	height: 60px;
	display: flex;
	align-items: center;
}

#header-in {
	width: 100%;
	max-width: 980px;
	margin: auto;
	padding: 0px 10px;
}
#header-inner {
	margin: 0 auto;
	max-width: 980px;
	position: relative;
}
#header h1 {
	font-size: 24px;
}
.header-area {
	width: 100%;
	max-width: 980px;
	margin: 0 auto 20px auto;
	border-radius: 14px;
}

/** フッター **/
#footer {
	margin-top: auto; /* フッター下固定用 */
	width: 100%;
	height: 60px;
	display: flex;
	align-items: center;
}

#footer-in {
	width: 100%;
	max-width: 980px;
	margin: auto;
	padding: 0px 10px;
}

#footer p {
	font-size: 14px;
	text-align: center;
}

/** コンテンツエリア **/
#contents {
	flex: 1; /* フッター下固定用 */
}
#form-area {
	width: 100%;
	margin: 0 auto;
	overflow: hidden;
}

#form-area-in {
	padding: 2%;
}

.form-block {
	width: 100%;
	max-width: 980px;
	border-radius: 14px;
	margin: 20px auto;
	padding: 20px 24px;
}
.form-block h2 {
	font-size: 18px;
	font-weight: bold;
	padding: 10px 16px;
	margin: 0 0 14px 0;
	border-radius: 10px;
}
.form-group {
	padding: 10px 0 12px;
	margin: 0 0 10px 0;
	border-bottom: solid 1px #eee;
}
.form-group-row {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}
.form-list-header {
	display: flex;
	flex-wrap: wrap;
	padding: 0 0 8px 0;
}
.form-list-title {
	font-size: 15px;
	font-weight: bold;
	padding: 0 20px 0 0;
}
.form-list-caption { /* タイトルの右に表示 */
	font-size: 14px;
}
.form-list-caption2 { /* フォームの下に表示（エラー等） */
	font-size: 14px;
	padding: 6px 0;
}

/** フォーム **/

.form-design1 {
	font: 15px/24px sans-serif;
	box-sizing: border-box;
	width: 100%;
	padding: 0.5em 0.8em;
	transition: 0.3s;
	letter-spacing: 1px;
	color: #333333;
	border: 1px solid #cccccc;
	background: #ffffff;
	border-radius: 6px;
}
.form-design1:focus {
	border: 1px solid #888888;
	background: #ffffff;
	outline: none;
}
.form-size20 {
	width: 100%;
	max-width: 200px;
}
.form-size30 {
	width: 100%;
	max-width: 300px;
}
.form-size30-2 {
	width: 300px;
}
.form-size30-2boxs {
	width: 300px;
}
.form-size30-3 {
	width: 100%;
	max-width: 25%;
}
.form-size50 {
	width: 100%;
	max-width: 500px;
}
.form-size80 {
	width: 100%;
	max-width: 800px;
}
/** type number用のスピナーを削除するcss **/
.no-spin::-webkit-inner-spin-button,
.no-spin::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
    -moz-appearance:textfield;
}

/* Chrome *//* placeholder属性 */
::-webkit-input-placeholder {
  color: #bbbbbb;
}
/* Firefox */
::-moz-placeholder {
  color: #bbbbbb;
}
/* IE */
:-ms-input-placeholder {
  color: #bbbbbb;
}

/* エラーメッセージ吹き出し */
.err_balloon{
	position: relative;
	margin-top: 11px;
	color: #3a3a3a;
	border-radius: 5px;
	font-size: 14px;

	padding: 9px 10px 9px 45px;
	background: url('/var/www/html/fbs/html/images/caution.png') no-repeat;
	background-color: #ffbdbd;
	background-size: 28px 28px;
	background-position: 10px center;
}
.err_balloon:before{
	content: '';
	position: absolute;
	top: -19px;
	left: 14px;
	border: 10px solid transparent;
	border-bottom: 10px solid #ffbdbd;
}
.err_caution{
	margin: 5px 3% 0;
	padding: 3px;
	border: 3px solid #ffbdbd;
	color: #FF1A00;
	font-size: 15px;
}
input[type="date"]::-webkit-date-and-time-value {
	text-align: left;
}

/** ラジオボタン　https://copypet.jp/749/ **/
.form-radio {
	padding: 0;
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
}
.form-radio-row {
	display: flex;
	flex-wrap: wrap;
}
.form-radio:before,
.form-radio:after {
	-webkit-box-sizing: inherit;
	        box-sizing: inherit;
}
.form-radio .box {
	width: 90%;
	---margin: 2em auto;
	text-align: left;
}
.form-radio input[type=radio] {
	display: none;
}
.form-radio label:focus,
.form-radio label:hover,
.form-radio label:active,
.form-radio input:checked + label {
	color: #111; /*フォーカステキスト*/
}
.form-radio label:focus:before,
.form-radio label:hover:before,
.form-radio label:active:before,
.form-radio input:checked + label:before {
	border-color: #333; /*フォーカスポイント*/
	background: #ffffff;
}
.form-radio label {
	font-size: 1.0em;
	line-height: 1;
	position: relative;
	display: block;
	overflow: hidden;
	padding: 1em 1em 1em 2.5em;
	cursor: pointer;
	-webkit-transition: all 0.15s ease;
	        transition: all 0.15s ease;
	white-space: nowrap;
	text-overflow: ellipsis;
	background: #ffffff;
}
.form-radio label:before {
	position: absolute;
	top: 1em;
	left: 1em;
	width: 10px;
	height: 10px;
	content: '';
	border: 0.2em solid #cccccc;
	border-radius: 50%;
}
.form-radio input:checked + label:before { /* 選択時の色 */
	border-color: #333;
	background: #333;
}
.form-radio input:disabled + label {
	cursor: not-allowed;
	color: rgba(0, 0, 0, 0.5);
	background: #efefef;
}
.form-radio input:disabled + label:hover {
	border-color: rgba(0, 0, 0, 0.1);
}
.form-radio input:disabled + label:before {
	border-color: #ffffff;
	background: #ffffff;
}


/* チェックボックス */
.form-check {
	padding: 0px;
}
.form-check-row {
	display: flex;
	flex-wrap: wrap;
}
.form-check:before, .form-check:after {
	-webkit-box-sizing: inherit;
	        box-sizing: inherit;
}
.form-check .box {
	width: 90%;
	text-align: left;
	border: 1px solid white;
	border-radius: 3px;
	background: #ffffff;
}
.form-check input[type=checkbox] {
	display: none;
}
.form-check label:focus,
.form-check label:hover,
.form-check label:active,
.form-check input:checked + label {
	color: #111;
}
.form-check label:focus:before,
.form-check label:hover:before,
.form-check label:active:before,
.form-check input:checked + label:before {
	border-color: #333;
	background: #ffffff;
}
.form-check label {
	font-size: 1em;
	line-height: 1;
	position: relative;
	display: inline-block;
	overflow: hidden;
	padding: 0.8em 1em 1em 2.5em;
	cursor: pointer;
	-webkit-transition: all 0.15s ease;
	        transition: all 0.15s ease;
	white-space: nowrap;
	text-overflow: ellipsis;
	background: #ffffff;
}
.form-check label:before {
	position: absolute;
	top: 1em;
	left: 1em;
	width: 10px;
	height: 10px;
	content: '';
	border: 0.2em solid #cccccc;
}
.form-check input:checked + label:before {
	border-color: #333;
	background: #333;
}


/* セレクトボックス */
.form-input {
	padding: 0;
}
.form-input select {
	border: 1px solid #cccccc;
	background: #ffffff;
	padding: 12px 10px;
	color: #333333;
	border-radius: 6px;
  	-webkit-border-radius: 6px;
  	-moz-border-radius: 6px;
}
.form-input select:focus {
	border: 1px solid #888888;
	background: #ffffff;
	outline: none;
}

button{
	cursor:pointer;
}
/* 送信 */
.form-submit-area {
	width: 100%;
	max-width: 980px;
	background-color: #fff;
	margin: 0 auto 20px auto;
/*	padding: 15px 24px;	*/
	padding: 15px 0;
	text-align: center;
	border-radius: 14px;
}
.btarea01 {
	width: 100%;
	padding: 10px 24px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center; /* 中央寄せ横 */
	align-items: center; /* 中央寄せ縦 */
	gap: 10px; /* ボタンが複数ある場合のスペース */
}
.btarea01-col {
	width: 100%;
	padding: 10px 24px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center; /* 中央寄せ横 */
	align-items: center; /* 中央寄せ縦 */
	gap: 10px; /* ボタンが複数ある場合のスペース */
}
.bttype01 {
	font-size: 15px;
	line-height: 1.6em;
	padding: 10px 20px;
	box-sizing: border-box;
	border-radius: 2px;
  	-webkit-border-radius: 2px;
  	-moz-border-radius: 2px;
}
.bttype02 {
	font-size: 15px;
	line-height: 1.6em;
	padding: 10px 20px;
	box-sizing: border-box;
	border-radius: 8px;
  	-webkit-border-radius: 8px;
  	-moz-border-radius: 8px;
}
.bttype03 {
	font-size: 15px;
	line-height: 1.6em;
	padding: 10px 20px;
	box-sizing: border-box;
	border-radius: 30px;
  	-webkit-border-radius: 30px;
  	-moz-border-radius: 30px;
}

/* ボタン色 */
.btcolor-b {
	color: #fff;
	font-weight: bold;
	background-color: #4da9fb;
	border: 2px solid #4da9fb;
}
.btcolor-b:hover {
	background-color: #4496ed;
	border: 2px solid #4496ed;
}

.btcolor-r {
	color: #fff;
	font-weight: bold;
	background-color: #4472C4;
	border: 2px solid #4472C4;
}
.btcolor-r:hover {
	background-color: #446aad;
	border: 2px solid #446aad;
}
.btcolor-gr {
	color: #fff;
	font-weight: bold;
	background-color: #e3e3e6;
	border-bottom: 1px solid #eee;
}
.btcolor-gr:hover {
	background-color: #e3e3e6;
	border-bottom: 1px solid #eee;
}
.btcolor-y {
	color: #fff;
	font-weight: bold;
	background-color: #f7a320;
	border: 2px solid #f7a320;
}
.btcolor-y:hover {
	background-color: #f78f20;
	border: 2px solid #f78f20;
}
.btcolor-g {
	color: #fff;
	font-weight: bold;
	background-color: #19cf74;
	border: 2px solid #19cf74;
}
.btcolor-g:hover {
	background-color: #12c15a;
	border: 2px solid #12c15a;
}
.btcolor-b-l {
	color: #4472C4;
	font-weight: bold;
	background-color: #fff;
	border: 2px solid #4472C4;
	box-sizing: border-box;
}
.btcolor-b-l:hover {
	color: #fff;
	background-color: #4472C4;
}
.btcolor-r-l {
	color: #222222;
	font-weight: bold;
	background-color: #fff;
	border: 2px solid #949494;
	box-sizing: border-box;
}
.btcolor-r-l:hover {
	color: #fff;
	background-color: #949494;
}

.btcolor-y-l {
	color: #f7a320;
	font-weight: bold;
	background-color: #fff;
	border: 2px solid #f7a320;
	box-sizing: border-box;
}
.btcolor-y-l:hover {
	color: #fff;
	background-color: #f7a320;
}

.btcolor-g-l {
	color: #19cf74;
	font-weight: bold;
	background-color: #fff;
	border: 2px solid #19cf74;
	box-sizing: border-box;
}
.btcolor-g-l:hover {
	color: #fff;
	background-color: #19cf74;
}


/* ボタンサイズ */
.btsize20 {
	width: 200px;
}
.btsize25 {
	width: 250px;
}
.btsize30 {
	width: 300px;
}
/* スマホ表示で90%表示 */
.btsize20-90 {
	width: 200px;
}
.btsize25-90 {
	width: 250px;
}
.btsize30-90 {
	width: 300px;
}

/* ボタン矢印追加 */

.submitBtn1 {
    display: table;
    position: relative;
    min-width: 15em;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    box-sizing: border-box;
	color: #444;
	background-color: #fff;
	border-top: none;
	border-left: none;
	border-right: none;
	border-bottom: 1px #eee 
	solid; border-radius: 0; 
	text-align: left;
	width: 100%;
	font-weight: normal;
}

.submitBtn1::after {
    position: absolute;
    top: 50%;
    right: 1em;
    width: 0.5em;
    height: 0.5em;
    transform: translateY(-50%) rotate(45deg);
    border-right: 2px solid currentColor;
    border-top: 2px solid currentColor;
    content: "";
}

/** スマートフォン調整 **/
@media print, screen and (max-width:600px) {
	.form-block {
		width: 100%;
		max-width: 100%;
		border-radius: 14px;
		margin: 12px auto;
		padding: 12px 14px;
	}
	.form-size20 {
		width: 100%;
		max-width: 100%;
	}
	.form-size30 {
		width: 100%;
		max-width: 100%;
	}
	.form-size30-2 {
		width: 100%;
		max-width: 100%;
	}
	.form-size30-2boxs {
		width: 100%;
		max-width: 40%;
	}
	.form-size30-3 {
		width: 100%;
		max-width: 25%;
	}
	.form-size50 {
		width: 100%;
		max-width: 100%;
	}
	.form-group-row {
		display: flex;
		flex-wrap: wrap;
		flex-flow: column;
	}
	.form-check-row {
		display: flex;
		flex-wrap: wrap;
		flex-flow: column;
	}
	.form-radio-row {
		display: flex;
		flex-wrap: wrap;
		flex-flow: column;
	}
	.form-input select {
		width: 100%;
	}
	/* スマホ表示で90%表示 */
	.btsize20-90 {
		width: 90%;
	}
	.btsize25-90 {
		width: 90%;
	}
	.btsize30-90 {
		width: 90%;
	}
	.btarea01-col {
		flex-flow: column;
	}
}
@media print, screen and (max-width:900px) {
	.btarea01-col {
		flex-flow: column;
	}

}

.terms_box{
	border: solid 1px #CCCCCC;
	border-radius: 3px;
	padding: 20px 17px 0px;
	height: 223px;
	overflow: scroll;
	margin-bottom: 11px;
	text-align:left;
	margin:10px 10px 20px;
}
.terms_head{
	font-size: 20px;
	font-weight: 700;
	letter-spacing: 0.04em;
	line-height: 24px;
	margin: 0 0 20px;
}
.terms_box .terms_txt p {
	font-size: 16px;
	font-weight: 700;
	letter-spacing: 0.04em;
	line-height: 24px;
	margin-top:24px;
}
.terms_txt{
	line-height:24px;
	padding-bottom: 24px;
}

input[type=checkbox] {
	display: none;
}

.checkbox1{
	box-sizing: border-box;
	cursor: pointer;
	display: inline-block;
	padding: 5px 30px;
	position: relative;
	width: auto;
}
.checkbox1::before{
	background: #fff;
	border: 1px solid #ccc;
	border-radius: 3px;
	content: '';
	display: block;
	height: 16px;
	left: 5px;
	margin-top: -8px;
	position: absolute;
	top: 50%;
	width: 16px;
}
.checkbox1::after{
	border-right: 6px solid #f2830b;
	border-bottom: 3px solid #f2830b;
	content: '';
	display: block;
	height: 20px;
	left: 7px;
	margin-top: -16px;
	opacity: 0;
	position: absolute;
	top: 50%;
	transform: rotate(45deg) translate3d(0,2px,0) scale3d(.7,.7,1);
	transition: transform .2s ease-in-out, opacity .2s ease-in-out;
	width: 9px;
}
input[type=checkbox]:checked + .checkbox1::before{
	border-color: #666;
}
input[type=checkbox]:checked + .checkbox1::after {
	opacity: 1;
	transform: rotate(45deg) scale3d(1,1,1);
}

.need_symbol{
	font-size: 0.8em;
	font-weight: bold;
	background-color: #FF0000;
	width: 3em;
	height: 1.5em;
	border-radius: 2px;
	border: none;
	color: #ffffff;
	font-weight: bold;
	display:inline-block;
	margin-bottom:3px;
	margin-top:5px;
	text-align: center;
}
.optional_symbol{
	font-size: 0.8em;
	font-weight: bold;
	background-color: #949495;
	width: 3em;
	height: 1.5em;
	border-radius: 2px;
	border: none;
	color: #ffffff;
	font-weight: bold;
	display:inline-block;
	margin-bottom:3px;
	margin-top:5px;
	text-align: center;
}
.entry_need_symbol{
        font-size: 0.8em;
        font-weight: bold;
        background-color: #4472C4;
        width: 7.5em;
        height: 1.5em;
        border-radius: 2px;
        border: none;
        color: #ffffff;
        font-weight: bold;
        display:inline-block;
        margin-bottom:3px;
        margin-top:5px;
        text-align: center;
}
