@charset "utf-8";
/* -----------------------------------------
＜class名ルール＞
このファイルで使用するclassには以下の接頭語を付加する。
（他のcssファイルでは不要）
・汎用クラス：「.c_xxx」（common）
・フレーム：「.f_xxx」（frame）
・モジュール：「.m_xxx」（module）
・モジュール内のパーツ：「.p_xxx」（parts）
・モジュールの状態：「.s_xxx」（state）
※JSのみで使用：「.js_xxx」
----------------------------------------- */


/* reset
----------------------------------------- */

html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,
a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,
small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,
fieldset,form,label,legend,input,textarea,table,caption,tbody,tfoot,thead,tr,th,td,
article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,
menu,nav,output,ruby,section,summary,time,mark,audio,video {
	margin: 0px;
	padding: 0px;
}

h1,h2,h3,h4,h5,h6,th,input,textarea,select {
	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%;
	width: auto;
	height: auto;
}

input[type=text],
input[type=password],
input[type=button],
input[type=submit],
button,
select,
textarea {
	color: inherit;
	font-family: inherit;
	-webkit-appearance: none;
	-moz-appearance: none;
}

input::-webkit-input-placeholder {
    color: #aaa;
}
input:-ms-input-placeholder {
    color: #aaa;
}
input::-moz-placeholder {
	color: #aaa;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
	border: 0;
}
figcaption{
	margin-top: 5px;
	font-size: 1.2rem;/*12px*/
}
#sp_css figcaption{
	text-align: center;
	font-size: 1.2rem;/*12px*/
}

/* default
----------------------------------------- */

html {
	overflow-y: scroll;
	font-size: 62.5%; /*10px*/
}
/*
@media screen and (max-width: 1000px) {
		html.s_fixed {
			position: fixed;
		}
}
*/
@media screen and (max-width: 1000px) {
	html.s_ofHidden,
	body.s_ofHidden {
		overflow: hidden;
	}
}

body {
	font-family:  "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ",Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: 1.6rem; /*16px*/
	color: #333;
	line-height: 1.5;
	letter-spacing: 0.075em;
	-webkit-text-size-adjust: 100%;
	margin: 0 auto;
	-webkit-print-color-adjust: exact; /*背景印刷*/
	position: relative;
}
@media screen and (max-width: 768px) {
	body {
		font-size: 1.4rem;
	}
}

a {
	transition: 0.2s;
	color: #333;
	text-decoration: underline;
}
a:hover {
	position: relative;
	z-index: 2;
	text-decoration: none;
}
a img {
	transition: .2s;
}
a:hover img {
	opacity: 0.7;
}

ul:not(.m_boxArea):not(.m_bnrList):not(.m_globalNav):not(.p_linkList):not(.level01):not(.level02):not(.level03):not(.p_list):not(.m_catList) {
	margin: 30px 0;
}
ul:not(.m_boxArea):not(.m_bnrList):not(.m_globalNav):not(.p_linkList):not(.level01):not(.level02):not(.level03):not(.p_list):not(.m_catList) > li {
	padding-left: 25px;
	position: relative;
}
ul:not(.m_boxArea):not(.m_bnrList):not(.m_globalNav):not(.p_linkList):not(.level01):not(.level02):not(.level03):not(.p_list):not(.m_catList) > li:before {
	position: absolute;
	content: "";
	width: 15px;
	height: 15px;
	background: #5dc1c5;
	left: 0;
	top: 5px;
	border-radius: 10em;
}
@media screen and (max-width: 768px) {
	ul:not(.m_boxArea):not(.m_bnrList):not(.m_globalNav):not(.p_linkList):not(.level01):not(.level02):not(.level03):not(.p_list):not(.m_catList) > li {
		padding-left: 20px;
	}
	ul:not(.m_boxArea):not(.m_bnrList):not(.m_globalNav):not(.p_linkList):not(.level01):not(.level02):not(.level03):not(.p_list):not(.m_catList) > li:before {
		width: 12px;
		height: 12px;
	}
}
ol {
	margin: 30px 0;
}

ol {
	counter-reset: num;
}
ol li {
	position: relative;
	padding-left: 25px;
}
ol li:before {
	counter-increment: num;
	position: absolute;
	content: counter(num) ".";
	left: 0;
	top: 0;
}
@media screen and (max-width: 768px) {
	ol li {
		padding-left: 20px;
	}
}

h1 {
	color: #fff;
	font-size: 2.6rem;
	font-weight: bold;
}
@media screen and (max-width: 768px) {
	h1 {
		font-size: 1.9rem;
	}
}

h2 {
	font-size: 2.2rem;
	font-weight: bold;
	margin: 30px 0 20px;
	border-bottom: 1px solid #ccc;
	position: relative;
}
h2:before {
	position: absolute;
	content: "";
	width: 210px;
	height: 2px;
	background: #5dc1c5;
	bottom: -2px;
	left: 0;
}
@media screen and (max-width: 768px) {
	h2 {
		font-size: 1.8rem;
	}
	h2:before {
		width: 145px;
	}
}

h3 {
	color: #fff;
	font-size: 2.0rem;
	font-weight: bold;
	background: #5dc1c5;
	padding: 5px 20px;
	position: relative;
	margin: 50px 0 20px;
}
h3:after {
	position: absolute;
	content: "";
	background: url(/kw/blog/img/ico_rightBottom.svg) no-repeat right center;
	background-size: contain;
	height: 100%;
	width: 100%;
	top: 0;
	right: 0;
}
@media screen and (max-width: 768px) {
	h3 {
		margin: 50px -15px 20px;
		font-size: 1.7rem;
		padding: 10px 15px;
	}
}

h4 {
	position: relative;
	color: #2f8a8e;
	padding-left: 12px;
	font-size: 1.8rem;
	font-weight: bold;
	margin: 40px 0 10px;
	}
h4:before {
	position: absolute;
	content: "";
	width: 2px;
	background: #2f8a8e;
	top: 2px;
	left: 0;
	bottom: 2px;
	margin: auto 0;
}
@media screen and (max-width: 768px) {
	h4 {
		font-size: 1.6rem;
		margin: 40px 0 10px;
	}
}

h5 {
	font-size: 1.8rem;
	font-weight: bold;
	margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
	h5 {
		font-size: 1.5rem;
	}
}

p + p {
	margin-top: 10px;
}

* {
	word-wrap: break-word;
	box-sizing: border-box;
}

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

.c_fontBold { font-weight: bold; }

.c_pcView {
	display: block;
}
.m_bnr01 .c_pcView {
	display: inline;
}
.c_spView {
	display: none;
}
@media screen and (max-width: 1000px) {
	.f_header .c_pcView {
		display: none;
	}
	.f_header .c_spView {
		display: block;
	}
}
@media screen and (max-width: 768px) {
	.c_pcView {
		display: none!important;
	}
	.c_spView {
		display: block;
	}
	.m_bnr01 .c_spView {
		display: inline;
		display: inline;
		width: 100%;
	}
	.m_bnrArea .c_spView {
		display: inline;
		width: 100%;
	}
}
@media screen and (min-width: 769px) {
	.m_selBox.c_spView {
		display: none;
	}
}

/* module
----------------------------------------- */

/* frame */
.m_frame {
	max-width: 1000px;
	padding: 0 25px;
	margin: 0 auto;
}
.m_contents > .m_frame {
	display: -webkit-flex;
	display: flex;
}
@media screen and (max-width: 1000px) {
	.m_localNav .m_frame {
		max-width: 675px;
	}
}
@media screen and (max-width: 900px) {
	.m_contents > .m_frame {
		display: block;
	}
}
@media screen and (max-width: 768px) {
	.m_frame {
		padding: 0 15px;
	}
}

/* section */
@media screen and (max-width: 1000px) {
	.f_header {
		padding: 12px 0;
		position: fixed;
		z-index: 4;
		background: #fff;
		width: 100%;
		top: 0;
	}
	.f_header.s_hasShadow {
		box-shadow: 0 0 4px 2px rgba(0, 0, 0, 0.1);
	}
	.f_header .p_logo {
		width: 213px;
	}
	.f_header .p_btn {
		position: absolute;
		width: 52px;
		height: 51px;
		top: 0;
		bottom: 0;
		right: 0;
		margin: auto 0;
	}
	.f_header .p_btn:hover {
		cursor: pointer;
	}
	.f_header .p_btn span {
		position: absolute;
		width: 22px;
		height: 3px;
		background: #5f5f5f;
		border-radius: 2px;
		left: 0;
		right: 0;
		margin: 0 auto;
		transition: .2s;
	}
	.f_header .p_btn span:nth-of-type(1) {
		top: 16px;
	}
	.f_header .p_btn.s_active span:nth-of-type(1) {
		transform: rotate(45deg) translate(5px, 6px);
	}
	.f_header .p_btn span:nth-of-type(2) {
		top: 24px;
	}
	.f_header .p_btn.s_active span:nth-of-type(2) {
		opacity: 0;
	}
	.f_header .p_btn span:nth-of-type(3) {
		top: 32px;
	}
	.f_header .p_btn.s_active span:nth-of-type(3) {
		transform: rotate(-45deg) translate(5px, -6px);
	}
	.m_globalNav {
		position: absolute;
		background: #fff;
		width: 100%;
		left: 0;
		top: 51px;
		border-top: 1px solid #ccc;
		z-index: 2;
		display: none;
	}
	.m_globalNav.s_scroll {
		overflow-y: scroll;
	}
	.m_globalNav .p_list {
		border-bottom: 1px solid #ccc;
	}
	.m_globalNav .p_list.s_arrow {
		background: url(/kw/blog/img/ico_arrow_gr.svg) no-repeat center right 15px;
		background-size: 6px 10px;
	}
	.m_globalNav .p_list.s_cart form {
		height: 40px;
		position: relative;
	}
	.m_globalNav .p_list.s_cart form:before {
		position: absolute;
		top: 50%;
		-webkit-transform: translateY(-50%);
		transform: translateY(-50%);
		margin: auto 0;
		left: 12px;
		content: "カートへ";
		z-index: -1;
	}
	.m_globalNav .p_list.s_cart form:after {
		position: absolute;
		width: 100%;
		height: 100%;
		content: "";
		top: 0;
		left: 0;
		background: #f0f0f0 url(/kw/blog/img/ico_arrow_gr.svg) no-repeat center right 15px;
		background-size: 6px 10px;
		z-index: -2;
	}
	.m_globalNav .p_list.s_search {
		padding: 12px;
	}
	.m_globalNav .p_list.s_search p {
		margin-bottom: 6px;
	}
	.m_globalNav .p_list.s_cart input:last-of-type {
		width: 100%;
		height: 100%;
	}
	.m_globalNav .p_list.s_search form {
		height: 40px;
		display: -webkit-flex;
		display: flex;
	}
	.m_globalNav .p_list.s_search input[type="text"] {
		height: 100%;
		border: 1px solid #ccc;
		border-radius: 4px 0 0 4px;
		flex: 1;
	}
	.m_globalNav .p_list.s_search input[type="image"] {
		height: 100%;
		flex: 0 0 80px;
	}
	.m_globalNav .p_list.s_close {
		border-top: 2px solid #ccc;
		border-bottom: 0;
		padding: 10px 0 11px;
		text-align: center;
		font-size: 1.2rem;
	}
	.m_globalNav .p_list.s_gray {
		background: #f0f0f0 url(/kw/blog/img/ico_arrow_gr.svg) no-repeat center right 15px;
		background-size: 6px 10px;
	}
	.m_globalNav .p_list.s_gray.s_cart {
		background: none;
	}
	.m_globalNav a {
		width: 100%;
		height: 100%;
		display: block;
		color: #333;
		text-decoration: none;
		padding: 12px;
	}
}

.m_main {
	flex: 1;
	margin-bottom: 70px;
}
.m_main.s_index {
	margin-bottom: 0;
}
@media screen and (max-width: 768px) {
	.m_main {
		margin-bottom: 30px;
	}
}

.m_sideNav {
	flex: 0 0 260px;
	margin-left: 40px;
	margin-bottom: 70px;
}
@media screen and (max-width: 900px) {
	.m_sideNav {
		margin-left: 0;
	}
}
@media screen and (max-width: 500px) {
	.m_sideNav {
		display: block;
	}
}

.m_breadcrumb {
	padding: 12px 0;
	font-size: 1.2rem;
}
.m_breadcrumb li {
	display: inline;
	padding-left: 15px;
	position: relative;
}
.m_breadcrumb li:first-of-type {
	padding-left: 0;
}
.m_breadcrumb li:before {
	position: absolute;
	content: ">";
	left: 2px;
}
.m_breadcrumb li:first-of-type:before {
	content: none;
}
.m_breadcrumb li a {
	text-decoration: underline;
	color: #333;
}
.m_breadcrumb li a:hover {
	text-decoration: none;
	opacity: 1;
}
@media screen and (max-width: 1000px) {
	.m_breadcrumb {
		background: #f6f6f6;
	}
}

.m_localNav {
	background: #dff3f3;
	padding: 30px 0 45px;
}
.m_localNav .p_list {
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-left: -25px;
}
.m_localNav .p_ttl {
	font-size: 3.2rem;
	text-align: center;
	position: relative;
	margin-bottom: 50px;
}
.m_localNav .p_ttl:before {
	content: "";
	width: 43px;
	height: 3px;
	left: 0;
	right: 0;
	margin: 0 auto;
	background: #5dc1c5;
	position: absolute;
	bottom: -10px;
}
@media screen and (max-width: 768px) {
	.m_localNav {
		padding: 25px 0 40px;
	}
	.m_localNav .p_ttl {
		font-size: 2.2rem;
		margin-bottom: 30px;
	}
	.m_localNav .p_ttl:before {
		width: 30px;
		height: 2px;
	}
	.m_localNav .p_list {
		display: block;
		margin-left: 0;
	}
}

.f_footer {
	background: #dcdcdc;
}
.f_footer .p_linkList a {
	text-decoration: none;
	color: #333;
	font-size: 1.2rem;
	width: 100%;
	height: 100%;
	display: block;
}
.f_footer .p_link.s_ttl {
	font-weight: bold;
	padding: 14px 15px 15px 15px;
}
.f_footer .p_link.s_arrow {
	background: #fff url(/kw/blog/img/ico_arrow_bk.svg) no-repeat center left 15px;
	background-size: 4px 6px;
}
.f_footer .p_link.s_decimal {
	position: relative;
	margin: 0 0 1px;
	background: #f0f0f0;
}
.f_footer .p_link.s_decimal:before {
	position: absolute;
	content: "";
	width: 2px;
	height: 2px;
	background: #333;
	border-radius: 10em;
	top: 0;
	bottom: 0;
	margin: auto 0;
	left: 22px;
}
.f_footer .p_link.s_blank span {
	background: url(/kw/blog/img/ico_blank_red.svg) no-repeat center right;
	background-size: 18px 10px;
	padding-right: 25px;
}
.f_footer .p_link.s_ttl a {
	padding: 14px 15px 15px;
}
.f_footer .p_link.s_arrow a {
	margin: 0 0 1px;
	padding: 12px 15px 12px 25px;
}
.f_footer .p_link.s_decimal a {
	padding: 9px 15px 10px 40px;
}
.f_footer .p_copy {
	padding: 17px 15px;
	font-size: 1.2rem;
	letter-spacing: 0;
	text-align: center;
}
@media screen and (max-width: 1000px) {
	.f_overlay {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		z-index: -1;
		background: rgba(0, 0, 0, 0.7);
		transition: .2s;
		opacity: 0;
	}
	.f_overlay.s_active {
		opacity: 1;
		z-index: 3;
	}
}

/* ttl */
.m_ttl01 {
	background: #5dc1c5;
	padding: 23px 0;
	position: relative;
	margin-bottom: 50px;
}
.m_ttl01:before {
	position: absolute;
	content: "";
	background: url(/kw/blog/img/ico_leftBottom.svg) no-repeat left center;
	background-size: contain;
	height: 100%;
	width: 100%;
	top: 0;
	left: 0;
}
.m_ttl01:after {
	position: absolute;
	content: "";
	background: url(/kw/blog/img/ico_rightTop.svg) no-repeat right center;
	background-size: contain;
	height: 100%;
	width: 100%;
	top: 0;
	right: 0;
}
.m_subTtl {
	margin: -10px 0 40px;
	font-size: 1.8rem;
}
@media screen and (max-width: 768px) {
	.m_ttl01 {
		padding: 18px 0;
		margin-bottom: 45px;
	}
}

/* list */
.m_catList {
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-bottom: 20px;
	margin-left: -10px;
	margin-bottom: -10px;
	width: 100%;
}
.m_catList li {
	margin-left: 10px;
	margin-bottom: 10px;
	text-decoration: none;
	color: #fff;
	font-size: 1.2rem;
	padding: 2px 6px;
	background: #f3a24b;
	letter-spacing: 0;
}

.m_bnrList {
	display: -webkit-flex;
	display: flex;
	margin-left: -20px;
	height: 120px;
}
.m_bnrList .p_list {
	margin-left: 20px;
	flex: 1;
}
.m_bnrList .p_list a {
	display: block;
	width: 100%;
	height: 100%;
	position: relative;
	border-radius: 3px;
}
.m_bnrList .p_list.s_fb a {
	background: #3b5998;
}
.m_bnrList .p_list.s_smnr a {
	background: #103864;
}
.m_bnrList .p_list.s_glssry a {
	background: #10645d;
}
.m_bnrList .p_list img {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	padding: 15px;
}
@media screen and (max-width: 768px) {
	.m_bnrList {
		height: initial;
		justify-content: center;
	}
	.m_bnrList .p_list img {
		position: relative;
		padding: 0;
		width: 100%;
	}
}

/* img */
.m_img01 {
	text-align: center;
	margin: 20px 0;
}
.m_bnr01 {
	margin: 50px 0;
}
@media screen and (max-width: 768px) {
	.m_bnr01 {
		text-align: center;
	}
}

/* txt */
.m_txt01 {
	margin: 10px 0 30px;
}

.m_date {
	border-top: 1px solid #ccc;
	padding: 5px;
	font-size: 1.2rem;
	text-align: right;
}

.m_leadTxt {
	padding-left: 20px;
	position: relative;
	margin: 20px 0;
}
.m_leadTxt:before {
	content: "";
	position: absolute;
	width: 2px;
	top: 0;
	bottom: 0;
	left: 0;
	background: linear-gradient(to bottom, #5dc1c5 0%,#bfe6e8 100%);
}

/* box */
dl {
	padding: 0 0 0 25px;
	margin: 30px 0;
}
dl dt {
	font-weight: bold;
	position: relative;
	margin-top: 10px;
}
dl dt:before {
	position: absolute;
	content: "";
	width: 15px;
	height: 15px;
	background: #5dc1c5;
	left: -25px;
	top: 5px;
	border-radius: 10em;
}
@media screen and (max-width: 768px) {
	dl {
		padding: 0 0 0 20px;
	}
	dl dt:before {
		width: 12px;
		height: 12px;
		left: -20px;
	}
}

.m_linkBox {
	width: 345px;
	height: 215px;
	position: fixed;
	bottom: -238px;
	right: 0;
	background: #fff;
	padding: 20px;
	border-top: 4px solid #f3a24b;
	z-index: 6;
}
.m_linkBox.s_show {
	animation: show 1s ease-in-out;
	bottom: 0;
	box-shadow: 0 0 12px 4px rgba(0, 0, 0, 0.1);
}
.m_linkBox.s_hide {
	animation: hide 1s ease-in-out;
	bottom: -211px;
}
@keyframes show {
	0% { bottom: -238px; }
	20% { bottom: 15px; }
	40% { bottom: -10px; }
	80% { bottom: 5px; }
	100% { bottom: 0; }
}
@keyframes hide {
	0% { bottom: -215px; }
	50% { bottom:  -238px; }
	100% { bottom: -211px; }
}
.m_linkBox .p_btn {
	position: absolute;
	right: 0;
	width: 27px;
	height: 27px;
	background: #f3a24b;
	top: -27px;
	box-shadow: 0px -2px 16px 2px rgba(0, 0, 0, 0.1);
}
.m_linkBox .p_btn:hover {
	cursor: pointer;
}
.m_linkBox .p_btn span {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	width: 8px;
	height: 2px;
	background: #fff;
	margin: auto;
}
.m_linkBox.s_show .p_btn span {
	width: 16px;
}
.m_linkBox .p_btn span:nth-of-type(1) {
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	left: 4px;
}
.m_linkBox.s_show .p_btn span:nth-of-type(1) {
	left: 0;
}
.m_linkBox .p_btn span:nth-of-type(2) {
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	left: -4px;
}
.m_linkBox.s_show .p_btn span:nth-of-type(2) {
	left: 0;
}
.m_linkBox .p_img {
	text-align: center;
	margin-bottom: 20px;
}
.m_linkBox .p_bnr {
	text-align: center;
	background: #7c7c7c;
	border-radius: 3px;
}
.m_linkBox .p_bnr a {
	color: #fff;
	text-decoration: none;
	font-size: 1.8rem;
	padding: 10px;
	width: 100%;
	height: 100%;
	display: block;
	position: relative;
}
.m_linkBox .p_bnr a:before {
	position: absolute;
	content: "";
	width: 8px;
	height: 8px;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	right: 15px;
	top: 0;
	bottom: 0;
	margin: auto 0;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}
@media screen and (max-width: 768px) {
	.m_linkBox {
		bottom: 0;
		padding: 0;
		height: 60px;
		width: 290px;
	}
	.m_linkBox .p_img {
		margin-bottom: 0;
	}
	.m_linkBox .p_bnr {
		display: none;
	}
	.m_linkBox.s_hideSp {
		animation: hideSp 1s ease-in-out;
		bottom: -56px;
	}
	@keyframes hideSp {
		0% { bottom: -60px; }
		50% { bottom:  -83px; }
		100% { bottom: -56px; }
	}
}

/* link */
.m_link01 {
	margin: 30px 0;
}
.m_imgBox02 .m_link01 {
	margin-bottom: 0;
}
.m_link01 + .m_link01 {
	margin-top: -15px;
}
.m_link01 a {
	color: #333;
	padding-left: 25px;
	position: relative;
}
.m_link01 a:hover {
	text-decoration: none;
	opacity: 1;
}
.m_link01 a:before {
	position: absolute;
	left: 0;
	top: 0;
	content: "";
	background: url(/kw/blog/img/ico_link.svg) no-repeat center;
	width: 18px;
	height: 18px;
}
.m_link01.s_pdf a:after {
	position: absolute;
	right: -35px;
	bottom: 2px;
	content: "";
	background: url(/kw/blog/img/ico_pdf.svg)  no-repeat center;
	background-size: contain;
	width: 25px;
	height: 21px;
}
.m_link01.s_blank a:after {
	position: absolute;
	right: -30px;
	bottom: 1px;
	content: "";
	background: url(/kw/blog/img/ico_blank.svg) no-repeat center;
	background-size: contain;
	width: 16px;
	height: 16px;
}
.m_topBtn {
	z-index: 5;
}
.m_topBtn a {
	width: 50px;
	height: 50px;
	background: #fff;
	display: block;
	border-radius: 10em;
	box-shadow: 0 0 10px 2px rgba(0, 0, 0, 0.2);
	left: 0;
	right: 0;
	margin: 0 auto;
	position: fixed;
	-webkit-transform: translateX(450px);
	transform: translateX(450px);
	opacity: 0;
	bottom: 75px;
	transition: 0.2s;
}
.m_topBtn.s_show a {
	opacity: 1;
}
.m_topBtn.s_absolute a {
	top: -25px;
	bottom: initial;
	position: absolute;
}
.m_topBtn a:before {
	content: "";
	background: url(/kw/blog/img/ico_arrow_bl.svg) no-repeat center;
	background-size: contain;
	position: absolute;
	left: 0;
	right: 0;
	margin: 0 auto;
	top: 20px;
	width: 19px;
	height: 11px;
}
@media screen and (max-width: 1000px) {
	.m_topBtn a {
		transform: none;
		right: 25px;
		left: initial;
	}
}
@media screen and (max-width: 768px) {
	.m_link01.s_pdf a:after {
		bottom: -2px;
	}
	.m_topBtn a {
		right: 15px;
		width: 40px;
		height: 40px;
		bottom: 15px;
	}
	.m_topBtn.s_absolute a {
		top: -20px;
	}
	.m_topBtn a:before {
		top: 16px;
		width: 14px;
		height: 8px;
		bottom: 40px;
	}
}

/* area */
.m_tableArea {
	margin: 50px 0;
}
.m_tableArea .p_table01 {
	width: 650px;
	border-top: 1px solid #ccc;
	border-left: 1px solid #ccc;
	font-size: 1.4rem;
}
.m_tableArea .p_table01 th,
.m_tableArea .p_table01 td {
	padding: 10px;
	border-right: 1px solid #ccc;
	border-bottom: 1px solid #ccc;
}
.m_tableArea .p_table01 th {
	background: #f0f0f0;
}
.m_tableArea.s_hasRowTtl .p_table01 tr:first-of-type th {
	background: #dff3f3;
}
@media screen and (max-width: 1000px) {
	.m_tableArea {
		overflow: hidden;
		width: calc(100vw - 360px);
	}
}
@media screen and (max-width: 900px) {
	.m_tableArea {
		width: calc(100% + 15px);
	}
}
@media screen and (max-width: 768px) {
	.m_tableArea .p_table01 {
		width: 650px;
	}
}

.m_bnrArea {
	background: #7dcdd1;
	padding: 50px 0;
	position: relative;
}
.m_bnrArea .p_bnr {
	text-align: center;
	margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
	.m_bnrArea {
		padding: 25px 0;
	}
}

.m_catArea ul {
	border-top: 1px solid #ccc;
	border-left: 1px solid #ccc;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
}
.m_catArea .p_list {
	border-right: 1px solid #ccc;
	border-bottom: 1px solid #ccc;
	width: 33.33%;
	text-align: center;
	padding: 10px 15px;
}

.m_boxArea {
	border-radius: 4px;
	border-top: 1px solid #ccc;
	border-left: 1px solid #ccc;
	margin: 20px 0 40px;
}
.m_localNav .m_boxArea {
	margin: initial;
}
.m_boxArea > li {
	margin-bottom: 1px;
	border-right: 1px solid #ccc;
	border-bottom: 1px solid #ccc;
}
.m_boxArea > li:first-of-type {
	border-radius: 4px 4px 0 0;
}
.m_boxArea > li:last-of-type {
	border-radius: 0 0 4px 4px;
}
.m_boxArea a {
	text-decoration: none;
	color: #333;
	padding: 20px;
	display: -webkit-flex;
	display: flex;
}
.m_boxArea a:hover {
	box-shadow: 0 0 16px 4px rgba(0, 0, 0, 0.2);
	opacity: 1;
}
.m_boxArea a:hover img {
	opacity: 1;
}
.m_boxArea .p_imgBox {
	flex: 0 0 280px;
	margin-right: 20px;
}
.m_boxArea .p_imgBox img {
	width: 100%;
}
.m_boxArea .p_txtBox {
	flex: 1;
	position: relative;
}
.m_boxArea .p_date {
	padding-left: 15px;
	position: relative;
	margin-bottom: 5px;
}
.m_boxArea .p_date:before {
	position: absolute;
	content: "";
	top: 0;
	bottom: 0;
	left: 0;
	background: #ccc;
	width: 1px;
}
.m_boxArea .p_ttl {
	font-size: 2.0rem;
	font-weight: bold;
	position: relative;
	margin-bottom: 10px;
}
.m_boxArea .p_ttl:before {
	position: absolute;
	content: "";
	height: 1px;
	left: 0;
	right: 0;
	background: #ccc;
	bottom: -5px;
}
.m_boxArea .p_ttl:after {
	position: absolute;
	content: "";
	height: 1px;
	width: 200px;
	left: 0;
	background: #5dc1c5;
	bottom: -5px;
}
.m_boxArea .p_txt {
	margin-bottom: 65px;
	text-decoration: underline;
}
.m_boxArea .m_catList {
	position: absolute;
	bottom: 0;
	left: 0;
}
@media screen and (max-width: 768px) {
	.m_boxArea .p_date,
	.m_boxArea .p_txt {
		display: none;
	}
	.m_boxArea a {
		padding: 20px 15px;
		text-decoration: underline;
	}
	.m_boxArea .p_imgBox {
		flex: 1;
		margin-right: 0;
	}
	.m_boxArea .p_txtBox {
		flex: 2;
	}
	.m_boxArea .p_ttl {
		padding-left: 15px;
		margin-top: 0;
		margin-bottom: 0;
		font-size: 1.4rem;
		font-weight: normal;
	}
	.m_boxArea .p_ttl:before,
	.m_boxArea .p_ttl:after {
		content: none;
	}
	.m_localNav .m_boxArea .p_ttl {
		display: none;
	}
	.m_localNav .m_boxArea .p_txt {
		display: block;
		padding-left: 15px;
		margin-bottom: 0;
	}
}

.m_boxArea02 {
	margin: 40px 0;
}
.m_boxArea02 .p_list {
	border-top: 1px solid #ccc;
	border-left: 1px solid #ccc;
}
.m_boxArea02 .p_list > li {
	border-right: 1px solid #ccc;
	border-bottom: 1px solid #ccc;
	background: #dff3f3;
}
.m_boxArea02 a {
	display: -webkit-flex;
	display: flex;
	-webkit-align-items: center;
	align-items: center;
	text-decoration: none;
	color: #333;
}
.m_boxArea02 a:hover {
	opacity: 1;
	box-shadow: 0 0 16px 4px rgba(0, 0, 0, 0.2);
	position: relative;
	z-index: 2;
}
.m_boxArea02 .p_dateArea {
	padding-left: 20px;
	flex: 0 0 180px;
}
.m_boxArea02 .p_txtArea {
	padding: 20px;
	background: #fff;
	width: 100%;
}
.m_boxArea02 .p_txt {
	border-bottom: 1px dashed #ccc;
	padding-bottom: 20px;
	margin-bottom: 10px;
}
.m_boxArea02 a .p_txt {
	text-decoration: underline;
}
.m_boxArea02 .p_more {
	text-align: center;
	border-right: 1px solid #ccc;
	border-bottom: 1px solid #ccc;
	border-left: 1px solid #ccc;
	border-radius: 0 0 4px 4px;
}
.m_boxArea02 .p_more a {
	display: block;
	padding: 20px 0;
}
.m_boxArea02 .p_more a span {
	padding: 20px 40px;
	display: inline;
	background: url(/kw/blog/img/ico_more.png) no-repeat center left;
}
@media screen and (max-width: 768px) {
	.m_boxArea02 a {
		display: block;
	}
	.m_boxArea02 .p_dateArea {
		flex: 0 0 180px;
		padding: 10px 20px;
	}
	.m_boxArea02 .p_txtArea {
		padding: 15px 20px;
	}
	.m_boxArea02 .p_txt {
		padding-bottom: 0;
		margin-bottom: 0;
		border: none;
	}
	.m_boxArea02 .p_more a span {
		background-size: 18px;
	}
}

.m_boxArea03 {
	display: -webkit-flex;
	display: flex;
}
.m_boxArea03 .m_imgBox03 {
	flex: 0 0 300px;
	border: none;
}
.m_boxArea03 .m_imgBox03 > a {
	background: #fff;
	border-radius: 4px;
}
.m_boxArea03 .m_imgBox03 .p_txtOuter .p_txt p {
	text-decoration: underline;
}
.m_boxArea03 .m_boxArea {
	flex: 1;
	margin: 0 0 0 20px;
	border: none;
}
.m_boxArea03 .m_boxArea > li {
	border: none;
}
.m_boxArea03 .m_boxArea .p_imgBox {
	flex: 0 0 110px;
}
.m_boxArea03 .m_boxArea .p_txtBox {
	flex: 1;
}
.m_boxArea03 .m_boxArea .p_txtBox .p_txt {
	margin-bottom: 75px;
}
.m_boxArea03 .m_boxArea .m_catList {
	padding-top: 10px;
	border-top: 1px dashed #ccc;
}
.m_boxArea03 .m_boxArea .m_catList:before {
	position: absolute;
	width: 10px;
	height: 1px;
	content: "";
	background: #fff;
	top: -1px;
	left: 0;
}
.m_boxArea03 .m_boxArea li > a {
	background: #fff;
}
@media screen and (max-width: 1000px) {
	.m_boxArea03 .m_imgBox03 > a {
		border-radius: 0;
		margin-bottom: 1px;
		display: -webkit-flex;
		display: flex;
	}
	.m_boxArea03 .m_boxArea {
		margin-left: 0;
	}
	.m_boxArea03 .m_imgBox03 .p_txtOuter {
		position: relative;
	}
	.m_boxArea03 .m_imgBox03 .p_txtOuter .m_catList {
		position: absolute;
		bottom: 0;
		left: 0;
		padding-top: 10px;
		border-top: 1px dashed #ccc;
	}
	.m_boxArea03 .m_imgBox03 .p_txtOuter .m_catList:before {
		position: absolute;
		width: 10px;
		height: 1px;
		content: "";
		background: #fff;
		top: -1px;
		left: 0;
	}
	.m_boxArea03 {
		display: block;
	}
	.m_boxArea03 .m_imgBox03 .p_img {
		margin-bottom: 0;
		margin-right: 20px;
		flex: 0 0 110px;
	}
	.m_boxArea03 .m_imgBox03 > a {
		position: relative;
	}
	.m_boxArea03 .m_imgBox03 .p_txt {
		margin-bottom: 75px;
		padding-bottom: 0;
		border: none;
	}
}
@media screen and (max-width: 768px) {
	.m_boxArea03 .m_imgBox03 .p_txt {
		margin-bottom: 0;
	}
	.m_boxArea03 .m_boxArea .p_txtBox .p_txt {
		margin-bottom: 0;
	}
	.m_boxArea03 .m_imgBox03 .p_img {
		margin-right: 0;
	}
}

.m_imgBox01,
.m_videoBox01 {
	display: -webkit-flex;
	display: flex;
	margin: 40px 0;
}
.m_imgBox01.s_noTxt,
.m_videoBox01.s_noTxt {
	display: block;
}
.m_imgBox01 > .p_img,
.m_videoBox01 > .p_video,
.m_imgBox01 > .p_txt,
.m_videoBox01 > .p_txt {
	padding-left: 20px;
}
.m_videoBox01 > .p_video,
.m_imgBox01 >  .p_txt,
.m_videoBox01 > .p_txt {
	flex: 1;
}
.m_imgBox01 > .p_img {
	max-width: 50%;
}
.m_imgBox01.s_noTxt > .p_img,
.m_imgBox01.s_noTtl > .p_img {
	max-width: 100%;
	width: 100%;
}
.m_imgBox01.s_noTxt > .p_img,
.m_videoBox01.s_noTxt > .p_video {
	padding-left: 0;
}
.m_imgBox01 .p_img {
	text-align: center;
}
.m_imgBox01 > div:first-of-type,
.m_videoBox01 > div:first-of-type {
	padding-left: 0;
}
.m_videoBox01 .p_video div {
	position: relative;
	padding-top: 56.25%;
}
.m_videoBox01 .p_video iframe {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	border: none;
}
.m_imgBox01 .p_txt .p_ttl,
.m_videoBox01 .p_txt .p_ttl {
	padding-bottom: 5px;
	margin-bottom: 10px;
	font-size: 2.0rem;
	font-weight: bold;
	border-bottom: 1px solid #5dc1c5;
}
@media screen and (max-width: 768px) {
	.m_imgBox01,
	.m_videoBox01 {
		display: block;
		margin: 40px 0 30px;
	}
	.m_imgBox01 .p_img,
	.m_videoBox01 .p_video {
		margin-bottom: 10px;
		padding-left: 0;
	}
	.m_imgBox01 > .p_img {
		max-width: 100%;
	}
	.m_imgBox01 .p_txt,
	.m_videoBox01 .p_txt {
		padding-left: 0;
	}
	.m_imgBox01 .p_txt .p_ttl,
	.m_videoBox01 .p_txt .p_ttl {
		font-size: 1.6rem;
	}
	.m_imgBox01 .p_txt {
		margin-bottom: 30px;
	}
}

.m_proBox {
	border: 1px solid #ccc;
	border-radius: 4px;
	padding: 15px 20px 30px;
	position: relative;
	margin: 40px 0 50px;
}
.m_proBox.s_noImg {
	padding: 15px 20px 15px 55px;
}
.m_proBox:before {
	content: "";
	width: 24px;
	height: 54px;
	position: absolute;
	background: url(/kw/blog/img/ico_bow.png);
	background-size: contain;
	top: -9px;
	left: 18px;
}
.m_proBox .p_ttl {
	font-size: 2.0rem;
	padding: 0 0 15px 35px;
}
.m_imgBox02 {
	display: -webkit-flex;
	display: flex;
}
.m_imgBox02 .p_img {
	position: relative;
	right: -10px;
	top: 0;
	flex: initial;
	margin-right: 30px;
	height: 100%;
}
.m_imgBox02 .p_img:before {
	position: absolute;
	content: "";
	background: #98d8da;
	top: 10px;
	left: -10px;
	z-index: -1;
	width: 100%;
	height: 100%;
}
.m_imgBox02 .p_txt {
	flex: 1;
}
.m_imgBox02 .p_txt h5 {
	font-size: 1.8rem;
	font-weight: bold;
	margin-bottom: 10px;
}
@media screen and (max-width: 500px) {
	.m_proBox .p_ttl {
		font-size: 1.6rem;
	}
	.m_imgBox02 {
		display: block;
	}
	.m_imgBox02 .p_img {
		margin-right: 0;
		right: -10px;
		height: initial;
		margin-bottom: 25px;
	}
	.m_imgBox02 .p_img:before {
		width: calc(100% - 10px);
		height: 100%;
	}
	.m_imgBox02 .p_img img {
		width: calc(100% - 10px);
	}
	.m_imgBox02 .p_txt h5 {
		font-size: 1.5rem;
	}
}

.m_imgBox03 {
	border-right: 1px solid #ccc;
	border-bottom: 1px solid #ccc;
	border-left: 1px solid #ccc;
}
.m_imgBox03.s_panel {
	width: 300px;
	background: #fff;
	border: none;
	border-radius: 3px;
	margin-left: 25px;
	margin-bottom: 25px;
	padding: 0;
}
.m_imgBox03 a {
	display: block;
	text-decoration: none;
	color: #333;
	padding: 20px;
	transition: .2s;
}
.m_imgBox03 a:hover {
	opacity: 1;
	box-shadow: 0 0 16px 4px rgba(0, 0, 0, 0.2);
	position: relative;
	z-index: 2;
}
.m_imgBox03 a:hover img {
	opacity: 1;
}
.m_imgBox03 .p_img {
	text-align: center;
	margin-bottom: 10px;
}
.m_imgBox03 .p_txt {
	font-size: 1.4rem;
	padding-bottom: 15px;
	border-bottom: 1px dashed #ccc;
	margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
	.m_imgBox03 {
		padding: 0;
	}
	.m_imgBox03.s_panel {
		width: 100%;
		margin-left: auto;
		margin-bottom: 1px;
		padding: 0;
	}
	.m_imgBox03 a {
		display: -webkit-flex;
		display: flex;
		padding: 20px 15px;
		text-decoration: underline;
	}
	.m_imgBox03 .p_img {
		flex: 1;
		margin-bottom: 0;
	}
	.m_imgBox03 .p_txt {
		border-bottom: none;
		padding-bottom: 0;
		margin-bottom: 0;
		flex: 2;
	}
	.m_imgBox03 .p_txt p {
		padding-left: 15px;
	}
}

.m_catBox,
.m_puBox {
	margin-bottom: 20px;
}
.m_catBox.s_index {
	border-top: 1px solid #ccc;
}
.m_catBox > p,
.m_puBox > p {
	background: #5dc1c5;
	color: #fff;
	font-weight: bold;
	padding: 15px 5px;
	text-align: center;
}
.m_catBox ul {
	border-left: 1px solid #ccc;
}
.m_catBox.s_index ul {
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	border-radius: 0 0 0 4px;
}
.m_catBox.s_index li {
	width: 33.33%;
	text-align: center;
}
.m_catBox.s_index li.s_all {
	width: 99.99%;
	border-radius: 0 0 4px 4px;
	border-top: 1px solid #ccc;
	margin-top: -1px;
}
.m_catBox li {
	border-right: 1px solid #ccc;
	border-bottom: 1px solid #ccc;
}
.m_catBox li a {
	display: block;
	width: 100%;
	height: 100%;
	padding: 12px 15px;
	text-decoration: none;
	color: #333;
	transition: .2s;
}
.m_catBox li.current a {
	background: #5dc1c5 url(/kw/blog/img/ico_arrow_wh.svg) no-repeat center left 20px;
	background-size: 9px 14px;
	color: #fff;
}
.m_catBox li.s_all span {
	background: url(/kw/blog/img/ico_all.png) no-repeat center left;
	padding: 12px 40px;
}
.m_catBox li.s_all.current span {
	background: url(/kw/blog/img/ico_all_current.png) no-repeat center left;
}
.m_catBox li a:hover {
	background: #dff3f3;
	opacity: 1;
}
.m_catBox li.current a:hover {
	background: #5dc1c5 url(/kw/blog/img/ico_arrow_wh.svg) no-repeat center left 20px;
	background-size: 9px 14px;
}
.m_catBox li.s_all.current a:hover span {
	background: url(/kw/blog/img/ico_all_current.png) no-repeat center left;
}
@media screen and (max-width: 900px) {
	.m_catBox,
	.m_puBox {
		margin-left: 0;
	}
	.m_catBox li a {
		background: url(/kw/blog/img/ico_arrow_gr.svg) no-repeat center right 20px;
		background-size: 6px 10px;
	}
}

.m_selBox {
	display: -webkit-flex;
	display: flex;
	-webkit-align-items: center;
	align-items: center;
	background: #5dc1c5;
	border-radius: 4px;
}
.m_selBox .p_ttl {
	flex: 0 0 100px;
	text-align: center;
	color: #fff;
}
.m_selBox .p_form {
	flex: 1;
	position: relative;
}
.m_selBox .p_form:before {
	position: absolute;
	content: "";
	background: url(/kw/blog/img/ico_arrow_bl.svg) no-repeat center;
	background-size: contain;
	width: 13px;
	height: 8px;
	-webkit-transform: rotate(180deg);
	transform: rotate(180deg);
	right: 15px;
	top: 0;
	bottom: 0;
	margin: auto;
}
.m_selBox .p_form select {
	width: 100%;
	padding: 10px 40px 10px 15px;
	border: 1px solid #ccc;
	border-radius: 0 4px 4px 0;
	background: #fff;
	height: 100%;
}
