@charset "utf-8";
/* -----------------------------------------
common.css
サイト共通設定用css

＜class名ルール＞
このファイルで使用するclassには以下の接頭語を付加する。
（他のcssファイルでは不要）
・汎用クラス、モジュール：「.c_xxx」（common）
・フレームモジュール：「.f_xxx」（frame）
・モジュール：「.m_xxx」（module）
・モジュール内のパーツ：「.p_xxx」（parts）
・モジュールの状態：「.s_xxx」（state）
※JSのみで使用：「.js_xxx」
----------------------------------------- */


/* font
----------------------------------------- */

@font-face {
	font-family: 'Noto Sans Japanese';
	font-style: normal;
	font-weight: 400;
	src: local('Noto Sans CJK JP'),
		local('NotoSansCJKjp-Regular'),
		local('NotoSansJP-Regular'),
		url('../font/NotoSansCJKjp-Regular.woff2') format('woff2'),
		url('../font/NotoSansCJKjp-Regular.woff') format('woff'),
		url('../font/NotoSansCJKjp-Regular.ttf')  format('truetype'),
		url('../font/NotoSansCJKjp-Regular.eot') format('embedded-opentype');
}


/* reset
----------------------------------------- */

html,body,div,span,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,
a,abbr,address,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,
small,strong,sub,sup,var,b,u,i,dl,dt,dd,ol,ul,li,
fieldset,form,label,legend,input,textarea,table,caption,tbody,thead,tfoot,tr,th,td,
main,article,aside,canvas,details,embed,figure,figcaption,footer,header,
menu,nav,output,ruby,section,summary,time,mark,audio,video {
	margin: 0;
	padding: 0;
}

h1,h2,h3,h4,h5,h6,th {
	font-family: inherit;
	font-size: 100%;
	font-weight: normal;
}

table {
	border-spacing: 0;
	border-collapse: collapse;
}

table,th,td {
	text-align: left;
	border: none;
}

ol,ul,li {
	list-style: none;
}

img {
	border: none;
	vertical-align: top;
	max-width: 100%;
}

input[type=text],
input[type=email],
input[type=number],
input[type=password],
input[type=button],
input[type=submit],
button,
select,
textarea {
	color: inherit;
	font-family: inherit;
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
	outline: none;
	font-size: 100%;
	font-weight: normal;
	line-height: inherit;
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
	color: rgba(68,75,82,0.5);
}
input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
	color: rgba(68,75,82,0.5);
}
input::-moz-placeholder,
textarea::-moz-placeholder {
	color: rgba(68,75,82,0.5);
}

button::-moz-focus-inner,
input::-moz-focus-inner {
	border: 0;
}

select::-ms-expand {
	display:none;
}

*,*:before,*:after {
	box-sizing: border-box;
}


/* 初期設定
----------------------------------------- */

html {
	font-size: 62.5%;
}

body {
	min-width: 320px;
	font-family: Arial, "Noto Sans Japanese", "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif;
	font-size: 160%;
	color: #444b52;
	line-height: 1.63;
	-webkit-text-size-adjust: 100%;
}
body.s_ie {
	font-family: Arial, "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif;
}
@media screen and (max-width: 767px){
	body {
		font-size: 140%;
		line-height: 1.57;
	}
}

a {
	color: inherit;
	text-decoration: none;
	transition: all 0.5s;
}

em, strong {
	font-weight: bold;
}


/* 汎用クラス
----------------------------------------- */

.c_fontL  { font-size: 112.5% !important; }
.c_fontLL { font-size: 125% !important; }
.c_fontXL { font-size: 150% !important; }
.c_fontM  { font-size: 100% !important; }
.c_fontS  { font-size: 87.5% !important; }
.c_fontSS { font-size: 81.25% !important; }
.c_fontXS { font-size: 75% !important; }

.c_fontBold { font-weight: bold; }
.c_fontNormal { font-weight: normal !important; }
.c_colorRed { color: #ce2e2e; }
.c_colorGreen { color: #008d61; }

.c_textIndent { text-indent: 1em; }

.c_clearfix { zoom: 1; }
.c_clearfix:after {
	content: "";
	display: block;
	clear: both;
	height: 0.01px;
}
.c_floatL { float: left; }
.c_floatR { float: right; }
.c_ofHidden { overflow: hidden; }

.c_taLeft { text-align: left !important; }
.c_taCenter { text-align: center !important; }
.c_taRight { text-align: right !important; }

.c_vaTop { vertical-align: top !important; }
.c_vaMdl { vertical-align: middle !important; }
.c_vaBtm { vertical-align: bottom !important; }

.c_mt0  { margin-top:  0px !important; }
.c_mt3  { margin-top:  3px !important; }
.c_mt5  { margin-top:  5px !important; }
.c_mt10 { margin-top: 10px !important; }
.c_mt15 { margin-top: 15px !important; }
.c_mt20 { margin-top: 20px !important; }
.c_mt25 { margin-top: 25px !important; }
.c_mt30 { margin-top: 30px !important; }
.c_mt35 { margin-top: 35px !important; }
.c_mt40 { margin-top: 40px !important; }
.c_mt45 { margin-top: 45px !important; }
.c_mt50 { margin-top: 50px !important; }
.c_mt60 { margin-top: 60px !important; }
.c_mt70 { margin-top: 70px !important; }
.c_mt80 { margin-top: 80px !important; }
.c_mt90 { margin-top: 90px !important; }

.c_ml0  { margin-left:  0px !important; }
.c_ml3  { margin-left:  3px !important; }
.c_ml5  { margin-left:  5px !important; }
.c_ml10 { margin-left: 10px !important; }
.c_ml15 { margin-left: 15px !important; }
.c_ml20 { margin-left: 20px !important; }
.c_ml25 { margin-left: 25px !important; }
.c_ml30 { margin-left: 30px !important; }
.c_ml35 { margin-left: 35px !important; }
.c_ml40 { margin-left: 40px !important; }
.c_ml45 { margin-left: 45px !important; }
.c_ml50 { margin-left: 50px !important; }
.c_ml60 { margin-left: 60px !important; }
.c_ml70 { margin-left: 70px !important; }
.c_ml80 { margin-left: 80px !important; }
.c_ml90 { margin-left: 90px !important; }

.c_mr0  { margin-right:  0px !important; }
.c_mr3  { margin-right:  3px !important; }
.c_mr5  { margin-right:  5px !important; }
.c_mr10 { margin-right: 10px !important; }
.c_mr15 { margin-right: 15px !important; }
.c_mr20 { margin-right: 20px !important; }
.c_mr25 { margin-right: 25px !important; }
.c_mr30 { margin-right: 30px !important; }
.c_mr35 { margin-right: 35px !important; }
.c_mr40 { margin-right: 40px !important; }
.c_mr45 { margin-right: 45px !important; }
.c_mr50 { margin-right: 50px !important; }
.c_mr60 { margin-right: 60px !important; }
.c_mr70 { margin-right: 70px !important; }
.c_mr80 { margin-right: 80px !important; }
.c_mr90 { margin-right: 90px !important; }

.c_mb0  { margin-bottom:  0px !important; }
.c_mb3  { margin-bottom:  3px !important; }
.c_mb5  { margin-bottom:  5px !important; }
.c_mb10 { margin-bottom: 10px !important; }
.c_mb15 { margin-bottom: 15px !important; }
.c_mb20 { margin-bottom: 20px !important; }
.c_mb25 { margin-bottom: 25px !important; }
.c_mb30 { margin-bottom: 30px !important; }
.c_mb35 { margin-bottom: 35px !important; }
.c_mb40 { margin-bottom: 40px !important; }
.c_mb45 { margin-bottom: 45px !important; }
.c_mb50 { margin-bottom: 50px !important; }
.c_mb60 { margin-bottom: 60px !important; }
.c_mb70 { margin-bottom: 70px !important; }
.c_mb80 { margin-bottom: 80px !important; }
.c_mb90 { margin-bottom: 90px !important; }

.c_iBlock { display: inline-block; }

.c_liquid { width: 100%; }

.c_breakall { word-break: break-all; }
.c_nowrap { white-space: nowrap; }

.c_over:hover {
	opacity: 0.7;
}

@media (max-width: 1300px){ .c_ov1300 { display: none !important; } }
@media (max-width: 1200px){ .c_ov1200 { display: none !important; } }
@media (max-width: 1100px){ .c_ov1100 { display: none !important; } }
@media (max-width: 1000px){ .c_ov1000 { display: none !important; } }
@media (max-width: 900px){ .c_ov900 { display: none !important; } }
@media (max-width: 800px){ .c_ov800 { display: none !important; } }
@media (max-width: 767px){ .c_ov767 { display: none !important; } }
@media (max-width: 700px){ .c_ov700 { display: none !important; } }
@media (max-width: 600px){ .c_ov600 { display: none !important; } }
@media (max-width: 500px){ .c_ov500 { display: none !important; } }
@media (max-width: 400px){ .c_ov400 { display: none !important; } }
@media (min-width: 1301px){ .c_ud1300 { display: none !important; } }
@media (min-width: 1201px){ .c_ud1200 { display: none !important; } }
@media (min-width: 1101px){ .c_ud1100 { display: none !important; } }
@media (min-width: 1001px){ .c_ud1000 { display: none !important; } }
@media (min-width: 901px){ .c_ud900 { display: none !important; } }
@media (min-width: 801px){ .c_ud800 { display: none !important; } }
@media (min-width: 768px){ .c_ud767 { display: none !important; } }
@media (min-width: 701px){ .c_ud700 { display: none !important; } }
@media (min-width: 601px){ .c_ud600 { display: none !important; } }
@media (min-width: 501px){ .c_ud500 { display: none !important; } }
@media (min-width: 401px){ .c_ud400 { display: none !important; } }
@media (min-width: 351px){ .c_ud350 { display: none !important; } }


/* ページフレーム
----------------------------------------- */

.f_pageArea {
	overflow-x: hidden;
}

.f_breadcrumbs {
	padding: 27px 0 20px;
	line-height: 1.3;
}
.f_breadcrumbs.s_footer {
	display: none;
}
.f_breadcrumbs li {
	position: relative;
	display: inline-block;
	margin-bottom: 5px;
	padding: 3px 0;
	font-size: 1.3rem;
}
.f_breadcrumbs li + li {
	padding-left: 30px;
}
.f_breadcrumbs li + li::before,
.f_breadcrumbs li + li::after {
	content: "";
	position: absolute;
	left: 15px;
	border-left: 1px solid #444b52;
	opacity: 0.5;
}
.f_breadcrumbs li + li::before {
	top: 0;
	bottom: 50%;
	transform: skewX(35deg);
}
.f_breadcrumbs li + li::after {
	top: 50%;
	bottom: 0;
	transform: skewX(-35deg);
}
.f_breadcrumbs li > a:hover {
	color: #008d61;
}
@media screen and (max-width: 1000px){
	.f_breadcrumbs {
		display: none;
		padding: 0 20px;
	}
	.f_breadcrumbs.s_footer {
		display: block;
	}
	.f_breadcrumbs li {
		padding: 4px 0;
		font-size: 1.1rem;
	}
}

.f_pageTitle {
	padding: 30px 0 60px;
	font-size: 3.2rem;
	font-weight: bold;
	line-height: 1.19;
}
.f_pageTitle .p_shoulder {
	display: block;
	font-size: 2rem;
	line-height: 1.3;
}
.f_pageTitle .p_sub {
	display: block;
	font-size: 1.6rem;
	line-height: 1.63;
}
@media screen and (max-width: 1000px){
	.f_pageTitle {
		padding: 60px 0 50px;
		font-size: 2.7rem;
	}
	.f_pageTitle .p_shoulder {
		font-size: 1.8rem;
	}
	.f_pageTitle .p_sub {
		font-size: 1.4rem;
	}
}

.f_content {
	display: flex;
	justify-content: space-between;
	padding-bottom: 100px;
}
.f_content.s_noCol {
	display: block;
}
.f_main {
	width: 74.18%;
}
.f_content.s_noCol .f_main {
	width: auto;
}
@media screen and (max-width: 1000px){
	.f_content {
		display: block;
		padding-bottom: 60px;
	}
	.f_main {
		margin-bottom: 60px;
		width: auto;
	}
}

.f_navArea {
	width: 22.53%;
	background-color: #f6f7f7;
	padding: 35px 0 40px 20px;
}
.f_navArea .p_categ {
	margin-bottom: 18px;
	font-size: 2rem;
	line-height: 1.3;
}
.f_navArea ul {
	border-top: 1px solid #d5d6d9;
}
.f_navArea > ul {
	border-bottom: 1px solid #d5d6d9;
}
.f_navArea ul a {
	position: relative;
	display: block;
	padding: 8px 40px 7px 10px;
}
.f_navArea ul a:hover {
	color: #008d61;
}
.f_navArea ul a.s_current {
	background-color: #fff;
	color: #008d61;
}
.f_navArea ul a::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 20px;
	width: 9px;
	height: 9px;
	border-top: 2px solid #008d61;
	border-right: 2px solid #008d61;
	transform-origin: right top;
	transform: rotate(45deg);
}
.f_navArea li + li {
	border-top: 1px solid #d5d6d9;
}
.f_navArea ul ul {
	display: none;
	padding-left: 25px;
	font-size: 1.4rem;
	line-height: 1.5;
}
.f_navArea a.s_current + ul {
	display: block;
}
.f_navArea ul ul a {
	background-color: #fff;
}
@media screen and (max-width: 1200px){
	.f_navArea ul ul {
		padding-left: 15px;
		font-size: 1.3rem;
	}
}
@media screen and (max-width: 1000px){
	.f_navArea {
		width: auto;
	}
	.f_navArea .p_categ {
		font-size: 1.8rem;
	}
}


/* 汎用モジュール
----------------------------------------- */

.m_maxW {
	max-width: 1283px;
	margin: 0 auto;
	padding: 0 20px;
}
.m_maxW.s_sizeS {
	max-width: 962px;
}

/* section */

.m_sectionL {
	margin: 80px 0;
}
.m_sectionM {
	margin: 50px 0;
}
.m_sectionS {
	margin: 30px 0;
}

/* link */

.m_link {
	margin: 5px 0;
}
.m_link a:hover {
	opacity: 0.7;
}
.m_link a::after {
	content: "";
	display: inline-block;
}
.m_link.s_mark a::after {
	vertical-align: 2px;
	margin-left: 8px;
	width: 9px;
	height: 9px;
	border-top: 2px solid #008d61;
	border-right: 2px solid #008d61;
	transform: rotate(45deg);
}
.m_link.s_blank a::after {
	vertical-align: -1px;
	margin-left: 8px;
	width: 18px;
	height: 14px;
	background: url(../img/icon_blank.png) no-repeat 0 0;
	background-size: 18px 14px;
}
.m_link.s_pdf a::after {
	vertical-align: -3px;
	margin-left: 8px;
	width: 14px;
	height: 18px;
	background: url(../img/icon_pdf.png) no-repeat 0 0;
	background-size: 14px 18px;
}
.m_link.s_excel a::after {
	vertical-align: -3px;
	margin-left: 8px;
	width: 14px;
	height: 18px;
	background: url(../img/icon_excel.png) no-repeat 0 0;
	background-size: 14px 18px;
}
.m_link.s_anchor a::after {
	vertical-align: 4px;
	margin-left: 8px;
	width: 9px;
	height: 9px;
	border-right: 2px solid #008d61;
	border-bottom: 2px solid #008d61;
	transform: rotate(45deg);
}
.m_link.s_rss a::before {
	content: "";
	display: inline-block;
	vertical-align: 1px;
	margin-right: 6px;
	width: 10px;
	height: 10px;
	background: url(../img/icon_rss.png) no-repeat 0 0;
	background-size: 10px 10px;
}

.m_linkList {
	margin: 20px 0;
}
.m_linkList > li + li {
	margin-top: 15px;
}
.m_linkList.s_inline {
	margin: 15px 0 5px -25px;
}
.m_linkList.s_inline:first-child {
	margin-top: 0;
}
.m_linkList.s_inline:last-child {
	margin-bottom: -15px;
}
.m_linkList.s_inline > li{
	display: inline-block;
	margin: 0 0 15px 25px;
}
.m_linkList.s_sitemap > li + li {
	margin-top: 25px;
}
.m_linkList.s_sitemap .m_linkList {
	margin: 10px 0 0 16px;
}
.m_linkList.s_sitemap .m_linkList > li + li {
	margin-top: 10px;
}
@media screen and (max-width: 767px){
	.m_linkList.s_sitemap > li + li {
		margin-top: 20px;
	}
}

.m_inlineLink {
	color: #008d61;
	text-decoration: underline;
}
.m_inlineLink:hover {
	text-decoration: none;
}

.m_linkBtn {
	position: relative;
	display: inline-block;
	background-color: #008d61;
	padding: 9px 45px 8px 15px;
	min-width: 218px;
	color: #fff;
	text-align: left;
	cursor: pointer;
	transition: all 0.5s;
}
.m_linkBtn:hover {
	box-shadow: 0 10px 35px rgba(68,75,82,0.3);
}
.m_linkBtn::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 20px;
	width: 10px;
	height: 10px;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	transform-origin: right top;
	transform: rotate(45deg);
}
.m_linkBtn.s_blank {
	background: url(../img/icon_blank_02.png) no-repeat right 15px top 50% #008d61;
	background-size: 18px 14px;
}
.m_linkBtn.s_blank::after {
	display: none;
}
.m_linkBtn.s_download {
	background: url(../img/icon_download.png) no-repeat right 18px top 50% #008d61;
	background-size: 13px 14px;
}
.m_linkBtn.s_download::after {
	display: none;
}
.m_linkBtn.s_print {
	background: url(../img/icon_print.png) no-repeat right 15px top 50% #008d61;
	background-size: 18px 14px;
}
.m_linkBtn.s_print::after {
	display: none;
}
.m_linkBtn.s_noIcon {
	padding: 9px 15px 8px 15px;
}
.m_linkBtn.s_noIcon::after {
	display: none;
}
.m_linkBtn.s_weak {
	border: 1px solid #008d61;
	background-color: #fff;
	color: #008d61;
}
.m_linkBtn.s_weak::after {
	border-color: #008d61;
}
.m_linkBtn.s_weak:hover {
	background-color: #008d61;
	color: #fff;
}
.m_linkBtn.s_weak:hover::after {
	border-color: #fff;
}
.m_linkBtn.s_weak.s_blank:not(:hover) {
	background-image: url(../img/icon_blank_03.png);
}
.m_linkBtn.s_weak.s_download:not(:hover) {
	background-image: url(../img/icon_download_02.png);
}
.m_linkBtn.s_weak.s_print:not(:hover) {
	background-image: url(../img/icon_print_02.png);
}
.m_linkBtn.s_disabled {
	border: none;
	background-color: #f3f4f4 !important;
	color: rgba(68,75,82,0.5) !important;
	cursor: default;
}
.m_linkBtn.s_disabled::after {
	border-color: #cacdce !important;
}
.m_linkBtn.s_disabled:hover {
	box-shadow: none;
}
.m_linkBtn.s_negative {
	background-color: #444b52;
	padding: 9px 15px 8px 50px;
}
.m_linkBtn.s_negative::after {
	left: 10px;
	right: auto;
	transform: rotate(-135deg);
}
.m_linkBtn.s_large {
	background-color: #008d61;
	padding: 18px 15px;
	width: 280px;
	text-align: center;
	font-size: 2rem;
	font-weight: bold;
	line-height: 1.3;
}
.m_linkBtn.s_large::after {
	display: none;
}

.m_miniBtn {
	display: inline-block;
	vertical-align: 1px;
	background-color: #008d61;
	padding: 2px 7px;
	color: #fff;
	font-size: 1.2rem;
	line-height: 1;
	cursor: pointer;
	transition: all 0.5s;
}
.m_miniBtn:hover {
	box-shadow: 0 5px 25px rgba(68,75,82,0.3);
}

.m_linkBtnList {
	margin: 20px 0 0;
	display: flex;
	flex-wrap: wrap;
}
.m_linkBtnList > li {
	margin: 0 40px 20px 0;
}
@media screen and (max-width: 767px){
	.m_linkBtnList {
		display: block;
	}
	.m_linkBtnList > li {
		margin: 0 0 20px;
	}
}

.m_downloadBtn {
	position: relative;
	display: inline-block;
	background: url(../img/icon_download.png) no-repeat right 18px top 50% #008d61;
	background-size: 13px 14px;
	padding: 9px 45px 8px 15px;
	min-width: 218px;
	color: #fff;
}
.m_downloadBtn:hover {
	box-shadow: 0 10px 35px rgba(68,75,82,0.3);
}

.m_columnLink {
	margin: 30px 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.m_columnLink li {
	width: 47.72%;
}
.m_columnLink li:nth-child(n+3) {
	margin-top: 20px;
}
@media screen and (min-width: 768px){
	.m_columnLink.s_col3 li {
		width: 31.1%;
	}
	.m_columnLink.s_col3 li:nth-child(n+3) {
		margin-top: 0;
	}
	.m_columnLink.s_col3 li:nth-child(n+4) {
		margin-top: 20px;
	}
}
.m_columnLink a {
	position: relative;
	display: flex;
	align-items: center;
	background-color: #f3f4f4;
	height: 135px;
	font-size: 2rem;
	font-weight: bold;
	line-height: 1.3;
}
.m_columnLink a:hover {
	box-shadow: 0 10px 35px rgba(68,75,82,0.3);
}
.m_columnLink a::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 20px;
	width: 10px;
	height: 10px;
	border-top: 2px solid #008d61;
	border-right: 2px solid #008d61;
	transform-origin: right top;
	transform: rotate(45deg);
}
.m_columnLink a.s_blank {
	background: url(../img/icon_blank.png) no-repeat right 20px top 50% #f3f4f4;
	background-size: 18px 14px;
}
.m_columnLink a.s_blank::after {
	display: none;
}
.m_columnLink a > img {
	width: 156px;
	height: 135px;
}
.m_columnLink a > span {
	padding: 10px 45px 10px 30px;
}
.m_columnLink a > img + span {
	max-width: 284px;
}
@media screen and (max-width: 767px){
	.m_columnLink {
		display: block;
	}
	.m_columnLink li {
		width: auto;
	}
	.m_columnLink li:nth-child(n+2) {
		margin-top: 10px;
	}
	.m_columnLink a {
		height: 88px;
		font-size: 2.1rem;
	}
	.m_columnLink a > img {
		width: 102px;
		height: 88px;
	}
	.m_columnLink a > span {
		padding: 10px 45px 10px 20px;
	}
}

.m_blockLinkList {
	margin: 40px auto 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.m_blockLinkList li {
	margin-bottom: 40px;
}
.m_blockLinkList.s_col2 li {
	width: 47.72%;
}
.m_blockLinkList.s_col3 li {
	width: 30.37%;
}
.m_blockLinkList.s_col3 li.s_colspan {
	width: 65.11%;
}
.m_blockLinkList.s_col4 li {
	width: 22.53%;
}
.m_blockLinkList.s_col4 li.s_colspan {
	width: 48.35%;
}
.m_blockLinkList a {
	height: 100%;
}
@media screen and (max-width: 850px){
	.m_blockLinkList.s_col4 {
		max-width: 600px;
	}
	.m_blockLinkList.s_col4 li {
		width: 47.72%;
	}
	.m_blockLinkList.s_col4 li.s_colspan {
		width: 100%;
	}
}
@media screen and (max-width: 767px){
	.m_blockLinkList {
		margin: 30px auto;
		display: block;
	}
	.m_blockLinkList li {
		margin: 0 auto 30px;
		max-width: 500px;
		width: auto !important;
	}
}

.m_blockLink {
	position: relative;
	display: block;
	background-color: #dcf0e6;
	overflow: hidden;
}
.m_blockLink:hover {
	box-shadow: 0 10px 35px rgba(68,75,82,0.3);
}
.m_blockLink > img {
	width: 100%;
	height: auto;
}
.m_blockLink .p_textArea {
	padding: 20px 10% 25px;
}
.m_blockLink .p_textArea::after {
	content: "";
	position: absolute;
	right: 20px;
	bottom: 20px;
	width: 9px;
	height: 9px;
	border-right: 2px solid #008d61;
	border-bottom: 2px solid #008d61;
	transform: rotate(-45deg);
}
.m_blockLink .p_title {
	margin-bottom: 10px;
	font-size: 2.4rem;
	font-weight: bold;
	line-height: 1.17;
}
.m_blockLink.s_large > img {
	height: auto;
	min-height: 100%;
	width: auto;
	min-width: 100%;
	max-width: none;
}
.m_blockLink.s_large .p_textArea {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: -webkit-linear-gradient(25deg, rgba(0,0,0,0.45) 25%, rgba(0,0,0,0) 65%);
	background: linear-gradient(25deg, rgba(0,0,0,0.45) 25%, rgba(0,0,0,0) 65%);
	padding: 30px;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	color: #fff;
}
.m_blockLink.s_large .p_textArea::after {
	border-color: #fff;
}
@media screen and (max-width: 767px){
	.m_blockLink .p_textArea {
		padding: 12px 15px 20px;
	}
	.m_blockLink .p_textArea::after {
		bottom: 30px;
	}
	.m_blockLink .p_title {
		margin-bottom: 0;
		font-size: 2.1rem;
	}
	.m_blockLink p {
		display: none;
	}
	.m_blockLink > img {
	}
	.m_blockLink .p_textArea {
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		background: -webkit-linear-gradient(25deg, rgba(0,0,0,0.45) 25%, rgba(0,0,0,0) 65%);
		background: linear-gradient(25deg, rgba(0,0,0,0.45) 25%, rgba(0,0,0,0) 65%);
		padding: 20px 30px 22px 25px;
		display: flex;
		flex-direction: column;
		justify-content: flex-end;
		color: #fff;
	}
	.m_blockLink .p_textArea::after {
		border-color: #fff;
	}
	.m_blockLink.s_large > img {
		width: 100%;
		max-width: 100%;
	}
	.m_blockLink.s_large .p_textArea {
		padding: 20px 30px 22px 25px;
	}
}

.m_textBlockLink {
	position: relative;
	display: block;
	background-color: #dcf0e6;
	padding: 25px 35px 25px 30px;
}
.m_textBlockLink:hover {
	box-shadow: 0 5px 25px rgba(68,75,82,0.3);
}
.m_textBlockLink::after {
	content: "";
	position: absolute;
	right: 20px;
	bottom: 25px;
	width: 9px;
	height: 9px;
	border-right: 2px solid #008d61;
	border-bottom: 2px solid #008d61;
	transform: rotate(-45deg);
}
.m_textBlockLink.s_blank {
	background: url(../img/icon_blank.png) no-repeat right 20px bottom 20px #dcf0e6;
	background-size: 18px 14px;
}
.m_textBlockLink.s_blank::after {
	display: none;
}
.m_textBlockLink .p_title {
	margin-bottom: 10px;
	font-size: 2rem;
	font-weight: bold;
	line-height: 1.3;
}
@media screen and (max-width: 767px){
	.m_textBlockLink {
		padding: 20px 35px 20px 20px;
	}
	.m_textBlockLink .p_title {
		font-size: 1.8rem;
	}
}

.m_pager {
	margin: 40px 0;
	text-align: center;
}
.m_pager li {
	display: inline-block;
	vertical-align: top;
}
.m_pager a,
.m_pager span {
	position: relative;
	display: block;
	width: 25px;
	height: 23px;
	line-height: 23px;
}
.m_pager a:hover {
	background-color: #008d61;
	color: #fff;
}
.m_pager .p_prev {
	margin-right: 10px;
}
.m_pager .p_prev::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 8px;
	width: 9px;
	height: 9px;
	border-top: 2px solid #008d61;
	border-left: 2px solid #008d61;
	transform-origin: left top;
	transform: rotate(-45deg);
}
.m_pager .p_prev:hover::after {
	border-color: #fff;
}
.m_pager .p_next {
	margin-left: 10px;
}
.m_pager .p_next::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 8px;
	width: 9px;
	height: 9px;
	border-top: 2px solid #008d61;
	border-right: 2px solid #008d61;
	transform-origin: right top;
	transform: rotate(45deg);
}
.m_pager .p_next:hover::after {
	border-color: #fff;
}
.m_pager span.s_current {
	background-color: #dcf0e6;
}

/* title */

.m_imgHeading {
	margin: 30px 0 60px;
	display: table;
	width: 100%;
}
.m_imgHeading .p_textArea {
	display: table-cell;
	width: 51.7%;
	padding-right: 25px;
	vertical-align: middle;
	line-height: 1.2;
}
.m_imgHeading .p_title {
	font-size: 3.2rem;
	font-weight: bold;
	line-height: 1.19;
}
.m_imgHeading .p_lead {
	margin-top: 20px;
	font-size: 2.4rem;
	font-weight: bold;
	line-height: 1.17;
}
.m_imgHeading .p_lead:first-child {
	margin-top: 0;
}
.m_imgHeading .p_img {
	display: table-cell;
	width: 48.3%;
	text-align: center;
}
@media screen and (max-width: 767px){
	.m_imgHeading {
		margin: 60px 0 50px;
		display: block;
	}
	.m_imgHeading .p_textArea {
		display: block;
		width: auto;
		padding-right: 0;
		margin-bottom: 20px;
	}
	.m_imgHeading .p_title {
		font-size: 2.7rem;
	}
	.m_imgHeading .p_lead {
		font-size: 2.1rem;
	}
	.m_imgHeading .p_img {
		display: block;
		width: auto;
		margin: 0 -20px;
	}
}

.m_topTitle {
	position: relative;
	margin: 70px 0 40px;
}
.m_topTitle h2 {
	font-size: 3.2rem;
	font-weight: bold;
	color: #008d61;
	line-height: 1.19;
}
.m_topTitle .p_link {
	position: absolute;
	top: 6px;
	right: 0;
}
.m_topTitle .p_link .m_link {
	display: inline-block;
	margin-left: 40px;
}
@media screen and (max-width: 767px){
	.m_topTitle {
		margin: 50px 0 20px;
	}
	.m_topTitle h2 {
		font-size: 2.7rem;
	}
	.m_topTitle .p_link {
		position: static;
		text-align: right;
	}
}

.m_h2 {
	margin: 70px 0 20px;
	border-top: 1px solid #d5d6d9;
	padding: 12px 0;
	color: #008d61;
	font-size: 2.4rem;
	font-weight: bold;
	line-height: 1.17;
}
.m_h2 a:hover {
	opacity: 0.7;
}
.m_h2 a::after {
	content: "";
	display: inline-block;
	vertical-align: 4px;
	margin-left: 20px;
	width: 9px;
	height: 9px;
	border-top: 2px solid #008d61;
	border-right: 2px solid #008d61;
	transform: rotate(45deg);
}
.m_h3 {
	margin: 60px 0 20px;
	font-size: 2.4rem;
	font-weight: bold;
	line-height: 1.17;
}
.m_h4 {
	margin: 50px 0 15px;
	font-size: 2rem;
	line-height: 1.3;
}
.m_h5 {
	margin: 40px 0 15px;
	font-size: 2rem;
	line-height: 1.3;
}
.m_headingLabel {
	display: inline-block;
	margin: 20px 0 15px;
	background-color: #999ca3;
	padding: 3px 10px;
	min-width: 100px;
	text-align: center;
	color: #fff;
	font-size: 1.3rem;
}
@media screen and (max-width: 767px){
	.m_h2 {
		margin: 50px 0 10px;
		font-size: 2.1rem;
	}
	.m_h3 {
		margin: 45px 0 10px;
		font-size: 2.1rem;
	}
	.m_h4 {
		margin: 40px 0 10px;
		font-size: 1.8rem;
	}
	.m_h5 {
		margin: 35px 0 10px;
		font-size: 1.8rem;
	}
}

.m_imgTitle {
	margin: 15px 0 12px;
	font-size: 2rem;
	font-weight: bold;
	line-height: 1.3;
}
@media screen and (max-width: 767px){
	.m_imgTitle {
		margin: 12px 0 10px;
		font-size: 1.8rem;
	}
}

.m_boxTitle {
	background-color: #f3f4f4;
	padding: 9px 10px 8px;
	text-align: center;
	font-size: 2rem;
	font-weight: bold;
	line-height: 1.3;
}
@media screen and (max-width: 767px){
	.m_boxTitle {
		font-size: 1.8rem;
	}
}

/* text */

.m_text {
	margin: 15px 0;
}

.m_catch {
	margin: 15px 0 25px;
	font-size: 2.4rem;
	font-weight: bold;
}
@media screen and (max-width: 767px){
	.m_catch {
		margin: 15px 0 20px;
		font-size: 2.1rem;
	}
}

.m_heading {
	margin: 20px 0 5px;
	font-weight: bold;
}

.m_attention {
	color: #d8191c;
}

.m_smallText {
	font-size: 1.3rem;
}
@media screen and (max-width: 767px){
	.m_smallText {
		font-size: 1.1rem;
	}
}

/* list */

.m_discList {
	margin: 20px 0;
}
.m_discList > li {
	position: relative;
	padding-left: 1.2em;
}
.m_discList > li::before {
	content: "・";
	position: absolute;
	top: 0;
	left: 0;
}
.m_discList > li + li {
	margin-top: 15px;
}
.m_discList.s_marginS > li + li {
	margin-top: 5px;
}

.m_orderList {
	margin: 20px 0;
	padding-left: 1.5em;
}
.m_orderList > li {
	position: relative;
	list-style-type: decimal;
}
.m_orderList > li + li {
	margin-top: 15px;
}

.m_supList {
	margin: 15px 0;
}
.m_supList > li {
	position: relative;
	font-size: 1.3rem;
}
.m_supList > li + li {
	margin-top: 6px;
}
.m_supList > li > span {
	float: left;
	margin-right: 5px;
}
.m_supList > li > p {
	overflow: hidden;
}
@media screen and (max-width: 767px){
	.m_supList > li {
		font-size: 1.1rem;
	}
}

.m_newsList {
	margin: 30px 0;
}
.m_newsList > li {
	overflow: hidden;
}
.m_newsList > li + li {
	margin-top: 30px;
}
.m_newsList .p_date {
	float: left;
	margin-right: 40px;
	font-weight: bold;
}
.m_newsList .p_categ {
	float: left;
	width: 100px;
	margin-right: 4.3%;
	background-color: #999ca3;
	padding: 2px 10px;
	text-align: center;
	color: #fff;
	font-size: 1.3rem;
}
.m_newsList .p_text {
	overflow: hidden;
}
.m_newsList .p_text a:hover {
	opacity: 0.7;
}
@media screen and (max-width: 767px){
	.m_newsList > li + li {
		margin-top: 25px;
	}
	.m_newsList > li {
		position: relative;
		padding-bottom: 30px;
	}
	.m_newsList .p_date {
		float: none;
		margin-bottom: 5px;
	}
	.m_newsList .p_categ {
		position: absolute;
		left: 0;
		bottom: 0;
		width: 90px;
		padding: 2px 5px;
		font-size: 1.1rem;
	}
}

.m_dataList {
	margin: 40px 0;
}
.m_dataList tr:nth-child(odd) {
	background-color: #f3f4f4;
}
.m_dataList th {
	padding: 35px 15px 35px 30px;
	font-size: 2rem;
	font-weight: bold;
	line-height: 1.3;
}
.m_dataList th small {
	display: block;
	margin-top: 10px;
	font-size: 1.6rem;
	font-weight: normal;
}
.m_dataList td {
	padding: 35px 15px;
}
@media screen and (max-width: 767px){
	.m_dataList {
		margin: 30px 0;
	}
	.m_dataList col {
		display: none;
	}
	.m_dataList th {
		display: block;
		width: auto;
		padding: 25px 20px 10px;
		font-size: 1.8rem;
	}
	.m_dataList th small {
		font-size: 1.4rem;
	}
	.m_dataList td {
		display: block;
		width: auto;
		padding: 5px 20px;
	}
	.m_dataList td:last-child {
		padding-bottom: 25px;
	}
}

.m_discriptionList {
	margin: 40px 0;
}
.m_discriptionList > li {
	display: table;
	margin-bottom: 2px;
}
.m_discriptionList .p_head {
	display: table-cell;
	vertical-align: middle;
	background-color: #dcf0e6;
	padding: 15px 20px;
	width: 32.5%;
}
.m_discriptionList .p_title {
	font-size: 2rem;
	line-height: 1.3;
}
.m_discriptionList .p_title + * {
	margin-top: 8px;
}
.m_discriptionList .p_body {
	display: table-cell;
	padding: 15px 20px;
}
@media screen and (max-width: 767px){
	.m_discriptionList {
		margin: 30px 0;
	}
	.m_discriptionList > li {
		display: block;
		margin-bottom: 20px;
	}
	.m_discriptionList .p_head {
		display: block;
		padding: 10px 20px;
		width: auto;
	}
	.m_discriptionList .p_title {
		font-size: 1.8rem;
	}
	.m_discriptionList .p_body {
		display: block;
		padding: 15px 0;
	}
}

.m_contactList {
	margin: 15px 0;
}
.m_contactList li {
	display: table-row;
}
.m_contactList .p_label {
	display: table-cell;
	padding: 2px 12px 2px 0;
	opacity: 0.65;
}
.m_contactList .p_data {
	display: table-cell;
	padding: 2px 0;
}

/* table */

.m_table {
	margin: 30px 0;
	width: 100%;
}
.m_table tr {
	border-top: 2px solid #fff;
}
.m_table th,
.m_table td {
	padding: 10px 18px;
}
.m_table th {
	background-color: #eeeff0;
	border-right: 1px solid #fff;
}
.m_table thead th {
	background-color: #dcf0e6;
	text-align: center;
}
.m_table td {
	border-right: 1px solid #eeeff0;
}
.m_table td:last-child {
	border-right: none !important;
}
.m_table.s_stripe tr:nth-child(even) th:last-of-type {
	background-color: #e4e4e4;
}
.m_table.s_stripe tr:nth-child(even) td {
	border-right: 1px solid #fff;
	background-color: #eeeff0;
}
.m_table.s_line {
	border-collapse: separate;
}
.m_table.s_line th {
	border-bottom: 1px solid #fff;
}
.m_table.s_line td {
	border-bottom: 1px solid #eeeff0;
}
.m_nolineTable {
	margin: 15px 0;
	width: auto;
}
.m_nolineTable th,
.m_nolineTable td {
	padding: 5px 20px 5px 0;
}
@media screen and (max-width: 1000px){
	.m_table th,
	.m_table td {
		padding: 6px 10px;
	}
}

.m_scrollArea {
	margin: 30px -20px;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
}
.m_scrollArea .p_scrollInner {
	min-width: 752px;
	padding: 0 20px;
}

/* img */

.m_cation { /* つづり間違い */
	margin-top: 5px;
	font-size: 1.3rem;
}
@media screen and (max-width: 767px){
	.m_cation {
		font-size: 1.1rem;
	}
}
.m_caption {
	margin-top: 5px;
	font-size: 1.3rem;
}
@media screen and (max-width: 767px){
	.m_caption {
		font-size: 1.1rem;
	}
}

.m_imgList {
	margin: 30px -10px 10px;
	display: flex;
	justify-content: center;
}
.m_imgList.s_alignL {
	justify-content: flex-start;
}
.m_imgList.s_wrap {
	flex-wrap: wrap;
}
.m_imgList li {
	margin: 0 10px 20px;
}
.m_imgList.s_marginL li {
	margin: 0 20px 20px;
}
@media screen and (max-width: 767px){
	.m_imgList.s_spCol2 {
		flex-wrap: wrap;
		justify-content: flex-start;
	}
	.m_imgList.s_spCol2 li {
		width: 46%;
		margin: 0 2% 20px;
	}
}

.m_zoomImg {
	position: relative;
	display: inline-block;
	cursor: pointer;
}
.m_zoomImg::after {
	content: "";
	position: absolute;
	right: 0;
	bottom: 0;
	width: 36px;
	height: 36px;
	background: url(../img/icon_zoom.png) no-repeat 50% 50% #008d61;
	background-size: 15px 15px;
}

.m_movie {
	max-width: 560px;
	margin: 30px auto;
}
.m_movie .p_inner {
	position: relative;
	padding-top: 56.25%;
}
.m_movie .p_inner iframe {
	position: absolute;
	top: 0;
	left: 0;
	border: none;
	width: 100%;
	height: 100%;
}

.m_mapion {
	margin: 15px 0;
	width: 100%;
	height: 370px;
}

.m_mainvisual {
	margin-bottom: 40px;
	overflow: hidden;
}
.m_mainvisual .p_inner {
	position: relative;
	width: 1243px;
	max-width: 90%;
	margin: 0 auto;
}
.m_mainvisual .p_visual {
	position: relative;
	left: -100%;
	white-space: nowrap;
	display: flex;
}
.m_mainvisual .p_visual li {
	position: relative;
	top: 0;
	flex-shrink: 0;
	width: 100%;
}
.m_mainvisual .p_visual.s_anime li {
	transition: all 0.8s;
}
.m_mainvisual .p_visual li:not(.s_current) {
	opacity: 0.3;
}
.m_mainvisual .p_visual img {
	width: 100%;
}
.m_mainvisual .p_leftBtn,
.m_mainvisual .p_rightBtn {
	position: absolute;
	top: 0;
	left: -100%;
	bottom: 0;
	width: 100%;
	cursor: pointer;
}
.m_mainvisual .p_rightBtn {
	left: auto;
	right: -100%;
}
.m_mainvisual .p_leftBtn::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 3%;
	width: 18px;
	height: 18px;
	border-top: 2px solid #008d61;
	border-right: 2px solid #008d61;
	-webkit-transform-origin: right top;
	transform-origin: right top;
	-webkit-transform: rotate(-135deg);
	transform: rotate(-135deg);
}
.m_mainvisual .p_rightBtn::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 3%;
	width: 18px;
	height: 18px;
	border-top: 2px solid #008d61;
	border-left: 2px solid #008d61;
	-webkit-transform-origin: left top;
	transform-origin: left top;
	-webkit-transform: rotate(135deg);
	transform: rotate(135deg);
}
.m_mainvisual .p_curMark {
	position: absolute;
	right: 15px;
	bottom: 20px;
	text-align: center;
}
.m_mainvisual .p_curMark li {
	display: inline-block;
	vertical-align: bottom;
	width: 10px;
	height: 10px;
	background-color: #fff;
	border: 1px solid #008d61;
	border-radius: 50%;
	margin: 0 5px;
}
.m_mainvisual .p_curMark li.s_current {
	background-color: #008d61;
}
.m_mainvisual.s_noSlide .p_inner {
	max-width: 100%;
}
.m_mainvisual.s_noSlide .p_leftBtn,
.m_mainvisual.s_noSlide .p_rightBtn,
.m_mainvisual.s_noSlide .p_curMark {
	display: none;
}
@media screen and (max-width: 767px){
	.m_mainvisual .p_inner {
		max-width: 100%;
	}
	.m_mainvisual .p_visual.s_anime li {
	transition: all 0.8s;
	}
	.m_mainvisual .p_visual li:not(.s_current) {
		opacity: 1;
	}
	.m_mainvisual .p_leftBtn,
	.m_mainvisual .p_rightBtn {
		left: 0;
		bottom: 9.5%;
		width: 34px;
		height: 100px;
		margin: auto 0;
		background-color: rgba(255,255,255,0.5);
	}
	.m_mainvisual .p_rightBtn {
		left: auto;
		right: 0;
	}
	.m_mainvisual .p_leftBtn::after {
		right: 22px;
		width: 10px;
		height: 10px;
	}
	.m_mainvisual .p_rightBtn::after {
		left: 22px;
		width: 10px;
		height: 10px;
	}
	.m_mainvisual .p_curMark {
		position: static;
		padding: 5px 15px;
		text-align: right;
	}
}

/* form */

.m_stepList {
	margin: 30px 0 60px;
	overflow: hidden;
}
.m_stepList ul {
	display: flex;
	margin: 0 -15px;
}
.m_stepList li {
	position: relative;
	width: 33.33%;
	padding: 10px 40px;
	height: 74px;
	display: flex;
	align-items: center;
}
.m_stepList li::before,
.m_stepList li::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	border-right: 3px solid #fff;
	background-color: #f3f4f4;
}
.m_stepList li::before {
	top: 0;
	bottom: 50%;
	transform: skewX(30deg);
}
.m_stepList li::after {
	top: 50%;
	bottom: 0;
	transform: skewX(-30deg);
}
.m_stepList li.s_current::before,
.m_stepList li.s_current::after {
	background-color: #dcf0e6;
}
.m_stepList li > span {
	position: relative;
	z-index: 10;
	font-size: 2rem;
	font-weight: bold;
	line-height: 1.3;
}
@media screen and (max-width: 767px){
	.m_stepList {
		margin: 20px 0;
	}
	.m_stepList ul {
		display: block;
		margin: 0;
	}
	.m_stepList li {
		width: auto;
		padding: 10px;
		height: auto;
		min-height: 55px;
		background-color: #f3f4f4;
		justify-content: center;
	}
	.m_stepList li.s_current {
		background-color: #dcf0e6;
	}
	.m_stepList li + li {
		border-top: 2px solid #fff;
	}
	.m_stepList li::before,
	.m_stepList li::after {
		border-right: none;
		border-bottom: 3px solid #fff;
		width: 7px;
		height: 14px;
	}
	.m_stepList li::before {
		top: -9px;
		left: auto;
		right: 50%;
		bottom: auto;
		transform: skewY(45deg);
	}
	.m_stepList li::after {
		top: -9px;
		left: 50%;
		right: auto;
		bottom: auto;
		transform: skewY(-45deg);
	}
	.m_stepList li:first-child::before,
	.m_stepList li:first-child::after {
		display: none;
	}
	.m_stepList li.s_current::before,
	.m_stepList li.s_current::after {
		background-color: #f3f4f4;
	}
	.m_stepList li.s_current + li::before,
	.m_stepList li.s_current + li::after {
		background-color: #dcf0e6;
	}
	.m_stepList li > span {
		font-size: 1.8rem;
	}
}

.m_btn {
	display: inline-block;
	background-color: #fff;
	border: 1px solid #008d61;
	padding: 8px 15px;
	width: 220px;
	max-width: 100%;
	color: #008d61;
	text-align: left;
	cursor: pointer;
	transition: all 0.5s;
}
.m_btn:hover {
	background-color: #008d61;
	color: #fff;
	box-shadow: 0 10px 35px rgba(68,75,82,0.3);
}
.m_btn:disabled {
	border: none;
	background-color: #f3f4f4;
	color: rgba(68,75,82,0.5);
	cursor: default;
}
.m_btn:disabled:hover {
	box-shadow: none;
}

.m_radioList > li {
	display: inline-block;
	margin-right: 40px;
}
.m_radioList > li:last-child {
	margin-right: 0;
}

.m_radio input {
	display: none;
}
.m_radio input + span {
	position: relative;
	display: inline-block;
	padding: 5px 0 5px 28px;
	cursor: pointer;
}
.m_radio input + span::before {
	content: "";
	position: absolute;
	top: 9px;
	left: 0;
	width: 18px;
	height: 18px;
	border: 2px solid #d4d5d9;
	border-radius: 50%;
	background-color: #fff;
}
.m_radio input:checked + span::before {
	border-color: #008d61;
}
.m_radio input:checked + span::after {
	content: "";
	position: absolute;
	top: 14px;
	left: 5px;
	border-radius: 50%;
	background-color: #008d61;
	width: 8px;
	height: 8px;
}
@media screen and (max-width: 767px){
	.m_radio input + span::before {
		top: 6px;
	}
	.m_radio input:checked + span::after {
		top: 11px;
	}
}

.m_checkboxList > li {
	display: inline-block;
	margin-right: 40px;
}
.m_checkboxList > li:last-child {
	margin-right: 0;
}

.m_checkbox input {
	display: none;
}
.m_checkbox input + span {
	position: relative;
	display: inline-block;
	padding: 5px 0 5px 28px;
	cursor: pointer;
}
.m_checkbox input + span::before {
	content: "";
	position: absolute;
	top: 9px;
	left: 0;
	width: 17px;
	height: 17px;
	border: 2px solid #d4d5d9;
}
.m_checkbox input:checked + span::before {
	background-color: #008d61;
	border: none;
}
.m_checkbox input:checked + span::after {
	content: "";
	position: absolute;
	top: 11px;
	left: 5px;
	width: 7px;
	height: 10px;
	border-right: 2px solid #fff;
	border-bottom: 2px solid #fff;
	transform: rotate(45deg);
}
@media screen and (max-width: 767px){
	.m_checkbox input + span::before {
		top: 6px;
	}
	.m_checkbox input:checked + span::after {
		top: 8px;
	}
}

.m_textbox {
	margin: 5px 0;
	border: 1px solid #d5d6d9;
	padding: 8px 15px;
	height: 43px;
	width: 100%;
}

.m_textarea {
	margin: 10px 0;
	display: block;
	border: 1px solid #d5d6d9;
	padding: 10px 15px;
	height: 175px;
	width: 100%;
}

.m_selectbox {
	border: 1px solid #d5d6d9;
	border-radius: 0;
	background: url(../img/mrk_selectbox.png) no-repeat right 18px top 50%;
	padding: 8px 40px 8px 15px;
	width: 280px;
}

.m_submit {
	margin: 60px auto;
	display: block;
	border: none;
	background-color: #008d61;
	padding: 18px 15px;
	width: 280px;
	text-align: center;
	color: #fff;
	font-size: 2rem;
	font-weight: bold;
	line-height: 1.3;
	cursor: pointer;
	transition: all 0.5s;
}
.m_submit:hover {
	box-shadow: 0 10px 35px rgba(68,75,82,0.3);
}
.m_submit:disabled {
	background-color: #f3f4f4;
	color: rgba(68,75,82,0.5);
	cursor: default;
}
.m_submit:disabled:hover {
	box-shadow: none;
}
.m_submit.s_back {
	background-color: #444b52;
}
@media screen and (max-width: 767px){
	.m_submit {
		margin: 40px auto;
		font-size: 1.8rem;
	}
}

.m_formBtnArea {
	margin: 60px auto;
	text-align: center;
}
.m_formBtnArea .m_submit {
	display: inline-block;
	margin: 0 15px;
}
@media screen and (max-width: 767px){
	.m_formBtnArea {
		margin: 40px auto;
	}
	.m_formBtnArea .m_submit {
		margin: 10px;
	}
}

.m_required {
	display: inline-block;
	margin: 0 5px;
	background: #d8191c;
	padding: 3px 10px;
	color: #fff;
	font-size: 1.3rem;
}
@media screen and (max-width: 767px){
	.m_required {
		font-size: 1.1rem;
	}
}

.m_formList {
	margin: 40px 0;
}
.m_formList > li {
	display: table;
	width: 100%;
}
.m_formList > li + li {
	margin-top: 30px;
}
.m_formList .p_label {
	position: relative;
	display: table-cell;
	vertical-align: top;
	width: 30.37%;
	padding: 10px 60px 0 0;
	text-align: right;
	font-weight: bold;
}
.m_formList .p_label .m_required {
	position: absolute;
	top: 9px;
	right: 0;
	font-weight: normal;
}
.m_formList .p_input {
	display: table-cell;
	padding-left: 4.3%;
}
.m_formList.s_kakunin .p_input {
	padding-top: 10px;
}
.m_formList .p_input .m_radioList:first-child,
.m_formList .p_input .m_checkboxList:first-child {
	margin-top: 5px;
}
.m_formList .p_error {
	margin-top: 5px;
	color: #d8191c;
	font-size: 1.3rem;
}
@media screen and (max-width: 767px){
	.m_formList {
		margin: 30px 0;
	}
	.m_formList > li {
		display: block;
	}
	.m_formList > li + li {
		margin-top: 35px;
	}
	.m_formList .p_label {
		display: block;
		margin-bottom: 15px;
		width: auto;
		padding: 0;
		text-align: left;
	}
	.m_formList .p_label .m_required {
		position: static;
		margin-left: 18px;
	}
	.m_formList .p_input {
		display: block;
		padding-left: 0;
	}
	.m_formList .p_input .m_radioList:first-child,
	.m_formList .p_input .m_checkboxList:first-child {
		margin-top: 0;
	}
	.m_formList .p_error {
		font-size: 1.1rem;
	}
}

/* layout */

.m_colLayout {
	margin: 20px auto;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.m_colLayout.s_alignCenter {
	align-items: center;
}
.m_colLayout > .p_col {
	margin-bottom: 20px;
}
.m_colLayout.s_col2 > .p_col {
	width: 47.72%;
}
.m_colLayout.s_col3 > .p_col {
	width: 30.37%;
}
.m_colLayout.s_col3 > .p_col.s_colspan {
	width: 65.19%;
}
.m_colLayout.s_col4 > .p_col {
	width: 21.69%;
}
.m_colLayout.s_spCol2 > .p_col {
	margin-bottom: 0;
}
@media screen and (min-width: 768px){
	.m_colLayout.s_pcMb0 {
		margin-bottom: 0;
	}
	.m_colLayout.s_pcMb0 > .p_col {
		margin-bottom: 0;
	}
}
@media screen and (max-width: 767px){
	.m_colLayout.s_spMarginL > .p_col {
		margin-bottom: 50px;
	}
	.m_colLayout.s_col2:not(.s_spCol2) {
		display: block;
		max-width: 500px;
	}
	.m_colLayout.s_col3 {
		display: block;
		max-width: 400px;
	}
	.m_colLayout.s_col4 {
		flex-wrap: wrap;
	}
	.m_colLayout.s_col2:not(.s_spCol2) > .p_col {
		width: auto;
	}
	.m_colLayout.s_col3 > .p_col {
		width: auto;
	}
	.m_colLayout.s_col4 > .p_col {
		width: 48%;
	}
}

.m_imgLayout {
	margin: 30px 0;
	overflow: hidden;
}
.m_imgLayout .p_img {
	float: right;
	margin: 0 0 20px 20px;
}
.m_imgLayout .p_img.s_left {
	float: left;
	margin: 0 20px 20px 0;
}
.m_imgLayout .p_img img {
	width: 100%;
}
.m_imgLayout .p_img.s_w20p { width: 20%; }
.m_imgLayout .p_img.s_w25p { width: 25%; }
.m_imgLayout .p_img.s_w30p { width: 30%; }
.m_imgLayout .p_img.s_w35p { width: 35%; }
.m_imgLayout .p_img.s_w40p { width: 40%; }
.m_imgLayout .p_img.s_w45p { width: 45%; }
.m_imgLayout .p_img.s_w50p { width: 50%; }

.m_imgLayout .p_textArea {
	padding-right: 20px;
}
@media screen and (max-width: 767px){
	.m_imgLayout {
		text-align: center;
	}
	.m_imgLayout .p_img,
	.m_imgLayout .p_img.s_left {
		float: none;
		display: inline-block;
		width: auto !important;
		max-width: 400px;
		margin: 0 0 20px;
		text-align: left;
	}
	.m_imgLayout .p_textArea {
		padding-right: 0;
		text-align: left;
	}
	.m_imgLayout.s_reverse {
		display: flex;
		flex-direction: column-reverse;
	}
	.m_imgLayout.s_reverse .p_img {
		margin: 20px auto 0;
	}
}

.m_horizonLayout {
	margin: 20px 0;
	display: flex;
	align-items: center;
}
.m_horizonLayout > .p_item {
	margin-top: 0;
	margin-bottom: 0;
}
.m_horizonLayout > .p_item.s_noShrink {
	flex-shrink: 0;
}
.m_horizonLayout > .p_item.s_grow {
	flex-grow: 1;
}
.m_horizonLayout > .p_item + .p_item {
	margin-left: 20px;
}
@media screen and (max-width: 767px){
	.m_horizonLayout.s_breakSp {
		display: block;
	}
	.m_horizonLayout > .p_item + .p_item {
		margin-left: 10px;
	}
	.m_horizonLayout.s_breakSp > .p_item + .p_item {
		margin-left: 0;
		margin-top: 15px;
	}
}

/* box */

.m_borderBox {
	margin: 30px 0;
	border: 1px solid #444b52;
	padding: 25px 30px;
}
@media screen and (max-width: 767px){
	.m_borderBox {
		padding: 15px;
	}
}

.m_bgBox {
	margin: 30px 0;
	background-color: #eeeff0;
	padding: 25px 30px;
}
.m_bgBox.s_green {
	background-color: #dcf0e6;
}
.m_bgBox .p_colTitle {
	float: left;
	margin: 4px 40px 0 0;
	font-size: 2rem;
	font-weight: bold;
	line-height: 1.3;
}
.m_bgBox .p_colContent {
	overflow: hidden;
}
@media screen and (max-width: 767px){
	.m_bgBox {
		padding: 20px;
	}
	.m_bgBox .p_colTitle {
		float: none;
		margin: 0 0 10px;
		font-size: 1.8rem;
	}
}

.m_messageBox {
	margin: 40px 0;
	border: 1px solid #008d61;
	padding: 18px 30px;
	text-align: center;
}
.m_messageBox .p_subArea {
	margin-top: 15px;
	border-top: 1px solid #d5d6d9;
	padding-top: 15px;
}
@media screen and (max-width: 767px){
	.m_messageBox {
		padding: 15px 20px;
	}
}

.m_col2Box {
	margin: 40px 0;
	display: flex;
	flex-wrap: wrap;
}
.m_col2Box > li {
	width: 50%;
	padding: 35px 30px;
}
.m_col2Box > li:nth-child(4n+1),
.m_col2Box > li:nth-child(4n) {
	background-color: #f3f4f4;
}
.m_col2Box .p_title {
	margin-bottom: 15px;
	font-size: 2rem;
	font-weight: bold;
	line-height: 1.3;
}
@media screen and (max-width: 767px){
	.m_col2Box {
		margin: 30px 0;
		display: block;
	}
	.m_col2Box > li {
		width: auto;
		padding: 25px 20px;
	}
	.m_col2Box > li:nth-child(odd) {
		background-color: #f3f4f4;
	}
	.m_col2Box > li:nth-child(even) {
		background-color: #fff;
	}
	.m_col2Box .p_title {
		font-size: 1.8rem;
	}
}

/* other */

.m_tel {
	margin: 15px 0;
}
.m_tel .p_number {
	margin-bottom: 10px;
	background: url(../img/icon_freedial.png) no-repeat 0 50%;
	padding-left: 66px;
	font-size: 4rem;
	font-weight: bold;
	line-height: 1.1;
}
.m_tel.s_hasRuby .p_number {
	padding-top: 12px;
	background-position: 0 76%;
}
.m_tel .p_number .p_ruby {
	position: relative;
}
.m_tel .p_number .p_ruby span {
	position: absolute;
	top: -12px;
	left: 50%;
	transform: translateX(-50%);
	font-size: 1.4rem;
	white-space: nowrap;
}
@media screen and (max-width: 767px){
	.m_tel .p_number {
		background-size: 48px auto;
		padding-left: 60px;
		font-size: 3.4rem;
	}
	.m_tel.s_hasRuby .p_number {
		padding-top: 10px;
	}
	.m_tel .p_number .p_ruby span {
		top: -10px;
		font-size: 1.2rem;
	}
}

.m_tabContents {
	margin: 40px 0;
}
.m_tabContents .p_tab {
	display: flex;
	margin-bottom: 40px;
}
.m_tabContents .p_tab li + li {
	border-left: 1px solid #fff;
}
.m_tabContents .p_tab.s_col6 li {
	width: 16.66%;
}
.m_tabContents .p_tab.s_col5 li {
	width: 20%;
}
.m_tabContents .p_tab.s_col4 li {
	width: 25%;
}
.m_tabContents .p_tab.s_col3 li {
	width: 33.33%;
}
.m_tabContents .p_tab.s_col2 li {
	width: 50%;
}
.m_tabContents .p_tab a {
	position: relative;
	display: block;
	background-color: #dcf0e6;
	padding: 9px 5px;
	height: 100%;
	text-align: center;
}
.m_tabContents .p_tab a:hover,
.m_tabContents .p_tab li.s_current a {
	background-color: #008d61;
	color: #fff;
}
.m_tabContents .p_tab li.s_current a::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: -6px;
	z-index: 10;
	width: 0;
	margin: 0 auto;
	border-top: 6px solid #008d61;
	border-left: 4px solid transparent;
	border-right: 4px solid transparent;
}
.m_tabContents .p_content {
	display: none;
}
@media screen and (min-width: 768px){
	.m_tabContents .p_tab li {
		display: block !important;
	}
}
@media screen and (max-width: 767px){
	.m_tabContents .p_tab {
		display: block;
	}
	.m_tabContents .p_tab li {
		height: 0;
		overflow: hidden;
		transition: height 0.5s;
	}
	.m_tabContents .p_tab.s_open li,
	.m_tabContents .p_tab li.s_current {
		height: 43px;
	}
	.m_tabContents .p_tab li.s_current {
		overflow: visible;
	}
	.m_tabContents .p_tab li + li {
		border-left: none;
		border-top: 1px solid #fff;
	}
	.m_tabContents .p_tab.s_col6 li,
	.m_tabContents .p_tab.s_col5 li,
	.m_tabContents .p_tab.s_col4 li,
	.m_tabContents .p_tab.s_col3 li,
	.m_tabContents .p_tab.s_col2 li {
		width: auto;
	}
	.m_tabContents .p_tab a {
		padding: 10px 5px;
		height: 43px;
	}
	.m_tabContents .p_tab.s_open a::after {
		display: none;
	}
}

.m_modal {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 3000;
	background-color: rgba(255,255,255,0.7);
	display: none;
	align-items: center;
	justify-content: center;
	transition: opacity 0.3s;
	opacity: 0;
}
.m_modal .p_window {
	position: relative;
	border-top: 2px solid #008d61;
	background-color: #fff;
	box-shadow: 0 10px 35px rgba(68,75,82,0.3);
	width: 95%;
	max-width: 720px;
}
.m_modal .p_window.s_img {
	width: auto;
	max-width: 95%;
}
.m_modal .p_window.s_img img {
	max-height: 90vh;
}
.m_modal .p_closeBtn {
	position: absolute;
	top: 0;
	right: 0;
	z-index: 5000;
	width: 60px;
	height: 60px;
	cursor: pointer;
}
.m_modal .p_closeBtn::before,
.m_modal .p_closeBtn::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 30px;
	height: 0;
	margin: auto;
	border-top: 2px solid #008d61;
	transform: rotate(45deg);
}
.m_modal .p_closeBtn::after {
	transform: rotate(-45deg);
}
.m_modal .p_scrollArea {
	padding: 55px 60px;
	max-height: 90vh;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
}
.m_modal .p_scrollArea > *:first-child {
	margin-right: 30px;
}
@media screen and (max-width: 767px){
	.m_modal .p_scrollArea {
		padding: 30px 20px;
	}
}

/* ホームページ離脱アラート
----------------------------------------- */

#disclaimerBox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 15px;
  background-color: rgba(0, 0, 0, .3);
  z-index: 9999;
}
.disclaimerBox-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.disclaimerBox-content {
  max-width: 750px;
  background: #fff;
  box-shadow: 0 0 2px rgba(0, 0, 0, .3);
}
.disclaimerBox-content-header {
  padding: 15px 20px;
  background-color: #4a9e5c;
}
.disclaimerBox-content-header > p {
  font-size: 141%;
  color: #fff;
}
.disclaimerBox-content-main {
  padding: 30px;
}
.disclaimerBox-content-main > p {
  color: #222;
}
.disclaimerBox-content-main .confirmBtn {
  padding-top: 5px;
  text-align: center;
}
.disclaimerBox-content-main .confirmBtn > li {
  display: inline-block;
  width: 160px;
  margin: 15px 15px 0;
}
.disclaimerBox-content-main .confirmBtn a {
  display: block;
  padding: 8px;
  border-radius: 5px;
  color: #fff;
  font-size: 141%;
  line-height: 1.1;
}
.disclaimerBox-content-main .confirmBtn a:hover {
  opacity: .7;
}
.disclaimerBox-content-main .confirmBtn a.isYes {
  background-color: #499c5a;
  background-image: linear-gradient(#6cb77e, #499c5a);
}
.disclaimerBox-content-main .confirmBtn a.isNo {
  background-color: #878787;
  background-image: linear-gradient(#a7a7a7, #878787);
}

/* マージンキャンセル
----------------------------------------- */

*:first-child {
	margin-top: 0;
}
*:last-child {
	margin-bottom: 0;
}

/* 印刷対応
----------------------------------------- */

@media print {
	body {
		min-width: 1050px;
	}
}
