@charset "utf-8";

/* -------------------------------------------------
	font
------------------------------------------------- */

@font-face {
	font-family: 'NotoSans';
	font-weight: 400;
	font-style: normal;
	src: url('../font/NotoSansCJKjp-hinted_subset_woff/NotoSansCJKjp-Regular_sub.woff') format('woff');
}
@font-face {
	font-family: 'NotoSans';
	font-weight: 700;
	font-style: normal;
	src: url('../font/NotoSansCJKjp-hinted_subset_woff/NotoSansCJKjp-Bold_sub.woff') format('woff');
}

/* -------------------------------------------------
	reset
------------------------------------------------- */

* {
	margin: 0;
	padding: 0;
	vertical-align: top;
	box-sizing: border-box;
}

html {
}

body {
	line-height: 1;
	-webkit-text-size-adjust: 100%;
	position: relative;
	font-family: 'NotoSans', "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
	color: #191919;
}

p, h1, h2, h3, h4, th, td, li, dt, dd, figcaption, input, select, textarea, strong {
	font-family: 'NotoSans', "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
	font-weight: 400;
}

img {
	border: none;
	max-width: 100%;
	height: auto;
}

iframe {
	border: none;
}

a {
	text-decoration: none;
	color: #191919;
}
a:hover {
	
}

ul, ol {
	list-style-type: none;
}

main {
	padding-bottom: 30px;
	display: block;
}

@media print, screen and (min-width:768px) {
	a[href^="tel:"] {
		cursor: default;
	}
}

/* -------------------------------------------------
	box
------------------------------------------------- */

.box-sp {
	width: calc(345 / 375 * 100%);
	max-width: 750px;
	margin: 0 auto;
	position: relative;
}

/* -------------------------------------------------
	section
------------------------------------------------- */

.sec-lv3 + .sec-lv3 {
	margin-top: 50px;
}

/* -------------------------------------------------
	h
------------------------------------------------- */

h1 {
	height: 65px;
	padding-top: 0.1em;
	color: #fff;
	font-size: 24px;
	font-weight: 700;
	background: #10563B;
	display: flex;
	justify-content: center;
	align-items: center;
	border-bottom: solid 5px #B6CA3E;
	box-sizing: content-box;
}

.h-type2 {
	padding: 1em 0;
	font-size: 24px;
	font-weight: 700;
	text-align: center;
}

.h-type3 {
	height: 50px;
	padding-top: 0.16em;
	margin-bottom: 30px;
	font-size: 20px;
	font-weight: 700;
	text-align: center;
	background: #D5DEDB;
	display: flex;
	justify-content: center;
	align-items: center;
}

/* -------------------------------------------------
	list
------------------------------------------------- */

.points li {
	padding-left: 25px;
	font-size: 16px;
	line-height: 1.5;
	position: relative;
}
.points li::before {
	content: '';
	display: block;
	width: 16px;
	height: 16px;
	position: absolute;
	left: 0;
	top: 0.2em;
	border-radius: 50%;
	background: #191919;
}

/* -------------------------------------------------
	btn
------------------------------------------------- */

.btn-group {
	margin-top: 30px;
}
.btn-group li + li {
	margin-top: 20px;
}

.btn-next a,
.btn-next input {
	width: 100%;
	height: 50px;
	padding-top: 0.14em;
	border-radius: 4px;
	background: #FFDE5D;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 20px;
	font-weight: 700;
	border: solid 1px #E0D0A1;
	cursor: pointer;
	box-shadow: -1px -1px 2px 0 rgba(0,0,0,0.2) inset;
}

.btn-back a,
.btn-back input {
	width: 100%;
	height: 50px;
	padding-top: 0.14em;
	border-radius: 4px;
	background: -moz-linear-gradient(180deg, #FAFAFA 0%, #EDEDED 100%);
	background: -webkit-linear-gradient(180deg, #FAFAFA 0%, #EDEDED 100%);
	background: linear-gradient(180deg, #FAFAFA 0%, #EDEDED 100%);
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 20px;
	font-weight: 700;
	border: solid 1px #CECECE;
	cursor: pointer;
	box-shadow: -1px -1px 2px 0 rgba(0,0,0,0.2) inset;
}

/* -------------------------------------------------
	フォームパーツ
------------------------------------------------- */

input[type="text"],
input[type="email"],
input[type="number"],
input[type="tel"],
textarea,
select {
	width: 100%;
	padding: 0.7em 0.5em 0.6em;
	border: solid 1px #10563B;
	display: block;
	border-radius: 4px;
	font-size: 16px;
	line-height: 1.4;
	box-shadow: 1px 1px 5px 0 rgba(16,86,59,0.3) inset;
	background: #F8FAEB;
	outline: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

form.conf input[type="text"],
form.conf input[type="email"],
form.conf input[type="number"],
form.conf input[type="tel"],
form.conf textarea,
form.conf select {
	border-color: #EAEEED;
	box-shadow: none;
}

input:disabled,
select:disabled,
textarea:disabled {
	color: #191919;
	opacity: 1;
}

select {
	color: #191919;
	box-shadow: -1px -1px 5px 0 rgba(16,86,59,0.3) inset;
}

textarea {
	height: 300px;
}

::placeholder {
	color: #B2C1BC;
}

.select-wrap {
	display: block;
	position: relative;
}
.select-wrap::after {
	content: '';
	display: block;
	position: absolute;
	right: 12px;
	top: 50%;
	transform: translateY(-50%);
	border-width: 10px 8px 0 8px;
	border-color: #10563B transparent transparent transparent;
	border-style: solid;
}
form.conf .select-wrap::after {
	border-top-color: #B2C1BC;
}

/* -------------------------------------------------
	エラー
------------------------------------------------- */

.error-text {
	padding-left: 24px;
	font-size: 16px;
	line-height: 1.5;
	text-align: left;
	color: #FF5964;
	background: url(../img/alert_03.svg) no-repeat 0 4px / 16px auto;
}

/* -------------------------------------------------
	フォーム関連
------------------------------------------------- */

.input-box + .input-box {
	margin-top: 20px;
}

.input-box input + input,
.input-box:not(.birth) select + select {
	margin-top: 10px;
}

.input-box.birth .select-group {
	display: flex;
	justify-content: space-between;
}
.input-box.birth .select-wrap:first-child {
	width: calc(115 / 335 * 100%);
}
.input-box.birth .select-wrap:not(:first-child) {
	width: calc(90 / 335 * 100%);
}

.input-title {
	margin-bottom: 0.7em;
}

.input-notes {
	margin-bottom: 10px;
}
input + .input-notes {
	margin-top: 10px;
}
.input-notes li {
	padding-left: 17px;
	position: relative;
	font-size: 12px;
	line-height: 1.41;
}
.input-notes li::before {
	content: "※";
	position: absolute;
	left: 0;
	top: 0;
}

.hissu {
	padding: 0.2em 0.4em;
	margin-left: 0.5em;
	font-size: 16px;
	font-weight: 700;
	color: #fff;
	display: inline-block;
	background: #DC0C03;
	border-radius: 4px;
	vertical-align: baseline;
}

.message p {
	font-size: 16px;
	line-height: 1.5;
}
.message p + p {
	margin-top: 1em;
}

/* -------------------------------------------------
	header
------------------------------------------------- */

header {
	height: 43px;
	border-top: solid 5px #10563B;
	border-bottom: solid 2px #EFEFEF;
	box-sizing: content-box;
	display: flex;
	align-items: center;
}
header .logo {
	width: 135px;
}

/* -------------------------------------------------
	footer
------------------------------------------------- */

footer {
	height: 63px;
	border-top: solid 5px #EAEEED;
	display: flex;
	justify-content: center;
	align-items: center;
}
footer .logo {
	width: 146px;
}
