@charset "utf-8";

/* ------------------------------
 メインイメージ 下層
------------------------------ */
.heading {
	width: 100%;
	height: 192px;
	background: url(../img/header_bg.jpg) no-repeat center center;
	background-size: cover;
	display: flex;
	align-items: center;
}
.heading h1{
	width: 1140px;
	margin: 0 auto;
	font-size: 3.2rem;
	text-align: left;
	padding-left: 5%;
}
@media screen and (max-width: 767px) {
	.heading h1{
		width: 100%;
		font-size: 2rem;
	}
	.heading {
		width: 100%;
		height: 110px;
		margin-bottom: 40px;
	}
}
/* ------------------------------
 見出し&テキスト
------------------------------ */
/* -- メインリード -- */
.main-lead {
	font-size: 3rem;
	font-weight: bold;
	margin-bottom: 20px;
	text-align: center;
}
.main-lead-blue {
	font-size: 3rem;
	font-weight: bold;
	line-height: 1.6;
	margin-bottom: 27px;
	color: #2caaba;
	text-align: center;
}
/* -- PAGE H2 -- */
.contents h2 {
	font-size: 2.8rem;
	padding-left: 27px;
	font-weight: bold;
	line-height: 1.2;
	margin-bottom: 27px;
	background: url(../img/h2_bg.svg) repeat-y 0 top;
	background-size: 6px auto;
}

/* -- H3 -- */
.contents h3:not(.linkBox .cms_image h3, .contentsTop h3) {
	font-size: 2.5rem;
	background: #e6f2f5;
	margin-bottom: 25px;
	border-left: solid 5px #2caaba;
	padding: 5px 10px 5px 20px; 
	font-weight: bold;
}
/* -- H4 -- */
.contents h4{
	font-size: 2rem;
	font-weight: bold;
	position: relative;
	padding-left: 23px;
	line-height: 1.3;
	text-align: left;
	margin-bottom: 15px;
}
.contents h4:before{
	content: "";
	width: 12px;
	height: 12px;
	display: inline-block;
	border: solid 2px #2caaba;
	border-radius: 50px;
	position: absolute;
	left: 0;
	top: 0.3em;
}
@media screen and (max-width: 767px) {
	/* -- メインリード -- */
	.main-lead {
		font-size: 2.2rem;
		text-align: left;
	}
	.main-lead-blue {
		font-size: 2.2rem;
		text-align: left;
	}
	.main-lead br{
		display: none;
	}
	/* -- H2 -- */
	.contents h2 {
		font-size: 2rem;
		padding-left: 15px;
		padding-bottom: 5px;
		font-weight: bold;
		line-height: 1.2;
		margin-bottom: 15px;
		background: url(../img/h2_bg.svg) no-repeat 0 top;
		background-size: 5px auto;
	}
	/* -- H3 -- */
	.contents h3:not(.linkBox .cms_image h3)  {
		font-size: 1.8rem;
		padding: 5px 5px 5px 10px;
		margin-bottom: 20px;
	}
	/* -- H4 -- */
	.contents h4{
		font-size: 1.8rem;
	}
	/* -- メインリード -- */
	.mainLead,
	.contentsTop .mainLead {
		font-size: 2rem;
	}
	
}
@media screen and (max-width: 479px) {
	
}
/* ------------------------------
 ボックス
------------------------------ */
/* -- 横並びボックス（flexbox） --- */
.flexBox {
	display: flex !important;
	flex-flow: row wrap;
}
.flexBox::after {
	display: none;
}
/* -- 横並びボックス（flexbox） センター揃え --- */
.flexBox.fb-tac {
	justify-content: center;
}
/* -- 横並びボックス（flexbox） 左右揃え --- */
.flexBox.fb-btw {
	justify-content: space-between;
}
/* -- 横並びボックス（flexbox） 縦センター揃え --- */
.flexBox.fb-vac {
	align-items: center;
}
/* -- 横並びボックス（flexbox） 縦上揃え --- */
.flexBox.fb-vas {
	align-items: flex-start;
}
/* ------------------------------
 ボックス PC用限定CSS
------------------------------ */
@media print, screen and (min-width: 768px) {
	/* -- 1/2 --- */
	.w1-2 {
		width: 47.55%;
	}
	/* -- 1/3 --- */
	.w1-3 {
		width: 30.6%;
	}
	.w1-3.fl,
	.w1-3.cms_fl {
		margin-right: 4%;
	}

	/* -- 2/3 --- */
	.w2-3{
		width: 65.4%;
	}

	/* -- px --- */
	.w1140{
		width: 1140px;
	}

	/* flexbox 順番 */
	.order1 {
		order: 1;
	}
	.order2 {
		order: 2;
	}
}

/* ------------------------------
 ボックス スマホ用限定CSS
------------------------------ */
@media screen and (max-width: 767px) {
	.w1-2,
	.w1-3,
	.w2-3 {
		width: 100% !important;
	}
	
	.w1-3.fl,
	.w1-3.cms_fl {
		margin-right: 0;
	}
}

/* ------------------------------
 INDEX
------------------------------ */
/* .contents-navi {
	width: 1140px;
	display: flex !important;
	flex-flow: row wrap;
	justify-content: space-between;
	margin: 0 auto;
	text-align: left;
}
.contents-navi a{
	text-decoration: none;
}
.contents-navi p{
	font-weight: bold;
	margin-top: 10px;
	margin-bottom: 50px;
}
.contents-navi p:after{
	content: "";
	background: url(../img/icon-arrow02.png) no-repeat center 0;
	background-size: 20px auto;
	width: 20px;
	height: 10px;
	display: inline-block;
	margin-left: 5px;
  	transition: all .3s;
}
@media screen and (min-width: 768px) {
	.contents-navi a:hover p:after{
		margin-left: 15px;
	}
}
@media screen and (max-width: 767px) {
	.contents-navi {
		width: 100%;
	}
	.contents-navi p{
		margin-bottom: 30px;
	}
}*/



/* ------------------------------
 ページ内リンク
------------------------------ */
.page-link {
	text-align: center;
	margin-bottom: 75px;
}
.page-link ul {
	font-size: 0;
}
.page-link li {
	font-size: 1.8rem;
	font-weight: bold;
	display: inline-block;
	padding-right: 45px;
	margin-right: 45px;
	background: url(../img/page_link_border.png) no-repeat;
	background-position: right 0 center;
}
.page-link li:first-child:before {
	content: '';
	display: inline-block;
	background: url(../img/page_link_border.png) no-repeat;
	width: 1px;
	height: 16px;
	vertical-align: middle;
	margin-right: 45px;
	margin-top: -2px;
}
.page-link li:last-child {
	margin-right: 0;
}
.page-link li a {
	text-align: center;
	text-decoration: none;
}
.page-link li a:after {
	content: '';
	background: url(../img/icon_page_link.png) no-repeat;
	background-size: 8.5px auto;
	display: inline-block;
	width: 9px;
	height: 6px;
	margin-left: 5px;
	margin-top: -3px;
	vertical-align: middle;
}
@media screen and (max-width: 767px) {
	.page-link {
		width: 320px;
		margin: 0 auto;
		margin-bottom: 20px;
	}
	.page-link li {
		font-size: 1.2rem;
		padding: 0 15px;
		margin-right: 0;
		background: none;
		background-position: right 0 center;
		text-align: center;
		border-right: solid 1px #A1AEAE;
		margin-bottom: 10px;
	}
	.page-link li:first-child:before {
		content: none;
		border-left: solid 1px #A1AEAE;
	}
	.page-link li:first-child,
	.page-link li:nth-of-type(4n){
		border-left: solid 1px #A1AEAE;
	}
	.page-link li:nth-of-type(5n),
	.page-link li:nth-of-type(4n){
		width: 50%;
	}
	.page-link li a {
		width: 100%;
		padding: 7px 0;
	}
}
@media screen and (max-width: 320px) {
	.page-link {
		width: 280px;
		margin: 0 auto;
		margin-bottom: 20px;
	}
	.page-link li {
		font-size: 1.1rem;
		padding: 0 10px;
	}
}
/* ------------------------------
 テーブル
------------------------------ */
.contents table {
	width: 100%;
	border-collapse:collapse;
}
.contents .scrollable table {
	width: 980px;
}
/* デフォルト */
.contents table th {
	font-weight: bold;
	padding: 10px 15px;
	text-align: left;
	background: #e6f2f5;
	border: 1px solid #dcdcdc;
}
.contents .th-30p table th:first-child{
	width: 32% !important;
}
.contents .td-18p table td:first-child{
	width: 18% !important;
	font-weight: bold;
}
.contents .td-23p table th:first-child{
	width: 24% !important;
}
.contents table td {
	padding: 10px 15px;
	vertical-align: top;
	border: 1px solid #dcdcdc;
}
.contents .no-border table td,
.contents .no-border table th{
	padding: 0 0 10px;
	vertical-align: top;
	border: none;
}
.contents .border-table table{
	border-top: 1px solid #dcdcdc;
}
.contents .border-table table td,
.contents .border-table table th{
	vertical-align: top;
	border: none;
	background: none;
	padding: 15px 0;
	border-bottom: 1px solid #dcdcdc;
}
/* ------------------------------
 スマホ用コード（テーブル）
------------------------------ */
@media screen and (max-width: 767px) {
	/* レスポンシブ */
	.contents .res table th {
		width: 100%;
		display: block;
		border-bottom: none;
		padding-bottom: 5px;
	}
	.contents .res table td {
		width: 100%;
		display: block;
		padding-top: 0;
	}
	.contents table th,
	.contents table td {
		padding: 10px;
	}
	
	.contents .res.th-30p table th:first-child,
	.contents .res.td-18p table td:first-child{
		width: 100% !important;
	}
	.contents .res.th-30p table th:first-child,
	.contents .res.td-18p table td:first-child{
		padding: 0 0 0;
	}
}
/* ------------------------------
 網掛け
------------------------------ */
.blue-bg{
	background: #e6f2f5;
	padding: 40px;
	border-radius: 16px;
}
.beige-bg{
	background: #f5f4e6;
	padding: 40px;
	border-radius: 16px;
}
.pink-bg{
	background: url(../img/bg_pink.png);
	background-size: 4px 4px;
	padding: 40px;
	border-radius: 16px;
}
.pink-bg strong{
	color: #e5738a;
}
.pink-bg ul li:before{
	background: #e5738a !important;
}
.pink-bg ul li + li{
	margin: 0.3em 0;
}
@media screen and (max-width: 767px) {
	.blue-bg,
	.beige-bg,
	.pink-bg{
		padding: 30px 20px;
	}
}
/* ------------------------------
 枠
------------------------------ */
.border-box{
	border: solid 4px #caeaee;
	padding: 30px 35px;
	border-radius: 16px;
}
@media screen and (max-width: 767px) {
	.border-box{
		padding: 30px 20px;
	}
}
/* ------------------------------
 リスト
------------------------------ */
/*  ノーマルリスト */
.cms_text ul li {
	padding-left: 0.8em;
	position: relative;
}
/*.list ul li + li {
	margin-top: 8px;
}*/
.cms_text ul:not(.case-list)  li:before{
	content: "";
	width: 8px;
	height: 8px;
	border-radius: 10px;
	background: #2caaba;
	vertical-align: top; 
	position: absolute;
	top: .6em;
	left: 0;
}

/*  横並びリスト */
.inline li {
	display: inline-block;
	margin-right: 18px;
}
.inline li + li {
	margin-top: 5px;
}

/*  数字リスト */
.cms_text ol li {
	list-style-type:none;
	list-style-position:inside;
	counter-increment: cnt;
	padding-left: 1.2em;
	text-indent: -1.2em;
}
.cms_text ol li + li {
	margin-top: 3px;
}
.cms_text ol li:before {
	content: counter(cnt);
	font-weight: bold;
	margin-right: 10px;
}
@media screen and (max-width: 767px) {
	.cms_text ul li {
		padding-left: 0.8em;
	}
	.cms_text ul li:before {
		width: 8px;
		height: 8px;
		top: .6em;
	}
}
/* ------------------------------
 ボタン
------------------------------ */
.btn a{
	min-width: 280px;
	line-height: 48px;
	padding: 0 20px;
	color: #000000;
	background: #f2ea00;
	position: relative;
	margin: 0 auto;
	display: inline-block;
	text-decoration: none;
	border-radius: 50px;
	font-size: 1.6rem;
	font-weight: bold;
	-webkit-transition: 0.3s ease-in-out;
	-moz-transition: 0.3s ease-in-out;
	-o-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
	text-align: center;
}
.btn a::after{
	content: "";
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	right: 25px;
	display: inline-block;
	width: 7px;
	height: 7px;
	margin: auto 0;
	border-top: 2px solid #000000;
	border-right: 2px solid #000000;
	transform: rotate(45deg);
}
@media screen and (min-width: 768px) {
	.btn a:hover{
		opacity: 0.7;
	}
}

/* ------------------------------
 アイコン
------------------------------ */
.icon-check{
	background: url(../img/icon_check.svg) no-repeat 0 0.5em;
	padding-left: 32px;
	background-size: 22px auto;
	font-size: 2rem;
	color: #2caaba;
	font-weight: bold;
}
.icon-circle .cms_caption_t{
	font-size: 2rem;
	font-weight: bold;
	position: relative;
	padding-left: 23px;
	line-height: 1.3;
	text-align: left;
}
.icon-circle .cms_caption_t:before{
	content: "";
	width: 12px;
	height: 12px;
	display: inline-block;
	border: solid 2px #2caaba;
	border-radius: 50px;
	position: absolute;
	left: 0;
	top: 0.3em;
}
a.icon-arrow,
.icon-arrow a{
	text-decoration: none;
}
a.icon-arrow:after,
.icon-arrow a:after{
	content: "";
	background: url(../img/icon-arrow02.png) no-repeat center 0;
	background-size: 20px auto;
	width: 20px;
	height: 10px;
	display: inline-block;
	margin-left: 5px;
  	transition: all .3s;
}
@media screen and (min-width: 768px) {
	a.icon-arrow:hover:after,
	.icon-arrow a:hover:after{
		margin-left: 15px;
	}
}

a[target='_blank']:after:not(.icon-arrow) {
    margin: 0 0 0 3px;
    content:" ";
    display:inline-block;
    width: 8px;
    height: 7px;
    background:url(../img/icon_blank.png) no-repeat;   
    background-size: 8px 7px; 
    vertical-align:middle;
}
.icon_round{
	width: 110px;
    background: #003C62;  
    color: #fff;
    border-radius: 50px;
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 10px;
}

@media screen and (max-width: 767px) {
	.icon-check{
		background: url(../img/icon_check.svg) no-repeat 0 0.35em;
		padding-left: 28px;
		background-size: 20px auto;
		font-size: 1.8rem;
	}
	.icon-circle .cms_caption_t{
		font-size: 1.8rem;
		padding-left: 23px;
	}
	.icon-circle .cms_caption_t:before{
		top: 0.25em;
	}
}
/* ------------------------------
 フロー
------------------------------ */
.flow-box .cms_text{
	width: 100%;
	position: relative;
	border: solid 1px #2caaba;
	text-align: center;
	padding: 20px;
	background: #e6f2f5;
	overflow: visible;
	margin-bottom: 50px;
}
.flow-box .cms_text:last-child:after{
	content: none;
}
.flow-box .cms_text:after{
	content: "";
	display: inline-block;
	width: 25px;
	height: 13px;
	position: absolute;
	bottom: -35px;
	right: 0;
	left: 0;
	margin: auto;
	background:#2caaba;
	clip-path: polygon(0 0, 100% 0, 50% 100%);
}
@media screen and (max-width: 767px) {
	.flow-box .cms_text{
		width: 100%;
		margin-bottom: 40px;
	}
	.flow-box .cms_text:after{
		bottom: -28px;
	}
}

/* ------------------------------
 アンカーリンク
------------------------------ */
.cms_text.link-block li:before{
	content: none !important;
}

.link-block ul{
	text-align: center;
}
.link-block ul li:first-child{
	border-left: solid 1px #87A09E;
}
.link-block ul li{
	display: inline-block;
	border-right: solid 1px #87A09E;
	padding: 0 40px;
	font-weight: bold;
}
.link-block ul li:after{
	content: "";
	width: 10px;
	height: 5px;
	display: inline-block;
	background: url(../img/icon_arrow03.png) no-repeat;
	background-size: cover;
	vertical-align: middle;
	margin-left: 5px;
	margin-top: -3px;
}
.link-block ul li a{
	text-decoration: none;
}
@media screen and (max-width: 767px) {
	.link-block ul li{
		padding: 0 10px;
		font-weight: bold;
		font-size: 1.4rem;
	}
}

@media screen and (max-width: 320px) {
	.link-block ul li{
		font-size: 1.2rem;
	}
}

/* ------------------------------
 コンテンツ幅1140pxページ
------------------------------ */
.width1140{
	width: 1140px;
	margin-left: auto;
	margin-right: auto;
	display: flex;
	flex-flow: row wrap;
	justify-content: space-between;
	padding-bottom: 100px;
}
.width1140 .cms_image {
	margin-bottom: 15px;
}

.width1140 .cms_caption_b {
	margin-top: 20px;
}
.width1140 .w1-2{
	width: 546px;
	margin-left: 0;
	margin-right: 0;
	margin-bottom: 70px;
}
@media screen and (max-width: 767px) {
	.width1140{
		width: 100%;
		padding-left: 5%;
		padding-right: 5%;
		padding-bottom: 50px;
	}
	.width1140 .w1-2{
		width: 100%;
		margin-bottom: 40px;
	}
	.width1140 .h2{
		margin-left: 0;
		margin-right: 0;
	}
}

/* ------------------------------
 リンクボックス
------------------------------ */
.linkBox a {
	display: block;
	color: #000000;
}
.linkBox a:hover {
	text-decoration: none;
}
.linkBox .cms_image{
		position: relative;
}
.linkBox .cms_image h3 {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	margin: auto;
	width: fit-content;
	height: fit-content;
	color: #fff;
	font-size: 2.4rem;
	background: url(../img/title_icon_white.svg) no-repeat center bottom;
    background-size: auto;
	background-size: 42px auto;
	padding-bottom: 20px;
	padding-top: 20px;
	z-index: 10;
}
.linkBox a:hover .cms_image img {
	opacity: 1;
}
.linkBox a .btn {
	width: 300px;
	line-height: 48px;
	padding: 0 20px;
	color: #000000;
	background: #f2ea00;
	position: relative;
	margin: 0 auto;
	display: block;
	text-decoration: none;
	border-radius: 50px;
	font-size: 1.6rem;
	font-weight: bold;
	-webkit-transition: 0.3s ease-in-out;
	-moz-transition: 0.3s ease-in-out;
	-o-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
	text-align: center;
}
.linkBox a .btn::after {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	right: 25px;
	display: inline-block;
	width: 7px;
	height: 7px;
	margin: auto 0;
	border-top: 2px solid #000000;
	border-right: 2px solid #000000;
	transform: rotate(45deg);
}
@media screen and (min-width: 768px) {
	.linkBox .cms_image {
		margin-bottom: 30px;
	}
	.linkBox a p {
		margin-bottom: 30px;
	}
	.linkBox a:hover .btn {
		opacity: 0.7;
	}
}
@media screen and (max-width: 767px) {
	.linkBox a p {
		margin-bottom: 20px;
	}
	.linkBox .cms_image h3 {
		background-size: 30px auto;
		padding-bottom: 15px;
	}
}
/* ------------------------------
 オーバーボックス
------------------------------ */
@media screen and (min-width: 768px) {
	.linkBox a .cms_image {
		overflow: hidden;
	}
	.linkBox a .cms_image img {
		width: 468px;
		height: 266px;
		transition-duration: 0.5s;
		object-fit: cover;
	}
	.linkBox a:hover .cms_image img {
		transform: scale(1.03);
		overflow: hidden;
		transition-duration: 0.5s;
	}
}
/* ------------------------------
 3ブロック 
------------------------------ */
.case-block {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	column-gap: 40px;
}
.case-block p{
	width: 133px;
	line-height: 20px;
	text-align: center;
	color: #fff;
	font-size: 1.2rem;
	margin: 15px 0 10px;
}
.case-block.hokkaido p{
	background: #2caaba;
}