@charset "UTF-8";


/*入力フォーム*/
input[type='text'] {
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

input::placeholder {
	font-size: 60%;
}

/*テキストエリア*/
textarea {
	margin: auto;
	margin-top: 8px;
	width:100%;
	height:100%;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	resize: none;			/*クロームのサイズ可変対策*/
}

/*ボタンテンプレート*/
.buttonTpl {
	width: 75%;
	display: inline-block;
	border-radius: 7px;/* 角丸 */
	font-size     : clamp(1.8rem, calc(1rem + 0.625vw), 1.5rem);/* 文字サイズ */
	text-align    : center;/* 文字位置 */
	cursor        : pointer;/* カーソル */
	padding       : 2vw 0vw;/* 余白 */
	color         : #ffffff;/* 文字色 */
	line-height   : 1em;/* 1行の高さ */
	transition    : .3s;/* なめらか変化 */
	border        : none;/* 枠の指定 */
	text-decoration: none;
}
.buttonTpl:hover {
	color         : #4b6499;		/* 文字色 */
	background    : #ffffff;		/* 背景色 */
}
.buttonTpl:disabled, [disabled].buttonTpl {
	cursor        : default;		/* カーソル */
	color         : #777;			/* 文字色 */
	background    : #ddd;			/* 背景色 */
	border        : 2px solid #777;	/* 枠の指定 */
	pointer-events:none;
}

#imgHead {
	display: block;
	width: 100%;
	height: auto;
	margin: auto;
	margin-top: 3vw;
	position: relative;
	z-index: 999;
}

#QandA {
	display: block;
	width: 100%;
	height: auto;
	margin: auto;
}

.bold {
	font-weight: bold;
}

.mainContent {
	margin: 4vw;
	text-align:center;
}

.pinkLabel {
	font-size: var(--fontM-font-size) !important;
	color: #FEFDFE;
	background-color: #F662A8;
	text-align: center !important;
	padding: 1vw 0vw !important;
}

.sc {
	width: 60vw;
	text-align: left;
	font-size: var(--fontS-font-size);
	font-weight: lighter;
	margin: 3vw 0;
	padding-left: 4vw;
	background-color: #FFFFFF;
	border-radius: 10px;
}

.dispArea {
	padding: 1vw 5vw;
}
.dispArea p {
	text-align: left;
	font-size: var(--fontS-font-size);
}

.title {
	text-align: center;
	color: #E48139;
	font-weight: bold;
}

.whiteArea {
	padding: 4vw 2vw;
	background-color: #FFFFFF;
	border-radius: 10px;
}
.whiteArea > p {
	margin: 1vw auto;
	display: inline-block;
}

.flexDiv {
	display: -webkit-flex; /* Safari */
	display: flex;
	-webkit-justify-content: space-between; /* Safari */
	justify-content: space-between;
}

.errorText {
	color: red;
	text-align:center;
	font-weight: bold;
}

input[type=checkbox] {
	vertical-align: middle;
	appearance: none;
	width: 6vw; /* ビューポート幅の6% */
	height: 6vw; /* ビューポート幅の6% */
	max-width: 40px; /* 最大サイズ */
	max-height: 40px; /* 最大サイズ */
	min-width: 20px; /* 最小サイズ */
	min-height: 20px; /* 最小サイズ */
	border: 3px solid #999;
	border-radius: 0.25rem;
	transition: background-color 0.2s, border-color 0.2s;
	cursor: pointer;
	margin-top: 0vw;
}
input[type=checkbox]:checked {
	background-color: #80CCFF;
	border-color: #4caf50;
}
input[type=checkbox]:checked::before {
	content: '✔';
	display: block;
	color: white !important;
	text-align: center;
	font-size: 150%;
	line-height: 3vw; /* ビューポート幅の3% */
	max-line-height: 40px; /* 最大サイズ */
	min-line-height: 20px; /* 最小サイズ */
}
input[type=checkbox]:hover {
	border-color: #888;
}

input[type=checkbox]:focus {
	outline: none;
	box-shadow: 0 0 3px 2px rgba(100, 100, 100, 0.5);
}
.mailText > p {
	margin: 0 auto;
}
