@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Bodoni+Moda:ital,opsz,wght@0,6..96,400..900;1,6..96,400..900&family=Josefin+Sans:ital,wght@0,100..700;1,100..700&family=Shippori+Mincho+B1&display=swap');

.bodoni-moda {
	font-family: "Bodoni Moda", serif;
	font-optical-sizing: auto;
	font-weight: normal;
	font-style: normal;
}
.josefin {
	font-family: "Josefin Sans", sans-serif;
	font-optical-sizing: auto;
	font-weight: normal;
	font-style: normal;
}



html {
	font-size: 62.5%;
}
body {
	color: #1C1B1A;
	font-size: 1.7rem;
	line-height: 1.8;
	font-weight: normal;
	font-family: "Noto Sans JP", verdana,"ＭＳ Ｐゴシック","MS PGothic",sans-serif;
	letter-spacing: .05em;
}

p.img img {
	border-radius: 12px;
}
p {
	margin: 0 0 1.8rem 0;
	padding: 0;
}
p:last-child {
	margin: 0;
}
p span {
}

@media screen and (max-width: 1194px) {
	body:before {
		animation: none;
	}
}
@media screen and (max-width: 834px) {
	body {
		line-height: 2;
	}
}
@media screen and (max-width: 559px) {
	body {
		font-size: 1.6rem;
	}
}
@media screen and (max-width: 320px) {
	body {
		font-size: 1.5rem;
	}
}


/******************************************************
 * レイアウト
 * ***************************************************/

.inner {
	width: 1320px;
	margin: 0 auto;
	padding: 0 60px;
}
.inner__nr {
	padding: 0;
	width: 980px;
	margin: 0 auto;
}
.inner__wd {
	padding: 0;
	width: 99%;
	margin: 0 auto;
}
main {
	width: 100%;
	margin: 0 auto;
}
section {
	padding: 90px 0;
}
.contents {
	padding: 90px 0 90px;
}

/* 2カラム */
.contents .flexbox {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 60px;
}
.contents .flexbox .flexbox___main {
	width: 75%;
    max-width: 840px;
}
#single .contents .flexbox .flexbox___main {
	border-radius: 0 6px 6px 0;
	background: #fafafa;
	position: relative;
}
#single .contents .flexbox .flexbox___main:before {
	content: "";
	display: inline-block;
	position: absolute;
	top: 0;
	right: 100%;
	background: #fafafa;
	width: 100vw;
	height: 100%;
	z-index: -1;
}
aside {
	width: 25%;
	max-width: 300px;
}

@media screen and (max-width: 1320px) {
	.inner,
	.inner__nr,
	.inner__wd {
		width: 100%;
	}
}
@media screen and (max-width: 1194px) {
	
	/* 2カラム */
	.contents .flexbox {
		gap: 45px;
	}
	
	aside {
		width: 25%;
		max-width: 260px;
	}
}
@media screen and (max-width: 768px) {
	.inner,
	.inner__nr,
	.inner__wd {
		padding: 0 45px;
	}
	section {
		padding: 60px 0;
	}
	.contents {
		padding: 60px 0 75px;
	}
	
	/* 2カラム */
	.contents .flexbox {
		flex-direction: column;
	}
	.contents .flexbox .flexbox___main {
		width: 100%;
		max-width: 100%;
	}
	#single .contents .flexbox .flexbox___main:after {
		content: "";
		display: inline-block;
		position: absolute;
		top: 0;
		left: 100%;
		background: #fafafa;
		width: 45px;
		height: 100%;
		z-index: -1;
	}
	aside {
		width: 100%;
		max-width: 100%;
	}
}
@media screen and (max-width: 559px) {
	.inner,
	.inner__nr,
	.inner__wd {
		padding: 0 30px;
	}
	
	/* 2カラム */
	#single .contents .flexbox .flexbox___main:after {
		width: 30px;
	}
}
@media screen and (max-width: 430px) {
	
}
@media screen and (max-width: 380px) {
	.inner,
	.inner__nr,
	.inner__wd {
		padding: 0 20px;
	}
	section {
		padding: 45px 0;
	}
	.contents {
		padding: 45px 0 60px;
	}
	
	/* 2カラム */
	#single .contents .flexbox .flexbox___main:after {
		width: 20px;
	}
}


/******************************************************
 * レスポンシブ
 * ***************************************************/

@media screen and (min-width: 769px) {
	.pc {
		display: block !important;
	}
	.sp {
		display: none !important;
	}
}
@media screen and (max-width: 768px) {
	.pc {
		display: none !important;
	}
	.sp {
		display: block !important;
	}
}


/******************************************************
 * 上部固定ヘッダー
 * ***************************************************/

.fix_header {
	background: #FFF;
	color: #333;
	position: fixed;
	top: -120px;
	left: 0;
	text-align: center;
	width: 100%;
	margin: 0 auto;
	opacity: 0;
	z-index: 99;
	box-shadow: 0 0 15px rgb(0 0 0 / 10%);
}
.fix_header_contents {
	width: 100%;
}
.fix_header_flex {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.fix_header_flex .fix_header_flex___logo {
	min-width: 75px;
	padding-left: 30px;
}
.fix_header_flex .fix_header_flex___right___flex {
	display: flex;
	align-items: center;
	gap: 18px;
}
.fix_header_flex .fix_header_flex___nav {
	min-width: 760px;
	padding-left: 18px;
}
.fix_header_flex .fix_header_flex___nav nav#fix_header ul {
	padding: 0;
	margin: 0;
	list-style: none;
	display: flex;
	justify-content: space-between;
}
.fix_header_flex .fix_header_flex___nav nav#fix_header ul li {
	
}
.fix_header_flex .fix_header_flex___nav nav#fix_header ul li:last-child {
	margin-right: 0;
}
.fix_header_flex .fix_header_flex___nav nav#fix_header ul li a {
	font-size: .9em;
	font-weight: bold;
}
.fix_header_flex .fix_header_flex___nav nav#fix_header ul li a:hover {
	opacity: 1;
	color: red;
}
.fix_header_flex .fix_header_flex___contact {
	
}
.fix_header_flex .fix_header_flex___contact ul {
	padding: 0;
	margin: 0;
	min-height: 75px;
	display: flex;
	align-items: stretch;
	justify-content: flex-end;
	border-left: 1px solid #ededed;
}
.fix_header_flex .fix_header_flex___contact ul li {
	display: flex;
	align-items: center;
}
.fix_header_flex .fix_header_flex___contact ul li.phone {
	padding: 0 18px;
}
.fix_header_flex .fix_header_flex___contact ul li.mail {
	position: relative;
}
.fix_header_flex .fix_header_flex___contact ul li.mail:before {
	content: "";
	display: inline-block;
	position: absolute;
	left: 50%;
	top: 12px;
	transform: translateX(-50%);
	background: url(../images/icon/mail-FFF.svg) no-repeat;
	background-size: 100%;
	background-position: center;
	width: 14px;
	height: 14px;
	z-index: 1;
}
.fix_header_flex .fix_header_flex___contact ul li p.phone {
	line-height: 1;
}
.fix_header_flex .fix_header_flex___contact ul li p.phone span.number {
	display: block;
}
.fix_header_flex .fix_header_flex___contact ul li p.phone span.open {
	display: block;
	margin: 6px 0 0;
	font-size: 1.2rem;
}
.fix_header_flex .fix_header_flex___contact ul li a {
	display: block;
	text-align: center;
	background: #066cbb;
	background-image: linear-gradient(to right, #047FCC 0%, #0457CC 73%);
	color: #FFF;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.fix_header_flex .fix_header_flex___contact ul li a.mail {
	padding: 12px 18px 0;
	font-size: 1.5rem;
}

.fix_header_contact {
	display: flex;
	flex-wrap: nowrap;
	justify-content: space-between;
	align-items: center;
}
.fix_header_contact .logo {
	
}
.fix_header_contact .contact {
	margin-left: 45px;
}
.fix_header_contact .contact p.phone {
	display: inline-block;
	margin: 0 0 -5px;
	padding-left: 30px;
	font-size: 1.8em;
	vertical-align: middle;
	position: relative;
}
.fix_header_contact .contact p.phone:before {
	content: '';
	display: block;
	position: absolute;
	margin: auto;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	background: url(images/common/icon140_phone.png) no-repeat;
	background-size: 100%;
	width: 22px;
	height: 22px;
}
.fix_header_contact .contact a.mail {
	display: inline-block;
	margin: 0 0 0 15px;
	padding: 20px 20px;
	border-radius: 60px;
	background: #0F9B9E;
	background-image: linear-gradient(45deg, #0f9b9e, #58a7d2);
	color: #FFF;
}
.fix_header_contact .contact a.mail:hover {
	background: #0F9B9E;
	background-image: none;
}

@media screen and (max-width: 1428px) {
	.fix_header_flex .fix_header_flex___contact ul li.phone {
		padding: 0 12px;
	}
}
@media screen and (max-width: 1194px) {
	.fix_header {
		display: none;
	}
}



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

header {
	position: relative;
	border-top: 3px solid #0457CC;
}
header .header {
	padding: 18px 30px;
}
header .header .bloginfo {
	font-weight: normal;
	text-align: left;
	font-size: .9em;
	color: #01224F;
	line-height: 1;
}
header .header_flexbox {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
header .header_flexbox .header_flexbox___logo {
	width: 275px;
	display: flex;
	justify-content: flex-start;
}
header .header_flexbox .logo {
	margin: 0;
	padding: 0;
	line-height: 1;
}
header .header_flexbox .logo a {
	display: inline-block;
	text-decoration: none;
	border-bottom: none;
}
header .header_flexbox .header_flexbox___nav {
	width: calc(100% - 275px);
}
header .header_flexbox .header_flexbox___nav .header_flexbox___nav_contact {
	
}
header .header_flexbox .header_flexbox___nav .header_flexbox___nav_contact .header_flexbox___nav_contact_flex {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	gap: 28px;
}
header .header_flexbox .header_flexbox___nav .header_flexbox___nav_contact .header_flexbox___nav_contact_flex .header_phone {
	
}
header .header_flexbox .header_flexbox___nav .header_flexbox___nav_contact .header_flexbox___nav_contact_flex .header_phone span.hours {
	display: block;
	text-align: center;
	font-size: 1.2rem;
}
header .header_flexbox .header_flexbox___nav .header_flexbox___nav_contact .header_flexbox___nav_contact_flex .header_phone a {
	color: #0457CC;
}
header .header_flexbox .header_flexbox___nav .header_flexbox___nav_contact .header_flexbox___nav_contact_flex .header_phone span.phone {
	display: inline-block;
	text-align: center;
	font-size: 1.8em;
	font-weight: bold;
	line-height: 1;
	padding-left: 32px;
	position: relative;
}
header .header_flexbox .header_flexbox___nav .header_flexbox___nav_contact .header_flexbox___nav_contact_flex .header_phone span.phone:before {
	content: "";
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    background: url(../images/icon/phone.svg);
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: center;
    width: 26px;
    height: 26px;
    z-index: -1;
}
header .header_flexbox .header_flexbox___nav .header_flexbox___nav_contact .header_flexbox___nav_contact_flex a.header_form {
	overflow: hidden;
	min-width: 220px;
	display: inline-block;
	text-align: center;
	background-image: linear-gradient(to right, #047FCC 0%, #0457CC 73%);
	color: #FFF;
	box-shadow: 0px 3px 5px rgb(0 0 0 / 20%);
	padding: 10px 20px 10px 20px;
	border: 3px solid #FFF;
	text-decoration: none;
	position: relative;
	z-index: 1;
}
header .header_flexbox .header_flexbox___nav .header_flexbox___nav_contact .header_flexbox___nav_contact_flex a.header_form:before {
	content: "";
	display: inline-block;
	position: absolute;
	top: -10px;
	left: -10px;
	transform: rotate(-20deg);
	background: url(../images/common/mainbtn_bg.png);
	background-repeat: no-repeat;
	background-size: 100%;
	background-position: center;
	width: 80px;
	height: 55px;
	z-index: -1;
}


header .header_flexbox .header_flexbox___nav .header-gnav {
	display: block;
	margin-top: 28px;
}

@media screen and (max-width: 1367px) {
	header .header_flexbox .header_flexbox___logo {
		width: 20vw;
	}
	header .header_flexbox .header_flexbox___nav {
		width: 80vw;
	}
}
@media screen and (max-width: 1260px) {
	header .header_bottom .inner {
		width: auto;
		margin: 0 30px;
	}
}
@media screen and (max-width: 1194px) {
	header .header_flexbox .header_flexbox___nav .header-gnav {
		display: none;
	}
}
@media screen and (max-width: 768px) {
	header .header_flexbox .header_flexbox___logo {
		width: 200px;
	}
	header .header_flexbox .header_flexbox___nav .header_flexbox___nav_contact .header_flexbox___nav_contact_flex .header_phone,
	header .header_flexbox .header_flexbox___nav .header_flexbox___nav_contact .header_flexbox___nav_contact_flex a.header_form {
		display: none;
	}
}
@media screen and (max-width: 559px) {
	header .header_flexbox .header_flexbox___logo {
		width: 180px;
	}
}
@media screen and (max-width: 430px) {
	header .header_flexbox .header_flexbox___logo {
		max-width: 180px;
		width: 75vw;
	}
}
@media screen and (max-width: 320px) {
	
}


/******************************************************
 * パンくず
 * ***************************************************/

#breadcrumbs {
}
#breadcrumbs .breadcrumbs {
	font-size: 1.2rem;
}
#breadcrumbs .breadcrumbs a.home {
	color: #0457CC;
	    font-weight: 500;
}


@media screen and (max-width: 559px) {
	#breadcrumbs .breadcrumbs {
		overflow-x: auto;
		white-space: nowrap;
	}
}



/******************************************************
 * そのほか
 * ***************************************************/

select {
    border: 1px solid #333;
    background: #fff url(../images/icon/select-arrow.svg) no-repeat;
    background-position: right 1em center;
    background-size: 18px, 100%;
    border-radius: 3px;
}


figcaption {
	text-align: center;
}

span.marker {
	background-image: linear-gradient(0deg, #fbf85580 0.7em, transparent 0.7em);
}

.youtube,
.youtube-figure {
	width: 100%;
	aspect-ratio: 16 / 9;
	margin: 0;
}
.youtube-figure figcaption span {
	display: inline-block;
	padding-left: 28px;
	font-size: 1.4rem;
	position: relative;
}
.youtube-figure figcaption span:before {
	content: "";
	display: inline-block;
	position: absolute;
	top: 50%;
    left: 0;
    transform: translateY(-50%);
    background: url(../images/icon/play-F03.svg) no-repeat;
    background-size: 100%;
    width: 18px;
    height: 18px;
}

.youtube iframe {
	width: 100%;
	height: 100%;
	padding: 18px;
	background: #FFF;
	border: 1px solid #ededed;
}
.youtube-flex {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 60px;
}
.youtube-flex .youtube {
	max-width: 780px;
    width: 75%;
}
.youtube-flex .youtube-flex___ch {
	max-width: 220px;
    width: 25%;
}
.youtube-flex .youtube-flex___ch a.youtube-more {
	display: inline-block;
}
.youtube-figure iframe {
	width: 100%;
	height: 100%;
}


@media screen and (max-width: 960px) {
	.youtube-flex {
		flex-direction: column;
		gap: 60px;
	}
	.youtube-flex .youtube {
		max-width: 100%;
		width: 100%;
	}
}
@media screen and (max-width: 768px) {
	.youtube-flex {
		gap: 0;
	}
	.youtube-flex .youtube-flex___ch {
		margin-top: 60px;
	}
}
@media screen and (max-width: 559px) {
	.youtube iframe {
		padding: 12px;
	}
	.youtube-flex .youtube-flex___ch {
		width: 40%;
	}
	
}
@media screen and (max-width: 430px) {
	.youtube iframe {
		padding: 0;
	}
	.youtube-flex .youtube-flex___ch {
		width: 50%;
	}
}


/* ボタンボックス
 * ***************************************************/

.btnBox {
	text-align: center;
	margin-top: 60px;
}
.btnBox.right {
	text-align: right;
}
.btnBox.left {
	text-align: left;
}

@media screen and (max-width: 559px) {
	.btnBox,
	.btnBox.right,
	.btnBox.left {
		margin-top: 45px;
	}
}
@media screen and (max-width: 320px) {
	.btnBox,
	.btnBox.right,
	.btnBox.left {
		margin-top: 30px;
	}
}

.dot {
	margin: 0 -3px;
}

@media screen and (max-width: 559px) {
	
}





/******************************************************
 * リンク
 * ***************************************************/

a {
	display: inline-block;
	color: #01224F;
	text-decoration: none;
	transition: all .3s;
	-webkit-transition: all .3s;
	word-break: break-all;
}
a:hover {
	opacity: .7;
}
a img {
	transition: all .3s;
	-webkit-transition: all .3s;
}
a img:hover {
	opacity: .7;
}


/* 別ウィンドウリンク
 * ***************************************************/

a.tab {
	display: inline-block;
	position: relative;
	margin: 0 6px;
	padding-right: 18px;
	line-height: 1;
}
a.tab:after {
	content: "";
	display: inline-block;
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	background: url(../images/icon/tab.webp) no-repeat;
	background-size: 100%;
	background-position: center;
	width: 12px;
	height: 12px;
}

@media screen and (max-width: 430px) {
	a.tab {
		margin: 0 3px;
	}
}


/* メインボタン
 * ***************************************************/

.btnPage {
	display: inline-block;
    width: 100%;
    max-width: 320px;
	margin: 8px;
    padding: 18px 48px 18px 18px;
    text-align: center;
    background: #0457CC;
    background: linear-gradient(45deg, #047FCC 35%, #0457CC);
	color: #FFF;
    border-radius: 2px;
	position: relative;
}
.btnPage:before {
	content: '';
	width: 10px;
	height: 10px;
	border: 0;
	border-top: solid 1px #FFF;
	border-right: solid 1px #FFF;
	position: absolute;
	top: 50%;
	right: 1.6em;
	transform: translateY(-50%) rotate(45deg);
}
.btnPage:hover {
	opacity: 1;
	box-shadow: 4px 4px 12px -1px rgb(19 71 52 / 20%);
	color: #FFF;
	text-decoration: none;
}
.big_box .main_btn { /*トップイメージの中のボタン*/
	font-size: 1.3em;
}

@media screen and (max-width: 768px) {
	.main_btn {
		padding: 18px 3em 18px 2em !important;
	}
}
@media screen and (max-width: 430px) {
	.main_btn {
		font-size: 1.1em;
		width: 100% !important;
		padding: 15px 3em 15px 1.3em !important;
		margin: 0 !important;
	}
	button.main_btn {
		margin: 8px 0 0 !important;
	}
}
@media screen and (max-width: 390px) {
	.main_btn {
		font-size: 1em;
		padding: 12px 1.3em 12px .8em !important;
	}
	.main_btn:before {
		width: 10px;
		height: 10px;
		right: 1.2em;
	}
	button.main_btn {
		margin: 6px 0 0 !important;
	}
}
@media screen and (max-width: 320px) {
	.main_btn {
		font-size: 1em;
		padding: 12px 3em 12px 1.3em !important;
	}
	button.main_btn {
		margin: 6px 0 0 !important;
	}
}

/* テキストリンク
 * ***************************************************/

a.text {
	display: inline-block;
	color: #0457cc;
	border-bottom: 1px solid #0457cc;
}

p.link-more {
	text-align: center;
	font-size: .9em;
	margin-top: 18px;
}
.arrow {
	display: inline-block;
	padding-left: 28px;
	position: relative;
}
.arrow:before {
	content: "";
	display: inline-block;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	background: url(../images/icon/arrow-circle.webp) no-repeat;
	background-size: 100%;
	width: 16px;
	height: 16px;
}
.arrow:hover {
	opacity: 1;
	color: #0457CC;
}

@media screen and (max-width: 559px) {
	p.link-more {
		font-size: 100%;
	}
}



/******************************************************
 * 見出し
 * ***************************************************/

h1, h2, h3, h4, h5, h6 {
	font-family: "Shippori Mincho B1", serif;
	font-weight: 400;
	line-height: 1.4;
	margin: 0;
	text-align: center;
	color: #0457CC;
}
h2 { font-size: 5.2rem; }
h3 { font-size: 4rem; }
h4 { font-size: 2.6rem; }
h5 { font-size: 2.6rem; }
h6 { font-size: 2rem; }

.sec-title {
	text-align: center;
	margin-bottom: 45px;
	position: relative;
	z-index: 1;
}
.sec-title.up_span {
	padding-top: 42px;
	padding-bottom: 0;
}
.sec-title span {
	display: block;
	margin-top: 12px;
	font-size: 1.6rem;
}
.sec-title span.small {
	display: block;
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	font-size: .5em;
}
.sec-title span.dots {
	display: inline-block;
	position: static;
	left: auto;
	right: auto;
	transform: none;
	font-size: .8em;
	margin-right: -6px;
	margin-left: -6px;
}


@media screen and (max-width: 1320px) {
	h2 { font-size: 4.2vw; }
	h3 { font-size: 3.2vw; }
	h4 { font-size: 2.8vw; }
	h5 { font-size: 2.2vw; }
	h6 { font-size: 2.2vw; }
}
@media screen and (max-width: 559px) {
	h2 { font-size: 5.2vw; }
	h3 { font-size: 4.6vw; }
	h4 { font-size: 3.2vw; }
	h5 { font-size: 3.2vw; }
	h6 { font-size: 3.2vw; }
	
	.sec-title {
		margin-bottom: 30px;
	}
	.sec-title span {
		font-size: 1.4rem;
	}
}
@media screen and (max-width: 430px) {
	h2 { font-size: 6.2vw; }
	h3 { font-size: 5.6vw; }
	h4 { font-size: 4.6vw; }
	h5 { font-size: 4.6vw; }
	h6 { font-size: 4.6vw; }
}


/******************************************************
 * XOスライダー
 * ***************************************************/

.xo-slider {
	padding: 60px;
	margin-bottom: 30px;
	background: #EBF3FE;
	border: 1px solid #0457CC;
	border-radius: 4px;
}
.single-content .xo-slider {
	padding: 0;
    background: none;
    border: none;
}

.xo-slider .swiper-initialized .slide-content {
	position: static !important;
	padding: 30px 0 60px !important;
}
.xo-slider .slide-content .slide-content-text {
	background: #0457CC;
	color: #FFF;
	font-weight: 600;
	font-size: 1.8rem;
	line-height: 1.8;
	padding: 30px;
	border-radius: 4px;
	position: relative;
}
.xo-slider .slide-content .slide-content-text::after {
	content: "";
	position: absolute;
	top: 0;
	left: 10%;
	border-style: solid;
	border-width: 0 18px 18px 18px;
	border-color: transparent transparent #0457cc;
	translate: -50% -100%;
}


/* ページネーション */
.xo-slider-template-default .swiper-button-prev,
.xo-slider-template-default .swiper-button-next {
	opacity: 1 !important;
	background: #0457CC;
	border-radius: 70px;
	text-shadow: none !important;
}
.xo-slider-template-default .swiper-button-prev {
	
}
.xo-slider-template-default .swiper-button-next {
	
}
.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after,
.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
	font-size: 1.8rem !important;
}

/* ページネーションドット */
.xo-slider-template-default .swiper-pagination {
	display: none;
}
.xo-slider-template-default .swiper-pagination-white {
    --swiper-pagination-color: #0457CC !important;
}
.xo-slider-template-default .swiper-pagination-bullet {
	opacity: 1 !important;
}


@media screen and (max-width: 768px) {
	.xo-slider {
		padding: 45px;
	}
}
@media screen and (max-width: 559px) {
	.xo-slider {
		padding: 0;
        border: none;
		background: none;
	}
}


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

footer {
	overflow: hidden;
	font-size: 1.6rem;
	background: #EBF3FE;
	color: #01224F;
	padding: 90px 0 0;
	margin-top: 18px;
	border-top: 3px solid #0457CC;
	position: relative;
}
footer a {
	color: #01284C;
}

/*トップへ戻る*/
footer .totop {
	position: fixed;
	bottom: 60px;
	right: 30px;
	z-index: 9;
}
footer .totop-sp {
	display: none !important;
}

footer .footer_flex {
	display: flex;
	justify-content: flex-start;
}
footer .footer_flex .footer_flex___information {
	width: 30%;
    min-width: 420px;
}
footer .footer_flex .footer_flex___nav {
	width: 70%;
    min-width: 600px;
	margin: 30px 0 0;
	padding-left: 60px;
}

footer .information {
	margin: 30px auto 0;
}
footer .information p.info {
	margin: 0;
}
footer .information p.info span {
	display: inline-block;
	margin-right: 8px;
}
footer .information p.info.copy {
	font-size: .9em;
}
footer .information p.info.name {
	
}
footer .information p.info.add {
	
}
footer .information p.info.add span {
	display: block;
}
footer .information p.info.tel {
	
}
footer .information p.info.fax {
	
}
footer .information p.info.open {
	
}
footer .information a.mail_btn_blue {
	display: inline-block;
	text-align: center;
	width: 240px;
	margin: 18px auto 0;
	padding: 15px 30px;
	border: 2px solid #FFF;
	font-weight: bold;
	color: #FFF;
	border-color: #FFF;
	background: linear-gradient(270deg, #fa6c9f 0%, #ffe140 50%, #ff357f 100%);
	background-image: linear-gradient(to right, #066cbb, #0256a6);
	background-size: 200% auto;
	background-position: right center;
	transition: all 0.4s ease-out;
}
footer .information a.mail_btn_blue:hover {
	opacity: 1;
	background: #FFF;
	color: #0256a6;
	border: 2px solid #0256a6;
	box-shadow: 0 2px 18px rgb(2,86,166,0.4);
}


footer .footer_nav {
	width: 100%;
	display: flex;
	flex-wrap: nowrap;
	justify-content: flex-start;
	align-items: flex-start;
}
footer .footer_nav .footer-nav {
	
}
footer .footer_nav .footer-nav.nav1,
footer .footer_nav .footer-nav.nav2 {
	min-width: 260px;
}
footer .footer_nav ul {
	margin: -3px 0 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
}
footer .footer_nav ul li {
	margin: 12px 0 0;
	padding-left: 22px;
	position: relative;
}
footer .footer_nav ul li:last-child {
	margin-right: 0;
}
footer .footer_nav ul li:before {
	content: "";
	display: inline-block;
	position: absolute;
	left: 0;
	top: .9em;
	background: #0256a6;
	width: 8px;
	height: 1px;
}
footer .footer_nav .footer-nav ul ul {
	margin-left: 1em;
}
footer .footer_nav ul li a {
	text-align: left;
}

/* SNSアイコンとmust-nav */
footer .footer_bottom {
	margin: 45px 0 0;
	padding: 45px 0 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	border-top: 1px solid #D3E4FC;
	position: relative;
}
footer .footer_bottom:before {
	content: "";
	position: absolute;
	top: 0;
	left: 50%;
	transform: translate(-50%);
	background: #FFF;
	width: 100%;
	height: 1px;
}
footer .footer_bottom .sns {
	
}
footer .footer_bottom .sns ul {
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-evenly;
	gap: 30px;
	border-radius: 30px;
}
footer .footer_bottom .sns ul li {
	line-height: 1;
}
footer .footer_bottom .footer-must {
	margin-top: 30px;
}
footer .footer_bottom .footer-must a {
	font-size: 1.4rem;
}
footer .footer_bottom .footer-must a:not(:first-child) {
	margin-left: 30px;
}



/*コピーライト*/
footer #copyright {
	text-align: center;
	margin: 60px 0 0;
	padding: 30px 0;
	background: #0457CC;
}
footer #copyright a {
	color: #FFF;
}
footer #copyright p {
	text-align: center;
	font-size: .9em;
	line-height: 1.4;
	color: #FFF;
}

@media screen and (max-width: 1024px) {
	footer .footer_flex .footer_flex___information {
		width: 50%;
		max-width: 452px;
		min-width: auto;
	}
	footer .footer_flex .footer_flex___nav {
		width: 50%;
		max-width: 452px;
		min-width: auto;
		padding-left: 30px;
	}
	footer .footer_nav .footer-nav.nav1,
	footer .footer_nav .footer-nav.nav2 {
		min-width: 180px;
	}
	
}
@media screen and (max-width: 768px) {
	footer .totop img.icon {
		width: 40px;
	}
	footer .footer_flex {
		flex-direction: column;
	}
	footer .footer_flex .footer_flex___information {
		width: 100%;
		max-width: 100%;
		margin: 0 auto;
		text-align: center;
	}
	footer .footer_flex .footer_flex___nav {
		width: 100%;
		max-width: 100%;
		margin: 30px auto 0;
		text-align: center;
	}
	footer .footer_nav {
		justify-content: center;
	}
	footer .footer_nav .footer-nav.nav1,
	footer .footer_nav .footer-nav.nav2 {
		min-width: 200px;
	}
	
	/* SNSアイコンとmust-nav */
	footer .footer_bottom .sns ul {
		gap: 18px;
	}
}
@media screen and (max-width: 559px) {
	footer {
		padding: 60px 0 72px;
	}
	footer.footer-contactus {
		padding: 60px 0 0;
	}

	/*トップへ戻る*/
	footer .totop-pc {
		display: none;
	}
	footer .totop-sp {
		display: block !important;
	}
	footer .totop-sp .totop {
		left: 0;
		right: auto;
		bottom: 0;
	}
	footer .totop-sp .totop img.icon-totop {
		        position: fixed;
        bottom: 16vw;
        right: 12px;
        z-index: 9;
	}
	footer ul.foot-contact-btn {
		display: flex;
        align-items: stretch;
        justify-content: center;
		border-top: 1px solid #FFF;
	}
	footer ul.foot-contact-btn li {
		text-align: center;
	}
	footer ul.foot-contact-btn li.phone {
		width: 50%;
		border-right: 1px solid #FFF;
	}
	footer ul.foot-contact-btn li.web {
		width: 50%;
	}
	footer ul.foot-contact-btn li.phone a {
		display: block;
		background: #0457CC;
		color: #FFF;
		padding: 16px 12px 9px;
		width: 100%;
		height: 100%;
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
	}
	footer ul.foot-contact-btn li.web a {
		display: block;
		background: #0457CC;
		color: #FFF;
		padding: 16px 12px 9px;
		width: 100%;
		height: 100%;
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
	}
	footer ul.foot-contact-btn li.phone a span,
	footer ul.foot-contact-btn li.web a span {
		display: block;
		font-size: .8em;
		margin-top: -5px;
	}
	footer ul.foot-contact-btn li.phone a img.phone,
	footer ul.foot-contact-btn li.web a img.web {
		display: block;
		width: 80%;
		margin-bottom: 9px;
	}
	
	footer .information {
		margin: 9px auto 0;
	}
	footer .footer_nav ul li {
		font-size: .9em;
		padding-left: 12px;
	}
	footer .footer_nav ul li:before {
		width: 5px;
	}
	footer .footer_nav .footer-nav.nav1,
	footer .footer_nav .footer-nav.nav2 {
		min-width: 50%;
		max-width: 50%;
	}
	
	/* SNSアイコンとmust-nav */
	footer .footer_bottom .sns ul {
		flex-direction: column;
		gap: 12px;
	}
	
	
	/* コピーライト */
	footer #copyright {
		margin: 45px 0 0;
	}
	footer .footer_bottom .footer-must a {
		font-size: .8em;
	}
}
@media screen and (max-width: 430px) {
	
	/* コピーライト */
	footer #copyright p {
		font-size: .7em;
	}
	footer .footer_bottom .footer-must {
		display: flex;
		flex-direction: column;
		align-items: center;
	}
	footer .footer_bottom .footer-must a:not(:first-child) {
		margin-left: 0;
		margin-top: 18px;
	}
	
}
@media screen and (max-width: 390px) {
	
	footer ul.foot-contact-btn li.phone a img.phone,
	footer ul.foot-contact-btn li.web a img.web {
		width: 90%;	
	}
	footer ul.foot-contact-btn li.phone a span,
	footer ul.foot-contact-btn li.web a span {
		font-size: .76em;
	}
}
@media screen and (max-width: 320px) {
	footer .totop img.icon {
		width: 35px;
	}

	footer ul.foot-contact-btn li.phone a img.phone,
	footer ul.foot-contact-btn li.web a img.web {
		width: 100%;	
	}
	footer ul.foot-contact-btn li.phone a span,
	footer ul.foot-contact-btn li.web a span {
		font-size: .7em;
	}
	
	footer .logo_bottom .sns ul {
		width: 100%;
		padding: 8px 30px;
	}
	footer .logo_bottom .sns ul li:first-child {
		margin-right: 20px;
	}

}


/******************************************************
 * 読み込みテンプレート
 * ***************************************************/

.login_template {
	text-align: center;
	margin: 30px;
	font-size: .7em;
}
.login_template span {
	margin-left: 30px;
}

@media screen and (max-width: 430px) {
	.login_template span {
		display: block;
		margin: 0;
	}
}




