@charset "utf-8";
/*
↓↓↓↓↓↓コメントアウト表記サンプル Comment out sample ↓↓↓↓↓↓
*/
/*----------------------------------------------
	大くくりコメントアウト large part
---------------------------------------------*/

/*  中くくりコメントアウト middle part
------------------------------------- */

/* 小くくりコメントアウト small part */
/*
↑↑↑↑↑↑コメントアウト表記サンプル Comment out sample ↑↑↑↑↑↑

*/

/*----------------------------------------------
	common
---------------------------------------------*/

/*----------------------------------------------
	ttl
---------------------------------------------*/
h1,h2, h3, h4 {
	line-height: 1.4;
}
/*  c_ttl_border
------------------------------------- */
.c_ttl_border {
	position: relative;
	margin-bottom: 40px;
	padding-bottom: 20px;
	font-size: 4.2rem;
}
.c_ttl_border::after {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 10px;
	border-radius: 0 10px 0 10px;
	background-color: #015EAB;
	content: '';
}
/*  c_ttl_dot
------------------------------------- */
.c_ttl_dot {
	position: relative;
	margin-bottom: 20px;
	padding-bottom: 15px;
	font-weight: normal;
	font-size: 2.8rem;
}
.c_ttl_dot::after {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 5px;
	background-image: linear-gradient(to right, #015EAB, #015EAB 5px, transparent 5px, transparent 10px);
	background-size: 15px 5px;
	background-repeat: repeat-x;
	content: '';
}
/*  c_ttl_line
------------------------------------- */
.c_ttl_line {
	position: relative;
	margin-bottom: 40px;
	padding-bottom: 15px;
	font-weight: normal;
	font-size: 3.2rem;
}
.c_ttl_line::after {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100px;
	height: 2px;
	background-color: #222;
	content: '';
}
.c_ttl_line.is_color_wh {
	color: #fff;
}
.c_ttl_line.is_color_wh::after {
	background-color: #fff;
}
@media screen and (max-width:768px) {
	/*  c_ttl_border
	------------------------------------- */
	.c_ttl_border {
		font-size: 3.2rem;
	}
	/*  c_ttl_dot
	------------------------------------- */
	.c_ttl_dot {
		font-size: 2.4rem;
	}
	/*  c_ttl_line
	------------------------------------- */
	.c_ttl_line {
		font-size: 2.8rem;
	}
}
@media screen and (max-width:640px) {
	/*  c_ttl_border
	------------------------------------- */
	.c_ttl_border {
		margin-bottom: 25px;
	}
	/*  c_ttl_line
	------------------------------------- */
	.c_ttl_line {
		margin-bottom: 20px;
	}
}

/*----------------------------------------------
	tbl
---------------------------------------------*/
/*  c_tbl_line
------------------------------------- */
.c_tbl_line th,
.c_tbl_line td {
	padding: .5em 1em;
	vertical-align: top;
}
.c_tbl_line th {
	min-width: 10em;
	border-right: 1px solid #333;
	font-weight: normal;
	text-align: right;
}

.__holiday ul.disc {
	padding-left: 2rem;
}
.__holiday ul.disc li {
		list-style-type: disc;
		line-height: 1.5;
}
.__holiday ul.disc li:not(:last-child) {
		margin-bottom: 1rem;
}									
.__holiday ul.disc li span {
		font-weight: normal;
		font-size: 90%;
		display: block;
		text-indent: -0.5rem;
}
.__holiday ul.disc li p {
	margin: 0.5rem 0 0;
}
.hatarakikata .c_tbl_line td span {
    font-weight: bold;
    font-size: 110%;
    padding: 0 5px 0 0;
}

@media screen and (max-width:640px) {
	/*  c_tbl_line
	------------------------------------- */
	.c_tbl_line th,
	.c_tbl_line td {
		display: block;
		float: left;
		width: 100%;
		text-align: left;
	}
	.c_tbl_line th {
		padding: .3em .4em 0 .4em;
		border: none;
		font-weight: bold;
	}
	.c_tbl_line tr:not(:first-child) th {
		border-top: 1px solid #333;
	}
	.c_tbl_line td {
		padding: 0 .4em .3em .4em;
	}
}

/*----------------------------------------------
	box
---------------------------------------------*/
.c_box_wrap {
	padding: 0 59px;
}
/*  c_box_round
------------------------------------- */
.c_box_round {
	padding: 56px 59px;
	border-radius: 0 40px 0 40px;
	background-color: #fff;
}
.c_box_round.is_shadow {
	box-shadow: 0 0 99px rgba(0, 0, 0, .1);
}
.c_box_round.is_color_bl {
	background-color: #E5F6FF;
}
.c_box_round.is_color_or {
	background-color: #FFF5E5;
}
.c_box_round.is_color_gy {
	background-color: #f2f2f2;
}
.c_box_round.is_color_gy.hatarakikata {
    background-color: #e5f6ff;
    margin: 30px 0 0;
}
.c_box_round.is_size_md {
	padding: 40px;
	border-radius: 0 20px 0 20px;
}
.c_box_round.is_size_sm {
	padding: 25px;
}
/*  c_box_flex
------------------------------------- */
.c_box_flex {
	display: flex;
	justify-content: space-between;
}
.c_box_flex.is_wrap {
	flex-wrap: wrap;
}
.c_box_flex.is_col2 > * {
	width: calc((100% - 20px) / 2);
}
.c_box_flex.is_col2 > *:not(:nth-last-of-type(-n+2)) {
	margin-bottom: 30px;
}
.c_box_flex.is_col3 > * {
	width: calc((100% - 100px) / 3);
}
.c_box_flex.is_col3 > *:not(:nth-last-of-type(-n+3)) {
	margin-bottom: 20px;
}
/*  c_box_sentence
------------------------------------- */
.c_box_sentence p:not(:last-of-type) {
	margin-bottom: 2em;
}
/*  c_ph_box
------------------------------------- */
.c_ph_box:not(:last-child) {
  margin-bottom: 90px;
}
.c_ph_box_content {
	width: calc(100% - 300px);
}
.c_ph_box_img {
	width: 260px;
}
.c_ph_box:nth-of-type(2n-1) .c_ph_box_content {
  order: 1;
}
.c_ph_box:nth-of-type(2n-1) .c_ph_box_img {
  order: 2;
}
@media screen and (max-width:768px) {
	.c_box_wrap {
		padding: 0;
	}
	/*  c_box_flex
	------------------------------------- */
	.c_box_flex.is_col_free,
	.c_box_flex.is_col2 {
		flex-direction: column;
	}
	.c_box_flex.is_col_free > *,
	.c_box_flex.is_col2 > * {
		width: 100% !important;
	}
	.c_box_flex.is_col_free > *:not(:last-child) {
		margin-bottom: 20px;
	}
	.c_box_flex.is_col2 > *:not(:last-of-type) {
		margin-bottom: 30px;
	}
	.c_box_flex.is_col3 {
		flex-wrap: wrap;
	}
	.c_box_flex.is_col3 > * {
		width: calc((100% - 20px) / 2) !important;
	}
	.c_box_flex.is_col3 > *:not(:nth-last-of-type(-n+2)) {
		margin-bottom: 40px;
	}
	/*  c_ph_box
	------------------------------------- */
  .c_ph_box:not(:last-child) {
    margin-bottom: 40px;
  }
  .c_ph_box_img {
    text-align: center;
    order: 1 !important;
  }
  .c_ph_box_content {
    order: 2 !important;
  }
}
@media screen and (max-width:640px) {
	/*  c_box_round
	------------------------------------- */
	.c_box_round {
		border-radius: 0 20px 0 20px;
	}
	.c_box_round,
	.c_box_round.is_size_md {
		padding: 20px;
	}
	/*  c_box_flex
	------------------------------------- */
	.c_box_flex.is_col3 {
		flex-direction: column;
	}
	.c_box_flex.is_col3 > * {
		width: 100% !important;
	}
	.c_box_flex.is_col_free > *:not(:last-child) {
		margin-bottom: 10px;
	}
	.c_box_flex.is_col2 > *:not(:last-of-type),
	.c_box_flex.is_col3 > *:not(:last-child) {
		margin-bottom: 20px;
	}
	.c_box_sentence p:not(:last-of-type) {
		margin-bottom: 1em;
	}
	/*  c_ph_box
	------------------------------------- */
  .c_ph_box:not(:last-child) {
    margin-bottom: 25px;
  }
}

/*----------------------------------------------
	btn
---------------------------------------------*/
/*  c_btn_default
------------------------------------- */
.c_btn_default {
	margin-top: 45px;
}
.c_btn_default a {
	display: inline-block;
	min-width: 300px;
	padding: .5em 50px;
	border-radius: 100px;
	background-color: #114E93;
	color: #fff;
	font-size: 1.8rem;
	text-decoration: none;
}
.c_btn_default.is_center {
	text-align: center;
}
.c_btn_default.is_center a {
	margin-right: auto;
	margin-left: auto;
}
.c_btn_default.is_color_rd a {
	background-color: #D54D43;
}
.c_btn_default.is_type_logo.is_color_bl a,
.c_btn_default.is_color_bl a {
	background-color: #7AADDF;
}
.c_btn_default.is_color_gy a {
	background: #929292;
}
.c_btn_default.is_type_logo a {
	padding: .8em 50px;
	border: 10px solid #114E93;
	background-color: #fff;
}
@media screen and (max-width:640px) {
	/*  c_btn_default
	------------------------------------- */
	.c_btn_default {
		margin-top: 20px;
	}
	.c_btn_default a {
		min-width: 80%;
	}
}

/*----------------------------------------------
	hr
---------------------------------------------*/
hr {
	width: 100%;
	height: 5px;
	margin-top: 40px;
	background-image: linear-gradient(to right, #015EAB, #015EAB 5px, transparent 5px, transparent 10px);
	background-size: 15px 5px;
	background-repeat: repeat-x;
	border: none;
}
@media screen and (max-width:640px) {
	hr {
		margin-top: 20px;
	}
}

