@charset "UTF-8";

:root {
	/* font */
	--gothic: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	--mincho: "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", serif;
	--hiragino: "Hiragino Mincho Pro", "游明朝", "Yu Mincho", YuMincho, serif;
	--notosansJP: "Noto Sans JP", sans-serif;
	--notoserifJP: "Noto Serif JP", serif;
	--roboto: "Roboto Condensed", sans-serif;
	--biz: "BIZ UDPMincho", serif;

	/* color */
	--blk: 98, 95, 95;
	--wht: 255, 255, 255;
	--brw: 188, 130, 87;
	--lightBlue: 220, 241, 244;
	--mainColor: 193, 174, 137;
	--periodColor: 98, 95, 95;
	--textColor: 112, 112, 112;
}


/* reset */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li,
fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary, time, mark, audio, video, main {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
	font-weight: normal;
	font-style: normal;
	vertical-align: baseline;
	background: transparent;
	box-sizing: border-box;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section, main {
	display: block;
	margin: 0;
}
address,caption,cite,code,dfn,em,th,var {
	font-style:normal;
}
ul {
	list-style:none;
}
table {
	border-collapse:collapse;
	border-spacing:0;
}
strong {
	font-weight: bold;
}

html {
	font-size: 62.5%;
}

body {
	color: #fff;
	/* font-family: "游ゴシック体 Medium", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif; */
	font-family: var(--notosansJP);
	text-align: left;
}

ol, ul {
	list-style: none;
}

a {
	text-decoration: none;
	color:#000;
}

a:hover {
	opacity: 0.8;
}

p {
	font-size: 16px;
}

@media (max-width: 769px){
	p {
		font-size: 16px;
	}
	li {
		font-size: 12px;
	}
}

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

.mt30 {
	margin-top: 30px;
}

.note {
	font-size: min(1.4rem, 1.025vw);
	padding-left: 1em;
	text-indent: -1em;
}

.note::before {
	content: '※';
}

@media (max-width: 768px) {
	.note {
		font-size: min(1.3rem, 3.467vw);
	}
}

/* 改行指定 ---------------------------------------*/
@media (min-width: 769px){ 
	.br-sp {
		display:none !important;
	}
}
@media (max-width: 768px){ 
	.br-pc {
		display:none !important;
	}
}

/* float ---------------------------------------*/
.float_r {
	float: right;
}
.float_l {
	float:left;
}
@media (max-width: 768px) {
	.float_r,.float_l {
		float:none;
	}
}

.float_end{
	clear:both;
}

/* display設定 ---------------------------------------*/
@media (min-width: 769px){ 
	.sp_only {
		display: none !important;
	}
}
@media (max-width: 768px) {
	.pc_only {
		display:none !important;
	}
}

/* flex設定 ---------------------------------------*/
.flex,.flex2,.flex3,.flex4,.flex5 {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.flex2::after {
	content:"";
	display: block;
	width: 31%;
}

.flex3 {
	justify-content: space-evenly;
}
.flex4 {
	justify-content: center;
}
.flex5 {
	justify-content: flex-start;
}

/* @media (max-width: 768px) {} */

/* aline設定 ---------------------------------------*/
.center {
	text-align: center;
}

/* font設定 ---------------------------------------*/
.gfont {
	font-family: 'Lexend', sans-serif;
}

/* width設定 ---------------------------------------*/
.inner-width {
	max-width: 1000px;
	width:90%;
	margin: 0 auto;
}

/* anchor跳び先設定 ---------------------------------------*/
#faq01,#faq02,#faq03,#faq04,#faq05,#faq06,#faq07,#faq08,#faq09,#faq10,#faq11 {
	margin-top: -45px;
	padding-top: 45px;
}

/*----------------------------------------------------

◆ header - ヘッダー

----------------------------------------------------*/

header {
	position: fixed;
	top:0;
	left: 0;
	z-index: 1030;
}

#head-menu {
	position: fixed;
	width: 100%;
	height: 54px;
	background: url(../images/bg_header.jpg)center center repeat;
	z-index:1000;
	top:0;
}

.fixed {
	position: fixed;
	top:0;
	left:0;
}

#head-menu .top-logo {
	width: 120px;
	margin: 8px 10px;
}

@media (max-width: 768px) {
	#head-menu .top-logo {
		width: 80px;
		margin: 14px 10px;
	}
}


/*----------------------------------------------------

◆ nav - グローバルメニュー

----------------------------------------------------*/

nav {
	position: fixed;
	top: 0;
	right: -400px;
	background: #01316A;
	width: 400px;
	height: 100vh;
	text-align: left;
	margin-left: 0;
	padding: 80px 0 0 50px;
	transition: .3s ease-in-out;
	z-index: 600;
}

nav a {
	color: #fff;
	display: block;
}

nav a.primary {
	letter-spacing: 0.1rem;
	padding-bottom: 3px;
	font-weight: 500;
	font-size: min(1.6rem, 1.171vw);
	border-bottom:1px solid #fff;
	width: 19em;
	margin-bottom: 20px;
}

nav ul li {
	padding-top: 0;
	line-height: 1.8;
	display: block;
}

nav ul li:last-child {
	margin-bottom: 20px;
}

nav ul li a {
	font-size: min(1.5rem, 1.098vw);
	display: block;
	width: 30rem;
}

@media (max-width: 768px) {
	nav a.primary {
		font-size: min(1.6rem, 4.267vw);
	}
	nav ul li a {
		font-size: min(1.5rem, 4vw);
	}
}

nav ul li a:before {
	display: inline-block;
	content: '';
	margin-right: 5px;
	background: url(../images/arrow_right_yellow.svg) no-repeat;
	background-size: 100%;
	width: 10px;
	height: 10px;
}

nav ul li a:hover {
	color:#fff;
	transition: .3s;
}

/* ----- トグルボタン ----- */

#nav-toggle {
	position: absolute;
	right: 12px;
	top: 14px;
	width: 36px;
	height: 34px;
	cursor: pointer;
	z-index: 101;
}

#nav-toggle {
	display: block;
	border: 1px solid #fff;
	background: #01316A;
	width: 76px;
	height: 76px;
	padding: 10px;
}

#nav-toggle::after {
	content: 'MENU';
	color: #fff;
	text-align: center;
	font-family: var(--roboto);
	font-size: min(2.1rem, 1.537vw);
	font-weight: 500;
	line-height: 32.5px;
	letter-spacing: 1.89px;
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translate(-50%, 0);
}

#nav-toggle div {
	position: relative;
}

#nav-toggle span {
	display: block;
	position: absolute;
	height: 3px;
	width: 100%;
	background: #fff;
	left: 0;
	transition: .35s ease-in-out;
}

#nav-toggle span:nth-child(1) {
	top: 5px;
}
#nav-toggle span:nth-child(2) {
	top: 15px;
}
#nav-toggle span:nth-child(3) {
	top: 25px;
}

/* #nav-toggle 切り替えアニメーション */
.open #nav-toggle {
	border: none;
	background: none;
}

.open #nav-toggle::after {
	display: none;
}

.open #nav-toggle span {
	background: #fff;
}

.open #nav-toggle span:nth-child(1) {
	top: 16px;
	-webkit-transform: rotate(315deg);
	-moz-transform: rotate(315deg);
	transform: rotate(315deg);
}
.open #nav-toggle span:nth-child(2) {
	width: 0;
	left: 50%;
}
.open #nav-toggle span:nth-child(3) {
	top: 16px;
	-webkit-transform: rotate(-315deg);
	-moz-transform: rotate(-315deg);
	transform: rotate(-315deg);
}

/* #global-nav スライドアニメーション */
.open nav {
	/* #global-nav top + #mobile-head height */
	-moz-transform: translateX(-100%);
	-webkit-transform: translateX(-100%);
	transform: translateX(-100%);
	overflow: auto;
	padding-bottom: 100px;
}

@media (max-width: 768px) {
	#nav-toggle {
		right: 0;
		top: 0;
	}
	#nav-toggle {
		width: 55px;
		height: 55px;
	}
	#nav-toggle::after {
		font-size: min(1.5rem, 4vw);
		line-height: 23.285px;
		letter-spacing: 1.354px;
	}
	#nav-toggle span {
		display: block;
		position: absolute;
		height: 2px;
		width: 100%;
		background: #fff;
		left: 0;
		transition: .35s ease-in-out;
	}
	#nav-toggle span:nth-child(1) {
		top: 0;
	}
	#nav-toggle span:nth-child(2) {
		top: 7px;
	}
	#nav-toggle span:nth-child(3) {
		top: 14px;
	}
	nav {
		width: 100%;
		right: -100%;
	}

}

/* ---------------------------------------------------

◆　footer

----------------------------------------------------*/

footer {
	padding:60px 0 60px;
	background: #fff;
	width: 100%;
	color:#000;
}

.footer_width {
	max-width: 900px;
	width:90%;
	margin:0 auto;
}

footer a {
	text-align: left;
	text-decoration: underline;
}

footer a:hover {
	color: #032e64;
}

footer a.logo {
	display: block;
	width: 80%;
	max-width: 500px;
	margin: 0 auto;
}

footer ul.annotation {
	margin-top: 60px;
}

footer ul.annotation li {
	font-size: 14px;
	text-indent: -1em;
	padding-left: 1em;
	line-height: 26px;
}

footer p.operation {
	margin-top: 30px;
}

footer p.copyright {
	font-size: 14px;
	margin-top: 30px;
}

@media (max-width: 768px) {
	footer {
		padding: 40px 0 60px;
	}
	footer a {
		margin:0 auto;
		font-size: 14px;
	}
	footer p {
		font-size: 14px;
	}
	footer ul.annotation {
		margin-top: 20px;
	}
	footer ul.annotation li {
		font-size: 14px;
		line-height: 22px;
	}
	footer p.copyright {
		font-size: 12px;
		margin-top: 30px;
	}
} 

#top_page footer ul.annotation {
	margin-top: 10px;
}


/* ---------------------------------------------------

◆　ページトップへ

----------------------------------------------------*/

#pageTop {
	position: fixed;
	bottom: 10px;
	right: 30px;
	font-size: min(1.6rem, 1.171vw);
	z-index: 9999;
}
#pageTop a {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 50px;
	height: 50px;
	z-index: 999;
	text-decoration: none;
	text-align: center;
	background: #001a3e;
	color:#fff;
	transition: all .2s ease;
	border:1px solid #fff;
}
#pageTop a:hover {
	color:#001a3e;
	padding: 8px 14px;
	background: #fff;
	border: 1px solid #001a3e;
	text-align: center;
	transition: all .2s ease;
}
@media(max-width: 768px){
	#pageTop{
		font-size: min(1.6rem, 4.267vw);
		bottom: 20px;
		right: 12px;
	}
	#pageTop a {
		padding: 10px 16px;
	}
	#pageTop a:hover {
		padding: 10px 16px;
	}
}


/* ---------------------------------------------------

◆　トップページのみ固定ヘッダー外し

----------------------------------------------------*/
#head-menu {
	/* background: #000; */
}

#top_page #scroll-header {
	top:-60px;
	position: fixed;
	width: 100%;
	height:54px;
	background:url(../images/bg_header.jpg)center center repeat;
	z-index: 800;
	transition: .5s;
}

#top_page #scroll-header.is-show {
	top:0;
	transition: .5s;
}

/* ---------------------------------------------------

◆　トップページポップアップ

----------------------------------------------------*/
.modal-open{
	cursor: pointer;
}
/*モーダル本体の指定 + モーダル外側の背景の指定*/
.modal-container{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	text-align: center;
	background: rgba(0,0,0,70%);
	padding: 40px 20px;
	overflow: auto;
	opacity: 0;
	visibility: hidden;
	transition: .3s;
	box-sizing: border-box;
}
/*モーダル本体の擬似要素の指定*/
.modal-container:before{
	content: "";
	display: inline-block;
	vertical-align: middle;
	height: 100%;
}
/*モーダル本体に「active」クラス付与した時のスタイル*/
.modal-container.active{
	opacity: 1;
	visibility: visible;
	z-index: 200;
}
/*モーダル枠の指定*/
.modal-body{
	position: relative;
	display: inline-block;
	vertical-align: middle;
	max-width: 900px;
	width: 90%;
}
/*モーダルを閉じるボタンの指定*/
.modal-close{
	position: absolute;
	display: flex;
	align-items: center;
	justify-content: center;
	top: 0;
	right: -20px;
	width: 40px;
	height: 40px;
	font-size: 40px;
	cursor: pointer;
	border-radius: 20px;
	z-index: 10;
}
@media screen and (max-width: 768px) {
	.modal-close {
		width: 20px;
		height: 20px;
		font-size: 20px;
		top: -20px;
	}
}

/*モーダル内のコンテンツの指定*/
.modal-content{
	position: relative;
	text-align: left;
	padding: 30px;
	text-align: center;
}
@media screen and (max-width: 768px) {
	.modal-content {
		padding: 0;
	}
}

button {
	all: unset;
	cursor: pointer;
}

/* アコーディオン
---------------------------------------- */
.accordion {
	margin-top: 14px;
	overflow-anchor: none;
}

.accordion .accordion-btn {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 365px;
	height: 66px;
	margin: 0 auto;
	border-radius: 6px;
	border: 1px solid #FFF;
	background: #C81919;
	font-size: min(1.9rem, 1.391vw);
	position: relative;
	cursor: pointer;
}

.accordion .accordion-btn::after {
	content: '';
	background: url(../images/arrow-red.svg) no-repeat;
	background-size: 100%;
	display: block;
	width: 28px;
	height: 28px;
	position: absolute;
	top: 52%;
	right: 10px;
	transform: translate(-50%, -50%) rotate(90deg);
}

.accordion .accordion-btn.is-open::after {
	transform: translate(-50%, -50%) rotate(270deg);
}

.accordion .accordion-content {
	display: none;
	max-width: 626px;
	margin: 30px auto 0;
	position: static;
	overflow-anchor: none;
}

.accordion .accordion-content ul {
	display: flex;
}

.accordion .accordion-content ul li {
	font-size: min(1.6rem, 1.171vw);
	font-weight: 400;
	line-height: 31.5px;
	text-align: left;
}

.accordion .accordion-content ul li:nth-of-type(1) {
	width: 80px;
	position: relative;
}

.accordion .accordion-content ul li:nth-of-type(1)::after {
	content: '：';
	position: absolute;
	right: 0;
}

.ctn .accordion .accordion-btn {
	width: 760px;
	height: 88px;
	margin: 0 auto;
	border-radius: 15px 15px 0 0;
	font-size: min(2.3rem, 1.684vw);
	font-weight: 500;
	line-height: 31.6px;
	text-align: center;
}

.ctn .accordion .accordion-content {
	max-width: 823px;
	margin: 30px auto 0;
}

.accordion .accordion-btn:hover,
.ctn .accordion .accordion-btn:hover {
	opacity: 0.8;
}

@media screen and (max-width: 767px) {
	.accordion {
		padding-bottom: 0;
	}
	.accordion .accordion-btn {
		width: 233px;
		height: 42px;
		font-size: min(1.4rem, 3.733vw);
	}
	.accordion .accordion-btn::after {
		width: 18px;
		height: 18px;
		right: 2px;
	}
	.accordion .accordion-content ul li {
		font-size: min(1.4rem, 3.733vw);
		line-height: 24px;
	}
	.accordion .accordion-content ul li:nth-of-type(1) {
		width: 93px;
	}
	.accordion .accordion-content ul li:last-child {
		width: 100%;
	}
	.ctn .accordion .accordion-btn {
		width: 343px;
		height: 62px;
		border-radius: 6px 6px 0 0;
		font-size: min(1.6rem, 4.267vw);
		line-height: 20.7px;
	}
	.ctn .accordion .accordion-content {
		margin: 60px auto 0;
	}
}

/* 横スクロール
---------------------------------------- */
.scroll-hint-text {
	font-size: min(1.4rem, 3.733vw);
}
