@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+Antique:wght@700&display=swap');

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

	リセット

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

html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
	font-style: normal;
	font-weight: 500;
	vertical-align: baseline;
	background: transparent;
}
body { line-height: 1;}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section { display: block;}
ul { list-style: none;}
blockquote, q { quotes: none;}
blockquote:before, blockquote:after, q:before, q:after { content: ''; content: none;}
a {
	margin: 0;
	padding: 0;
	font-size: 100%;
	vertical-align: baseline;
	background: transparent;
}
table { border-collapse: collapse; border-spacing: 0;}
hr {
	display: block;
	height: 0px;
	border: 0;
	border-bottom: 1px solid #707070;
	margin: 0;
	padding: 0;
}
input, select { vertical-align: middle;}
img {
	max-width: 100%;
	height: auto;
	border: none;
	vertical-align: top;
	-webkit-backface-visibility: hidden;
	image-rendering: -webkit-optimize-contrast;
}
*, *:before, *:after { box-sizing: border-box;}


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

	グローバル

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

body {
	font-family: "Hiragino Maru Gothic W4 JIS2004", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-weight: 500;
	color: #000;
	font-size: min(3.5vw,1.4em);
	line-height: 1.6;
	position: relative;
	max-width: 750px;
	margin: auto;
}

.fo_zen { font-family: "Zen Kaku Gothic Antique", sans-serif; font-weight: 700;}

p { margin-bottom: 1em;}
p:last-child { margin-bottom: 0;}

a { color: #29A2D9;}
a:hover, a:active { color: #6ECAEA; text-decoration: none;}

/* 文字装飾 */
.fo06 { font-size: 0.6em !important;}
.fo065 { font-size: 0.65em !important;}
.fo07 { font-size: 0.7em !important;}
.fo075 { font-size: 0.75em !important;}
.fo08 { font-size: 0.8em !important;}
.fo085 { font-size: 0.85em !important;}
.fo09 { font-size: 0.9em !important;}
.fo105 { font-size: 1.05em !important;}
.fo11 { font-size: 1.1em !important;}
.fo115 { font-size: 1.15em !important;}
.fo12 { font-size: 1.2em !important;}
.fo13 { font-size: 1.3em !important;}
.fo14 { font-size: 1.4em !important;}
.fo15 { font-size: 1.5em !important;}
.fo16 { font-size: 1.6em !important;}
.fo20 { font-size: 2em !important;}

.lh12 { line-height: 1.2;}
.lh14 { line-height: 1.4;}
.lh18 { line-height: 1.8;}
.lh20 { line-height: 2;}

.fo_white { color: #FFFFFF;}
.fo_blue { color: #005DBA;}

/* ボックス */
.container { padding: 0px 15px;}

.left { float: left;}
.right { float: right;}

.pos_rel { position: relative;}
.pos_ab { position: absolute;}

.bold { font-weight: bold;}

.ta_center { text-align: center;}
.ta_right { text-align: right;}
.ta_left { text-align: left;}

.back_white { background-color: #fff;}
.back_blue { background-color: #005DBA;}
.back_yellow { background-color: #FFE274;}

.z50 { z-index: 50;}

.hvr_sink { transition: 0.3s; display: inline-block;}
.hvr_sink:hover { transform: translateY(0.2em);}

/* リスト */
ol { padding-left: 2em;}
ol li { list-style: outside decimal;}

.list_indent { padding-left: 1em;}
.list_indent li { text-indent: -1em;}

.list_disc { padding-left: 1em;}
.list_disc li { list-style: outside disc;}

/* margin */
.mb00 { margin-bottom: 0 !important;}
.mb05 { margin-bottom: 0.5em !important;}
.mb10 { margin-bottom: 1em !important;}
.mb15 { margin-bottom: 1.5em !important;}
.mb20 { margin-bottom: 2em !important;}
.mb25 { margin-bottom: 2.5em !important;}
.mb30 { margin-bottom: 3em !important;}
.mb40 { margin-bottom: 4em !important;}

/* clearFix */
.clearFix { zoom: 100%;}
.clearFix:after {
	content: "";
	clear: both;
	height: 0;
	display: block;
	visibility: hidden;
}

/* ------------------------
	ヘッダー
------------------------ */

.header { display: flex; justify-content: center; align-items: center; height: 50px; line-height: 0.9; font-size: min(5vw,1.1rem);}
.header h1 { width: 30%; left: -1px; top: 0px;}

/* ------------------------
	グローバルナビ
------------------------ */

.humberger {
	background: #005DBA;
	cursor: pointer;
	position: fixed;
	top: 0px;
	right: 0px;
	width: 50px;
	height: 50px;
	z-index: 10000;
}
.humberger span {
	background: #fff;
	border-radius: 15px;
	position: absolute;
	left: 10px;
	width: 30px;
	height: 3px;
	transition: 0.4s;
}
.humberger span:nth-of-type(1) { top: 9px;}
.humberger span:nth-of-type(2) { top: 17px;}
.humberger span:nth-of-type(3) { top: 25px;}
.humberger:after {
	color: #fff;
	content: 'MENU';
	display: block;
	font-size: 10px;
	text-decoration: none;
	text-align: center;
	transition: 0.4s;
	position: absolute;
	left: 0;
	bottom: 1px;
	width: 100%;
}
.is-open .humberger:after { content: 'CLOSE';}
.is-open .humberger span:nth-of-type(1) { transform: translateY(6px) rotate(-45deg);}
.is-open .humberger span:nth-of-type(2) { opacity: 0;}
.is-open .humberger span:nth-of-type(3) { transform: translateY(-10px) rotate(45deg);}

/* ナビ本体 */
.sp-navi { -webkit-text-size-adjust: 100%;}
.sp-navi.is-open .sp-navi-inner {
	opacity: 1;
	visibility: visible;
	z-index: 9999;
}
.sp-navi .sp-navi-inner {
	background-color: #fff;
	overflow-y: auto;
	opacity: 0;
	visibility: hidden;
	position: fixed;
	top: 0;
	left: 0px;
	width: 100%;
  height: 100%;
	transition: .5s;
	padding: 65px 7%;
}

.sp-navi li a {
	display: block;
	text-decoration: none;
	color: #005DBA;
	border-bottom: solid 2px #707070;
	padding: 1.2em 0.5em 0.3em;
}

/* ------------------------
	フッター
------------------------ */

.footer { padding-top: 2.5em;}
.footer iframe { width: 100%; vertical-align: bottom; height: 10em;}
.footer .copy { background: #002B57; padding: 0.2em;}

.fixed_btn { position: fixed; left: 50%; bottom: 0px; z-index: 999; width: 100%; max-width: 750px; transform: translateX(-50%);}
.fixed_btn ul { display: flex; padding: 0.3rem 0.5rem 0.5rem; background-color: #fff; justify-content: center; gap: 0.5em;}
.fixed_btn a { display: inline-block; border-radius: 0.6em;}

body { padding-bottom: 5.4em;}

/* ------------------------
	コンテンツ
------------------------ */

.mainimage { background: url("../images/main_bg.jpg") no-repeat center center; background-size: cover; padding-top: 20%; padding-bottom: 15%;}
.mainimage h2 { margin: auto -10px;}
.mainimage .img01 { margin: 0px 15% -2.5em;}
.mainimage .box01 { background: #FFCB05; border-radius: 1.3em; padding: 3.5em 0.5em 1em;}
.mainimage .text01 { padding: 0px 3%;}
.mainimage .btn_area a { display: inline-block; border-radius: 2.2em; box-shadow: 0px 0.2em 0px #26435F; transition: 0.3s;}
.mainimage .btn_area a:hover { box-shadow: none; transform: translateY(0.2em);}

.sec01 h2 img { margin-top: -10%;}
.sec01 .box01 { padding: 1.5em;}
.sec01 .btn_area a { display: inline-block; border-radius: 0.7em; box-shadow: 0px 0.2em 0px #917A22; transition: 0.3s;}
.sec01 .btn_area a:hover { transform: translateY(0.2em); box-shadow: none;}
.sec01 h3 { font-size: min(3.2vw,1.1em);}
.sec01 h3 .pos_ab { width: 2.3em; left: -0.5em;; top: 55%; transform: translateY(-50%);}

.sec02 .box01 { border-radius: 1em; padding: 5% 6% 3%;}
.sec02 .box01 hr { border-color: #fff;}

.baloon {
  display: inline-block;
  padding: 0.2em 2.5em;
  border: 3px solid #005dba;
  border-radius: 2em;
  background: #ffffff;
}
.baloon::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  border-style: solid;
  border-width: 15px 10px 0 10px;
  border-color: #005dba transparent transparent;
  translate: -50% 100%;
}
.baloon::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  border-style: solid;
  border-width: 11.4px 7.6px 0 7.6px;
  border-color: #ffffff transparent transparent;
  translate: -50% 100%;
}

.sec02 .box02 { padding: 1.5em 7%;}
.sec02 .box02 hr { border-color: #005dba; border-width: 2px;}

.tel_btn a { display: inline-block; border-radius: 0.8em; box-shadow: 0px 0.2em 0px #26435F; transition: 0.3s;}
.tel_btn a:hover { box-shadow: none; transform: translateY(0.2em);}

.mail_btn a { display: inline-block; border-radius: 0.8em; box-shadow: 0px 0.2em 0px #A8A8A8; transition: 0.3s;}
.mail_btn a:hover { box-shadow: none; transform: translateY(0.2em);}

.sec03 { padding-top: 5%;}
.sec03 h2 span { display: inline-block;}
.sec03 h2 span:before, .sec03 h2 span:after { content: ""; position: absolute; width: 3px; height: 2.5em; background: #fff; border-radius: 3px; bottom: 0px;}
.sec03 h2 span:before { transform: rotate(-20deg); left: -0.5em;}
.sec03 h2 span:after { transform: rotate(20deg); right: -0.5em;}
.sec03 .box01 { border-radius: 1em; padding: 6%;}
.sec03 section { display: flex; justify-content: space-between;}
.sec03 section figure { width: 20%;}
.sec03 section .box_inner { width: 75%;}
.sec03 section h3 { border-bottom: solid 2px #005DBA; padding-bottom: 0.2em;}

.sec04 { padding-bottom: 3em;}
.sec04:after { content: ""; position: absolute; width: 100%; left: 0px; bottom: 0.5em; height: 0.5em; background: #fff;}
.sec04 section { border-radius: 1em; padding: 1.3em 8%;}
.sec04 dl { display: flex; align-items: flex-end;}
.sec04 dl dt { background: #005DBA; width: 1.6em; height: 1.6em; font-size: 1.4em; line-height: 1.4; margin-right: 0.3em;}
.sec04 section:nth-of-type(2) dd .fo16 { margin: 0px -0.3em;}

.heading_left { display: table; border: solid 5px #005DBA; border-left: none; border-top-right-radius: 1em; border-bottom-right-radius: 1em; padding: 0.1em 1em 0.1em 9%;}

.heading_left_white { display: table; margin-left: -15px; border-top-right-radius: 1em; border-bottom-right-radius: 1em; padding: 0.15em 1em 0.15em 8%;}

.sec05 .container { padding: 0px 9%;}

.sec05 .text01 { margin-bottom: -3em; z-index: 50;}
.sec05 .box01 { border-top-left-radius: 1em; border-top-right-radius: 1em; padding: 4.5em 0px 1em;}
.sec05 .box01 h3 { display: table; padding: 0.1em 0.4em;}
.sec05 .img01 { bottom: 0px; left: 1%; width: 33%;}
.sec05 .text02 { margin: 1em 1.5em -1em 1em;}
.sec05 .box02 { margin-left: 22%;}
.sec05 .box02 .box_inner { border-radius: 0.7em; padding: 2em 0 0.7em 14.5%; line-height: 2.3; margin-right: -0.5em;}
.sec05 .box02 .fo_white { background: linear-gradient(transparent 10%, #005DBA 0%); line-height: 1.4; padding: 0px 0.2em; display: inline-block; vertical-align: text-bottom;}
.sec05 .box02 .dot { width: 0.5em; display: inline-block;}

.cta { padding: 5%;}

.sec06 .box01 { background: #E3F3FF; padding-top: 1.8em;}
.sec06 .box01 .box_inner { padding: 0px 5% 1.2em;}
.sec06 .box01 h2 span { display: table; margin: 0px 0px 0.3em -15px; padding: 0.05em 1em 0.05em calc(5% + 15px);}

.sec06 section { padding: 1.5em;}
.sec06 section:nth-of-type(1) { margin-left: 15px; border-top-left-radius: 1em; border-bottom-left-radius: 1em;}
.sec06 section:nth-of-type(2) { margin-right: 15px; border-top-right-radius: 1em; border-bottom-right-radius: 1em;}
.sec06 section h3 span { padding: 0 0.3em;}
.sec06 section p span { background: linear-gradient(transparent 80%, #FFCB05 0%);}

.sec07 .box01 { margin-top: -20%; z-index: 50; border-top-left-radius: 1em; border-top-right-radius: 1em; padding: 2em 5%;}
.sec07 h3 { border-radius: 0.3em; padding: 0.1em;}

.break_keep { word-break: keep-all;}

.sec08 { padding: 2.5em 0px;}
.sec08 section { border-radius: 1em; display: flex; justify-content: space-between; padding: 1.3em 1em;}
.sec08 section figure { width: 20%; padding: 0.5em 1.2em 0px 0px;}
.sec08 section figure img { width: 100%;}
.sec08 section .box_inner { width: 80%;}

.faq_dl { border-radius: 1em; padding: 1em; font-size: 0.9em;}
.faq_dl dt { padding: 0.1em 2em 0.1em 2.3em;}
.faq_dl dt:before, .faq_dl dt:after { content: ""; position: absolute; background-repeat: no-repeat; background-size: 100% auto; background-position: center center; top: 50%; transform: translateY(-50%);}
.faq_dl dt:before { background-image: url("../images/ico_q.svg"); width: 1.8em; height: 1.8em; left: 0px;}
.faq_dl dt:after { background-image: url("../images/ico_plus.svg"); width: 1.3em; height: 1.3em; right: 0px;}
.faq_dl dt.open:after { background-image: url("../images/ico_minus.svg");}
.faq_dl dd { padding: 1em 1.3em; border-radius: 0.5em; margin-top: 0.5em; display: none;}
.faq_dl dd:before { content: "A.";}

.sec10 { padding: 2em 0px;}
.sec10 section { display: flex; justify-content: space-between;}
.sec10 .num_box { width: 12%;}
.sec10 .box01 { width: 85%; border-radius: 0.8em; padding: 1em;}
.sec10 section:not(:last-of-type) .num_box:after { content: ""; position: absolute; z-index: -1; width: 1px; height: calc(100% + 1em); top: 1em; left: 50%; background: #fff;}
.sec10 h3 { border-bottom: solid 1px #005DBA; padding-bottom: 0.2em;}

.contact_box { padding: 0px 7%;}
.contact_box .hissu { display: inline-block; vertical-align: middle; background-color: #ED1C24; font-size: 0.65em; color: #fff; padding: 0px 0.3em; margin: -0.2em 0px 0px 0.6em; line-height: 1.4;}
.contact_box input[type="text"], .contact_box input[type="email"], .contact_box input[type="tel"], .contact_box textarea, .contact_box select { width: 100%; border: solid 1px #333; border-radius: 0.2em; padding: 0.3em; font-family: "Hiragino Maru Gothic W4 JIS2004", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "Helvetica Neue", Helvetica, Arial, sans-serif; font-size: 1em;}
.contact_box .width_auto input[type="text"], .contact_box .width_auto select { width: auto;}
.contact_box textarea { width: 100% !important; height: 100px !important;}
.contact_box label { display: inline-block; margin: 0px 1em 0.3em 0px;}
.contact_box input[type="submit"] {
	display: inline-block;
	width: 100%;
	max-width: 600px;
	font-family: "Hiragino Maru Gothic W4 JIS2004", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: bold;
	letter-spacing: 0.1em;
	font-size: 1.6em;
	color: #fff;
	text-decoration: none;
	background: #005DBA;
	padding: 0.3em;
	border-radius: 0.4em;
	border: none;
	outline: none;
	cursor: pointer;
	transition: 0.3s;
	-webkit-appearance: none;
}
.contact_box input[type="submit"]:hover, .contact_box input[type="submit"]:focus { transform: translateY(5px);}
.contact_box .privacy { border: solid 1px #707070; padding: 1em; height: 12em; overflow-y: scroll;}



@media only screen and (max-width: 640px) {
  .heading_left { padding-left: 5%;}
  .sec05 .container { padding: 0px 5%;}
}

