@charset "UTF-8";
*,
*::before,
*::after {
	box-sizing: border-box;
}

html,
body,
div,
span,
applet,
object,
iframe,
strong,
h1,
h2,
h3,
h4,
h5,
h6,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
font,
ins,
kbd,
q,
s,
samp,
small,
strike,
sub,
sup,
tt,
var,
fieldset,
form,
legend,
caption,
tbody,
tfoot,
thead,
table,
label,
tr,
th,
td,
p,
img,
figure,
ul,
dl,
dt,
dd {
	margin: 0;
	padding: 0;
	border: none;
}

html,
body {
	margin: 0;
	padding: 0;
	width: 100%;
	height: 100%;
}

body {
	overflow-y: scroll;
	background: #f1f1f1;
	color: #000;
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
	line-height: 1.5;
	-webkit-text-size-adjust: 100%;
	display: table;
	table-layout: fixed;
}

html {
	overflow-y: scroll;
	font-size: 14px;
}

a {
	color: #003399;
}

img {
	vertical-align: top;
	max-width: 100%;
	height: auto;
}

#wrap {
	width: 100%;
}

/* .page_wrap */
.page_wrap {
	display: table-cell;
	height: 100%;
	padding: 0.5rem;
	vertical-align: top;
	text-align: center;
}

.page_wrap_inner {
	max-width: calc(1024px - 1rem);
	min-height: 100%;
	margin: 0 auto;
	padding: 1rem;
	box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
	background: #fff;
}

/* .header */
.header {
	text-align: justify;
	text-justify: auto;
}

.header_name,
.header_name_s,
.header_name_ss,
.header_name_3s,
.header_name_4s,
.header_name_l,
.header_name_ll,
.header_name_3l,
.header_name_4l {
	margin: 1.75rem 0 0;
	padding: 0;
	font-weight: bold;
	font-size: 2.5rem;
	line-height: 1.25;
	display: flex;
	justify-content: center;
}

.header_name img,
.header_name_s img,
.header_name_ss img,
.header_name_3s img,
.header_name_4s img,
.header_name_l img,
.header_name_ll img,
.header_name_3l img,
.header_name_4l img {
	width: 100%;
	max-width: 320px;
}

.header_name_s {
	font-size: 2.25rem;
}

.header_name_ss {
	font-size: 2rem;
}

.header_name_3s {
	font-size: 1.75rem;
}

.header_name_4s {
	font-size: 1.5rem;
}

.header_name_l {
	font-size: 2.75rem;
}

.header_name_ll {
	font-size: 3rem;
}

.header_name_3l {
	font-size: 3.25rem;
}

.header_name_4l {
	font-size: 3.5rem;
}

.header_txt {
	margin-top: 1rem;
	color: #4991d2;
	font-size: 1.5rem;
	display: flex;
	justify-content: center;
}

/* main */
main {
	display: block;
	position: relative;
	z-index: 1;
	margin: 1.5rem 0;
	text-align: left;
}

/* .footer */
.footer {
	text-align: left;
	font-size: calc(1rem - 2px);
	display: flex;
	justify-content: center;
}

/* main p */
main p {
	margin: 1.5rem 0;
	text-align: justify;
	text-justify: auto;
}

main p:nth-child(1) {
	margin-top: 0;
}

main p:nth-last-child(1) {
	margin-bottom: 0;
}

/* .dl */
.dl {
	margin: 1.5rem 0;
}

.dl:nth-child(1) {
	margin-top: 0;
}

.dl:nth-last-child(1) {
	margin-bottom: 0;
}

.dl dt {
	margin: 0;
	padding: 0.5rem 0.5rem 0;
	background: #f1f1f1;
	font-size: calc(1rem + 2px);
	font-weight: bold;
	text-align: center;
}

.dl dd + dt {
	margin-top: 0.25rem;
}

.dl dd {
	margin: 0;
	padding: 0.5rem 1rem;
	background: #f1f1f1;
}

.dl_outer {
	max-width: 480px;
	margin: 1.5rem auto;
	display: flex;
	justify-content: center;
}

.dl_outer:nth-child(1) {
	margin-top: 0;
}

.dl_outer:nth-last-child(1) {
	margin-bottom: 0;
}

.dl_outer .dl {
	width: calc(100% - 10px);
	max-width: 90%;
}

.dl_outer dd {
	display: flex;
	justify-content: center;
}

/* フォーム関連 */
[type='text'],
[type='email'],
[type='tel'],
[type='password'],
[type='date'],
[type='month'],
[type='week'],
[type='time'],
[type='datetime'],
[type='datetime-local'],
[type='url'],
[type='search'],
[type='number'],
textarea {
	display: inline-block;
	box-sizing: border-box;
	width: calc(100% - 10px);
	margin: 5px;
	padding: 0.5rem 0.25rem;
	border: 1px solid #999;
	background: #fff;
	box-shadow: none;
	border-radius: 4px;
	font-size: 16px;
	outline: none;
	transition: box-shadow 0.5s, border-color 0.25s ease-in-out;
	-webkit-appearance: none;
	-moz-appearance: none;
}

[type='text']:focus,
[type='number']:focus,
[type='email']:focus,
[type='tel']:focus,
[type='search']:focus,
textarea:focus {
	box-shadow: 0 0 5px #8ebaeb;
	transition: box-shadow 0.25s, border-color 0.25s ease-in-out;
}

[type='number'] {
	display: inline-block;
	width: auto;
}

textarea {
	max-width: 100%;
	height: 100px;
	resize: vertical;
}

textarea[rows] {
	height: auto;
}

[type='submit'],
[type='button'],
[type='reset'] {
	border-radius: 0;
	-webkit-appearance: none;
	-moz-appearance: none;
}

select {
	display: block;
	position: relative;
	width: 100%;
	margin: 0;
	padding: 0.5rem 2rem 0.5rem 0.25rem;
	border: 1px solid #ccc;
	border-radius: 4px;
	background: url("../images/select_mark.svg") #fff no-repeat right center/21px 7px;
	outline: none;
	font-size: 16px;
	-webkit-appearance: none;
	-moz-appearance: none;
}

::-ms-expand {
	display: none;
}

::placeholder {
	opacity: 1;
	color: #999;
	font-size: 100%;
	font-weight: normal;
}

:disabled {
	opacity: 0.4;
}

.input_l {
	width: calc(100% - 10px);
	padding: 1rem 0.5rem;
	font-size: 21px;
}

.form_outer {
	max-width: 480px;
	margin: 1.5rem auto;
}

.form_outer:nth-child(1) {
	margin-top: 0;
}

.form_outer:nth-last-child(1) {
	margin-bottom: 0;
}

.form_outer .input_l {
	display: block;
	max-width: 90%;
	margin-right: auto;
	margin-left: auto;
}

/* .btn */
.btn,
.btn_blk,
.btn_l {
	margin: 5px;
	padding: 1em 1rem;
	border: none;
	border-radius: 12px;
	background: #4991d2;
	color: #fff;
	font-size: 1rem;
	font-weight: normal;
	line-height: 1.5;
	text-decoration: none;
	display: inline-flex;
	justify-content: center;
}

.btn_blk {
	background: #000;
}

.btn_l {
	display: flex;
	width: calc(100% - 10px);
	max-width: 90%;
	margin-right: auto;
	margin-left: auto;
	padding: 1rem 1rem;
	font-size: 18px;
}

.input_l + .btn_l {
	margin-top: 1rem;
}

.btn_outer {
	max-width: 480px;
	margin: 2.5rem auto 0;
	margin: 1.5rem auto;
}

.btn_outer:nth-child(1) {
	margin-top: 0;
}

.btn_outer:nth-last-child(1) {
	margin-bottom: 0;
}

/* .flex_center */
.flex_center {
	display: flex;
	justify-content: center;
}

/* .txt_ */
.txt_,
.txt_l,
.txt_ll,
.txt_3l,
.txt_4l,
.txt_5l,
.txt_6l,
.txt_7l,
.txt_8l {
	margin: 1.5rem 0;
	font-weight: bold;
	display: flex;
	justify-content: center;
}

.txt_:nth-child(1),
.txt_l:nth-child(1),
.txt_ll:nth-child(1),
.txt_3l:nth-child(1),
.txt_4l:nth-child(1),
.txt_5l:nth-child(1),
.txt_6l:nth-child(1),
.txt_7l:nth-child(1),
.txt_8l:nth-child(1) {
	margin-top: 0;
}

.txt_:nth-last-child(1),
.txt_l:nth-last-child(1),
.txt_ll:nth-last-child(1),
.txt_3l:nth-last-child(1),
.txt_4l:nth-last-child(1),
.txt_5l:nth-last-child(1),
.txt_6l:nth-last-child(1),
.txt_7l:nth-last-child(1),
.txt_8l:nth-last-child(1) {
	margin-bottom: 0;
}

.txt_l {
	font-size: 1.25rem;
}

.txt_ll {
	font-size: 1.5rem;
}

.txt_3l {
	font-size: 1.75rem;
}

.txt_4l {
	font-size: 2rem;
}

.txt_5l {
	font-size: 2.25rem;
}

.txt_6l {
	font-size: 2.5rem;
}

.txt_7l {
	font-size: 2.75rem;
}

.txt_8l {
	font-size: 3rem;
}

/* .border_block */
.border_block,
.border_block_w_4 {
	width: calc(100% - 10px);
	max-width: 90%;
	margin: 1.5rem auto;
	padding: 2.5rem 1rem;
	border: 1px solid #e5e5e5;
}

.border_block:nth-child(1),
.border_block_w_4:nth-child(1) {
	margin-top: 0;
}

.border_block:nth-last-child(1),
.border_block_w_4:nth-last-child(1) {
	margin-bottom: 0;
}

.border_block_w_4 {
	border-width: 4px;
}

.border_block_outer {
	max-width: 480px;
	margin-right: auto;
	margin-left: auto;
}

/* .modal */
.modal {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 10;
	width: 100%;
	height: 100%;
	overflow: hidden;
	background: rgba(0, 0, 0, 0.75);
}

.modal_inner {
	position: relative;
	z-index: 1;
	height: 100%;
	overflow: auto;
	overflow-scrolling: touch;
	-webkit-overflow-scrolling: touch;
	-ms-overflow-style: none;
	scrollbar-width: none;
}

.modal_inner::-webkit-scrollbar {
	display: none;
}

.modal_inner_2 {
	display: table;
	table-layout: fixed;
	margin: 0 auto;
	width: 100%;
	height: 100%;
	max-width: 768px;
	padding: 1rem;
}

.modal_inner_3 {
	display: table-cell;
	vertical-align: middle;
}

.modal_contents {
	padding: 1.5rem 1rem;
	background: rgba(0, 0, 0, 0.75);
	color: #fff;
	text-align: justify;
	text-justify: auto;
}

/* text-align */
.ta_right {
	text-align: right !important;
}

.ta_left {
	text-align: left !important;
}

.ta_center {
	text-align: center !important;
}

/* font-size*/
.fs_s {
	font-size: small !important;
}

.fs_ss {
	font-size: x-small !important;
}

.fs_3s {
	font-size: xx-small !important;
}

.fs_m {
	font-size: medium !important;
}

.fs_l {
	font-size: large !important;
}

.fs_ll {
	font-size: x-large !important;
}

.fs_3l {
	font-size: xx-large !important;
}

table, td, th {
	border-collapse:  collapse;
	border: 3px #cbcaec solid;
	padding: 10px;      /* 余白指定 */
}
@media only screen and (min-width: 767px) {
	html {
		font-size: 16px;
	}
	a:hover {
		color: #5c85ad;
	}
	.pc_none {
		display: none !important;
	}
}

@media only screen and (max-width: 768px) {
	.sp_none {
		display: none !important;
	}
}

