@charset "UTF-8";
*,
*::before,
*::after {
	box-sizing: border-box;
}

html,
body,
div,
span,
applet,
object,
iframe,
strong,
h1,
h2,
h3,
h4,
h5,
h6,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
font,
ins,
kbd,
q,
s,
samp,
small,
strike,
sub,
sup,
tt,
var,
fieldset,
form,
legend,
caption,
tbody,
tfoot,
thead,
table,
label,
tr,
th,
td,
p,
img,
figure,
ul,
dl,
dt,
dd {
	margin: 0;
	padding: 0;
	border: none;
}

html,
body {
	margin: 0;
	padding: 0;
	width: 100%;
	height: 100%;
}

html {
	font-size: 14px;
}

body {
	position: relative;
	overflow-y: scroll;
	color: #000;
	font-family: "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
	font-weight: 500;
	line-height: 1.75;
	-webkit-text-size-adjust: 100%;
}

a {
	color: #1787c7;
	transition: color .3s;
}

img {
	vertical-align: top;
	max-width: 100%;
	height: auto;
}

p {
	margin: 1em 0;
}

p:nth-child(1) {
	margin-top: 0;
}

p:nth-last-child(1) {
	margin-bottom: 0;
}

.header {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
	width: 100%;
	height: 50px;
	background: #fff;
	display: flex;
	align-items: center;
}

.header_inner {
	width: calc(100% - 20px);
	max-width: 1200px;
	height: 100%;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.header_logo {
	height: calc(100% - 20px);
	display: flex;
	align-items: center;
}

.header_logo a {
	display: block;
	line-height: 0;
}

.header_logo img {
	width: 100%;
	max-width: 500px;
	padding: 2em;
}

main {
	display: block;
	position: relative;
	z-index: 1;
	margin-top: 50px;
	counter-reset: sec_heading;
}

.footer {
	background: #1787c7;
	color: #fff;
	text-align: center;
}

.footer_inner {
	width: calc(100% - 20px);
	max-width: 1200px;
	height: 100%;
	margin: 0 auto;
	padding: 3.5rem 0;
}

.footer_logo {
	height: calc(100% - 20px);
	padding: 1rem;
	background: #fff;
	display: inline-flex;
	align-items: center;
}

.footer_logo a {
	display: block;
	line-height: 0;
}

.footer_logo img {
	width: 100%;
	max-width: 600px;
}

.footer_btn_outer {
	max-width: 220px;
	margin: 2rem auto;
}

.footer_btn {
	background: #d7f9f9;
	padding: 1rem;
	border-radius: 10px;
	color: #000;
	text-decoration: none;
	font-weight: 700;
	display: flex;
	justify-content: center;
}

.footer_btn:hover {
	color: #666;
}

.footer_about {
	font-size: calc(1rem - 2px);
}

.footer_copy {
	display: inline-block;
	margin-top: 1.25rem;
	font-size: calc(1rem - 4px);
	text-align: left;
}

.page_top {
	display: none;
	position: fixed;
	bottom: 10px;
	right: 10px;
	z-index: 3;
	width: 44px;
	height: 44px;
	background: rgba(23, 135, 199, 0.8);
	transition: background .3s;
}

.page_top img {
	position: absolute;
	top: 50%;
	right: 50%;
	transform: translate(50%, -50%);
	width: 100%;
}

#page_position_dot {
	position: fixed;
	top: 50%;
	right: 1rem;
	z-index: 4;
	transform: translate(50%, -50%);
}

#page_position_dot ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

#page_position_dot li {
	margin: 0;
	padding: 0;
	text-indent: -999999px;
}

#page_position_dot a {
	display: block;
	width: 7px;
	height: 7px;
	margin: 1.25rem 0;
	border-radius: 100%;
	background: #ccc;
	transition: all .1s;
}

#page_position_dot a.current {
	background: #2a4d95;
}

.ul {
	margin: 1rem 0;
	padding: 0 0 0 2em;
}

.ul:nth-child(1) {
	margin-top: 0;
}

.ul:nth-last-child(1) {
	margin-bottom: 0;
}

.ul_index {
	list-style: none;
	margin: 1rem -10px;
	padding: 0;
	counter-reset: ul_index;
}

.ul_index:nth-child(1) {
	margin-top: 0;
}

.ul_index:nth-last-child(1) {
	margin-bottom: 0;
}

.ul_index > li {
	margin: 10px;
}

.ul_index > li:nth-child(1) {
	margin-top: 0;
}

.ul_index > li:nth-last-child(1) {
	margin-bottom: 0;
}

.ul_index a {
	display: block;
	position: relative;
	padding: 0.75rem 0.75rem 0.75rem 4.0rem;
	border: 1px solid #000;
	background: #f1f1f1;
	color: #000;
	text-decoration: none;
}

.ul_index a::before {
	counter-increment: ul_index;
	content: "0" counter(ul_index);
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 3.25rem;
	height: 100%;
	background: #1787c7;
	color: #fff;
	font-weight: 700;
	display: flex;
	justify-content: center;
	align-items: center;
}

.ul_index > li:nth-of-type(9) ~ li a::before {
	content: counter(ul_index);
}

.ul_index .ul_index__blank {
	padding-right: 2rem;
}

.ul_index .ul_index__blank::after {
	content: "";
	display: block;
	position: absolute;
	top: 1.25rem;
	right: 0.85rem;
	width: 0.8rem;
	height: 0.8rem;
	background: url("../img/ico_window.svg") no-repeat center/contain;
}

.heading_2,
.heading_2--left,
.heading_2_grn,
.heading_2_blu {
	margin: 2.25rem 0 1rem;
	font-size: calc(1rem + 4px);
	font-weight: 700;
	line-height: 1.5;
	display: flex;
	justify-content: center;
}

.heading_2:nth-child(1),
.heading_2--left:nth-child(1),
.heading_2_grn:nth-child(1),
.heading_2_blu:nth-child(1) {
	margin-top: 0;
}

.heading_2:nth-last-child(1),
.heading_2--left:nth-last-child(1),
.heading_2_grn:nth-last-child(1),
.heading_2_blu:nth-last-child(1) {
	margin-bottom: 0;
}

.heading_2--left {
	display: block;
}

.heading_2_grn {
	color: #009944;
}

.heading_2_blu {
	color: #1787c7;
}

.ol_no_num {
	list-style: none;
	margin: 1rem 0;
	padding: 0;
}

.ol_no_num:nth-child(1) {
	margin-top: 0;
}

.ol_no_num:nth-last-child(1) {
	margin-bottom: 0;
}

.ol_circle_num {
	list-style: none;
	margin: 1rem 0;
	padding: 0;
}

.ol_circle_num:nth-child(1) {
	margin-top: 0;
}

.ol_circle_num:nth-last-child(1) {
	margin-bottom: 0;
}

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

.hr_dotted,
.hr_dotted--gry,
.hr_dotted_blu,
.hr_dotted_red {
	margin: 1rem auto;
	background: none;
	border: none;
	border-top: 1px dotted #000;
}

.hr_dotted:nth-child(1),
.hr_dotted--gry:nth-child(1),
.hr_dotted_blu:nth-child(1),
.hr_dotted_red:nth-child(1) {
	margin-top: 0;
}

.hr_dotted:nth-last-child(1),
.hr_dotted--gry:nth-last-child(1),
.hr_dotted_blu:nth-last-child(1),
.hr_dotted_red:nth-last-child(1) {
	margin-bottom: 0;
}

.hr_dotted--gry {
	border-color: #ccc;
}

.sec_index_inner {
	width: calc(100% - 8.75%);
	max-width: 1200px;
	margin: 1.0rem auto 0;
}

.sec_index_heading {
	margin: 1em 0 1rem;
	font-size: 1.25rem;
	font-weight: 700;
	display: flex;
	justify-content: center;
}

.sec_index_heading:nth-child(1) {
	margin-top: 0;
}

.sec_index_heading:nth-last-child(1) {
	margin-bottom: 0;
}

.sec__inner {
	width: calc(100% - 8.75%);
	max-width: 1200px;
	margin: 0 auto;
	padding-top: 3.5rem;
}

.sec__heading {
	position: relative;
	margin: 2.5rem 0 3rem;
	font-size: calc(1rem + 6px);
	font-weight: 700;
	line-height: 1.5;
	display: flex;
	justify-content: center;
	align-items: center;
}

.sec__heading:nth-child(1) {
	margin-top: 0;
}

.sec__heading:nth-last-child(1) {
	margin-bottom: 0;
}

.sec__heading::after {
	content: "";
	display: block;
	position: absolute;
	bottom: -0.75em;
	right: 50%;
	transform: translateX(50%);
	width: 4em;
	height: 4px;
	background: #999;
}

.sec__heading_num {
	display: inline-block;
	min-width: 2.25rem;
	height: 2.25rem;
	display: flex;
	background: #1787c7;
	color: #fff;
	font-size: calc(1rem + 2px);
	font-weight: 700;
	justify-content: center;
	align-items: center;
	align-self: flex-start;
}

.sec__heading_txt {
	display: inline-block;
}

.sec__heading_num + .sec__heading_txt {
	max-width: calc(100% - 2.25rem);
	padding-left: 0.5em;
}

.sec:nth-last-child(1) .sec__inner {
	padding-bottom: 3.5rem;
}

.gallery {
	margin: 1rem 0;
	text-align: center;
}

.gallery:nth-child(1) {
	margin-top: 0;
}

.gallery:nth-last-child(1) {
	margin-bottom: 0;
}

.gallery__item + .gallery__item {
	margin-top: 2.25rem;
}

.gallery_img {
	position: relative;
	margin: 1.25rem auto;
	width: 80%;
	max-width: 150px;
	border-radius: 100%;
	background: #d7f9f9;
	text-align: center;
}

.gallery_img:nth-child(1) {
	margin-top: 0;
}

.gallery_img:nth-last-child(1) {
	margin-bottom: 0;
}

.gallery_img::after {
	content: "";
	display: block;
	width: 100%;
	padding-top: 100%;
}

.gallery_img img {
	position: absolute;
	top: 50%;
	right: 50%;
	transform: translate(50%, -50%);
	max-width: 80%;
}

.gallery img {
	width: 100%;
	max-width: 378px;
}

.clr_yel {
	color: #fff100 !important;
}

.ta_right {
	text-align: right !important;
}

.ta_left {
	text-align: left !important;
}

.ta_center {
	text-align: center !important;
}

.fw_bold {
	font-weight: 700 !important;
}

.mv {
	display: table;
	table-layout: fixed;
	width: 100%;
	height: 100vh;
	margin-top: -50px;
	background: #1787c7;
	color: #fff;
}

.mv_tbody {
	display: table-row-group;
}

.mv_tr {
	display: table-row;
}

.mv_cell {
	display: table-cell;
	vertical-align: middle;
	text-align: center;
}

.mv_cont {
	width: calc(100% - 8.75%);
	max-width: 1200px;
	margin: 0 auto;
	padding: 70px 0 2.5rem;
}

.mv_cont_txt {
	margin-top: 1.75rem;
	line-height: 2;
}

.mv_img {
	width: 70%;
	max-width: 378px;
	margin: 0 auto;
}

.mv_read {
	font-weight: 700;
}

.mv_txt_min {
	font-size: 0.875rem;
	text-align: left;
}

.mv_index {
	display: none;
}

.mv_index .mv_index__blank {
	padding-right: 2rem;
}

.mv_index .mv_index__blank::after {
	content: "";
	display: block;
	position: absolute;
	top: 1.25rem;
	right: 0.85rem;
	width: 0.8rem;
	height: 0.8rem;
	background: url("../img/ico_window.svg") no-repeat center/contain;
}

.seibi_img {
	margin: 2rem auto;
	text-align: center;
}

.seibi_img img {
	width: 100%;
	max-width: 378px;
}

.seibi_flow_img {
	margin: 1rem auto;
	text-align: center;
}

.seibi_flow_img img {
	width: 100%;
	max-width: 378px;
}

.bunya_img {
	width: 80%;
	max-width: 200px;
	margin: 1.25rem auto 0;
	text-align: center;
}

.bunya_txt {
	font-size: calc(1rem - 2px);
	text-align: center;
}

.bunya_txt_square {
	display: inline-block;
	position: relative;
	top: -1px;
	width: 2.5em;
	height: 1em;
	margin-right: 0.5em;
	border: 2px solid #e60012;
	background: #fffbda;
	vertical-align: middle;
}

.bunya_ol_outer {
	counter-reset: bunya_ol;
	display: flex;
	justify-content: center;
}

.bunya_ol {
	list-style: none;
	margin-top: 10px;
	padding: 0;
}

.bunya_ol > li + li {
	margin-top: calc(0.5rem - 4px);
}

.bunya_ol_li_inner,
.bunya_ol_li_inner_border {
	display: inline-block;
	position: relative;
	padding: 4px 7px 4px calc(2rem + 4px);
}

.bunya_ol_li_inner_border {
	padding: 3px 6px 3px calc(2rem + 3px);
	border: 2px solid #e60012;
	background: #fffbda;
}

.bunya_ol_li_inner::before,
.bunya_ol_li_inner_border::before {
	counter-increment: bunya_ol;
	content: counter(bunya_ol);
	position: absolute;
	top: 6px;
	left: 4px;
	width: 1.5rem;
	height: 1.5rem;
	border: 1px solid #000;
	border-radius: 100%;
	font-size: calc(1rem - 4px);
	display: flex;
	justify-content: center;
	align-items: center;
}

.bunya_ol_li_inner_border::before {
	top: 5px;
	left: 3px;
}

.flow_img {
	margin: 2rem auto;
	text-align: center;
}

.flow_img img {
	width: 100%;
	max-width: 378px;
}

.miryoku_cont {
	margin: 2rem 0 0;
}

.miryoku_cont::after {
	content: "";
	display: block;
	clear: both;
	width: 100%;
	height: 1px;
	margin-top: -1px;
	line-height: 0;
}

.miryoku_cont_heading {
	margin-bottom: 1rem;
	color: #1787c7;
	font-size: calc(1rem + 4px);
	font-weight: 700;
	line-height: 1.5;
	text-align: center;
}

.miryoku_cont_img {
	margin-top: 1rem;
	margin-bottom: 1rem;
}

.career_up_program_img {
	margin: 2rem auto;
	text-align: center;
}

.career_up_program_img img {
	width: 100%;
	max-width: 378px;
}

.message_cont_1::after {
	content: "";
	display: block;
	clear: both;
}

.message_cont_1__img {
	float: right;
	width: calc(30% + 1rem);
	max-width: 378px;
	margin-bottom: 1rem;
	margin-left: 1rem;
}

.message_read {
	margin: 1.5rem 0 1.5rem;
	font-size: calc(1rem + 6px);
	font-weight: 700;
	line-height: 1.5;
}

.message_read__marcker {
	position: relative;
	background: linear-gradient(to bottom, transparent 30%, #d7f9f9 30%, #d7f9f9 70%, transparent 70%);
}

.qa {
	counter-reset: qa;
}

.qa dt {
	margin-top: 2em;
	font-weight: 700;
}

.qa dt::before {
	counter-increment: qa;
	content: "Q" counter(qa) "　";
}

.qa dd {
	margin-top: 0.5em;
	font-size: calc(1em - 2px);
}

.message_cont_2 {
	margin-top: 3rem;
	margin-bottom: 4rem;
	padding-bottom: 3rem;
	border-bottom: 1px solid #1787c7;
}

.message_cont_2:nth-last-child(1) {
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: none;
}

.message_cont_2::after {
	content: "";
	display: block;
	clear: both;
}

.message_cont_2__img {
	float: right;
	width: calc(30% + 1rem);
	max-width: 378px;
	margin-bottom: 1rem;
	margin-left: 1rem;
}

.message_cont_2__heading,
.message_cont_2__heading--tennis,
.message_cont_2__heading--ski,
.message_cont_2__heading--snow_board,
.message_cont_2__heading--dolphin{
	position: relative;
	font-size: calc(1rem + 6px);
	font-weight: 700;
}

.message_cont_2__heading_inner {
	position: relative;
	display: inline-block;
	padding: 0.35em 0 0.35em 3.0em;
}

.message_cont_2__heading_inner::before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 2.5em;
	height: 2.5em;
	border-radius: 100%;
	background: #1787c7 no-repeat center/50%;
}

.message_cont_2__heading--tennis .message_cont_2__heading_inner::before {
	background-image: url("../img/ico_tennis_wht.svg");
}

.message_cont_2__heading--ski .message_cont_2__heading_inner::before {
	background-image: url("../img/ico_ski_wht.svg");
	background-size: 70%;
}

.message_cont_2__heading--snow_board .message_cont_2__heading_inner::before {
	background-image: url("../img/ico_snow_board_wht.svg");
}

.message_cont_2__heading--dolphin .message_cont_2__heading_inner::before {
	background-image: url("../img/ico_dolphin_wht.svg");
}
.message_cont_2__txt {
	margin-top: 2rem;
}

.one_day_heading {
	margin-top: 3rem;
	font-size: calc(1rem + 6px);
	font-weight: 700;
}

.one_day_heading__inner {
	position: relative;
	display: inline-block;
	padding: 0.35em 0 0.35em 3.0em;
}

.one_day_heading__inner::before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 2.5em;
	height: 2.5em;
	border-radius: 100%;
	background: #1787c7 url("../img/ico_clock_wht.svg") no-repeat center/60%;
}

.one_day_table {
	border-collapse: collapse;
	margin-top: 1.5rem;
}

.one_day_table th,
.one_day_table td {
	padding-top: 0.5em;
	padding-bottom: 0.5em;
	border-top: 1px dotted #ccc;
	vertical-align: top;
}

.one_day_table th {
	white-space: nowrap;
	text-align: right;
}

.one_day_table td {
	width: 100%;
	text-align: left;
}

.one_day_table th + td {
	padding-left: 1em;
}

.one_day_table td.one_day_table__offtime {
	padding-top: 1.0em;
}

.message_index {
	list-style: none;
	margin: 1rem -10px;
	padding: 0;
}

.message_index:nth-child(1) {
	margin-top: 0;
}

.message_index:nth-last-child(1) {
	margin-bottom: 0;
}

.message_index > li {
	margin: 10px;
}

.message_index > li:nth-child(1) {
	margin-top: 0;
}

.message_index > li:nth-last-child(1) {
	margin-bottom: 0;
}

.message_index a {
	position: relative;
	padding: 0.75rem 1.75rem 0.75rem 0.75rem;
	border: 1px solid #000;
	background: #f1f1f1;
	color: #000;
	text-decoration: none;
	display: flex;
	justify-content: center;
	transition: all 0.3s;
}

.message_index a::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 1rem;
	transform: translateY(-50%);
	border-top: 6px solid #000;
	border-right: 4px solid transparent;
	border-left: 4px solid transparent;
}

@media only screen and (min-width: 768px) {
	html {
		font-size: 16px;
	}
	a:hover {
		color: #74b7dd;
	}
	.header {
		height: 80px;
	}
	.header_inner {
		width: calc(100% - 12.5%);
	}
	.header_logo {
		height: calc(100% - 2.5rem);
	}
	main {
		margin-top: 80px;
	}
	.footer_inner {
		width: calc(100% - 12.5%);
		padding: 5rem 0;
	}
	.footer_logo {
		height: calc(100% - 2.5rem);
	}
	.page_top {
		bottom: 1rem;
		right: 1rem;
	}
	.page_top:hover {
		background: #1787c7;
	}
	#page_position_dot {
		right: 2rem;
	}
	#page_position_dot a {
		width: 10px;
		height: 10px;
	}
	.sec_index_inner {
		width: calc(100% - 12.5%);
	}
	.sec__inner {
		width: calc(100% - 12.5%);
		padding-top: 5rem;
	}
	.sec__heading {
		margin-top: 5rem;
		margin-bottom: 3.5rem;
		font-size: 1.5rem;
	}
	.sec:nth-last-child(1) .sec__inner {
		padding-bottom: 5rem;
	}
	.gallery {
		margin: -1.0rem;
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
	}
	.gallery:nth-last-child(1) {
		margin-bottom: -1rem;
	}
	.gallery__item {
		width: calc(100% / 3 - 2rem - 0.1px);
		margin: 1.0rem;
		border-radius: 2rem;
	}
	.gallery__item + .gallery__item {
		margin-top: 1.0rem;
	}
	.gallery_img {
		max-width: 200px;
	}
	.pc_none {
		display: none !important;
	}
	.pc_ma_t_4rem {
		margin-top: 4rem !important;
	}
	.mv {
		height: auto;
		margin-top: -80px;
	}
	.mv_cont {
		max-width: calc(1200px + 3rem);
		padding: calc(3.5rem + 80px) 0 3.5rem;
		text-align: left;
		display: flex;
		justify-content: center;
		flex-wrap: wrap;
	}
	.mv_cont_detail {
		width: calc(58% - 3rem);
		min-width: 675px;
		margin: 1.5rem;
		align-self: center;
	}
	.mv_cont_txt {
		margin-top: 0;
		line-height: 2.25;
	}
	.mv_img {
		width: calc(42% - 3rem);
		max-width: 480px;
		min-width: 400px;
		margin: 1.5rem;
		background: url("../img/mv_pc.png") no-repeat center/contain;
	}
	.mv_img::before {
		content: "";
		display: block;
		padding-top: 86.875%;
	}
	.mv_img img {
		display: none;
	}
	.mv_read {
		font-size: 1.25rem;
	}
	.mv_index {
		list-style: none;
		margin: 1.25rem -0.5rem -0.5rem;
		padding: 0;
		counter-reset: mv_index;
		display: flex;
		flex-wrap: wrap;
	}
	.mv_index > li {
		width: calc(100% / 2 - 1rem - 0.1px);
		margin: 0.5rem;
	}
	.mv_index a {
		display: block;
		position: relative;
		height: 100%;
		padding: 0.75rem 1rem 0.75rem 4.25rem;
		border: 1px solid #fff;
		background: #f1f1f1;
		color: #000;
		text-decoration: none;
		display: flex;
		align-items: center;
		transition: all 0.3s;
	}
	.mv_index a::before {
		counter-increment: mv_index;
		content: "0" counter(mv_index);
		display: block;
		position: absolute;
		top: 0;
		left: 0;
		width: 3.25rem;
		height: 100%;
		background: #1787c7;
		color: #fff;
		font-weight: 700;
		display: flex;
		justify-content: center;
		align-items: center;
		transition: all 0.3s;
	}
	.mv_index > li:nth-of-type(9) ~ li a::before {
		content: counter(mv_index);
	}
	.mv_index a:hover {
		background: #fff;
		color: #666;
	}
	.mv_index a:hover::before {
		background: #74b7dd;
	}
	.seibi_img {
		max-width: 672px;
		background: url("../img/seibi_pc.png") no-repeat center/contain;
	}
	.seibi_img::before {
		content: "";
		display: block;
		width: 100%;
		padding-top: 58.779761%;
	}
	.seibi_img img {
		display: none;
	}
	.seibi_flow_img {
		background: url("../img/seibi_flow_pc.png") no-repeat center/contain;
	}
	.seibi_flow_img::before {
		content: "";
		display: block;
		width: 100%;
		padding-top: 32.833333%;
	}
	.seibi_flow_img img {
		display: none;
	}
	.bunya_img {
		max-width: 400px;
	}
	.bunya_ol {
		margin: 0 -5px -5px;
		display: flex;
		flex-wrap: wrap;
	}
	.bunya_ol > li {
		width: calc(100% / 3 - 10px - 0.1px);
		margin: 5px;
	}
	.bunya_ol > li + li {
		margin-top: 5px;
	}
	.bunya_ol_li_inner,
	.bunya_ol_li_inner_border {
		display: block;
		height: 100%;
		padding: 0.75rem 0.5rem 0.75rem 2.5rem;
		border: 1px solid #ccc;
	}
	.bunya_ol_li_inner_border {
		padding: calc(0.75rem - 1px) calc(0.5rem - 1px) calc(0.75rem - 1px) calc(2.5rem - 1px);
		border: 2px solid #e60012;
	}
	.bunya_ol_li_inner::before,
	.bunya_ol_li_inner_border::before {
		top: 0.9rem;
		left: 0.5rem;
	}
	.bunya_ol_li_inner_border::before {
		top: calc(0.9rem - 1px);
		left: calc(0.5rem - 1px);
	}
	.flow_img {
		background: url("../img/flow_pc.png") no-repeat center/contain;
	}
	.flow_img::before {
		content: "";
		display: block;
		width: 100%;
		padding-top: 58.666666%;
	}
	.flow_img img {
		display: none;
	}
	.miryoku_cont {
		margin: 3rem 0 0;
	}
	.miryoku_cont_heading {
		float: right;
		width: 58.5%;
		margin-bottom: 1.5rem;
		text-align: left;
	}
	.miryoku_cont_img {
		float: left;
		width: 41.5%;
		margin-top: 0;
		margin-bottom: 0.5rem;
		padding-right: 3%;
	}
	.message_cont_1__img {
		margin-left: 2rem;
	}
	.message_cont_2__img {
		margin-left: 2rem;
	}
	.message_index {
		display: flex;
	}
	.message_index > li {
		width: calc(100% / 3 - 20px);
	}
	.message_index > li:nth-child(1) {
		margin-top: 10px;
	}
	.message_index > li:nth-last-child(1) {
		margin-bottom: 10px;
	}
	.message_index a:hover {
		background: #fff;
		color: #666;
	}
}

@media only screen and (max-width: 767px) {
	.sp_none {
		display: none !important;
	}
}
