@charset "UTF-8";
/*--------------------------------------------------

  = Base

--------------------------------------------------*/
html {
	line-height: 2;
	font-size: 62.5%;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
}
body {
	position: relative;
	width: 100%;
	color: #1b1b1b;
	letter-spacing: .02em;
	font-family: 'Noto Sans JP', "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
	font-style: normal;
	font-weight: 500;
	background-color: #fff;
}
img {
	max-width: 100%;
	height: auto;
	vertical-align: top;
}
a {
	text-decoration: none;
	cursor: pointer;
	transition: all 0.2s;
}
.un_link {
	color: #2160a3;
	text-decoration: underline;
}
/* = PC (768px以上)
----------------------------------------------- */
@media print,screen and (min-width: 768px) {
	body {
		min-width: 1100px;
		line-height: 1.6;
		font-size: 1.6rem;
	}
	.sp {
		display: none;
	}
	.un_link:hover {
		text-decoration: none;
	}
}
/* = SP (767px以下)
----------------------------------------------- */
@media screen and (max-width: 767px) {
	html {
		min-width: 300px;
		font-size: calc(100vw / 75);
	}
	body {
		line-height: 1.9;
		font-size: 2.6rem;
	}
	.pc {
		display: none;
	}
}
/*--------------------------------------------------

  =  Layout（ly_）

--------------------------------------------------*/
/*--------------------------------------------------
  = ly_header
--------------------------------------------------*/
.ly_header {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 100;
}
/* = PC (768px以上)
----------------------------------------------- */
@media print,screen and (min-width: 768px) {

}
/* = SP (767px以下)
----------------------------------------------- */
@media screen and (max-width: 767px) {

}
/*--------------------------------------------------
  = ly_footer
--------------------------------------------------*/
.ly_footer {
	position: relative;
}
.ly_footer_body {
	background-color: #005b81;
}
/* = PC (768px以上)
----------------------------------------------- */
@media print,
screen and (min-width: 768px) {
	.ly_footer_body {
		padding: 3.1rem 0;
	}
	.ly_footer_body .ly_cont {
		display: flex;
		align-items: center;
	}
}

/* = SP (767px以下)
----------------------------------------------- */
@media screen and (max-width: 767px) {
	.ly_footer {
		padding-bottom: 11.6rem;
	}
	.ly_footer_body {
		padding: 5rem 0 4.5rem;
	}
}
/*--------------------------------------------------
  = その他
--------------------------------------------------*/
.ly_wrapper {
	overflow: hidden;
}
.ly_main {
	position: relative;
}
.ly_cont {
	padding: 0 2rem;
}
/* = PC (768px以上)
----------------------------------------------- */
@media print,screen and (min-width: 768px) {
	.ly_main {
		padding-bottom: 6rem;
	}
	.ly_cont {
		max-width: 1100px;
		margin: 0 auto;
		box-sizing: unset;
	}
}
/* = SP (767px以下)
----------------------------------------------- */
@media screen and (max-width: 767px) {
	.ly_main {
		padding-bottom: 10rem;
	}
}
/*--------------------------------------------------

  = Animation（_an）

--------------------------------------------------*/
/*--------------------------------------------------
  = an_fadeIn
--------------------------------------------------*/
.an_fadeInUp {
	opacity: 0;
	transform: translateY(30%);
	transition: all .7s;
}
.an_fadeInRight {
	opacity: 0;
	transform: translateX(30%);
	transition: all .7s;
}
.an_fadeInLeft {
	opacity: 0;
	transform: translateX(-30%);
	transition: all .7s;
}
.an_fadeInUp.is-show,
.an_fadeInRight.is-show,
.an_fadeInLeft.is-show {
	opacity: 1;
	transform: translateX(0);
}
/*--------------------------------------------------

  = Block（bl_）

--------------------------------------------------*/
/*--------------------------------------------------
  = bl_headerLogo
--------------------------------------------------*/
.bl_headerLogo {
	background-color: #fff;
}
.bl_headerLogo_inner {
	display: block;
}
/* = PC (768px以上)
----------------------------------------------- */
@media print,
screen and (min-width: 768px) {
	.bl_headerLogo {
		width: 38%;
		border-radius: 0 0 2rem 0;
		padding: 2rem 5rem 2.7rem 0;
	}
	.bl_headerLogo_inner {
		width: 34rem;
		margin-left: auto;
	}
}
/* = SP (767px以下)
----------------------------------------------- */
@media screen and (max-width: 767px) {
	.bl_headerLogo {
		width: 48rem;
		border-radius: 0 0 2rem 0;
		padding: 2.5rem 4rem 2rem 4rem;
	}
}
/*--------------------------------------------------
  = bl_headerNav
--------------------------------------------------*/
.bl_headerNav_wrapper {
	position: fixed;
	z-index: 999;
}
.bl_headerNav {
	display: flex;
	align-items: flex-start;
}
.bl_headerNav_item {
	position: relative;
	width: calc(100% / 2);
	overflow: hidden;
}
.bl_headerNav_link {
	display: block;
	position: relative;
	font-weight: bold;
	letter-spacing: .02em;
	text-align: center;
}
.bl_headerNav_link::after {
	content: "";
	display: inline-block;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}
.bl_headerNav_reserve .bl_headerNav_link {
	background-color: #fff100;
	color: #005b81;
}
.bl_headerNav_reserve .bl_headerNav_link::after {
	background: url(../img/shared/icon_arrow03.svg) no-repeat center/100%;
}
.bl_headerNav_official .bl_headerNav_link {
	background-color: #005681;
	color: #fff;
}
.bl_headerNav_official .bl_headerNav_link::after {
	background: url(../img/shared/icon_arrow02.svg) no-repeat center/100%;
}
/* = PC (768px以上)
----------------------------------------------- */
@media print,screen and (min-width: 768px) {
	.bl_headerNav_wrapper {
		top: 0;
		right: 0;
	}
	.bl_headerNav {
		width: 48rem;
	}
	.bl_headerNav_link {
		padding: 2rem;
		padding-right: 4.8rem;
		line-height: 1.15;
		font-size: 1.8rem;
	}
	.bl_headerNav_link::after {
		width: 1.8rem;
		height: 1.8rem;
		margin-left: 1rem;
	}
	/* hover */
	.bl_headerNav_link:hover {
		text-decoration: none;
	}
	.bl_headerNav_reserve .bl_headerNav_link:hover {
		background-color: #fff45c;
	}
	.bl_headerNav_official .bl_headerNav_link:hover {
		background-color: #005b81;
	}
}
/* = SP (767px以下)
----------------------------------------------- */
@media screen and (max-width: 767px) {
	.bl_headerNav_wrapper {
		bottom: 0;
		left: 0;
		width: 100%;
	}
	.bl_headerNav_link {
		padding: 4.3rem 2rem;
		padding-right: 7rem;
		line-height: 1;
		font-size: 3rem;
	}
	.bl_headerNav_link::after {
		width: 3rem;
		height: 3rem;
		margin-left: 1.7rem;
	}
}
/*--------------------------------------------------
  = bl_footerLogo
--------------------------------------------------*/
/* = PC (768px以上)
----------------------------------------------- */
@media print,screen and (min-width: 768px) {
	.bl_footerLogo {
		width: 38rem;
		margin-right: 2.5rem;
	}
}
/* = SP (767px以下)
----------------------------------------------- */
@media screen and (max-width: 767px) {
	.bl_footerLogo {
		width: 48rem;
		margin: 0 auto 3.5rem;
	}
}
/*--------------------------------------------------
  = bl_footerInfo
--------------------------------------------------*/
.bl_footerInfo {
	color: #fff;
	font-weight: normal;
	letter-spacing: 0.04em;
}

/* = PC (768px以上)
----------------------------------------------- */
@media print,screen and (min-width: 768px) {
	.bl_footerInfo {
		margin-right: 4rem;
		line-height: 1.8;
		font-size: 1.4rem;
	}
}
/* = SP (767px以下)
----------------------------------------------- */
@media screen and (max-width: 767px) {
	.bl_footerInfo {
		margin-bottom: 3.5rem;
		line-height: 1.92;
		font-size: 2.4rem;
		text-align: center;
	}
}
/*--------------------------------------------------
  = bl_snsList
--------------------------------------------------*/
.bl_snsList {
	display: flex;
	align-items: center;
}
.bl_snsList_item a {
	display: block;
}
.bl_snsList_item img {
	width: 100%;
}
/* = PC (768px以上)
----------------------------------------------- */
@media print,screen and (min-width: 768px) {
	.bl_snsList_item {
		width: 3.3rem;
		height: 3.3rem;
		margin: 0 1rem;
	}
	.bl_snsList__youtube {
		width: 3.7rem;
		height: 2.6rem;
	}
	.bl_snsList_item a:hover {
		opacity: 0.85;
	}
}
/* = SP (767px以下)
----------------------------------------------- */
@media screen and (max-width: 767px) {
	.bl_snsList {
		justify-content: center;
	}
	.bl_snsList_item {
		width: 5.8rem;
		margin: 0 2rem;
	}
	.bl_snsList__youtube {
		width: 6.5rem;
	}
}
/*--------------------------------------------------
  = el_copyright
--------------------------------------------------*/
.el_copyright {
	color: #7d7d7d;
	letter-spacing: 0.04em;
	text-align: center;
	background-color: #fff;
}
/* = PC (768px以上)
----------------------------------------------- */
@media print,screen and (min-width: 768px) {
	.el_copyright {
		padding: 1.8rem 0;
		font-size: 1.4rem;
	}
}
/* = SP (767px以下)
----------------------------------------------- */
@media screen and (max-width: 767px) {
	.el_copyright {
		padding: 3.8rem 2rem;
		line-height: 1.66;
		font-size: 2.4rem;
	}
}
/*--------------------------------------------------
  = el_pagetop
--------------------------------------------------*/
.el_pagetop {
	position: fixed;
	border-radius: 50%;
	background-color: #308eb6;
	transition: all 0.2s;
	cursor: pointer;
	z-index: 999;
}
.el_pagetop::after {
	content: "";
	display: block;
	position: absolute;
	top: 48%;
	left: 50%;
	transform: translateX(-50%) translateY(-50%);
	border-style: solid;
	border-width: 0 1.1rem 1.9rem 1.1rem;
	border-color: transparent transparent #fff transparent;
}
/* = PC (768px以上)
----------------------------------------------- */
@media print,screen and (min-width: 768px) {
	.el_pagetop {
		right: 6rem;
		bottom: 3.5rem;
		width: 7rem;
		height: 7rem;
	}
	.el_pagetop:hover {
		background-color: #3a84a2;
	}
}
/* = SP (767px以下)
----------------------------------------------- */
@media screen and (max-width: 767px) {
	.el_pagetop {
		right: 2rem;
		bottom: 23.5rem;
		width: 9rem;
		height: 9rem;
	}
	.el_pagetop::after {
		border-width: 0 1.35rem 2.3rem 1.35rem;
	}
}


/*--------------------------------------------------
  = mv
--------------------------------------------------*/
.mv {
	position: relative;
	display: flex;
}
.mv_ttlBox {
	position: relative;
	color: #fff;
	background-color: #005681;
	overflow: hidden;
	z-index: 1;
}
.mv_ttlBox_in {
	background: #1784bf;
}
.mv_ttlBox_ttl {
	font-weight: 900;
	letter-spacing: 0.18em;
	font-style: italic;
	line-height: 1.25;
}
.mv_ttlBox_ttl_sub {
	letter-spacing: 0.14em;
	font-style: italic;
	line-height: 1.4;
	border-bottom: 1px solid rgba(255,255,255,0.5);
}
.mv_ttlBox_ttl_sub,
.mv_ttlBox_txt {
	font-weight: bold;
}
.mv_ttlBox_txt {
	line-height: 1.85;
}
.mv_img {
	width: 100%;
	height: 100%;
	overflow: hidden;
}
.mv_img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* = PC (768px以上)
----------------------------------------------- */
@media print, screen and (min-width: 768px) {
	.mv_ttlBox {
		width: 47%;
		min-height: 54.2rem;
		border-radius: 0 0 1.5rem 0;
	}
	.mv_ttlBox_in {
		height: 100%;
		padding-top: 12rem;
		padding-bottom: 4rem;
	}
	.mv_ttlBox_in_in {
		width: 51.8rem;
		padding-left: 1rem;
		margin-left: auto;
	}
	.mv_ttlBox_ttl {
		font-size: 8rem;
		margin-bottom: 2rem;
	}
	.mv_ttlBox_ttl_sub {
		font-size: 4rem;
		padding-bottom: 1rem;
		margin-bottom: 2rem;
	}
	.mv_ttlBox_txt {
		font-size: 1.9rem;
	}
	.mv_img {
		width: 53%;
		height: 51rem;
	}
}
/* = SP (767px以下)
----------------------------------------------- */
@media screen and (max-width: 767px) {
	.mv {
		flex-direction: column;
	}
	.mv_ttlBox {
		order: 2;
		border-radius: 0 2rem 2rem 0;
		margin-right: 6rem;
		margin-top: -12.5rem;
	}
	.mv_ttlBox_in {
		height: 100%;
		padding: 3.5rem 0 5rem 6rem;
	}
	.mv_ttlBox_ttl {
		font-size: 10rem;
		margin-bottom: 2rem;
	}
	.mv_ttlBox_ttl_sub {
		font-size: 4rem;
		padding-bottom: 1rem;
		margin-bottom: 2rem;
	}
	.mv_ttlBox_txt {
		font-size: 2.5rem;
	}
	.mv_img {
		order: 1;
		height: 55.4rem;
	}
}

/*--------------------------------------------------
  = section01
--------------------------------------------------*/

/* = PC (768px以上)
----------------------------------------------- */
@media print, screen and (min-width: 768px) {
	.section01 {
		padding: 10rem 0;
	}
	.section02 .ly_cont {
		margin-top: -3rem;
	}
}
/* = SP (767px以下)
----------------------------------------------- */
@media screen and (max-width: 767px) {
	.section01 {
		padding: 10rem 0 8rem;
	}
	.section02 .ly_cont {
		margin-top: -3rem;
	}
}

/*--------------------------------------------------
  = un_reserve
--------------------------------------------------*/
.un_reserve {
	position: relative;
	text-align: center;
}
.un_reserve_msg {
	color: #005b81;
	font-weight: bold;
	line-height: 1.46;
}
.un_reserve_btn_link {
	position: relative;
  display: inline-block;
  background-color: #fff100;
  color: #005b81;
  font-weight: bold;
	text-align: center;
  letter-spacing: .02em;
	border-radius: 4rem;
	border: 0.4rem solid #fff;
	box-shadow: 0 0.4rem 0 rgba(209,205,140,0.3);
}
.un_reserve_btn_link::after {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto;
	background: url(../img/shared/icon_arrow03.svg) no-repeat 50%/100%;
}
/* = PC (768px以上)
----------------------------------------------- */
@media print,screen and (min-width: 768px) {
	.un_reserve {
		display: flex;
		justify-content: center;
		align-items: center;
		width: 100%;
		height: 40rem;
		background: url(../img/top/reserve_bg_pc3.jpg) no-repeat center top;
		background-size: cover;
	}
	.un_reserve .ly_cont {
		width: 1100px;
	}
	.un_reserve .frameBox01 {
		width: 60rem;
		margin-right: auto;
	}
	.un_reserve .frameBox01 .frameBox_bg {
		padding: 3.5rem 4rem;
	}
	.un_reserve_msg {
		font-size: 3.6rem;
		margin-bottom: 2rem;
	}
	.un_reserve_btn_link {
		font-size: 2.8rem;
		padding: 1.4rem 8.5rem 1.4rem 5.5rem;
	}
	.un_reserve_btn_link::after {
		right: 4.5rem;
		width: 2.5rem;
		height: 2.5rem;
	}
	/* hover */
	.un_reserve_btn_link:hover {
		background-color: #fced2a;
	}
}
/* = SP (767px以下)
----------------------------------------------- */
@media screen and (max-width: 767px) {
	.un_reserve {
		height: 90rem;
		padding-top: 2.5rem;
		padding-bottom: 2rem;
		background: url(../img/top/reserve_bg_sp2.jpg) repeat-x center top/100% auto;
	}
	.un_reserve .frameBox01 .frameBox_bg {
		padding: 5rem 4rem 6rem;
	}
	.un_reserve_msg {
		font-size: 4rem;
		margin-bottom: 3rem;
	}
	.un_reserve_btn_link {
		font-size: 3.6rem;
		padding: 1.2rem 9rem 1.2rem 4.5rem;
		border-radius: 5rem;
	}
	.un_reserve_btn_link::after {
		right: 4rem;
		width: 3rem;
		height: 3rem;
	}
}

/*--------------------------------------------------
  = frameBox
--------------------------------------------------*/
.frameBox {
	background-color: #e8f5fd;
	z-index: 1;
}
.frameBox01 {
	padding: 1rem;
}
.frameBox02 {
	padding: 0.5rem;
}
.frameBox_in {
	width: 100%;
	height: 100%;
}
.frameBox_bg {
	width: 100%;
	height: 100%;
	background-color: #fff;
	z-index: 2;
}
.frame_parts {
	position: relative;
}
.frame_parts::before,
.frame_parts::after {
	content: "";
	display: block;
	position: absolute;
	z-index: -1;
}
.frameBox01.frame_parts::before,
.frameBox01.frame_parts::after,
.frameBox01 .frameBox_in.frame_parts::before,
.frameBox01 .frameBox_in.frame_parts::after {
	width: 8rem;
	height: 8rem;
	background: linear-gradient(120deg, rgba(44,142,196,1) 0%, rgba(0,86,129,1) 100%);
}
.frameBox02.frame_parts::before,
.frameBox02.frame_parts::after,
.frameBox02 .frameBox_in.frame_parts::before,
.frameBox02 .frameBox_in.frame_parts::after {
	width: 5rem;
	height: 5rem;
	background: #92b7ca;
}
.frameBox01.frame_parts::before,
.frameBox02.frame_parts::before {
	top: 0;
	left: 0;
}
.frameBox01.frame_parts::after,
.frameBox02.frame_parts::after {
	top: 0;
	right: 0;
}
.frameBox01 .frameBox_in.frame_parts::before {
	bottom: -1rem;
	left: -1rem;
}
.frameBox01 .frameBox_in.frame_parts::after {
	bottom: -1rem;
	right: -1rem;
}
.frameBox02 .frameBox_in.frame_parts::before {
	bottom: -0.5rem;
	left: -0.5rem;
}
.frameBox02 .frameBox_in.frame_parts::after {
	bottom: -0.5rem;
	right: -0.5rem;
}
.frameBox01_heading {
	text-align: center;
}
.frameBox01_heading h2 {
	display: inline-block;
	color: #fff;
	font-weight: bold;
	border-radius: 3.1rem;
	background: linear-gradient(90deg, rgba(0,86,129,1) 0%, rgba(22,114,163,1) 50%, rgba(1,87,130,1) 100%);
}
.frameBox01_item + .frameBox01_item {
	background-image: linear-gradient(to right, transparent, transparent 0.2rem, #b2b2b2 0.2rem, #b2b2b2 0.2rem);
  background-size: 0.4rem 1px;
  background-position: left top;
  background-repeat: repeat-x;
}
.frameBox01_item .ttl {
	color: #005b81;
	font-weight: bold;
	line-height: 1.4;
	margin-bottom: 1.5rem;
}
.frameBox01_item .ttl .size2 {
	font-weight: 900;
}
.frameBox01_item .ttl .din {
	font-family: din-2014, sans-serif;
	font-weight: bold;
	letter-spacing: 0.02em;
	line-height: 1;
}
.frameBox02 .ttl {
	color: #005b81;
	font-weight: bold;
	line-height: 1.4;
	margin-bottom: 1.7rem;
	background-image: linear-gradient(to right, transparent, transparent 0.2rem, #2160a3 0.2rem, #2160a3 0.2rem);
  background-size: 0.4rem 1px;
  background-position: left bottom;
  background-repeat: repeat-x;
}
.frameBox02 .txt {
	line-height: 2.05;
}
/* = PC (768px以上)
----------------------------------------------- */
@media print, screen and (min-width: 768px) {
	.frameBox_bg {
		padding: 1rem 4rem;
	}
	/* frameBox01 */
	.frameBox01_heading {
		margin-top: -4.7rem;
	}
	.frameBox01_heading h2 {
		font-size: 3.2rem;
		padding: 0.4rem 4rem 0.7rem;
	}
	.frameBox01_item {
		padding: 2.5rem 1rem 3.5rem;
	}
	.frameBox01_item .ttl {
		font-size: 3rem;
	}
	.frameBox01_item .ttl .din {
		font-size: 6rem;
	}
	/* frameBox02 */
	.frameBox02 .frameBox_bg {
		padding: 3rem;
	}
	.frameBox02 .ttl {
		font-size: 3.2rem;
		padding-bottom: 1.5rem;
	}
	.frameBox02 .txt {
		font-size: 1.8rem;
	}
}
/* = SP (767px以下)
----------------------------------------------- */
@media screen and (max-width: 767px) {
	.frameBox_bg {
		padding: 4rem 3rem 1rem;
	}
	/* frameBox01 */
	.frameBox01_heading {
		margin-top: -9.5rem;
	}
	.frameBox01_heading h2 {
		font-size: 3.6rem;
		padding: 1.5rem 3rem 1.8rem;
    border-radius: 5rem;
	}
	.frameBox01_item {
		padding: 3rem 0;
	}
	.frameBox01_item .ttl {
		font-size: 3.2rem;
		text-align: center;
		line-height: 1.8;
	}
	.frameBox01_item .ttl .din {
		font-size: 9.7rem;
	}
	.frameBox01_item .ttl .size2 {
		font-size: 4.8rem;
	}
	.frameBox01_item .ttl.spfont01 .din {
		font-size: 7.6rem;
	}
	.frameBox01_item .ttl.spfont01 .size2 {
		font-size: 3.8rem;
	}
	/* frameBox02 */
	.frameBox02 .frameBox_bg {
		padding: 3rem;
	}
	.frameBox02 .ttl {
		font-size: 4.6rem;
		padding-bottom: 2.5rem;
		margin-bottom: 3rem;
	}
	.frameBox02 .txt {
		font-size: 2.6rem;
	}
}

/*--------------------------------------------------
  = list
--------------------------------------------------*/
.list01 {
	display: flex;
	flex-wrap: wrap;
}
.list01 li {
	position: relative;
}
.list01 li::before {
	content: "";
	display: block;
	position: absolute;
	left: 0;
	background: url(../img/shared/icon_list01.svg) no-repeat 50%/100%;
}
.list01 li.star::before {
	content: "★";
	color: #005b81;
	background: none;
}
.list01 li.circle::before {
	background: #005b81;
	border-radius: 50%;
}
.list02 li::before {
	content: "・";
}
/* = PC (768px以上)
----------------------------------------------- */
@media print, screen and (min-width: 768px) {
	.list01 li {
		font-size: 2rem;
		padding-left: 2.3rem;
	}
	.list01 li + li {
		margin-left: 2rem;
	}
	.list01 li::before {
		top: 0.9rem;
		width: 1.7rem;
		height: 1.7rem;
	}
	.list01 li.star::before {
		top: 0;
	}
	.list02 li {
		margin-left: 1.6rem;
		text-indent: -1.6rem;
	}
	.list02 li + li {
		margin-top: 1rem;
	}
}
/* = SP (767px以下)
----------------------------------------------- */
@media screen and (max-width: 767px) {
	.list01 li {
		font-size: 2.4rem;
		padding-left: 3rem;
	}
	.list01 li + li {
		margin-left: 2rem;
	}
	.list01 li::before {
		top: 1.4rem;
		width: 2.1rem;
		height: 2.1rem;
	}
	.list01 li.star::before {
		top: 0;
	}
	.list02 li {
		margin-left: 2.4rem;
		text-indent: -2.4rem;
		line-height: 1.55;
	}
	.list02 li + li {
		margin-top: 1rem;
	}
}

/*--------------------------------------------------
  = sec_header
--------------------------------------------------*/
.sec_header {
	display: flex;
	justify-content: center;
	align-items: center;
}
.sec_header_heading h2 {
	color: #fff;
	font-weight: 900;
	letter-spacing: 0.1em;
	line-height: 1.4;
}
/* = PC (768px以上)
----------------------------------------------- */
@media print, screen and (min-width: 768px) {
	.sec_header {
		height: 32rem;
	}
	.section02 .sec_header {
		background: url(../img/top/sec_header_bg01_pc.jpg) no-repeat top center;
		background-size: cover;
	}
	.sec_header_heading h2 {
		font-size: 4.6rem;
	}
}
/* = SP (767px以下)
----------------------------------------------- */
@media screen and (max-width: 767px) {
	.sec_header {
		height: 40rem;
	}
	.section02 .sec_header {
		background: url(../img/top/sec_header_bg01_sp.jpg) no-repeat top center;
		background-size: cover;
	}
	.sec_header_heading h2 {
		font-size: 6.6rem;
		text-align: center;
	}
}

/*--------------------------------------------------
  = col__2
--------------------------------------------------*/

/* = PC (768px以上)
----------------------------------------------- */
@media print, screen and (min-width: 768px) {
	.col__2 {
		display: flex;
		justify-content: space-between;
		flex-wrap: wrap;
	}
	.col__2_item {
		width: 48.2%;
	}
}
/* = SP (767px以下)
----------------------------------------------- */
@media screen and (max-width: 767px) {
}

/*--------------------------------------------------
  = box01
--------------------------------------------------*/
.box01 {
	background-color: #e8f4f9;
}
.box01_ttl {
	color: #005b81;
	font-weight: bold;
	letter-spacing: 0.04em;
}
/* = PC (768px以上)
----------------------------------------------- */
@media print, screen and (min-width: 768px) {
	.box01 {
		padding: 2.5rem 3rem;
	}
	.box01_ttl {
		font-size: 2.4rem;
		margin-bottom: 1rem;
	}
}
/* = SP (767px以下)
----------------------------------------------- */
@media screen and (max-width: 767px) {
	.box01 {
		padding: 4.5rem 3rem;
	}
	.box01_ttl {
		font-size: 3.4rem;
		margin-bottom: 1rem;
	}
}

/*--------------------------------------------------
  = margin-bottom
--------------------------------------------------*/
.hp_mb10 {
	margin-bottom: 1rem;
}
.hp_mb20 {
	margin-bottom: 2rem;
}
.hp_mb30 {
	margin-bottom: 3rem;
}
.hp_mb40 {
	margin-bottom: 4rem;
}
.hp_mb50 {
	margin-bottom: 5rem;
}
.hp_mb60 {
	margin-bottom: 6rem;
}
.hp_mb70 {
	margin-bottom: 7rem;
}
.hp_mb80 {
	margin-bottom: 8rem;
}
.hp_mb90 {
	margin-bottom: 9rem;
}
.hp_mb100 {
	margin-bottom: 10rem;
}
/* = SP (767px以下)
----------------------------------------------- */
@media screen and (max-width: 767px) {
	.hp_mbSp10 {
		margin-bottom: 1rem !important;
	}
	.hp_mbSp20 {
		margin-bottom: 2rem !important;
	}
	.hp_mbSp30 {
		margin-bottom: 3rem !important;
	}
	.hp_mbSp40 {
		margin-bottom: 4rem !important;
	}
	.hp_mbSp50 {
		margin-bottom: 5rem !important;
	}
	.hp_mbSp60 {
		margin-bottom: 6rem !important;
	}
	.hp_mbSp70 {
		margin-bottom: 7rem !important;
	}
	.hp_mbSp80 {
		margin-bottom: 8rem !important;
	}
	.hp_mbSp90 {
		margin-bottom: 9rem !important;
	}
	.hp_mbSp100 {
		margin-bottom: 10rem !important;
	}
}


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

  = Print

--------------------------------------------------*/
@media print {
	html {
		width: 100%;
		zoom: 95%;
	}

	body {
		max-width: 1400px;
		margin: 0 auto;
	}

	.bl_headerNav_wrapper {
		position: absolute;
		top: -2rem;
	}

	.el_pagetop {
		display: block !important;
		position: absolute !important;
	}
}
