@charset "UTF-8";

/* Noto Sans JP */
@font-face {
	font-family: 'Noto Sans JP';
	font-style: normal;
	font-weight: normal;
	src: url('/fonts/NotoSansJP-Regular.woff2') format('woff2'), url('/fonts/NotoSansJP-Regular.woff') format('woff'), url('/fonts/NotoSansJP-Regular.ttf') format('truetype');
}

@font-face {
	font-family: 'Noto Sans JP';
	font-style: bold;
	font-weight: bold;
	src: url('/fonts/NotoSansJP-Bold.woff2') format('woff2'), url('/fonts/NotoSansJP-Bold.woff') format('woff'), url('/fonts/NotoSansJP-Bold.ttf') format('truetype');
}

/* Noto Serif JP */
@font-face {
	font-family: 'Noto Serif JP';
	font-style: normal;
	font-weight: normal;
	src: url('/fonts/NotoSerifJP-Regular.woff2') format('woff2'), url('/fonts/NotoSerifJP-Regular.woff') format('woff');
}

@font-face {
	font-family: 'Noto Serif JP';
	font-style: bold;
	font-weight: bold;
	src: url('/fonts/NotoSerifJP-Bold.woff2') format('woff2'), url('/fonts/NotoSerifJP-Bold.woff') format('woff');
}

body {
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 300;
	margin: 0;
	color: #444;
	background: #fafafa;
	overflow-x: hidden;
}

body.fixed {
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    overflow-y: scroll;
}

main {
	display: block;
}

a {
	display: inline-block;
	text-decoration: none;
	color: #333;
	transition: 0.3s;
}

a:hover {
	color: #00afcc;
	transition: 0.3s;
}

a img {
	opacity: 1;
	transition: 0.3s;
}

a img:hover {
	opacity: 0.7;
	transition: 0.3s;
}

p {
	font-size: 16px;
	line-height: 1.7;
}

@media screen and (max-width: 640px){
	p {
		font-size: 14px;
		line-height: 2;
	}
}

p.txt:not(:last-child) {
    margin-bottom: 1rem;
}

p.txt a {
	color: #00afcc;
	text-decoration: underline;
}

p.txt a:hover {
	color: #05899f;
}

h1 span {
	display: flex;
    align-items: center;
	border-left: 5px solid #fff;
    padding-left: 20px;
}

hr {
	box-sizing: content-box;
	height: 0;
	overflow: visible;
}

table {
	width: 100%;
	border-collapse: collapse;
}

@media screen and (max-width: 640px){
	table {
		font-size: 14px;
	}
}

table th {
	white-space: nowrap;
}

table td ul {
	list-style: circle;
    margin-left: 20px;
}

table.line th,
table.line td {
	padding: 20px 0;
}

@media screen and (max-width: 640px){
	table.line th,
	table.line td {
		padding: 15px 0;
	}
}

table.line td {
	padding-left: 20px;
}

@media screen and (max-width: 640px){
	table.line td {
		padding-left: 15px;
	}
}

table.line tr {
	border-bottom: 1px solid #999;
}

table.line th {
	text-align: left;
}

table.square th,
table.square td {
	padding: 10px;
	border: 1px solid #999;
}

table.square th {
	background: #eee;
}

table.square td {
	background: #fff;
}

b,
strong {
	font-weight: bolder;
}

img {
	width: 100%;
	height: auto;
	border-style: none;
	vertical-align: bottom;
}

input,
optgroup,
select,
textarea {
	font-family: sans-serif;
	-webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
	display: inline-block;
    padding: 10px;
    font-size: 16px;
    line-height: 1;
	background: #edfaff;
    box-sizing: border-box;
    border-radius: 5px;
    border: 0;
}

input[type="text"],
textarea {
	transition: 0.3s;
}

input[type="text"]:focus,
textarea:focus {
	background: #d2edf7;
	transition: 0.3s;
}

.wide {
	max-width: 960px;
	margin-left: auto;
	margin-right: auto;
}

.flex {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

/* デフォルトの矢印をリセットしカスタマイズ */
.select-arrow {
	width: 100%;
    max-width: 200px;
    position: relative;
}

.select-arrow2 {
	width: 100%;
    position: relative;
}

.select-arrow::after,
.select-arrow2::after{
	content: "▼";
    position: absolute;
    font-size: 16px;
    line-height: 1;
    color: #999;
    margin: 0 10px;
    top: calc(50% - 8px);
    right: 0;
}

input[type="submit"],
input[type="button"],
input[type="reset"],
select{
	cursor: pointer;
}

select {
	background: #fff;
	transition: 0.3s;
}

select:hover {
	background: #eaf7ff;
	transition: 0.3s;
}

input[type="submit"]{
	width: 40%;
	color: #fff;
	transition: 0.3s;
	padding: 20px;
	border-radius: 0;
}

@media screen and (max-width: 640px){
	input[type="submit"]{
		width: 100%;
	}
}

input[type="submit"].submit{
	background: #45a9c7;
}

@media screen and (max-width: 640px){
	input[type="submit"].submit{
		margin-bottom: 1rem;
	}
}

input[type="submit"].submit:hover{
	background: #1e7b97;
}

input[type="submit"].back{
	background: #999;
}

@media screen and (max-width: 640px){
	input[type="submit"].back{
		padding: 10px;
	}
}

input[type="submit"].back:hover{
	background: #666;
}

:focus {
    outline: none;
}

button,
input {
	overflow: visible;
}

button,
select {
	text-transform: none;
	cursor: pointer;
}

button,
[type=button],
[type=reset],
[type=submit] {
	-webkit-appearance: button;
}

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
	border-style: none;
	padding: 0;
}

button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
	outline: 1px dotted ButtonText;
}

fieldset {
	padding: 0.35em 0.75em 0.625em;
}

textarea {
	overflow: auto;
}

[type=checkbox],
[type=radio] {
	box-sizing: border-box;
	padding: 0;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
	height: auto;
}

[type=search] {
	-webkit-appearance: textfield;
	outline-offset: -2px;
}

[type=search]::-webkit-search-decoration {
	-webkit-appearance: none;
}

::-webkit-file-upload-button {
	-webkit-appearance: button;
	font: inherit;
}

html,body,p,ol,ul,li,dl,dt,dd,blockquote,figure,fieldset,form,legend,pre,iframe,hr,h1,h2,h3,h4,h5,h6 {
	padding: 0;
	margin: 0;
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
}

html {
	box-sizing: border-box;
	font-family: var(--global--font-secondary);
	line-height: var(--global--line-height-body);
}

*,
*::before,
*::after {
	box-sizing: inherit;
}

ol, ul {
	list-style-type: none;
}

.clearfix:after {
    content: "";
    display: block;
    clear: both;
}

@media screen and (max-width: 640px){
	.pc_only {
		display: none!important;
	}
}

@media screen and (min-width: 641px){
	.sp_only {
		display: none!important;
	}
}

h2.ttl {
    font-size: 32px;
    margin-bottom: 40px;
}

@media screen and (max-width: 640px){
	h2.ttl {
		font-size: 24px;
	}
}

h2.ttl span {
    display: block;
}

h2.ttl.white span {
    color: #fff;
}

h2.ttl.black span {
    color: #05899f;
}

h2.ttl span.small {
	font-family: 'Noto Serif JP';
    display: flex;
    font-size: 0.6em;
    align-items: center;
}

h2.ttl span.small::after {
    content: "";
    width: 50px;
    height: 1px;
    margin-left: 10px;
}

h2.ttl.white span.small::after {
    background: #fff;
}

h2.ttl.black span.small::after {
    background: #05899f;
}

h2.ttl span.big {
    font-size: 1em;
}
