@charset "UTF-8";
/*
Theme Name: machida
Author: Catwork Co., Ltd.
Version: 1.0.0
*/

/* サイトの基本カラーに合わせて変更 */
:root {
	--main-color: #002f7c;
	--main-light-color: #eaeff4;
	/* --main-light-color: #0171b9; */
	--main-dark-color: #0e263f;
}

/* Reset
----------------------------------------------------------- */
html, body, div, span, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, address, code,
del, em, img, ins, kbd, q, s, samp,
small, strong, sub, sup, u,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header,
menu, nav, output, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font: inherit;
	font-size: 100%;
	font-weight: normal;
	font-style: normal;
	vertical-align: baseline;
	background: transparent;
	-webkit-text-size-adjust: 100%;
	word-break: break-word;
}

html{
	scroll-behavior: smooth;
}
body {
	font-family: "游ゴシック体", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
	/*font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif; */
	font-size: 16px;
	line-height: 2;
	color:#333;
}
a {
	color:#333;
	text-decoration: none;
}
a:focus {
	outline: none;
}
img {
	max-width: 100%;
	height: auto;
	border: none;
	vertical-align: middle;
}
strong {
	font-weight: normal;
}
ul, ol {
	list-style: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
input[type="text"],
input[type="email"],
textarea {
	border-radius: 0;
	-webkit-appearance: none;
	line-height: normal;
	color: var(--main-font-color, #333);
}
textarea {
	overflow: auto;
}
::placeholder {
	color: #666;
}
.clearfix::after {
	content: "";
	display: table;
	clear: both;
}
.wrap {
	width: 100%;
	overflow-x: hidden;
}
.inner {
	width: 1200px;
	margin: 0 auto;
}
h2, h3, h4, h5, h6 {
	font-weight: bold;
}



/* フェードアニメーション css
----------------------------------------------------------*/

/*ふわっと出る*/
.mv01_on{
	-webkit-transition: all 0.8s ease-out;
	-moz-transition: all 0.8s ease-out;
	-ms-transition: all 0.8s ease-out;
	-o-transition: all 0.8s ease-out;
	transition: all 0.8s ease-out;
	-webkit-transform: scale(1, 1) translate3d(0, 0, 0);
	-moz-transform: scale(1, 1) translate3d(0, 0, 0);
	-ms-transform: scale(1, 1) translate3d(0, 0, 0);
	-o-transform: scale(1, 1) translate3d(0, 0, 0);
	transform: scale(1, 1) translate3d(0, 0, 0);
	opacity: 0
}
.mv01_off{
	-webkit-animation-fill-mode: both;
	-moz-animation-fill-mode: both;
	-ms-animation-fill-mode: both;
	-o-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-transform: scale(1, 1) translate3d(0, 0, 0);
	-moz-transform: scale(1, 1) translate3d(0, 0, 0);
	-ms-transform: scale(1, 1) translate3d(0, 0, 0);
	-o-transform: scale(1, 1) translate3d(0, 0, 0);
	transform: scale(1, 1) translate3d(0, 0, 0);
	opacity: 1
}

/*下から*/
.mv02_on{
	-webkit-transition: all 0.8s ease-out;
	-moz-transition: all 0.8s ease-out;
	-ms-transition: all 0.8s ease-out;
	-o-transition: all 0.8s ease-out;
	transition: all 0.8s ease-out;
	-webkit-transform: scale(1, 1) translate3d(0, 60px, 0);
	-moz-transform: scale(1, 1) translate3d(0, 60px, 0);
	-ms-transform: scale(1, 1) translate3d(0, 60px, 0);
	-o-transform: scale(1, 1) translate3d(0, 60px, 0);
	transform: scale(1, 1) translate3d(0, 60px, 0);
	opacity: 0
}
.mv02_off{
	-webkit-animation-fill-mode: both;
	-moz-animation-fill-mode: both;
	-ms-animation-fill-mode: both;
	-o-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-transform: scale(1, 1) translate3d(0, 0, 0);
	-moz-transform: scale(1, 1) translate3d(0, 0, 0);
	-ms-transform: scale(1, 1) translate3d(0, 0, 0);
	-o-transform: scale(1, 1) translate3d(0, 0, 0);
	transform: scale(1, 1) translate3d(0, 0, 0);
	opacity: 1
}

/*右から*/
.mv03_on{
	-webkit-transition: all 0.8s ease-out;
	-moz-transition: all 0.8s ease-out;
	-ms-transition: all 0.8s ease-out;
	-o-transition: all 0.8s ease-out;
	transition: all 0.8s ease-out;
	-webkit-transform: scale(1, 1) translate3d(100px, 0, 0);
	-moz-transform: scale(1, 1) translate3d(100px, 0, 0);
	-ms-transform: scale(1, 1) translate3d(100px, 0, 0);
	-o-transform: scale(1, 1) translate3d(100px, 0, 0);
	transform: scale(1, 1) translate3d(100px, 0, 0);
	opacity: 0
}
.mv03_off{
	-webkit-animation-fill-mode: both;
	-moz-animation-fill-mode: both;
	-ms-animation-fill-mode: both;
	-o-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-transform: scale(1, 1) translate3d(0, 0, 0);
	-moz-transform: scale(1, 1) translate3d(0, 0, 0);
	-ms-transform: scale(1, 1) translate3d(0, 0, 0);
	-o-transform: scale(1, 1) translate3d(0, 0, 0);
	transform: scale(1, 1) translate3d(0, 0, 0);
	opacity: 1
}

/*左から*/
.mv04_on{
	-webkit-transition: all 0.8s ease-out;
	-moz-transition: all 0.8s ease-out;
	-ms-transition: all 0.8s ease-out;
	-o-transition: all 0.8s ease-out;
	transition: all 0.8s ease-out;
	-webkit-transform: scale(1, 1) translate3d(-100px, 0, 0);
	-moz-transform: scale(1, 1) translate3d(-100px, 0, 0);
	-ms-transform: scale(1, 1) translate3d(-100px, 0, 0);
	-o-transform: scale(1, 1) translate3d(-100px, 0, 0);
	transform: scale(1, 1) translate3d(-100px, 0, 0);
	opacity: 0
}
.mv04_off{
	-webkit-animation-fill-mode: both;
	-moz-animation-fill-mode: both;
	-ms-animation-fill-mode: both;
	-o-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-transform: scale(1, 1) translate3d(0, 0, 0);
	-moz-transform: scale(1, 1) translate3d(0, 0, 0);
	-ms-transform: scale(1, 1) translate3d(0, 0, 0);
	-o-transform: scale(1, 1) translate3d(0, 0, 0);
	transform: scale(1, 1) translate3d(0, 0, 0);
	opacity: 1
}



/*===============================================
横幅1200px以下
===============================================*/
@media screen and (max-width: 1240px) and (min-width: 441px){
html,
body,
.wrap{
	width:1240px;
}
}

/*===============================================
横幅441px以上
===============================================*/
@media screen and (min-width: 441px) {
a {
	transition: all .5s;
}
a:hover {
	opacity:0.8;
	filter:alpha(opacity=80);
	-moz-opacity:0.8;
	transition: all .5s;
}
.sp {
	display:none;
}


	@media screen and (max-width: 1300px){
		.inner{
			width: 1100px;
		}
	}



/* header
------------------------------------------------------------------------*/
	header{
		width: 100%;
		z-index: 10000;
		position: relative;
	}
	header h1{
		position: absolute;
		top: calc(100vh - 90px);
		right: 80px;
		color: #fff;
		font-size: 14px;
	}
	@media screen and (max-height: 900px) {
		header h1{
			top: 810px;
		}
	}

	header .header_box{
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 110px;
	}
	header .header_box::after{
		position: absolute;
		top: 0;
		left: 50%;
		transform: translateX(-50%);
		content: "";
		background: #fff;
		width: 100vw;
		height: 60px;
		z-index: -1;
	}
	header .header_box .logo a{
		position: absolute;
		top: 0;
		left: 0;
		display: grid;
		place-items: center;
		width: 130px;
		height: 130px;
		background: #fff;
		border-radius: 0 0 30px 0;
		box-sizing: border-box;
		transition: none;
	}
	header .header_box .logo a:hover{
		opacity: 1;
	}
	header .header_box .logo a:hover img{
		opacity: 0.8;
	}
	@media screen and (max-width: 1330px) and (min-width: 1241px){
		header .header_box .logo a{
			width: 110px;
			height: 110px;
		}
	}
	header .header_box .text01{
		position: absolute;
		top: 0;
		left: 129px;
		display: flex;
		align-items: center;
		height: 60px;
		color: #002f7c;
		font-size: 20px;
		font-weight: bold;
	}
	header .header_box .text01 span{
		color: #222;
		font-size: 14px;
		font-weight: bold;
	}
	header .header_box .text01 span::before{
		content: "［";
		padding: 0 4px;
	}
	header .header_box .text01 span::after{
		content: "］";
		padding: 0 0 0 4px;
	}
	header .header_box .button a{
		position: absolute;
		top: 12px;
		left: 486px;
		display: block;
		width: 200px;
		height: 36px;
		background: #fff url("img/header_icon01.svg")left 45px center no-repeat;
		border: 1px solid #0171b9;
		border-radius: 18px;
		padding: 0 0 0 68px;
		box-sizing: border-box;
		color: #0171b9;
		font-size: 14px;
		font-weight: bold;
		line-height: 34px;
		transition: none;
	}
	header .header_box .button a:hover{
		background: #0171b9 url("img/header_icon03.svg")left 45px center no-repeat;
		color: #fff;
	}
	header .header_box .text02{
		position: absolute;
		top: 20px;
		right: 463px;
		padding-right: 20px;
		border-right: 2px solid #0171b9;
		font-size: 16px;
		font-weight: bold;
		line-height: 20px;
	}
	header .header_box .tel{
		position: absolute;
		top: 0;
		right: 100px;
		display: flex;
		align-items: center;
		height: 60px;
		font-size: 15px;
	}
	header .header_box .tel a{
		display: block;
		min-height: 25px;
		background: url("img/tel_icon.svg")left center no-repeat;
		padding: 0 0 0 24px;
		box-sizing: border-box;
		line-height: 1;
		margin-right: 10px;
	}
	header .header_box .mail a{
		position: absolute;
		top: 10px;
		right: 50px;
		display: block;
		width: 40px;
		height: 40px;
		background: #0171b9 url("img/header_icon02.svg")center center no-repeat;
		border-radius: 50%;
		padding: 40px 0 0;
		box-sizing: border-box;
		overflow: hidden;
		transition: none;
	}
	@media screen and (max-width: 1280px) {
		header .header_box .button a{
			left: 471px;
		}
	}
	@media screen and (max-width: 1240px) {
		header .header_box{
			width: 1200px;
			left: 0;
			transform: none;
			margin: 0 20px;
		}
		header .header_box::after{
			width: 1240px;
		}
		header .header_box .logo a{
			position: absolute;
			top: 13px;
			left: 50px;
			display: block;
			width: 34px;
			height: 31px;
			border-radius: 0;
			transition: none;
		}
		header .header_box .text01{
			left: 95px;
		}
		header .header_box .button a{
			left: 450px;
			width: 160px;
			background: #fff url("img/header_icon01.svg")left 25px center no-repeat;
			padding: 0 0 0 48px;
		}
		header .header_box .text02{
			right: 463px;
		}
		header .header_box .tel{
			right: 100px;
		}
		header .header_box .mail a{
			right: 50px;
		}
	}

	/* header_box active */
	header .header_box.active{
		left: 50%;
		transform: translateX(-50%);
		width: 1200px;
		height: 100px;
		background: #fff;
		margin: 0;
	}
	header .header_box.active::after{
		position: absolute;
		top: 0;
		left: 50%;
		transform: translateX(-50%);
		content: "";
		background: linear-gradient(#fff 60px, #002f7c 60px);
		width: 100vw;
		height: 100px;
		z-index: -1;
	}
	header .header_box.active .logo a{
		position: absolute;
		top: 13px;
		left: 0;
		display: block;
		width: 34px;
		height: 31px;
		border-radius: 0;
		transition: none;
	}
	header .header_box.active .text01{
		left: 45px;
	}
	header .header_box.active .button a{
		left: 400px;
	}
	header .header_box.active .text02{
		right: 413px;
	}
	header .header_box.active .tel{
		right: 50px;
	}
	header .header_box.active .mail a{
		right: 0;
	}
	@media screen and (max-width: 1240px) {
		header .header_box.active{
			width: 1200px;
			left: 0;
			transform: none;
			margin: 0 20px;
		}
		header .header_box.active::after{
			width: 1240px;
		}
		header .header_box.active .logo a{
			position: absolute;
			top: 13px;
			left: 50px;
			display: block;
			width: 34px;
			height: 31px;
			border-radius: 0;
			transition: none;
		}
		header .header_box.active .text01{
			left: 95px;
		}
		header .header_box.active .button a{
			left: 450px;
			width: 160px;
			background: #fff url("img/header_icon01.svg")left 25px center no-repeat;
			padding: 0 0 0 48px;
		}
		header .header_box.active .text02{
			right: 463px;
		}
		header .header_box.active .tel{
			right: 100px;
		}
		header .header_box.active .mail a{
			right: 50px;
		}
	}



/* nav
------------------------------------------------------------------------*/
	header .nav_wrap{
		position: absolute;
		top: 60px;
		right: 50px;
		display: flex;
		align-items: center;
		width: 1030px;
		height: 50px;
		background: #002f7c;
		border-radius: 0 20px 0 10px;
		padding: 0 40px 0 63px;
		box-sizing: border-box;
	}
	header .nav_wrap::after{
		position: absolute;
		top: 0;
		right: 0;
		content: "";
		background: #fff;
		width: 40px;
		height: 40px;
		z-index: -1;
	}

	header nav #nav .nav_sp_box ul{
		display: flex;
		justify-content: space-between;
		align-items: center;
		width: 927px;
		box-sizing: border-box;
	}
	header nav #nav .nav_sp_box ul li a{
		display: block;
		color: #fff;
		font-size: 14px;
		height: 50px;
		font-weight: bold;
		line-height: 50px;
	}
	header nav #nav .nav_sp_box ul li a:hover{
		color: #4ab2e6;
		text-decoration: underline;
		text-underline-offset: 4px;
	}
	@media screen and (max-width: 1240px) {
		header .header_box .nav_wrap{
			right: 30px;
		}
	}

	/* header_box active */
	header .header_box.active .nav_wrap{
		position: absolute;
		left: 50%;
		right: auto;
		transform: translateX(-50%);
		justify-content: center;
		height: 40px;
		padding: 0;
	}
	header .header_box.active .nav_wrap::after{
		content: none;
	}
	header .header_box.active .nav_wrap nav #nav .nav_sp_box ul li a{
		height: 40px;
		line-height: 40px;
	}



/* home
------------------------------------------------------------------------*/

	/* key */
	.home .key{
		width: 100%;
		min-height: 900px;
		height: 100vh;
		padding: 60px 50px 0;
		box-sizing: border-box;
		position: relative;
	}
	.home .key .swiper01{
		width: 100%;
		height: calc(100% - 50px);
		z-index: -1;
		position: relative;
	}
	.home .key .swiper01 .swiper-slide img{
		width: 100%;
		height: 100%;
		border-radius: 20px;
		object-fit: cover;
	}

	.home .key .inner{
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		margin: 0 auto;
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		gap: 0 10px;
		width: 100%;
		height: 100%;
		padding: 465px 0 0 50px;
		box-sizing: border-box;
	}
	.home .key .inner .text01{
		display: inline-block;
		width: 710px;
		background: #002f7c;
		border-radius: 0 5px 5px 0;
		padding: 0 0 0 62px;
		box-sizing: border-box;
		color: #fff;
		font-size: 22px;
		font-weight: bold;
		line-height: 40px;
	}
	.home .key .inner .text01 span{
		font-weight: bold;
	}
	.home .key .inner .text01 span::before{
		content: "［";
		padding-right: 5px;
	}
	.home .key .inner .text01 span::after{
		content: "］";
		padding-left: 5px;
	}
	.home .key .inner .text02{
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		width: 711px;
		height: 210px;
		background: #fff;
		padding: 26px 73px 22px 60px;
		border-radius: 0 10px 10px 0;
		box-sizing: border-box;
		margin: 15px 0 0 -1px;
	}
	.home .key .inner .text02 .span01{
		position: relative;
	}
	.home .key .inner .text02 .span01::after{
		position: absolute;
		top: 74px;
		left: 50%;
		transform: translateX(-50%);
		content: "";
		background: url("img/home_key_text02.svg")no-repeat;
		width: 573px;
		height: 15px;
	}
	.home .key .inner .text02 .span02{
		margin-top: 37px;
	}


	/* cont01 */
	.home .cont01{
		padding: 80px 0 0;
	}
	.home .cont01 .inner{
		display: flex;
		justify-content: space-between;
		align-items: center;
		background: #e0efff;
		border-radius: 5px;
		padding: 22px 60px;
		box-sizing: border-box;
	}
	@media screen and (max-width: 1300px){
		.home .cont01 .inner{
			padding: 22px 30px;
		}
	}
	.home .cont01 .inner h2{
		position: relative;
	}
	.home .cont01 .inner h2::before{
		position: absolute;
		top: 50%;
		right: -60px;
		transform: translateY(-50%);
		content: "";
		background: #002f7c;
		width: 2px;
		height: 45px;
	}
	@media screen and (max-width: 1300px){
		.home .cont01 .inner h2::before{
			right: -43px;
		}
	}
	.home .cont01 .inner .news_box{
		max-height: 56px;
		overflow-y: auto;
		padding: 0 0 0 60px;
		box-sizing: border-box;
		position: relative;
	}
	.home .cont01 .inner .news_box::-webkit-scrollbar {
		width: 3px;
	}
	.home .cont01 .inner .news_box::-webkit-scrollbar-track {
		background-color: transparent;
	}
	.home .cont01 .inner .news_box::-webkit-scrollbar-thumb {
		background-color: #ccc;
	}
	.home .cont01 .inner .news_box .cont + .cont{
		margin-top: 20px;
	}
	.home .cont01 .inner .news_box a.cont:hover{
		text-decoration: underline;
	}
	.home .cont01 .inner .news_box .cont .news_ttl{
		font-size: 16px;
		font-weight: bold;
		line-height: 1.75;
	}
	.home .cont01 .inner .news_box .cont .text01{
		font-size: 16px;
		line-height: 1.375;
		margin-top: 6px;
	}


	/* cont02 */
	.home .cont02 .inner{
		padding: 180px 0 0;
		text-align: center;
		position: relative;
	}
	.home .cont02 .inner h2{
		color: #002f7c;
		font-size: 36px;
		line-height: 1.44;
	}
	.home .cont02 .inner h2 span{
		display: block;
		color: #222;
		font-size: 26px;
		font-weight: bold;
		line-height: 1;
		margin-bottom: 30px;
	}
	.home .cont02 .inner h2 span::before{
		content: "[";
		padding-right: 10px;
	}
	.home .cont02 .inner h2 span::after{
		content: "]";
		padding-left: 10px;
	}
	.home .cont02 .inner .text01{
		font-size: 18px;
		line-height: 2.33;
		margin-top: 50px;
	}
	.home .cont02 .inner .text01 + .text01{
		margin-top: 16px;
	}
	.home .cont02 .inner figure:nth-of-type(1){
		position: absolute;
		top: 130px;
		left: -180px;
	}
	.home .cont02 .inner figure:nth-of-type(2){
		position: absolute;
		top: 450px;
		left: -120px;
	}
	.home .cont02 .inner figure:nth-of-type(3){
		position: absolute;
		top: 130px;
		right: -120px;
	}
	.home .cont02 .inner figure:nth-of-type(4){
		position: absolute;
		top: 450px;
		right: -180px;
	}
	@media screen and (max-width: 1560px){
		.home .cont02 .inner figure:nth-of-type(1){
			left: -80px;
			width: 280px;
		}
		.home .cont02 .inner figure:nth-of-type(2){
			left: -20px;
			width: 280px;
		}
		.home .cont02 .inner figure:nth-of-type(3){
			right: -20px;
			width: 280px;
		}
		.home .cont02 .inner figure:nth-of-type(4){
			right: -80px;
			width: 280px;
		}
	}
	@media screen and (max-width: 1300px){
		.home .cont02 .inner figure:nth-of-type(1){
			top: 200px;
			left: -20px;
			width: 220px;
		}
		.home .cont02 .inner figure:nth-of-type(2){
			left: 0;
			width: 220px;
		}
		.home .cont02 .inner figure:nth-of-type(3){
			top: 200px;
			right: 0;
			width: 220px;
		}
		.home .cont02 .inner figure:nth-of-type(4){
			right: -20px;
			width: 220px;
		}
	}


	/* cont03 */
	.home .cont03{
		margin-top: 100px;
		position: relative;
	}
	.home .cont03::before{
		position: absolute;
		top: 0;
		left: 50%;
		transform: translateX(-50%);
		content: "";
		background: linear-gradient(90deg ,#1158b2 ,#2c80d1);
		width: 1800px;
		height: 100%;
		
		-webkit-mask-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxODAwIDQ1NSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+PHBhdGggZmlsbD0iYmxhY2siIGQ9Ik0wLDQ1NS4zMTQ5NlMzMzUuMjg5MDYsNDguMDkyNzQsMTIzNy42NDk2Miw0OC4wOTI3NGMzNDEuMjI0NzcsMCw1NjIuMzUwMzgsNjcuNjA4MDUsNTYyLjM1MDM4LDY3LjYwODA1VjQ1NUgwWiIvPjwvc3ZnPg=="),linear-gradient(#000, #000);
		mask-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxODAwIDQ1NSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+PHBhdGggZmlsbD0iYmxhY2siIGQ9Ik0wLDQ1NS4zMTQ5NlMzMzUuMjg5MDYsNDguMDkyNzQsMTIzNy42NDk2Miw0OC4wOTI3NGMzNDEuMjI0NzcsMCw1NjIuMzUwMzgsNjcuNjA4MDUsNTYyLjM1MDM4LDY3LjYwODA1VjQ1NUgwWiIvPjwvc3ZnPg=="),linear-gradient(#000, #000); 

		-webkit-mask-size: 100% 455px , 100% calc(100% - 454px);
		mask-size: 100% 455px , 100% calc(100% - 454px);
		-webkit-mask-position: top center, bottom center;
		-webkit-mask-repeat: no-repeat;
		mask-repeat: no-repeat;
		z-index: -1;
	}
	@media (min-width: 1801px){
		.home .cont03::before{
			width: 100%;
			-webkit-mask-size: 100% 455px, 100% calc(100% - 454px);
			mask-size: 100% 455px, 100% calc(100% - 454px);
		}
	}
	.home .cont03 .inner{
		padding: 262px 0 320px;
		position: relative;
	}
	.home .cont03 .inner::before{
		position: absolute;
		top: 40px;
		left: 147px;
		content: "";
		background: url("img/common_illust01.svg")no-repeat;
		width: 119px;
		height: 150px;
	}
	.home .cont03 .inner::after{
		position: absolute;
		top: -50px;
		right: 87px;
		content: "";
		background: url("img/common_illust02.svg")no-repeat;
		width: 249px;
		height: 142px;
	}
	.home .cont03 .inner h2{
		background: url("img/home_text02.svg")center top no-repeat;
		padding: 163px 0 0;
		color: #fff;
		line-height: 1;
		text-align: center;
	}
	.home .cont03 .inner .service_box{
		display: flex;
		justify-content: space-between;
		margin-top: 60px;
	}
	.home .cont03 .inner .service_box .cont{
		display: flex;
		flex-direction: column;
		align-items: center;
		width: 580px;
		background: #fff;
		border-radius: 5px;
		padding-bottom: 51px;
		box-sizing: border-box;
		position: relative;
	}
	.home .cont03 .inner .service_box .cont h3{
		color: #013384;
		font-size: 28px;
		line-height: 1.5;
		text-align: center;
		margin-top: 34px;
		order: 2;
		z-index: 11;
		position: relative;
	}
	.home .cont03 .inner .service_box .cont figure{
		order: 1;
		position: relative;
	}
	.home .cont03 .inner .service_box .cont figure::before{
		position: absolute;
		top: 200px;
		left: 50%;
		transform: translateX(-50%);
		content: "";
		background: #fff;
		width: 190px;
		height: 190px;
		border-radius: 50%;
	}
	.home .cont03 .inner .service_box .cont figure::after{
		position: absolute;
		top: 229px;
		left: 50%;
		transform: translateX(-50%);
		content: "";
		background: url("img/home_icon01.svg")no-repeat;
		width: 99px;
		height: 75px;
	}
	.home .cont03 .inner .service_box .cont:nth-of-type(2) figure::after{
		top: 231px;
		background: url("img/home_icon02.svg")no-repeat;
		width: 139px;
		height: 73px;
	}
	.home .cont03 .inner .service_box .cont figure img{
		border-radius: 5px 5px 0 0;
	}
	@media screen and (max-width: 1300px){
		.home .cont03 .inner{
			padding-bottom: 270px;
		}
		.home .cont03 .inner .service_box .cont{
			width: 530px;
		}
		.home .cont03 .inner .service_box .cont figure::before{
			top: 170px;
		}
		.home .cont03 .inner .service_box .cont figure::after{
			top: 199px;
		}
		.home .cont03 .inner .service_box .cont:nth-of-type(2) figure::after{
			top: 201px;
		}
	}
	.home .cont03 .inner .service_box .cont .text01{
		font-size: 18px;
		font-weight: bold;
		line-height: 1;
		margin-top: 15px;
		order: 3;
	}
	.home .cont03 .inner .service_box .cont .text01::before{
		content: "[";
		padding-right: 8px;
	}
	.home .cont03 .inner .service_box .cont .text01::after{
		content: "]";
		padding-left: 8px;
	}
	.home .cont03 .inner .service_box .cont .text02{
		line-height: 1.875;
		text-align: center;
		margin-top: 23px;
		order: 4;
	}
	.home .cont03 .inner .service_box .cont .button{
		order: 5;
	}
	.home .cont03 .inner .service_box .cont .button a{
		display: block;
		width: 450px;
		height: 50px;
		background: #002f7c url("img/common_arrow01.svg")right 14px center no-repeat;
		border: 1px solid #002f7c;
		border-radius: 25px;
		box-sizing: border-box;
		color: #fff;
		font-size: 14px;
		font-weight: bold;
		line-height: 48px;
		text-align: center;
		margin-top: 23px;
	}
	.home .cont03 .inner .service_box .cont:nth-of-type(2) .button a{
		font-size: 16px;
	}
	.home .cont03 .inner .service_box .cont .button a:hover{
		background: #fff url("img/common_arrow02.svg")right 14px center no-repeat;;
		color: #002f7c;
		opacity: 1;
	}
	

	/* cont04 */
	.home .cont04{
		background: #eaeff4;
		border-radius: 150px 150px 0 0;
		margin-top: -150px;
		position: relative;
	}
	@media screen and (max-width: 1300px){
		.home .cont04{
			border-radius: 100px 100px 0 0;
			margin-top: -100px;
		}
	}
	.home .cont04::before{
		position: absolute;
		bottom: 0;
		left: 50%;
		transform: translateX(-50%);
		content: "";
		background: url("img/home_slideimg01.png")center center repeat-x;
		width: 100%;
		height: 340px;
		animation: aboutslideMove 40s linear infinite;
		z-index: 12;
	}
	@keyframes aboutslideMove{
		0% {background-position: 2640px 0;}
		50% {background-position: 1320px 0;}
		100% {background-position: 0 0;}
	}
	.home .cont04 .inner{
		padding: 170px 0 500px;
		position: relative;
	}
	.home .cont04 .inner h2{
		background: url("img/home_text03.svg")center top no-repeat;
		padding: 93px 0 0;
		font-size: 18px;
		line-height: 1;
		text-align: center;
	}
	.home .cont04 .inner .products_box{
		display: flex;
		justify-content: space-between;
		flex-wrap: wrap;
		gap: 30px 0;
		margin-top: 60px;
	}
	.home .cont04 .inner .products_box .cont{
		display: block;
		width: 280px;
		background: #fff;
		border: 1px solid #0171b9;
		border-radius: 5px;
		box-sizing: border-box;
		position: relative;
	}
	.home .cont04 .inner .products_box .cont a{
		display: flex;
		flex-wrap: wrap;
		align-content: flex-start;
		height: 403px;
		padding: 0 0 42px;
		box-sizing: border-box;
	}
	.home .cont04 .inner .products_box .cont a h3{
		font-size: 20px;
		line-height: 50px;
		margin: 13px 0 0;
		order: 2;
		position: relative;
	}
	.home .cont04 .inner .products_box .cont:nth-of-type(1) a h3{
		background: url("img/common_icon01.svg")left 27px center no-repeat;
		padding-left: 85px;
	}
	.home .cont04 .inner .products_box .cont:nth-of-type(2) a h3{
		background: url("img/common_icon02.svg")left 31px center no-repeat;
		padding-left: 77px;
	}
	.home .cont04 .inner .products_box .cont:nth-of-type(3) a h3{
		background: url("img/common_icon03.svg")left 27px center no-repeat;
		padding-left: 85px;
	}
	.home .cont04 .inner .products_box .cont:nth-of-type(4) a h3{
		background: url("img/common_icon04.svg")left 28px center no-repeat;
		padding-left: 77px;
	}
	.home .cont04 .inner .products_box .cont:nth-of-type(5) a h3{
		background: url("img/common_icon05.svg")left 27px center no-repeat;
		padding-left: 76px;
	}
	.home .cont04 .inner .products_box .cont:nth-of-type(6) a h3{
		background: url("img/common_icon06.svg")left 30px center no-repeat;
		padding-left: 81px;
	}
	.home .cont04 .inner .products_box .cont:nth-of-type(7) a h3{
		background: url("img/common_icon07.svg")left 29px center no-repeat;
		padding-left: 80px;
	}
	.home .cont04 .inner .products_box .cont:nth-of-type(8) a h3{
		background: url("img/common_icon08.svg")left 27px center no-repeat;
		padding-left: 63px;
	}
	.home .cont04 .inner .products_box .cont:nth-of-type(9) a h3{
		background: url("img/common_icon09.svg")left 27px center no-repeat;
		padding-left: 66px;
	}
	.home .cont04 .inner .products_box .cont:nth-of-type(10) a h3{
		background: url("img/common_icon10.svg")left 27px center no-repeat;
		padding-left: 66px;
	}
	.home .cont04 .inner .products_box .cont:nth-of-type(11) a h3{
		background: url("img/common_icon11.svg")left 26px center no-repeat;
		padding-left: 68px;
		font-size: 18px;
	}
	.home .cont04 .inner .products_box .cont:nth-of-type(12) a h3{
		background: url("img/common_icon12.svg")left 27px center no-repeat;
		padding-left: 76px;
	}
	.home .cont04 .inner .products_box .cont:nth-of-type(13) a h3{
		background: url("img/common_icon13.svg")left 27px center no-repeat;
		padding-left: 80px;
		font-size: 18px;
		line-height: 28px;
		margin-top: 24px;
	}
	.home .cont04 .inner .products_box .cont:nth-of-type(14) a h3{
		background: url("img/common_icon14.svg")left 28px center no-repeat;
		padding-left: 75px;
		font-size: 18px;
	}
	.home .cont04 .inner .products_box .cont:nth-of-type(15) a h3{
		background: url("img/common_icon15.svg")left 27px center no-repeat;
		padding-left: 80px;
	}
	.home .cont04 .inner .products_box .cont:nth-of-type(16) a h3{
		background: url("img/common_icon16.svg")left 29px center no-repeat;
		padding-left: 81px;
		font-size: 18px;
	}
	.home .cont04 .inner .products_box .cont a figure{
		width: 100%;
		height: 150px;
		border-radius: 5px 5px 0 0;
		overflow: hidden;
		order: 1;
	}
	.home .cont04 .inner .products_box .cont a figure img{
		transform: scale(1);
		transition: all .4s;
	}
	.home .cont04 .inner .products_box .cont a:hover figure img{
		transform: scale(1.05);
		transition: all .4s;
	}
	.home .cont04 .inner .products_box .cont a .text01{
		font-size: 15px;
		line-height: 1.73;
		margin: 7px 22px 0 27px;
		order: 3;
	}
	.home .cont04 .inner .products_box .cont:nth-of-type(13) a .text01{
		margin-top: 14px;
	}
	.home .cont04 .inner .products_box .cont a .button{
		position: absolute;
		bottom: 22px;
		left: 27px;
		display: inline-block;
		background: url("img/common_arrow03.svg")right center no-repeat;
		padding-right: 30px;
		color: #0171b9;
		font-size: 14px;
		font-weight: bold;
		line-height: 21px;
		order: 4;
	}
	.home .cont04 .inner .products_box .cont:nth-of-type(13) a .button{
		font-size: 13px;
	}
	@media screen and (max-width: 1300px){
		.home .cont04 .inner .products_box .cont{
			width: 265px;
		}
		.home .cont04 .inner .products_box .cont:nth-of-type(1) a h3{
			background: url("img/common_icon01.svg")left 17px center no-repeat;
			padding-left: 75px;
		}
		.home .cont04 .inner .products_box .cont:nth-of-type(2) a h3{
			background: url("img/common_icon02.svg")left 21px center no-repeat;
			padding-left: 67px;
		}
		.home .cont04 .inner .products_box .cont:nth-of-type(3) a h3{
			background: url("img/common_icon03.svg")left 17px center no-repeat;
			padding-left: 75px;
		}
		.home .cont04 .inner .products_box .cont:nth-of-type(4) a h3{
			background: url("img/common_icon04.svg")left 18px center no-repeat;
			padding-left: 67px;
		}
		.home .cont04 .inner .products_box .cont:nth-of-type(5) a h3{
			background: url("img/common_icon05.svg")left 17px center no-repeat;
			padding-left: 66px;
		}
		.home .cont04 .inner .products_box .cont:nth-of-type(6) a h3{
			background: url("img/common_icon06.svg")left 20px center no-repeat;
			padding-left: 71px;
		}
		.home .cont04 .inner .products_box .cont:nth-of-type(7) a h3{
			background: url("img/common_icon07.svg")left 19px center no-repeat;
			padding-left: 70px;
		}
		.home .cont04 .inner .products_box .cont:nth-of-type(8) a h3{
			background: url("img/common_icon08.svg")left 17px center no-repeat;
			padding-left: 53px;
		}
		.home .cont04 .inner .products_box .cont:nth-of-type(9) a h3{
			background: url("img/common_icon09.svg")left 17px center no-repeat;
			padding-left: 56px;
		}
		.home .cont04 .inner .products_box .cont:nth-of-type(10) a h3{
			background: url("img/common_icon10.svg")left 17px center no-repeat;
			padding-left: 56px;
		}
		.home .cont04 .inner .products_box .cont:nth-of-type(11) a h3{
			background: url("img/common_icon11.svg")left 16px center no-repeat;
			padding-left: 58px;
			font-size: 18px;
		}
		.home .cont04 .inner .products_box .cont:nth-of-type(12) a h3{
			background: url("img/common_icon12.svg")left 17px center no-repeat;
			padding-left: 66px;
		}
		.home .cont04 .inner .products_box .cont:nth-of-type(13) a h3{
			background: url("img/common_icon13.svg")left 17px center no-repeat;
			padding-left: 70px;
			font-size: 18px;
			line-height: 28px;
			margin-top: 24px;
		}
		.home .cont04 .inner .products_box .cont:nth-of-type(14) a h3{
			background: url("img/common_icon14.svg")left 18px center no-repeat;
			padding-left: 65px;
			font-size: 18px;
		}
		.home .cont04 .inner .products_box .cont:nth-of-type(15) a h3{
			background: url("img/common_icon15.svg")left 17px center no-repeat;
			padding-left: 70px;
		}
		.home .cont04 .inner .products_box .cont:nth-of-type(16) a h3{
			background: url("img/common_icon16.svg")left 19px center no-repeat;
			padding-left: 71px;
			font-size: 18px;
		}
		.home .cont04 .inner .products_box .cont a figure{
			height: 141px;
		}
		.home .cont04 .inner .products_box .cont a .text01{
			margin: 7px 12px 0 17px;
		}
		.home .cont04 .inner .products_box .cont a .button{
			left: 17px;
			padding-right: 26px;
		}
	}
	.home .cont04 .inner > .button > a{
		display: block;
		width: 450px;
		height: 50px;
		background: #002f7c url("img/common_arrow01.svg")right 14px center no-repeat;
		border: 1px solid #002f7c;
		border-radius: 25px;
		box-sizing: border-box;
		color: #fff;
		font-size: 16px;
		font-weight: bold;
		line-height: 48px;
		text-align: center;
		margin: 60px auto 0;
	}
	.home .cont04 .inner > .button > a:hover{
		background: #fff url("img/common_arrow02.svg")right 14px center no-repeat;
		color: #002f7c;
		opacity: 1;
	}


	/* cont05 */
	.home .cont05{
		margin-top: 50px;
		position: relative;
	}
	.home .cont05::before{
		position: absolute;
		top: 0;
		left: 50%;
		transform: translateX(-50%) scaleX(-1);
		content: "";
		background: #002f7c;
		width: 1800px;
		height: 100%;
		
		-webkit-mask-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxODAwIDQ1NSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+PHBhdGggZmlsbD0iYmxhY2siIGQ9Ik0wLDQ1NS4zMTQ5NlMzMzUuMjg5MDYsNDguMDkyNzQsMTIzNy42NDk2Miw0OC4wOTI3NGMzNDEuMjI0NzcsMCw1NjIuMzUwMzgsNjcuNjA4MDUsNTYyLjM1MDM4LDY3LjYwODA1VjQ1NUgwWiIvPjwvc3ZnPg=="),linear-gradient(#000, #000);
		mask-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxODAwIDQ1NSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+PHBhdGggZmlsbD0iYmxhY2siIGQ9Ik0wLDQ1NS4zMTQ5NlMzMzUuMjg5MDYsNDguMDkyNzQsMTIzNy42NDk2Miw0OC4wOTI3NGMzNDEuMjI0NzcsMCw1NjIuMzUwMzgsNjcuNjA4MDUsNTYyLjM1MDM4LDY3LjYwODA1VjQ1NUgwWiIvPjwvc3ZnPg=="),linear-gradient(#000, #000); 

		-webkit-mask-size: 100% 455px , 100% calc(100% - 454px);
		mask-size: 100% 455px , 100% calc(100% - 454px);
		-webkit-mask-position: top center, bottom center;
		-webkit-mask-repeat: no-repeat;
		mask-repeat: no-repeat;
		z-index: -1;
	}
	@media (min-width: 1801px){
		.home .cont05::before{
			width: 100%;
			-webkit-mask-size: 100% 455px, 100% calc(100% - 454px);
			mask-size: 100% 455px, 100% calc(100% - 454px);
		}
	}
	.home .cont05 .inner{
		padding: 300px 0 250px;
		color: #fff;
		position: relative;
	}
	.home .cont05 .inner h2{
		background: url("img/home_text04.svg")left top no-repeat;
		padding: 20px 0 0 355px;
		font-size: 18px;
		line-height: 1;
		margin-bottom: 80px;
	}
	.home .cont05 .inner h2 span{
		display: block;
		font-size: 14px;
		line-height: 1;
		margin-bottom: 15px;
	}
	.home .cont05 .inner .box{
		display: flex;
		flex-direction: row-reverse;
		justify-content: flex-end;
		align-items: center;
		gap: 0 40px;
		padding: 40px 0;
		border-top: 1px solid rgba(255,255,255,0.3);
	}
	.home .cont05 .inner .box:last-of-type{
		border-bottom: 1px solid rgba(255,255,255,0.3);
	}
	.home .cont05 .inner .box h3{
		font-size: 22px;
		line-height: 1.5;
	}
	.home .cont05 .inner .box .text01{
		margin-top: 15px;
	}
	.home .cont05 .inner .button a{
		display: block;
		width: 450px;
		height: 50px;
		background: #0b88c5 url("img/common_arrow04.svg")right 14px center no-repeat;
		border: 1px solid #0b88c5;
		border-radius: 25px;
		padding: 0 0 0 40px;
		box-sizing: border-box;
		color: #fff;
		font-size: 16px;
		font-weight: bold;
		line-height: 48px;
		margin-top: 80px;
	}
	.home .cont05 .inner .button a:hover{
		background: #fff url("img/common_arrow03.svg")right 14px center no-repeat;
		background-size: 25px;
		color: #0b88c5;
		opacity: 1;
	}


	/* cont06 */
	.home .cont06{
		background: #eaeff4;
		position: relative;
	}
	.home .cont06::before{
		position: absolute;
		top: -100px;
		left: 50%;
		transform: translateX(-50%);
		content: "";
		background: url("img/home_img10.png")center center /cover no-repeat;
		width: 100%;
		height: 530px;
		border-radius: 50px;
	}
	.home .cont06 .inner{
		padding: 580px 0 150px;
		position: relative;
	}
	.home .cont06 .inner h2{
		background: url("img/home_text05.svg")left top no-repeat;
		padding: 20px 0 0 188px;
		font-size: 18px;
		line-height: 1;
	}
	.home .cont06 .inner h2 span{
		display: block;
		font-size: 14px;
		line-height: 1;
		margin-bottom: 15px;
	}
	.home .cont06 .inner .text01{
		margin-top: 54px;
	}
	.home .cont06 .inner dl{
		display: flex;
		flex-direction: column;
		gap: 20px 0;
		margin-top: 40px;
		position: relative;
	}
	.home .cont06 .inner dl::before{
		position: absolute;
		top: -201px;
		right: 69px;
		content: "";
		background: url("img/common_illust03.svg")no-repeat;
		width: 263px;
		height: 201px;
		z-index: -1;
	}
	.home .cont06 .inner dl .faq_wrap{
		background: #fff;
		border: 2px solid #fff;
		border-radius: 5px;
		padding: 24px 77px 23px 40px;
		box-sizing: border-box;
	}
	.home .cont06 .inner dl .faq_wrap .qes{
		background: url("img/home_icon03.svg")left top no-repeat;
		padding: 0 0 0 36px;
		color: #013384;
		font-size: 18px;
		font-weight: bold;
		line-height: 23px;
		cursor: pointer;
		position: relative;
	}
	.home .cont06 .inner dl .faq_wrap .qes::after{
		position: absolute;
		top: 5px;
		right: -44px;
		transform: rotate(180deg);
		transform-origin: center;
		content: "";
		background: url("img/home_arrow01.svg")no-repeat;
		transition: all .5s ease;
		width: 22px;
		height: 13px;
	}
	.home .cont06 .inner dl .faq_wrap.is-open{
		border: 2px solid #002f7c;
	}
	.home .cont06 .inner dl .faq_wrap.is-open .qes::after{
		position: absolute;
		top: 5px;
		right: -44px;
		transform: rotate(0deg);
		transform-origin: center;
		content: "";
		background: url("img/home_arrow01.svg")no-repeat;
		transition: all .5s ease;
		width: 22px;
		height: 13px;
	}
	.home .cont06 .inner dl .faq_wrap .ans{
		display: none;
		padding: 12px 0 0;
		box-sizing: border-box;
		font-size: 16px;
		line-height: 1.875;
		position: relative;
	}
	.home .cont06 .inner .button a{
		display: block;
		width: 520px;
		height: 50px;
		background: #002f7c url("img/common_arrow01.svg")right 14px center no-repeat;
		border: 1px solid #002f7c;
		border-radius: 25px;
		box-sizing: border-box;
		color: #fff;
		font-size: 16px;
		font-weight: bold;
		line-height: 48px;
		text-align: center;
		margin-top: 50px;
	}
	.home .cont06 .inner .button a:hover{
		background: #fff url("img/common_arrow02.svg")right 14px center no-repeat;
		color: #002f7c;
		opacity: 1;
	}


	/* cont07 */
	.home .cont07{
		background: #eaeff4;
		position: relative;
	}
	.home .cont07::before{
		position: absolute;
		top: 0;
		right: 200px;
		content: "";
		background: linear-gradient(90deg, #1158b2, #2c80d1);
		width: calc(100% - 200px);
		height: 540px;
		border-radius: 0 5px 5px 0;
	}
	.home .cont07 .h_box{
		display: flex;
		justify-content: space-between;
		align-items: flex-end;
		width: 1200px;
		padding: 113px 0 0;
		box-sizing: border-box;
		color: #fff;
		margin: 0 auto;
		z-index: 11;
		position: relative;
	}
	.home .cont07 .h_box h2{
		background: url("img/home_text06.svg")left top no-repeat;
		padding: 47px 0 8px;
		font-size: 15px;
		line-height: 1;
	}
	.home .cont07 .h_box .button a{
		display: block;
		width: 400px;
		height: 50px;
		background: #002f7c url("img/common_arrow01.svg")right 14px center no-repeat;
		border: 1px solid #002f7c;
		border-radius: 25px;
		padding: 0 0 0 44px;
		box-sizing: border-box;
		color: #fff;
		font-size: 16px;
		font-weight: bold;
		line-height: 48px;
		margin-bottom: 9px;
	}
	.home .cont07 .h_box .button a:hover{
		background: #fff url("img/common_arrow02.svg")right 14px center no-repeat;
		color: #002f7c;
		opacity: 1;
	}
	.home .cont07 .blog_box{
		margin-top: 44px;
	}
	.home .cont07 .blog_box .swiper-slide{
		display: block;
		width: 370px;
		background: #fff;
		border-radius: 5px;
		border: 1px solid #0b88c5;
		box-sizing: border-box;
	}
	.home .cont07 .blog_box .swiper-slide a{
		display: flex;
		justify-content: flex-start;
		flex-wrap: wrap;
		gap: 0 5px;
		padding: 20px 20px 18px;
		box-sizing: border-box;
	}
	.home .cont07 .blog_box .swiper-slide a h3{
		width: 100%;
		font-size: 16px;
		flex-shrink: 1;
		overflow: hidden;
		display: -webkit-box;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 1;
		margin-top: 12px;
		order: 2;
	}
	.home .cont07 .blog_box .swiper-slide a .date{
		color: #1f7ed5;
		font-size: 14px;
		font-weight: bold;
		line-height: 17px;
		margin: 6px 0 0;
		order: 3;
	}
	.home .cont07 .blog_box .swiper-slide a .cate{
		height: 17px;
		background: #1f7ed5;
		padding: 0 10px;
		border-radius: 2px;
		box-sizing: border-box;
		color: #fff;
		font-size: 12px;
		line-height: 17px;
		text-align: center;
		margin: 6px 0 0 4px;
		order: 4;
	}
	.home .cont07 .blog_box .swiper-slide a .text02{
		font-size: 14px;
		line-height: 2;
		flex-shrink: 1;
		overflow: hidden;
		display: -webkit-box;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 2;
		margin-top: 8px;
		order: 5;
	}
	.home .cont07 .blog_box .swiper-slide a figure{
		width: 330px;
		height: 220px;
		border-radius: 5px;
		overflow: hidden;
		order: 1;
	}
	.home .cont07 .blog_box .swiper-slide a figure img{
		width: 330px;
		height: 220px;
	}
	@media screen and (max-width: 1300px){
		.home .cont07 .h_box{
			width: 1100px;
		}
	}


	/* cont08 */
	.home .cont08{
		background: #eaeff4;
		position: relative;
	}
	.home .cont08 .inner{
		display: flex;
		flex-direction: column;
		gap: 40px 0;
		padding: 150px 0 130px;
		position: relative;
	}
	.home .cont08 .inner .h_box{
		display: flex;
		justify-content: space-between;
		align-items: flex-start;
		margin-top: 10px;
		order: 2;
	}
	.home .cont08 .inner .h_box .text_box h2{
		display: flex;
		flex-direction: column;
		justify-content: center;
		min-height: 76px;
		background: url("img/logo.svg")left center no-repeat;
		background-size: 82px;
		padding-left: 100px;
		font-size: 26px;
		line-height: 1;
	}
	.home .cont08 .inner .h_box .text_box h2 span{
		display: block;
		font-size: 16px;
		margin-bottom: 18px;
	}
	.home .cont08 .inner .h_box .text_box address{
		margin-top: 26px;
	}
	.home .cont08 .inner .h_box .text_box address .tel{
		display: inline-block;
	}
	.home .cont08 .inner .h_box .text_box address .tel::before{
		content: "TEL："
	}
	.home .cont08 .inner .h_box .text_box address .fax{
		display: inline-block;
	}
	.home .cont08 .inner .h_box .text_box address .fax::before{
		content: "／FAX："
	}
	.home .cont08 .inner .h_box .text_box address .mail::before{
		content: "Mail："
	}
	.home .cont08 .inner .h_box .text_box .opentime::before{
		content: "営業時間：";
	}
	.home .cont08 .inner .h_box .sdgs_box{
		width: 770px;
		background: #fff;
		border-radius: 5px;
		padding: 62px 345px 62px 50px;
		box-sizing: border-box;
		position: relative;
	}
	.home .cont08 .inner .h_box .sdgs_box figure{
		position: absolute;
		top: -246px;
		right: 19px;
		cursor: pointer;
		z-index: 11;
	}
	@media screen and (max-width: 1300px){
		.home .cont08 .inner .h_box .sdgs_box{
			width: 670px;
			background: #fff;
			border-radius: 5px;
			padding: 62px 260px 62px 30px;
			box-sizing: border-box;
			position: relative;
		}
		.home .cont08 .inner .h_box .sdgs_box figure{
			position: absolute;
			top: auto;
			bottom: 20px;
			right: 19px;
			cursor: pointer;
			width: 240px;
			z-index: 11;
		}
	}
	.home .cont08 .inner .h_box .sdgs_box #openPdf{
		transition: opacity 0.3s;
	}
	.home .cont08 .inner .h_box .sdgs_box #openPdf:hover{
		opacity: 0.7;
	}

	/* モーダル */
	.home .cont08 .inner .h_box .sdgs_box dialog{
		width: 90%;
		max-width: 1000px;
		height: 85vh;
		padding: 0;
		border: none;
		border-radius: 10px;
		overflow: hidden;
	}
	.home .cont08 .inner .h_box .sdgs_box dialog::backdrop{
		background: rgba(0, 0, 0, 0.8);
	}
	.home .cont08 .inner .h_box .sdgs_box dialog .modal-content{
		width: 100%;
		height: 100%;
	}
	.home .cont08 .inner .h_box .sdgs_box dialog .close-btn {
		position: absolute;
		top: 10px;
		right: 10px;
		padding: 5px 15px;
	}

	.home .cont08 .inner picture{
		order: 1;
	}
	.home .cont08 .inner .button{
		order: 3;
	}
	.home .cont08 .inner .button a{
		display: block;
		width: 520px;
		height: 50px;
		background: #002f7c url("img/common_arrow01.svg")right 14px center no-repeat;
		border: 1px solid #002f7c;
		border-radius: 25px;
		box-sizing: border-box;
		color: #fff;
		font-size: 16px;
		font-weight: bold;
		line-height: 48px;
		text-align: center;
		margin: 0 auto;
	}
	.home .cont08 .inner .button a:hover{
		background: #fff url("img/common_arrow02.svg")right 14px center no-repeat;
		color: #002f7c;
		opacity: 1;
	}



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

	/* header */
	.common header h1{
		position: absolute;
		top: 121px;
		right: 61px;
		color: #222;
		font-size: 12px;
		line-height: 1;
	}

	/* key */
	.common .key{
		display: grid;
		place-items: center;
		width: calc(100% - 100px);
		height: 270px;
		background: url("img/common_key_bg.png")center center /cover no-repeat;
		padding: 57px 0 0;
		border-radius: 20px;
		box-sizing: border-box;
		margin: 60px auto 0;
	}
	.common .key .text01{
		padding: 55px 0 0;
		font-size: 20px;
		font-weight: bold;
		line-height: 1;
		text-align: center;
	}


	/* pankuzu */
	.pankuzu {
		margin-top: 1em;
		line-height: 1.3;
		z-index: 15;
		position: relative;
	}
	.pankuzu .inner{
		width: 1200px;
		box-sizing: border-box;
	}
	@media screen and (max-width: 1300px){
		.pankuzu .inner{
			width: 1100px;
		}
	}
	.pankuzu ul li {
		display: inline-block;
		margin-right: 10px;
		color: var(--main-color);
		font-size: 14px;
		font-weight: bold;
	}
	.pankuzu ul li a {
		color: #333;
	}
	.pankuzu ul li:not(:last-of-type)::after {
		content: "-";
		margin-left: 10px;
		flex-shrink: 0;
	}
	.pankuzu ul li:last-of-type {
		margin-right: 0;
	}


/* 一覧ページのページャー */
.archive-pager{
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 20px;
	margin:120px auto;
}
.archive-pager .page-numbers{
	background: var(--main-color);
	color: #fff;
	font-weight: bold;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 45px;
	height: 45px;
	border-radius: 50%;
	box-sizing: border-box;
}
.archive-pager .page-numbers.current {
	border: 1px solid var(--main-color);
	color:var(--main-color);
	background: #fff;
}
.archive-pager .page-numbers.prev,
.archive-pager .page-numbers.next{
	background: var(--main-dark-color);
	color: #fff;
	font-weight: bold;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 45px;
	height: 45px;
	border-radius: 50%;
	box-sizing: border-box;
	padding-top: 3px;
}
.archive-pager .page-numbers.next {
	padding-left: 3px;
}



.single-pager{
	display: flex;
	justify-content: space-between;
	margin: 120px auto;
}
.single-pager .prev-pager-box,
.single-pager .next-pager-box{
	width: calc(50% - 30px);
}
.single-pager .prev-pager-box {
	margin-left: 20px;
}
.single-pager .next-pager-box {
	margin-right: 20px;
}
.single-pager a {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	font-size: 14px;
	position: relative;
}
.single-pager .prev-pager-box a {
	flex-direction: row-reverse;
}
.single-pager .prev-pager-box a::before,
.single-pager .next-pager-box a::before {
	content: "";
	width: 35px;
	height: 35px;
	background: var(--main-color);
	border-radius: 50%;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}
.single-pager .prev-pager-box a::before{
	left: -20px;
}
.single-pager .next-pager-box a::before {
	right: -20px;
}
.single-pager .prev-pager-box a::after,
.single-pager .next-pager-box a::after {
	content: "";
	width: 0;
	height: 0;
	border-top: 5px solid transparent;
	border-bottom: 5px solid transparent;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}
.single-pager .prev-pager-box a::after{
	border-right: 8px solid #fff;
	left: -7px;
}
.single-pager .next-pager-box a::after {
	border-left: 8px solid #fff;
	right: -7px;
}
.single-pager .prev-pager-box a .text-box {
	padding-left: 20px;
}
.single-pager .next-pager-box a .text-box {
	padding-right: 20px;
}
.single-pager a h2 {
	line-height: 1.3;
	margin-bottom: 10px;
	font-weight: bold;
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}
.single-pager a .img {
	flex-shrink: 0;
	box-shadow: 0 0 10px 3px rgba(0, 0, 0, 0.05);
}
.single-pager a .img img {
	width: 150px !important;
	border-radius: 5px !important;
}



/* ここから各下層ページ
------------------------------------------------------------------------*/
	/* key */
	
	/* item */
	.item-archive .key .text01,
	.item-single .key .text01{
		min-width: 221px;
		background: url("img/item_key_text01.svg")center top no-repeat;
	}
	
	/* original */
	.original .key .text01{
		min-width: 207px;
		background: url("img/original_key_text01.svg")center top no-repeat;
	}
	
	/* catalog */
	.catalog .key .text01{
		min-width: 202px;
		background: url("img/catalog_key_text01.svg")center top no-repeat;
	}
	
	/* flow */
	.flow .key .text01{
		min-width: 124px;
		background: url("img/flow_key_text01.svg")center top no-repeat;
	}
	
	/* reason */
	.reason .key .text01{
		min-width: 176px;
		background: url("img/reason_key_text01.svg")center top no-repeat;
	}


	/* blog */
	.blog .key .text01{
		min-width: 113px;
		background: url("img/blog_key_text01.svg")center top no-repeat;
	}

	/* company */
	.company .key .text01{
		min-width: 223px;
		background: url("img/company_key_text01.svg")center top no-repeat;
	}

	/* contact */
	.contact .key .text01{
		min-width: 203px;
		background: url("img/contact_key_text01.svg")center top no-repeat;
	}

	/* stocklist */
	.stocklist .key .text01{
		min-width: 216px;
		background: url("img/stocklist_key_text01.svg")center top no-repeat;
		background-size: 216px;
	}

	/* faq */
	.faq .key .text01{
		min-width: 84px;
		background: url("img/faq_key_text01.svg")center top no-repeat;
		background-size: 84px;
	}

	/* privacy */
	.privacy .key .text01{
		min-width: 175px;
		background: url("img/privacy_key_text01.svg")center top no-repeat;
	}

	/* thanks */
	.thanks .key .text01{
		min-width: 168px;
		background: url("img/thanks_key_text01.svg")center top no-repeat;
	}

	/* 404 */
	.yonmaruyon .key .text01{
		min-width: 78px;
		background: url("img/yonmaruyon_key_text01.svg")center top no-repeat;
		background-size: 78px;
	}

	/* 410 */
	.yonichimaru .key .text01{
		min-width: 71px;
		background: url("img/yonichimaru_key_text01.svg")center top no-repeat;
		background-size: 71px;
	}



/* item-archive
------------------------------------------------------------------------*/
	/* cont01 */
	.item-archive .cont01{
		position: relative;
	}
	.item-archive .cont01::after{
		position: absolute;
		bottom: -354px;
		right: 50%;
		transform: translateX(900px);
		content: "";
		background: url("img/item-archive_img19.png")no-repeat;
		width: 1040px;
		height: 1270px;
		z-index: -1;
	}
	@media screen and (min-width: 1801px){
		.item-archive .cont01::after{
			right: 0;
			transform: none;
		}
	}
	.item-archive .cont01 .inner{
		display: flex;
		flex-wrap: wrap;
		gap: 60px 22px;
		padding: 115px 0 150px;
		position: relative;
	}
	.item-archive .cont01 .inner .cont{
		display: flex;
		flex-direction: column;
		align-items: center;
		width: 385px;
		background: #eaeff4;
		border-radius: 5px;
		padding: 20px 20px 70px;
		box-sizing: border-box;
		position: relative;
	}
	.item-archive .cont01 .inner .cont::after{
		position: absolute;
		bottom: 69px;
		left: 50%;
		transform: translateX(-50%);
		content: "";
		background: #0171b9;
		width: calc(100% - 40px);
		height: 1px;
	}
	.item-archive .cont01 .inner .cont h2{
		color: #033384;
		font-size: 22px;
		line-height: 1.55;
		text-align: center;
		margin-top: 24px;
		order: 2;
		z-index: 11;
		position: relative;
	}
	.item-archive .cont01 .inner .cont .text01{
		padding-bottom: 13px;
		line-height: 1.9375;
		margin-top: 13px;
		order: 3;
		z-index: 11;
		position: relative;
	}
	.item-archive .cont01 .inner .cont .text01:nth-of-type(1),
	.item-archive .cont01 .inner .cont .text01:nth-of-type(10),
	.item-archive .cont01 .inner .cont .text01:nth-of-type(11),
	.item-archive .cont01 .inner .cont .text01:nth-of-type(12){
		line-height: 1.875;
	}
	.item-archive .cont01 .inner .cont .text01:nth-of-type(13){
		line-height: 2;
	}
	.item-archive .cont01 .inner .cont figure{
		order: 1;
		position: relative;
	}
	.item-archive .cont01 .inner .cont figure img{
		border-radius: 5px;
	}
	.item-archive .cont01 .inner .cont figure::before{
		position: absolute;
		top: 125px;
		left: 50%;
		transform: translateX(-50%);
		content: "";
		background: #eaeff4;
		width: 110px;
		height: 110px;
		border-radius: 50%;
	}
	@media screen and (max-width: 1300px){
		.item-archive .cont01 .inner .cont{
			width: 350px;
		}
		.item-archive .cont01 .inner .cont h2{
			font-size: 20px;
		}
		.item-archive .cont01 .inner .cont figure img{
			width: 310px;
			height: 175px;
			object-fit: cover;
		}
		.item-archive .cont01 .inner .cont figure::before{
			top: 120px;
		}
	}
	.item-archive .cont01 .inner .cont figure::after{
		position: absolute;
		top: 145px;
		left: 50%;
		transform: translateX(-50%);
		content: "";
		background: url("img/common_icon01.svg")no-repeat;
		width: 45px;
		height: 35px;
	}
	.item-archive .cont01 .inner .cont:nth-of-type(2) figure::after{
		top: 141px;
		background: url("img/common_icon02.svg")no-repeat;
		width: 33px;
		height: 39px;
	}
	.item-archive .cont01 .inner .cont:nth-of-type(3) figure::after{
		top: 142px;
		background: url("img/common_icon03.svg")no-repeat;
		width: 45px;
		height: 37px;
	}
	.item-archive .cont01 .inner .cont:nth-of-type(4) figure::after{
		top: 143px;
		background: url("img/common_icon04.svg")no-repeat;
		width: 36px;
		height: 36px;
	}
	.item-archive .cont01 .inner .cont:nth-of-type(5) figure::after{
		top: 144px;
		background: url("img/common_icon05.svg")no-repeat;
		width: 37px;
		height: 34px;
	}
	.item-archive .cont01 .inner .cont:nth-of-type(6) figure::after{
		top: 145px;
		background: url("img/common_icon06.svg")no-repeat;
		width: 36px;
		height: 36px;
	}
	.item-archive .cont01 .inner .cont:nth-of-type(7) figure::after{
		top: 138px;
		background: url("img/common_icon07.svg")no-repeat;
		width: 40px;
		height: 41px;
	}
	.item-archive .cont01 .inner .cont:nth-of-type(8) figure::after{
		top: 140px;
		background: url("img/common_icon08.svg")no-repeat;
		width: 23px;
		height: 40px;
	}
	.item-archive .cont01 .inner .cont:nth-of-type(9) figure::after{
		top: 147px;
		background: url("img/common_icon09.svg")no-repeat;
		width: 26px;
		height: 28px;
	}
	.item-archive .cont01 .inner .cont:nth-of-type(10) figure::after{
		top: 142px;
		background: url("img/common_icon10.svg")no-repeat;
		width: 28px;
		height: 37px;
	}
	.item-archive .cont01 .inner .cont:nth-of-type(11) figure::after{
		top: 148px;
		background: url("img/common_icon11.svg")no-repeat;
		width: 33px;
		height: 33px;
	}
	.item-archive .cont01 .inner .cont:nth-of-type(12) figure::after{
		top: 147px;
		background: url("img/common_icon12.svg")no-repeat;
		width: 36px;
		height: 34px;
	}
	.item-archive .cont01 .inner .cont:nth-of-type(13) figure::after{
		top: 145px;
		background: url("img/common_icon13.svg")no-repeat;
		width: 35px;
		height: 35px;
	}
	.item-archive .cont01 .inner .cont:nth-of-type(14) figure::after{
		top: 143px;
		background: url("img/common_icon14.svg")no-repeat;
		width: 37px;
		height: 38px;
	}
	.item-archive .cont01 .inner .cont:nth-of-type(15) figure::after{
		top: 140px;
		background: url("img/common_icon15.svg")no-repeat;
		width: 41px;
		height: 41px;
	}
	.item-archive .cont01 .inner .cont:nth-of-type(16) figure::after{
		top: 142px;
		background: url("img/common_icon16.svg")no-repeat;
		width: 37px;
		height: 37px;
	}
	.item-archive .cont01 .inner .cont .button a{
		position: absolute;
		bottom: 10px;
		left: 50%;
		transform: translateX(-50%);
		display: inline-block;
		width: 100%;
		height: 60px;
		color: #0171b9;
		font-size: 14px;
		line-height: 60px;
		text-align: center;
		white-space: nowrap;
	}
	.item-archive .cont01 .inner .cont .button a span{
		padding-right: 32px;
		font-weight: bold;
		position: relative;
	}
	.item-archive .cont01 .inner .cont .button a span::after{
		position: absolute;
		top: 50%;
		right: 0;
		transform: translateY(-50%);
		content: "";
		background: url("img/common_arrow03.svg")no-repeat;
		width: 21px;
		height: 21px;
		transition: all .4s;
	}
	.item-archive .cont01 .inner .cont .button a:hover span::after{
		right: -10px;
		transition: all .4s;
	}



/* item-single
------------------------------------------------------------------------*/

	/* cont01 */
	.item-single .cont01 .inner{
		display: flex;
		flex-direction: row-reverse;
		justify-content: space-between;
		align-items: center;
		padding: 115px 0 150px;
		position: relative;
	}
	.item-single .cont01 .inner .text_box{
		width: 540px;
	}
	.item-single .cont01 .inner .text_box h2{
		color: #033384;
		line-height: 2;
	}
	.item-single .cont01 .inner .text_box .text01{
		padding-bottom: 29px;
		border-bottom: 1px solid #ccc;
		font-size: 24px;
		font-weight: bold;
		line-height: 1;
		margin-top: 20px;
	}
	.item-single .cont01 .inner .text_box .text02{
		margin-top: 22px;
	}
	.item-single .cont01 .inner figure{
		width: 600px;
		height: 400px;
		border-radius: 10px;
		overflow: hidden;
	}
	@media screen and (max-width: 1300px){
		.item-single .cont01 .inner .text_box{
			width: 520px;
		}
		.item-single .cont01 .inner figure{
			width: 540px;
			height: 360px;
		}
	}


	/* cont02 */
	.item-single .cont02{
		background: #eaeff4;
	}
	.item-single .cont02 .inner{
		padding: 150px 0 130px;
	}
	.item-single .cont02 .inner h2{
		background: url("img/item-single_text01.svg")center top no-repeat;
		padding: 93px 0 0;
		font-size: 18px;
		line-height: 1;
		text-align: center;
	}
	.item-single .cont02 .inner h2 span{
		font-weight: bold;
	}
	.item-single .cont02 .inner .sample_box{
		display: flex;
		flex-wrap: wrap;
		gap: 40px 26px;
		margin-top: 60px;
	}
	@media screen and (max-width: 1300px){
		.item-single .cont02 .inner .sample_box{
			gap: 40px 20px;
		}
	}
	.item-single .cont02 .inner .sample_box .cont{
		display: block;
		width: 280px;
		background: #fff;
		border-radius: 5px;
		padding-bottom: 16px;
		overflow: hidden;
		position: relative;
	}
	.item-single .cont02 .inner .sample_box .cont figure img{
		width: 280px;
		height: 350px;
		object-fit: cover;
	}
	.item-single .cont02 .inner .sample_box .cont dl{
		margin: 15px 20px 11px;
	}
	.item-single .cont02 .inner .sample_box .cont dl .info_list{
		display: flex;
	}
	.item-single .cont02 .inner .sample_box .cont dl .info_list dt{
		color: #0171b9;
		font-size: 14px;
		font-weight: bold;
		line-height: 1.65;
		white-space: nowrap;
	}
	.item-single .cont02 .inner .sample_box .cont dl .info_list dt::after{
		content: "：";
	}
	.item-single .cont02 .inner .sample_box .cont dl .info_list dd{
		font-size: 14px;
		line-height: 1.65;
	}
	.item-single .cont02 .inner .sample_box .cont .text01{
		padding-top: 9px;
		border-top: 1px solid #0171b9;
		font-size: 14px;
		line-height: 1.714;
		margin: 0 20px;
	}
	@media screen and (max-width: 1300px){
		.item-single .cont02 .inner .sample_box .cont{
			display: block;
			width: 260px;
			background: #fff;
			border-radius: 5px;
			padding-bottom: 16px;
			overflow: hidden;
			position: relative;
		}
	}


	/* cont03 */
	.item-single .cont03{
		position: relative;
	}
	.item-single .cont03::before{
		position: absolute;
		top: -39px;
		right: 50%;
		transform: translateX(900px);
		content: "";
		background: url("img/common_img17.png")no-repeat;
		width: 790px;
		height: 300px;
	}
	@media screen and (min-width: 1801px){
		.item-single .cont03::before{
			right: 0;
			transform: none;
		}
	}
	.item-single .cont03 .inner{
		padding: 150px 0;
	}
	.item-single .cont03 .inner h2{
		background: url("img/common_text02.svg")left top no-repeat;
		padding: 57px 0 0;
		font-size: 20px;
		line-height: 1;
	}
	.item-single .cont03 .inner h2 span{
		font-weight: bold;
	}
	.item-single .cont03 .inner .flow_box{
		display: flex;
		flex-flow: column wrap;
		gap: 30px 40px;
		height: 668px;
		overflow: hidden;
		margin-top: 50px;
		position: relative;
	}
	.item-single .cont03 .inner .flow_box::before{
		position: absolute;
		top: 10px;
		left: 66px;
		content: "";
		background: url("img/common_line01.svg")repeat-y;
		width: 4px;
		height: calc(100% - 10px);
		z-index: -1;
	}
	.item-single .cont03 .inner .flow_box::after{
		position: absolute;
		top: 0;
		left: 686px;
		content: "";
		background: url("img/common_line01.svg")repeat-y;
		width: 4px;
		height: calc(100% - 50px);
		z-index: -1;
	}
	.item-single .cont03 .inner .flow_box .cont{
		display: flex;
		flex-direction: column;
		justify-content: center;
		width: 580px;
		min-height: 164px;
		background: #eaeff4 url("img/common_numbertxt01.svg")left 30px center no-repeat;
		padding: 0 30px 0 130px;
		border-radius: 10px;
		box-sizing: border-box;
	}
	.item-single .cont03 .inner .flow_box .cont:nth-of-type(1){
		padding: 34px 30px 37px 130px;
	}
	.item-single .cont03 .inner .flow_box .cont:nth-of-type(2){
		background: #eaeff4 url("img/common_numbertxt02.svg")left 30px center no-repeat;
	}
	.item-single .cont03 .inner .flow_box .cont:nth-of-type(3){
		background: #eaeff4 url("img/common_numbertxt03.svg")left 30px center no-repeat;
	}
	.item-single .cont03 .inner .flow_box .cont:nth-of-type(4){
		background: #eaeff4 url("img/common_numbertxt04.svg")left 30px center no-repeat;
		margin-top: 76px;
	}
	.item-single .cont03 .inner .flow_box .cont:nth-of-type(5){
		background: #eaeff4 url("img/common_numbertxt05.svg")left 30px center no-repeat;
	}
	.item-single .cont03 .inner .flow_box .cont:nth-of-type(6){
		background: #eaeff4 url("img/common_numbertxt06.svg")left 30px center no-repeat;
		border: 2px solid #002f7c;
	}
	@media screen and (max-width: 1300px){
		.item-single .cont03 .inner .flow_box{
			gap: 30px 30px;
		}
		.item-single .cont03 .inner .flow_box .cont{
			display: flex;
			flex-direction: column;
			justify-content: center;
			width: 535px;
			min-height: 164px;
			background: #eaeff4 url("img/common_numbertxt01.svg")left 15px center no-repeat;
			background-size: 60px;
			padding: 0 20px 0 90px;
			border-radius: 10px;
			box-sizing: border-box;
		}
		.item-single .cont03 .inner .flow_box .cont:nth-of-type(2){
			background: #eaeff4 url("img/common_numbertxt02.svg")left 15px center no-repeat;
			background-size: 60px;
		}
		.item-single .cont03 .inner .flow_box .cont:nth-of-type(3){
			background: #eaeff4 url("img/common_numbertxt03.svg")left 15px center no-repeat;
			background-size: 60px;
		}
		.item-single .cont03 .inner .flow_box .cont:nth-of-type(4){
			background: #eaeff4 url("img/common_numbertxt04.svg")left 15px center no-repeat;
			background-size: 60px;
		}
		.item-single .cont03 .inner .flow_box .cont:nth-of-type(5){
			background: #eaeff4 url("img/common_numbertxt05.svg")left 15px center no-repeat;
			background-size: 60px;
		}
		.item-single .cont03 .inner .flow_box .cont:nth-of-type(6){
			background: #eaeff4 url("img/common_numbertxt06.svg")left 15px center no-repeat;
			background-size: 60px;
		}
	}
	.item-single .cont03 .inner .flow_box .cont h3{
		color: #002f7c;
		font-size: 20px;
		line-height: 1.6;
	}
	.item-single .cont03 .inner .flow_box .cont .text01{
		line-height: 1.75;
		margin-top: 8px;
	}
	.item-single .cont03 .inner .flow_box .cont .in_box{
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 0 9px;
		height: 60px;
		background: #fff;
		border-radius: 5px;
		margin-top: 13px;
	}
	.item-single .cont03 .inner .flow_box .cont .in_box .tel{
		display: flex;
		align-items: center;
		gap: 0 5px;
		font-size: 15px;
		line-height: 1;
	}
	.item-single .cont03 .inner .flow_box .cont .in_box .tel a{
		display: inline-block;
		min-height: 22px;
		background: url("img/tel_icon.svg")left center no-repeat;
		background-size: 17px;
		padding-left: 22px;
	}
	.item-single .cont03 .inner .flow_box .cont .in_box .mail a{
		display: block;
		width: 40px;
		height: 40px;
		background: #0171b9 url("img/common_icon17.svg")center center no-repeat;
		background-size: 20px;
		border-radius: 50%;
		padding: 40px 0 0;
		box-sizing: border-box;
		overflow: hidden;
	}
	.item-single .cont03 .inner .flow_box .cont .in_box .tel a img{
		width: 172px;
	}
	.item-single .cont03 .inner .button a{
		display: block;
		width: 450px;
		height: 50px;
		background: #002f7c url("img/common_arrow01.svg")right 14px center no-repeat;
		border: 1px solid #002f7c;
		border-radius: 25px;
		box-sizing: border-box;
		color: #fff;
		font-size: 16px;
		font-weight: bold;
		line-height: 48px;
		text-align: center;
		margin: 50px auto 0;
	}
	.item-single .cont03 .inner .button a:hover{
		background: #fff url("img/common_arrow02.svg")right 14px center no-repeat;
		color: #002f7c;
		opacity: 1;
	}
	.item-single .cont03 .inner .button a span{
		font-weight: bold;
	}


	/* cont04 */
	.item-single .cont04{
		background: #eaeff4;
	}
	.item-single .cont04 .inner{
		padding: 150px 0;
	}
	.item-single .cont04 .inner h2{
		background: url("img/item-single_text03.svg")left top no-repeat;
		padding: 58px 0 0;
		font-size: 20px;
		line-height: 1;
	}
	.item-single .cont04 .inner h2 .span01{
		display: block;
		font-size: 14px;
		line-height: 1;
		margin-bottom: 15px;
	}
	.item-single .cont04 .inner .cont{
		display: flex;
		flex-direction: row-reverse;
		justify-content: flex-end;
		align-items: center;
		gap: 0 40px;
		padding: 40px 0;
		border-top: 1px solid rgba(204,204,204,0.88);
		position: relative;
	}
	.item-single .cont04 .inner .cont:first-of-type{
		margin-top: 60px;
	}
	.item-single .cont04 .inner .cont:last-of-type{
		border-bottom: 1px solid rgba(204,204,204,0.88);
	}
	.item-single .cont04 .inner .cont:first-of-type::after{
		position: absolute;
		top: -201px;
		right: 0;
		content: "";
		background: url("img/common_illust03.svg")no-repeat;
		width: 263px;
		height: 201px;
	}
	.item-single .cont04 .inner .cont .text_box{
		width: 800px;
	}
	@media screen and (max-width: 1300px){
		.item-single .cont04 .inner .cont .text_box{
			width: 700px;
		}
	}
	.item-single .cont04 .inner .cont h3{
		font-size: 22px;
		line-height: 1.73;
	}
	.item-single .cont04 .inner .cont .text01{
		margin-top: 13px;
	}
	.item-single .cont04 .inner .cont figure{
		border-radius: 5px;
		overflow: hidden;
	}
	.item-single .cont04 .inner .button a{
		display: block;
		width: 450px;
		height: 50px;
		background: #002f7c url("img/common_arrow01.svg")right 14px center no-repeat;
		border: 1px solid #002f7c;
		border-radius: 25px;
		box-sizing: border-box;
		color: #fff;
		font-size: 16px;
		font-weight: bold;
		line-height: 48px;
		text-align: center;
		margin: 60px auto 0;
	}
	.item-single .cont04 .inner .button a:hover{
		background: #fff url("img/common_arrow02.svg")right 14px center no-repeat;
		color: #002f7c;
		opacity: 1;
	}
	.item-single .cont04 .inner .button a span{
		font-weight: bold;
	}



/* original
------------------------------------------------------------------------*/
	/* cont01 */
	.original .cont01 .inner{
		padding: 110px 0 138px;
		text-align: center;
		position: relative;
	}
	.original .cont01 .inner::before{
		position: absolute;
		top: 440px;
		left: 0;
		content: "";
		background: url("img/common_illust01.svg")no-repeat;
		width: 119px;
		height: 150px;
	}
	.original .cont01 .inner::after{
		position: absolute;
		top: 72px;
		right: 0;
		content: "";
		background: url("img/common_illust02.svg")no-repeat;
		width: 249px;
		height: 142px;
	}
	.original .cont01 .inner h2{
		font-size: 14px;
		font-weight: normal;
		line-height: 1;
	}
	.original .cont01 .inner .text01{
		font-size: 34px;
		font-weight: bold;
		line-height: 1;
	}
	.original .cont01 .inner .text01 span{
		display: inline-block;
		padding: 15px 65px;
		border-top: 1px solid #ccc;
		border-bottom: 1px solid #ccc;
		color: #033384;
		font-size: 22px;
		font-weight: bold;
		line-height: 1;
		margin: 20px 0 40px;
	}
	.original .cont01 .inner .text02{
		font-size: 18px;
		line-height: 2.33;
		margin-top: 36px;
	}
	.original .cont01 .inner .button a{
		display: block;
		width: 450px;
		height: 50px;
		background: #002f7c url("img/common_arrow01.svg")right 14px center no-repeat;
		border: 1px solid #002f7c;
		border-radius: 25px;
		box-sizing: border-box;
		color: #fff;
		font-size: 16px;
		font-weight: bold;
		line-height: 48px;
		text-align: center;
		margin: 46px auto 0;
	}
	.original .cont01 .inner .button a:hover{
		background: #fff url("img/common_arrow02.svg")right 14px center no-repeat;
		color: #002f7c;
		opacity: 1;
	}


	/* cont02 */
	.original .cont02{
		background: #eaeff4;
		border-radius: 150px 150px 0 150px;
		position: relative;
	}
	@media screen and (max-width: 1300px){
		.original .cont02{
			border-radius: 100px 100px 0 0;
		}
	}
	.original .cont02 .inner{
		padding: 150px 0;
		position: relative;
	}
	.original .cont02 .inner h2{
		background: url("img/original_text01.svg")center top no-repeat;
		padding: 70px 0 0;
		font-size: 18px;
		line-height: 1;
		text-align: center;
	}
	.original .cont02 .inner .category_box{
		display: flex;
		justify-content: space-between;
		flex-wrap: wrap;
		gap: 30px 0;
		margin-top: 60px;
	}
	.original .cont02 .inner .category_box .cont{
		display: block;
		width: 280px;
		background: #fff;
		border: 1px solid #0171b9;
		border-radius: 5px;
		box-sizing: border-box;
		position: relative;
	}
	.original .cont02 .inner .category_box .cont a{
		display: flex;
		flex-wrap: wrap;
		align-content: flex-start;
		height: 403px;
		padding: 0 0 42px;
		box-sizing: border-box;
	}
	.original .cont02 .inner .category_box .cont a h3{
		font-size: 20px;
		line-height: 50px;
		margin: 13px 0 0;
		order: 2;
		position: relative;
	}
	.original .cont02 .inner .category_box .cont:nth-of-type(1) a h3{
		background: url("img/common_icon01.svg")left 27px center no-repeat;
		padding-left: 85px;
	}
	.original .cont02 .inner .category_box .cont:nth-of-type(2) a h3{
		background: url("img/common_icon02.svg")left 31px center no-repeat;
		padding-left: 77px;
	}
	.original .cont02 .inner .category_box .cont:nth-of-type(3) a h3{
		background: url("img/common_icon03.svg")left 27px center no-repeat;
		padding-left: 85px;
	}
	.original .cont02 .inner .category_box .cont:nth-of-type(4) a h3{
		background: url("img/common_icon04.svg")left 28px center no-repeat;
		padding-left: 77px;
	}
	.original .cont02 .inner .category_box .cont:nth-of-type(5) a h3{
		background: url("img/common_icon05.svg")left 27px center no-repeat;
		padding-left: 76px;
	}
	.original .cont02 .inner .category_box .cont:nth-of-type(6) a h3{
		background: url("img/common_icon06.svg")left 30px center no-repeat;
		padding-left: 81px;
	}
	.original .cont02 .inner .category_box .cont:nth-of-type(7) a h3{
		background: url("img/common_icon07.svg")left 29px center no-repeat;
		padding-left: 80px;
	}
	.original .cont02 .inner .category_box .cont:nth-of-type(8) a h3{
		background: url("img/common_icon08.svg")left 27px center no-repeat;
		padding-left: 63px;
	}
	.original .cont02 .inner .category_box .cont:nth-of-type(9) a h3{
		background: url("img/common_icon09.svg")left 27px center no-repeat;
		padding-left: 66px;
	}
	.original .cont02 .inner .category_box .cont:nth-of-type(10) a h3{
		background: url("img/common_icon10.svg")left 27px center no-repeat;
		padding-left: 66px;
	}
	.original .cont02 .inner .category_box .cont:nth-of-type(11) a h3{
		background: url("img/common_icon11.svg")left 26px center no-repeat;
		padding-left: 68px;
		font-size: 18px;
	}
	.original .cont02 .inner .category_box .cont:nth-of-type(12) a h3{
		background: url("img/common_icon12.svg")left 27px center no-repeat;
		padding-left: 76px;
	}
	.original .cont02 .inner .category_box .cont:nth-of-type(13) a h3{
		background: url("img/common_icon13.svg")left 27px center no-repeat;
		padding-left: 80px;
		font-size: 18px;
		line-height: 28px;
		margin-top: 24px;
	}
	.original .cont02 .inner .category_box .cont:nth-of-type(14) a h3{
		background: url("img/common_icon14.svg")left 28px center no-repeat;
		padding-left: 75px;
		font-size: 18px;
	}
	.original .cont02 .inner .category_box .cont:nth-of-type(15) a h3{
		background: url("img/common_icon15.svg")left 27px center no-repeat;
		padding-left: 80px;
	}
	.original .cont02 .inner .category_box .cont:nth-of-type(16) a h3{
		background: url("img/common_icon16.svg")left 29px center no-repeat;
		padding-left: 81px;
		font-size: 18px;
	}
	.original .cont02 .inner .category_box .cont a figure{
		width: 100%;
		height: 150px;
		border-radius: 5px 5px 0 0;
		overflow: hidden;
		order: 1;
	}
	.original .cont02 .inner .category_box .cont a figure img{
		transform: scale(1);
		transition: all .4s;
	}
	.original .cont02 .inner .category_box .cont a:hover figure img{
		transform: scale(1.05);
		transition: all .4s;
	}
	.original .cont02 .inner .category_box .cont a .text01{
		font-size: 15px;
		line-height: 1.73;
		margin: 7px 22px 0 27px;
		order: 3;
	}
	.original .cont02 .inner .category_box .cont:nth-of-type(13) a .text01{
		margin-top: 14px;
	}
	.original .cont02 .inner .category_box .cont a .button{
		position: absolute;
		bottom: 22px;
		left: 27px;
		display: inline-block;
		background: url("img/common_arrow03.svg")right center no-repeat;
		padding-right: 30px;
		color: #0171b9;
		font-size: 14px;
		font-weight: bold;
		line-height: 21px;
		order: 4;
	}
	.original .cont02 .inner .category_box .cont:nth-of-type(13) a .button{
		font-size: 13px;
	}
	@media screen and (max-width: 1300px){
		.original .cont02 .inner .category_box .cont{
			width: 265px;
		}
		.original .cont02 .inner .category_box .cont:nth-of-type(1) a h3{
			background: url("img/common_icon01.svg")left 17px center no-repeat;
			padding-left: 75px;
		}
		.original .cont02 .inner .category_box .cont:nth-of-type(2) a h3{
			background: url("img/common_icon02.svg")left 21px center no-repeat;
			padding-left: 67px;
		}
		.original .cont02 .inner .category_box .cont:nth-of-type(3) a h3{
			background: url("img/common_icon03.svg")left 17px center no-repeat;
			padding-left: 75px;
		}
		.original .cont02 .inner .category_box .cont:nth-of-type(4) a h3{
			background: url("img/common_icon04.svg")left 18px center no-repeat;
			padding-left: 67px;
		}
		.original .cont02 .inner .category_box .cont:nth-of-type(5) a h3{
			background: url("img/common_icon05.svg")left 17px center no-repeat;
			padding-left: 66px;
		}
		.original .cont02 .inner .category_box .cont:nth-of-type(6) a h3{
			background: url("img/common_icon06.svg")left 20px center no-repeat;
			padding-left: 71px;
		}
		.original .cont02 .inner .category_box .cont:nth-of-type(7) a h3{
			background: url("img/common_icon07.svg")left 19px center no-repeat;
			padding-left: 70px;
		}
		.original .cont02 .inner .category_box .cont:nth-of-type(8) a h3{
			background: url("img/common_icon08.svg")left 17px center no-repeat;
			padding-left: 53px;
		}
		.original .cont02 .inner .category_box .cont:nth-of-type(9) a h3{
			background: url("img/common_icon09.svg")left 17px center no-repeat;
			padding-left: 56px;
		}
		.original .cont02 .inner .category_box .cont:nth-of-type(10) a h3{
			background: url("img/common_icon10.svg")left 17px center no-repeat;
			padding-left: 56px;
		}
		.original .cont02 .inner .category_box .cont:nth-of-type(11) a h3{
			background: url("img/common_icon11.svg")left 16px center no-repeat;
			padding-left: 58px;
			font-size: 18px;
		}
		.original .cont02 .inner .category_box .cont:nth-of-type(12) a h3{
			background: url("img/common_icon12.svg")left 17px center no-repeat;
			padding-left: 66px;
		}
		.original .cont02 .inner .category_box .cont:nth-of-type(13) a h3{
			background: url("img/common_icon13.svg")left 17px center no-repeat;
			padding-left: 70px;
			font-size: 18px;
			line-height: 28px;
			margin-top: 24px;
		}
		.original .cont02 .inner .category_box .cont:nth-of-type(14) a h3{
			background: url("img/common_icon14.svg")left 18px center no-repeat;
			padding-left: 65px;
			font-size: 18px;
		}
		.original .cont02 .inner .category_box .cont:nth-of-type(15) a h3{
			background: url("img/common_icon15.svg")left 17px center no-repeat;
			padding-left: 70px;
		}
		.original .cont02 .inner .category_box .cont:nth-of-type(16) a h3{
			background: url("img/common_icon16.svg")left 19px center no-repeat;
			padding-left: 71px;
			font-size: 18px;
		}
		.original .cont02 .inner .category_box .cont a figure{
			height: 141px;
		}
		.original .cont02 .inner .category_box .cont a .text01{
			margin: 7px 12px 0 17px;
		}
		.original .cont02 .inner .category_box .cont a .button{
			left: 17px;
			padding-right: 26px;
		}
	}
	.original .cont02 .inner > .button > a{
		display: block;
		width: 450px;
		height: 50px;
		background: #002f7c url("img/common_arrow01.svg")right 14px center no-repeat;
		border: 1px solid #002f7c;
		border-radius: 25px;
		box-sizing: border-box;
		color: #fff;
		font-size: 16px;
		font-weight: bold;
		line-height: 48px;
		text-align: center;
		margin: 60px auto 0;
	}
	.original .cont02 .inner > .button > a:hover{
		background: #fff url("img/common_arrow02.svg")right 14px center no-repeat;
		color: #002f7c;
		opacity: 1;
	}


	/* cont03 */
	.original .cont03{
		position: relative;
	}
	.original .cont03::before{
		position: absolute;
		top: -39px;
		right: 50%;
		transform: translateX(900px);
		content: "";
		background: url("img/common_img17.png")no-repeat;
		width: 790px;
		height: 300px;
	}
	@media screen and (min-width: 1801px){
		.original .cont03::before{
			right: 0;
			transform: none;
		}
	}
	.original .cont03 .inner{
		padding: 150px 0;
	}
	.original .cont03 .inner h2{
		background: url("img/common_text02.svg")left top no-repeat;
		padding: 57px 0 0;
		font-size: 20px;
		line-height: 1;
	}
	.original .cont03 .inner h2 span{
		font-weight: bold;
	}
	.original .cont03 .inner .flow_box{
		display: flex;
		flex-flow: column wrap;
		gap: 30px 40px;
		height: 668px;
		overflow: hidden;
		margin-top: 50px;
		position: relative;
	}
	.original .cont03 .inner .flow_box::before{
		position: absolute;
		top: 10px;
		left: 66px;
		content: "";
		background: url("img/common_line01.svg")repeat-y;
		width: 4px;
		height: calc(100% - 10px);
		z-index: -1;
	}
	.original .cont03 .inner .flow_box::after{
		position: absolute;
		top: 0;
		left: 686px;
		content: "";
		background: url("img/common_line01.svg")repeat-y;
		width: 4px;
		height: calc(100% - 50px);
		z-index: -1;
	}
	.original .cont03 .inner .flow_box .cont{
		display: flex;
		flex-direction: column;
		justify-content: center;
		width: 580px;
		min-height: 164px;
		background: #eaeff4 url("img/common_numbertxt01.svg")left 30px center no-repeat;
		padding: 0 30px 0 130px;
		border-radius: 10px;
		box-sizing: border-box;
	}
	.original .cont03 .inner .flow_box .cont:nth-of-type(1){
		padding: 34px 30px 37px 130px;
	}
	.original .cont03 .inner .flow_box .cont:nth-of-type(2){
		background: #eaeff4 url("img/common_numbertxt02.svg")left 30px center no-repeat;
	}
	.original .cont03 .inner .flow_box .cont:nth-of-type(3){
		background: #eaeff4 url("img/common_numbertxt03.svg")left 30px center no-repeat;
	}
	.original .cont03 .inner .flow_box .cont:nth-of-type(4){
		background: #eaeff4 url("img/common_numbertxt04.svg")left 30px center no-repeat;
		margin-top: 76px;
	}
	.original .cont03 .inner .flow_box .cont:nth-of-type(5){
		background: #eaeff4 url("img/common_numbertxt05.svg")left 30px center no-repeat;
	}
	.original .cont03 .inner .flow_box .cont:nth-of-type(6){
		background: #eaeff4 url("img/common_numbertxt06.svg")left 30px center no-repeat;
		border: 2px solid #002f7c;
	}
	@media screen and (max-width: 1300px){
		.original .cont03 .inner .flow_box{
			gap: 30px 30px;
		}
		.original .cont03 .inner .flow_box .cont{
			display: flex;
			flex-direction: column;
			justify-content: center;
			width: 535px;
			min-height: 164px;
			background: #eaeff4 url("img/common_numbertxt01.svg")left 15px center no-repeat;
			background-size: 60px;
			padding: 0 20px 0 90px;
			border-radius: 10px;
			box-sizing: border-box;
		}
		.original .cont03 .inner .flow_box .cont:nth-of-type(2){
			background: #eaeff4 url("img/common_numbertxt02.svg")left 15px center no-repeat;
			background-size: 60px;
		}
		.original .cont03 .inner .flow_box .cont:nth-of-type(3){
			background: #eaeff4 url("img/common_numbertxt03.svg")left 15px center no-repeat;
			background-size: 60px;
		}
		.original .cont03 .inner .flow_box .cont:nth-of-type(4){
			background: #eaeff4 url("img/common_numbertxt04.svg")left 15px center no-repeat;
			background-size: 60px;
		}
		.original .cont03 .inner .flow_box .cont:nth-of-type(5){
			background: #eaeff4 url("img/common_numbertxt05.svg")left 15px center no-repeat;
			background-size: 60px;
		}
		.original .cont03 .inner .flow_box .cont:nth-of-type(6){
			background: #eaeff4 url("img/common_numbertxt06.svg")left 15px center no-repeat;
			background-size: 60px;
		}
	}
	.original .cont03 .inner .flow_box .cont h3{
		color: #002f7c;
		font-size: 20px;
		line-height: 1.6;
	}
	.original .cont03 .inner .flow_box .cont .text01{
		line-height: 1.75;
		margin-top: 8px;
	}
	.original .cont03 .inner .flow_box .cont .in_box{
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 0 9px;
		height: 60px;
		background: #fff;
		border-radius: 5px;
		margin-top: 13px;
	}
	.original .cont03 .inner .flow_box .cont .in_box .tel{
		display: flex;
		align-items: center;
		gap: 0 5px;
		font-size: 15px;
		line-height: 1;
	}
	.original .cont03 .inner .flow_box .cont .in_box .tel a{
		display: inline-block;
		min-height: 22px;
		background: url("img/tel_icon.svg")left center no-repeat;
		background-size: 17px;
		padding-left: 22px;
	}
	.original .cont03 .inner .flow_box .cont .in_box .mail a{
		display: block;
		width: 40px;
		height: 40px;
		background: #0171b9 url("img/common_icon17.svg")center center no-repeat;
		background-size: 20px;
		border-radius: 50%;
		padding: 40px 0 0;
		box-sizing: border-box;
		overflow: hidden;
	}
	.original .cont03 .inner .flow_box .cont .in_box .tel a img{
		width: 172px;
	}
	.original .cont03 .inner .button a{
		display: block;
		width: 450px;
		height: 50px;
		background: #002f7c url("img/common_arrow01.svg")right 14px center no-repeat;
		border: 1px solid #002f7c;
		border-radius: 25px;
		box-sizing: border-box;
		color: #fff;
		font-size: 16px;
		font-weight: bold;
		line-height: 48px;
		text-align: center;
		margin: 50px auto 0;
	}
	.original .cont03 .inner .button a:hover{
		background: #fff url("img/common_arrow02.svg")right 14px center no-repeat;
		color: #002f7c;
		opacity: 1;
	}
	.original .cont03 .inner .button a span{
		font-weight: bold;
	}



/* catalog
------------------------------------------------------------------------*/
	/* cont01 */
	.catalog .cont01 .inner{
		padding: 110px 0 150px;
		text-align: center;
		position: relative;
	}
	.catalog .cont01 .inner h2{
		font-size: 14px;
		font-weight: normal;
		line-height: 1;
	}
	.catalog .cont01 .inner .text01{
		font-size: 34px;
		font-weight: bold;
		line-height: 1;
	}
	.catalog .cont01 .inner .text01 span{
		display: inline-block;
		padding: 15px 25px;
		border-top: 1px solid #ccc;
		border-bottom: 1px solid #ccc;
		color: #033384;
		font-size: 22px;
		font-weight: bold;
		line-height: 1;
		margin: 20px 0 40px;
	}
	.catalog .cont01 .inner .text02{
		font-size: 18px;
		line-height: 2.33;
		margin-top: 36px;
	}
	.catalog .cont01 .inner .button a{
		display: block;
		width: 450px;
		height: 50px;
		background: #002f7c url("img/common_arrow01.svg")right 14px center no-repeat;
		border: 1px solid #002f7c;
		border-radius: 25px;
		box-sizing: border-box;
		color: #fff;
		font-size: 16px;
		font-weight: bold;
		line-height: 48px;
		text-align: center;
		margin: 46px auto 0;
	}
	.catalog .cont01 .inner .button a:hover{
		background: #fff url("img/common_arrow02.svg")right 14px center no-repeat;
		color: #002f7c;
		opacity: 1;
	}
	.catalog .cont01 .inner figure{
		position: absolute;
		top: 315px;
		left: -140px;
	}
	.catalog .cont01 .inner figure:nth-of-type(2){
		position: absolute;
		top: 109px;
		left: auto;
		right: -140px;
	}
	@media screen and (max-width: 1480px){
		.catalog .cont01 .inner figure{
			left: -40px;
			width: 260px;
		}
		.catalog .cont01 .inner figure:nth-of-type(2){
			right: -40px;
			width: 260px;
		}
	}
	@media screen and (max-width: 1300px){
		.catalog .cont01 .inner figure{
			width: 200px;
		}
		.catalog .cont01 .inner figure:nth-of-type(2){
			width: 200px;
		}
	}


	/* cont02 */
	.catalog .cont02{
		background: #eaeff4;
	}
	.catalog .cont02 .inner{
		padding: 150px 0 0;
		position: relative;
	}
	.catalog .cont02 .inner ul{
		display: flex;
		flex-wrap: wrap;
		gap: 15px;
	}
	.catalog .cont02 .inner ul li{
		width: 390px;
		display: flex;
	}
	.catalog .cont02 .inner ul li a{
		width: 100%;
		display: flex;
		align-items: center;
		justify-content: center;
		color: #002f7c;
		background: #fff;
		border: 1px solid #002f7c;
		font-size: 16px;
		line-height: 1.4;
		font-weight: bold;
		padding: 15px;
		text-align: center;
		box-sizing: border-box;
		border-radius: 5px;
	}
	.catalog .cont02 .inner ul li a:hover{
		color: #fff;
		background: #002f7c;
		opacity: 1;
	}
	@media screen and (max-width: 1300px){
		.catalog .cont02 .inner ul li{
			width: 356.66px;
		}
	}


	/* catalog_wrap */
	.catalog .catalog_wrap{
		background: #eaeff4;
		padding-bottom: 30px;
	}


	/* catalog_cont */
	.catalog .catalog_cont{
		width: 1200px;
		padding: 120px 0;
		margin: 0 auto;
	}
	@media screen and (max-width: 1300px){
		.catalog .catalog_cont{
			width: 1100px;
		}
	}
	.catalog .catalog_cont:nth-of-type(n+2){
		border-top: 1px solid #0171b9;
	}
	.catalog .catalog_cont h2{
		background: url("img/catalog_text01.svg")center top no-repeat;
		padding: 34px 0 0;
		color: #002f7c;
		font-size: 26px;
		line-height: 1;
		text-align: center;
	}
	.catalog .catalog_cont h2 span{
		font-weight: bold;
	}
	.catalog .catalog_cont .catalog_box{
		display: flex;
		flex-wrap: wrap;
		gap: 30px 26px;
		margin-top: 60px;
	}
	@media screen and (max-width: 1300px){
		.catalog .catalog_cont .catalog_box{
			gap: 30px 20px;
		}
	}
	.catalog .catalog_cont .catalog_box .cont a{
		display: block;
		width: 280px;
		background: #fff;
		border-radius: 5px;
		padding-bottom: 30px;
		overflow: hidden;
		position: relative;
	}
	.catalog .catalog_cont .catalog_box .cont a dl{
		margin: 15px 20px 11px;
	}
	.catalog .catalog_cont .catalog_box .cont a dl .info_list{
		display: flex;
	}
	.catalog .catalog_cont .catalog_box .cont a dl .info_list dt{
		color: #0171b9;
		font-size: 14px;
		font-weight: bold;
		line-height: 1.65;
		white-space: nowrap;
	}
	.catalog .catalog_cont .catalog_box .cont a dl .info_list dt::after{
		content: "：";
	}
	.catalog .catalog_cont .catalog_box .cont a dl .info_list dd{
		font-size: 14px;
		line-height: 1.65;
	}
	.catalog .catalog_cont .catalog_box .cont a .text01{
		padding-top: 9px;
		border-top: 1px solid #0171b9;
		font-size: 14px;
		line-height: 1.714;
		margin: 0 20px 16px;
	}
	.catalog .catalog_cont .catalog_box .cont a .button{
		position: absolute;
		bottom: 0;
		left: 0;
		display: block;
		width: 280px;
		height: 30px;
		background: #0171b9 url("img/common_arrow05.svg")right 10px center no-repeat;
		border-radius: 0 0 5px 5px;
		box-sizing: border-box;
		color: #fff;
		font-size: 14px;
		font-weight: bold;
		line-height: 30px;
		text-align: center;
		transition: all .4s;
	}
	.catalog .catalog_cont .catalog_box .cont a:hover .button{
		background: #c8e9ff url("img/common_arrow06.svg")right 10px center no-repeat;
		color: #0171b9;
		transition: all .4s;
	}
	@media screen and (max-width: 1300px){
		.catalog .catalog_cont .catalog_box .cont a{
			width: 260px;
		}
		.catalog .catalog_cont .catalog_box .cont a dl{
			margin: 15px 10px 11px;
		}
		.catalog .catalog_cont .catalog_box .cont a .text01{
			margin: 0 10px 16px;
		}
		.catalog .catalog_cont .catalog_box .cont a .button{
			width: 260px;
		}
	}



/* flow
------------------------------------------------------------------------*/
	/* cont01 */
	.flow .cont01 .inner{
		padding: 80px 0 150px;
		position: relative;
	}
	.flow .cont01 .inner::before{
		position: absolute;
		top: 140px;
		left: 223px;
		content: "";
		background: url("img/common_line01.svg")repeat-y;
		width: 4px;
		height: calc(100% - 300px);
	}
	.flow .cont01 .inner .cont{
		display: flex;
		flex-direction: row-reverse;
		justify-content: flex-end;
		align-items: center;
		gap: 0 60px;
		background: #eaeff4;
		border-radius: 10px;
		padding: 20px 35px 20px 20px;
		box-sizing: border-box;
	}
	.flow .cont01 .inner .cont:nth-of-type(n+2){
		margin-top: 40px;
	}
	.flow .cont01 .inner .cont .text_box{
		width: 680px;
	}
	.flow .cont01 .inner .cont .text_box h2{
		font-size: 20px;
	}
	.flow .cont01 .inner .cont .text_box .text01{
		margin-top: 6px;
		line-height: 1.875;
	}
	.flow .cont01 .inner .cont .text_box .in_box{
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 0 9px;
		width: 650px;
		height: 60px;
		background: #fff;
		border-radius: 5px;
		margin-top: 13px;
	}
	.flow .cont01 .inner .cont .text_box .in_box h3{
		padding-right: 22px;
		border-right: 2px solid #0171b9;
		color: #0171b9;
		font-size: 18px;
		line-height: 20px;
		margin-right: 14px;
	}
	.flow .cont01 .inner .cont .text_box .in_box .tel{
		display: flex;
		align-items: center;
		gap: 0 10px;
		font-size: 15px;
		line-height: 1;
	}
	.flow .cont01 .inner .cont .text_box .in_box .tel a{
		display: inline-block;
		min-height: 23px;
		background: url("img/tel_icon.svg")left center no-repeat;
		background-size: 18px;
		padding-left: 22px;
	}
	.flow .cont01 .inner .cont .text_box .in_box .mail a{
		display: block;
		width: 40px;
		height: 40px;
		background: #0171b9 url("img/common_icon17.svg")center center no-repeat;
		background-size: 20px;
		border-radius: 50%;
		padding: 40px 0 0;
		box-sizing: border-box;
		overflow: hidden;
	}
	.flow .cont01 .inner .cont .text_box .in_box .tel a img{
		width: 196px;
	}
	.flow .cont01 .inner .cont figure{
		position: relative;
	}
	@media screen and (max-width: 1300px){
		.flow .cont01 .inner .cont{
			gap: 0 50px;
			padding: 20px;
		}
		.flow .cont01 .inner .cont .text_box{
			width: 630px;
		}
		.flow .cont01 .inner .cont .text_box .in_box{
			gap: 0 5px;
			width: 630px;
		}
		.flow .cont01 .inner .cont .text_box .in_box h3{
			padding-right: 18px;
			font-size: 16px;
			margin-right: 10px;
		}
		.flow .cont01 .inner .cont figure{
			width: 380px;
		}
	}
	.flow .cont01 .inner .cont figure::before{
		position: absolute;
		top: 50%;
		right: -37px;
		transform: translateY(-50%);
		content: "";
		background: url("img/common_numbertxt01.svg")no-repeat;
		width: 75px;
		height: 75px;
	}
	.flow .cont01 .inner .cont:nth-of-type(2) figure::before{
		background: url("img/common_numbertxt02.svg")no-repeat;
	}
	.flow .cont01 .inner .cont:nth-of-type(3) figure::before{
		background: url("img/common_numbertxt03.svg")no-repeat;
	}
	.flow .cont01 .inner .cont:nth-of-type(4) figure::before{
		background: url("img/common_numbertxt04.svg")no-repeat;
	}
	.flow .cont01 .inner .cont:nth-of-type(5) figure::before{
		background: url("img/common_numbertxt05.svg")no-repeat;
	}
	.flow .cont01 .inner .cont:nth-of-type(6) figure::before{
		background: url("img/common_numbertxt06.svg")no-repeat;
	}
	.flow .cont01 .inner .cont:nth-of-type(7) figure::before{
		background: url("img/common_numbertxt07.svg")no-repeat;
	}
	.flow .cont01 .inner .cont:nth-of-type(8) figure::before{
		background: url("img/common_numbertxt08.svg")no-repeat;
	}



/* reason
------------------------------------------------------------------------*/
	/* cont01 */
	.reason .cont01 .inner{
		padding: 80px 0 150px;
		position: relative;
	}
	.reason .cont01 .inner h2{
		display: block;
		width: 689px;
		margin: 0 auto;
	}
	.reason .cont01 .inner .text01{
		font-size: 20px;
		font-weight: bold;
		text-align: center;
		margin: 37px 0 0 0.5em;
	}
	.reason .cont01 .inner .reason_box{
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		gap: 60px 0;
		margin-top: 90px;
	}
	.reason .cont01 .inner .reason_box .cont{
		display: flex;
		flex-direction: column;
		align-items: center;
		width: 580px;
		background: #eaeff4;
		border-radius: 10px;
		padding: 0 0 42px;
		box-sizing: border-box;
		overflow: hidden;
	}
	.reason .cont01 .inner .reason_box .cont h3{
		color: #002f7c;
		font-size: 26px;
		line-height: 1.54;
		text-align: center;
		margin-top: 42px;
		order: 2;
		z-index: 11;
		position: relative;
	}
	.reason .cont01 .inner .reason_box .cont .text02{
		padding: 0 45px 0 50px;
		margin-top: 27px;
		order: 3;
		z-index: 11;
		position: relative;
	}
	.reason .cont01 .inner .reason_box .cont figure{
		order: 1;
		position: relative;
	}
	.reason .cont01 .inner .reason_box .cont figure::before{
		position: absolute;
		top: 195px;
		left: 50%;
		transform: translateX(-50%);
		content: "";
		background: #eaeff4;
		width: 190px;
		height: 190px;
		border-radius: 50%;
	}
	.reason .cont01 .inner .reason_box .cont figure::after{
		position: absolute;
		top: 236px;
		left: 50%;
		transform: translateX(-50%);
		content: "";
		background: url("img/reason_icon01.svg")no-repeat;
		width: 76px;
		height: 70px;
	}
	.reason .cont01 .inner .reason_box .cont:nth-of-type(2) figure::after{
		top: 228px;
		background: url("img/reason_icon02.svg")no-repeat;
		width: 83px;
		height: 74px;
	}
	.reason .cont01 .inner .reason_box .cont:nth-of-type(3) figure::after{
		top: 232px;
		background: url("img/reason_icon03.svg")no-repeat;
		width: 139px;
		height: 69px;
	}
	.reason .cont01 .inner .reason_box .cont:nth-of-type(4) figure::after{
		top: 233px;
		background: url("img/reason_icon04.svg")no-repeat;
		width: 80px;
		height: 72px;
	}
	.reason .cont01 .inner .reason_box .cont:nth-of-type(5) figure::after{
		top: 227px;
		background: url("img/reason_icon05.svg")no-repeat;
		width: 99px;
		height: 79px;
	}
	.reason .cont01 .inner .reason_box .cont:nth-of-type(6) figure::after{
		top: 234px;
		background: url("img/reason_icon06.svg")no-repeat;
		width: 95px;
		height: 72px;
	}
	@media screen and (max-width: 1300px){
		.reason .cont01 .inner .reason_box .cont{
			width: 540px;
		}
		.reason .cont01 .inner .reason_box .cont h3{
			font-size: 22px;
		}
		.reason .cont01 .inner .reason_box .cont figure img{
			width: 540px;
			height: auto;
			object-fit: cover;
		}
		.reason .cont01 .inner .reason_box .cont figure::before{
			top: 180px;
		}
		.reason .cont01 .inner .reason_box .cont figure::after{
			top: 211px;
		}
		.reason .cont01 .inner .reason_box .cont:nth-of-type(2) figure::after{
			top: 203px;
		}
		.reason .cont01 .inner .reason_box .cont:nth-of-type(3) figure::after{
			top: 207px;
		}
		.reason .cont01 .inner .reason_box .cont:nth-of-type(4) figure::after{
			top: 208px;
		}
		.reason .cont01 .inner .reason_box .cont:nth-of-type(5) figure::after{
			top: 202px;
		}
		.reason .cont01 .inner .reason_box .cont:nth-of-type(6) figure::after{
			top: 209px;
		}
	}



/* stocklist
------------------------------------------------------------------------*/
	.stocklist .cont01{
		margin-top: 15px;
		padding: 120px 0;
		background: #eaeff4;
		box-sizing: border-box;
		position: relative;
	}
	.stocklist .cont01 .inner{
		width: 1000px;
		padding: 120px 100px;
		background: #fff;
		border: 1px solid #0171b9;
		border-radius: 5px;
		box-sizing: border-box;
		position: relative;
	}
	.stocklist .cont01 .inner h2{
		background: url("img/stocklist_text01.svg")center top no-repeat;
		background-size: 482px;
		padding: 70px 0 0;
		font-size: 18px;
		line-height: 1;
		text-align: center;
	}
	.stocklist .cont01 .stock_top{
		display: flex;
		align-items: center;
		gap: 40px;
		margin: 20px auto;
	}
	.stocklist .cont01 .stock_top .welcome{
		font-size: 20px;
		line-height: 1;
	}
	.stocklist .cont01 .stock_top .logout a{
		display: inline-block;
		width: 130px;
		height: 40px;
		font-size: 14px;
		color: #fff;
		background: #0171b9;
		line-height: 40px;
		font-weight: bold;
		text-align: center;
	}
	.stocklist .cont01 .stocklist ul li + li{
		margin-top: 15px;
	}
	.stocklist .cont01 .stocklist ul li .date{
		color: var(--main-color);
		font-weight: bold;
		margin-bottom: 10px;
	}
	.stocklist .cont01 .stocklist ul li a{
		display: inline-block;
		width: 100%;
		height: 50px;
		font-size: 14px;
		color: #fff;
		background: var(--main-color);
		line-height: 50px;
		font-weight: bold;
		text-align: center;
	}



/* faq
------------------------------------------------------------------------*/
.faq .cont01 {
	box-sizing: border-box;
	margin: 120px auto;
	width: 1000px;
}
.faq .cont01 h2 {
	font-size: 20px;
	line-height: 2;
	text-align: center;
	margin-bottom: 100px;
}
.faq .cont01 .box {
	padding: 30px 40px;
	border-top: 1px solid var(--main-color);
	position: relative;
	cursor: pointer;
}
.faq .cont01 .box:last-of-type {
	border-bottom: 1px solid var(--main-color);
}
.faq .cont01 .box span {
	position: absolute;
	top: 38px;
	right: 40px;
	width: 19px;
	height: 19px;
	background: var(--main-color);
	border-radius: 50%;
	transition: all .3s;
}
.faq .cont01 .box.active span {
	background: #bbbbbb;
	transition: all .3s;
}
.faq .cont01 .box span::before {
	content: "";
	width: 8px;
	height: 2px;
	background: #fff;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.faq .cont01 .box span::after {
	content: "";
	width: 2px;
	height: 8px;
	background: #fff;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	opacity: 1;
	transition: all .3s;
}
.faq .cont01 .box.active span::after {
	opacity: 0;
	transition: all .3s;
}
.faq .cont01 .box p {
	padding-left: 40px;
	position: relative;
	font-weight: bold;
}
.faq .cont01 .box .qus::before {
	content: 'Q';
	font-size: 18px;
	font-weight: bold;
	color: var(--main-color);
	position: absolute;
	top: 0;
	left: 0;
}
.faq .cont01 .box .qus {
	font-size: 18px;
	transition: all .3s;
}
.faq .cont01 .box.active .qus {
	color: #bbbbbb;
	transition: all .3s;
}
.faq .cont01 .box .ans {
	padding-top: 15px;
	display: none;
}



/* company
------------------------------------------------------------------------*/
/* company 共通 */
.company .cont01 h2,
.company .cont02 h2,
.company .cont03 h2 {
	font-size: 28px;
	text-align: center;
	padding-bottom: 35px;
	font-weight: bold;
	position: relative;
	line-height: 1;
}
.company .cont01 h2::before,
.company .cont02 h2::before,
.company .cont03 h2::before {
	content: '';
	font-size: 16px;
	font-weight: bold;
	color: var(--main-color);
	width: 100%;
	text-align: center;
	position: absolute;
	bottom: 0;
	left: 0;
}
.company .cont01 h2::before {
	content: "GREETING";
}
.company .cont02 h2::before {
	content: "COMPANY PROFILE";
}
.company .cont03 h2::before {
	content: "OUTLINE";
}
.company table {
	width: 100%;
	text-align: left;
	margin: 40px auto 0;
}
.company table tr {
	border-top: 1px solid #fff;
}
.company table tr:last-of-type {
	border-bottom: 1px solid #fff;
}
.company table th {
	width: 250px;
	padding: 23px 0 20px 50px;
	font-weight: bold;
	vertical-align: middle;
}
.company table td {
	padding: 23px 0 20px;
	vertical-align: middle;
}

/* cont01 */
.company .cont01 {
	margin: 120px auto;
}
.company .cont01 .flex {
	display: flex;
	align-items: center;
	padding-top: 50px;
}
.company .cont01 .flex .text_box {
	padding-left: 50px;
}
.company .cont01 .flex .text_box h3 {
	font-size: 22px;
	padding-bottom: 25px;
}
.company .cont01 .flex .text_box .text02 {
	text-align: right;
	font-size: 24px;
	margin-top: 40px;
	font-weight: bold;
}
.company .cont01 .flex .text_box .text02 span {
	font-size: 16px;
	font-weight: bold;
}
.company .cont01 .flex .text_box .text02 img {
	vertical-align: text-bottom;
	margin-top: 5px;
}
.company .cont01 .img {
	flex-shrink: 0;
	border-radius: 10px;
	overflow: hidden;
}


/* cont02 */
.company .cont02 {
	margin: 120px auto;
	padding: 120px 0;
	background: var(--main-light-color);
}
.company .cont02 .inner {
	width: 1000px;
}


/* cont02 */
.company .cont03 {
	width: 1000px;
	margin: 100px auto;
}
.company .cont03 table tr {
	border-top: 1px solid var(--main-color);
}
.company .cont03 table tr:last-of-type {
	border-bottom: 1px solid var(--main-color);
}



/*blog共通項目
--------------------------------------------------------------------------*/
.blog .flex {
	display: flex;
	justify-content: flex-start;
	margin: 120px auto;
}
.blog .flex .left_box{
	flex-shrink: 1;
	width: 800px;
	margin-right: 30px;
}
.blog .flex .side {
	width: 370px;
	flex-shrink: 0;
	margin-top: -5px;
}
.blog .flex .side .side_box02,
.blog .flex .side .side_box03 {
	margin: 60px 0;
}
.blog .flex .side .cont a {
	display: flex;
	flex-direction: row-reverse;
	justify-content: flex-end;
	align-items: center;
	box-sizing: border-box;
	margin-top: 20px;
}
.blog .flex .side h2 {
	font-size: 20px;
	font-weight: bold;
	padding-bottom: 5px;
	border-bottom: 1px solid var(--main-color);
	position: relative;
}
.blog .flex .side h2::before {
	content: "";
	color: var(--main-color);
	font-size: 14px;
	position: absolute;
	top: 7px;
	left: 100px;
}
.blog .flex .side .side_box01 h2::before {
	content: "Popular Articles";
}
.blog .flex .side .side_box02 h2::before {
	content: "New Articles";
}
.blog .flex .side .side_box03 h2::before {
	content: "Category";
	left: 110px;
}
.blog .flex .side .cont .text_box {
	margin-left: 15px;
	font-size: 14px;
	width: 205px;
}
.blog .flex .side .cont .text_box h3 {
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	margin-bottom: 10px;
}
.blog .flex .side .cont .img {
	width: 150px;
	flex-shrink: 0;
	position: relative;
	box-shadow: 0 0 10px 3px rgba(0, 0, 0, 0.05);
	border-radius: 5px;
}
.blog .flex .side .cont .img img {
	border-radius: 5px;
}
.blog .flex .side .side_box01 .cont .img::before {
	content: "";
	width: 25px;
	height: 25px;
	font-size: 14px;
	font-weight: bold;
	color: #fff;
	background: var(--main-color);
	line-height: 1;
	box-sizing: border-box;
	padding-top: 6px;
	text-align: center;
	position: absolute;
	top: 0;
	left: 0;
}
.blog .flex .side .side_box01 .cont:nth-of-type(1) .img::before {
	content: "1";
	background: #f2cd44;
}
.blog .flex .side .side_box01 .cont:nth-of-type(2) .img::before {
	content: "2";
	background: #ababab;
}
.blog .flex .side .side_box01 .cont:nth-of-type(3) .img::before {
	content: "3";
	background: #bc6c25;
}
.blog .flex .side .side_box01 .cont:nth-of-type(4) .img::before {
	content: "4";
}
.blog .flex .side .side_box01 .cont:nth-of-type(5) .img::before {
	content: "5";
}
.blog .flex .side .side_box02 .cont .img {
	position: relative;
}
.blog .flex .side .side_box02 .cont .img::before {
	content: "NEW";
	width: 50px;
	height: 25px;
	line-height: 1;
	font-size: 14px;
	box-sizing: border-box;
	padding-top: 5px;
	color: #fff;
	background: var(--main-color);
	border-right: 1px solid #fff;
	border-bottom: 1px solid #fff;
	text-align: center;
	position: absolute;
	top: 0;
	left: 0;
}
.blog .flex .side .side_box03 ul {
	margin-top: 15px;
}
.blog .flex .side .side_box03 ul li {
	position: relative;
	padding-left: 32px;
}
.blog .flex .side .side_box03 ul li:nth-of-type(n+2) {
	margin-top: 15px;
}
.blog .flex .side .side_box03 ul li::before {
	content: '';
	width: 25px;
	height: 25px;
	border-radius: 50%;
	background: url(img/category_icon.png) no-repeat top 7px left 7px var(--main-color);
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
}



/*blog_archive
------------------------------------------------------------------------*/
.blog_archive .cont01 .cont:nth-of-type(1) {
	margin-top: 0;
}
.blog_archive .cont01 .cont {
	border-bottom: 1px solid var(--main-color);
	margin-top: 30px;
}
.blog_archive .cont01 .cont a{
	display: block;
	box-sizing: border-box;
	padding: 0 0 30px;
	display: flex;
	align-items: center;
	flex-direction: row-reverse;
	justify-content: flex-end;
}
.blog_archive .cont01 .cont .img {
	flex-shrink: 0;
	box-shadow: 0 0 20px 10px rgba(0, 0, 0, 0.03);
	border-radius: 10px;
}
.blog_archive .cont01 .cont .img img {
	border-radius: 10px;
}
.blog_archive .cont01 .cont .text_box {
	width: 440px;
	padding-left: 30px;
}
.blog_archive .cont01 .cont h2 {
	font-size: 18px;
}
.blog_archive .cont01 .cont .text_box .cate_box {
	margin: 15px 0;
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	align-items: center;
}
.blog_archive .cont01 .cont .text_box .cate_box .cate {
	font-size: 12px;
	line-height: 1;
	color: #fff;
	background: var(--main-color);
	border-radius: 5px;
	min-width: 100px;
	padding: 7px 15px;
	text-align: center;
}
.blog_archive .cont01 .cont .text_box .cate_box .date {
	font-size: 14px;
	line-height: 1;
}
.blog_archive .cont01 .cont .text_box .text {
	line-height: 1.8;
}


/* ブログ詳細 css */
.blog_single .cont01 h1{
	padding-bottom: 10px;
	border-bottom: 1px solid var(--main-color);
	font-size: 20px;
	line-height: 1.5;
	margin: 0 0 25px;
	font-weight: bold;
	position: relative;
}
.blog_single .cont01 .cate_box {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
	margin: 0 0 20px;
}
/*
.blog_single .cont01 .cate_box .cate {
	line-height: 1;
	font-size: 12px;
	color: #fff;
	text-align: center;
	min-width: 100px;
	padding: 7px 15px;
	border-radius: 5px;
	background: var(--main-color);
}*/
.blog_single .cont01 .cate_box .cate {
	text-align: center;
}
.blog_single .cont01 .cate_box .cate a{
	color: #fff;
	text-decoration: none;
	display: block;
	line-height: 1;
	font-size: 12px;
	min-width: 100px;
	padding: 7px 15px;
	border-radius: 5px;
	background: var(--main-color);
}

.blog_single .cont01 .cate_box .date{
	font-size: 14px;
	line-height: 1;
	margin: 0;
	font-weight: bold;
}



/* contact
------------------------------------------------------------------------*/
/* cont01 */
.contact .cont01 {
	width: 1000px;
	margin: 120px auto 0;
}
.contact .cont01 .tel-box {
	padding: 40px 0 35px;
	border-top: 1px solid var(--main-dark-color);
	/* border-bottom: 1px solid var(--main-color); */
}
.contact .cont01 .line-box {
	padding: 40px 0 45px;
	border-top: 1px solid var(--main-dark-color);
	border-bottom: 1px solid var(--main-dark-color);
}
.contact .cont01 h2{
	font-size: 18px;
}
.contact .cont01 .tel-box h2::before {
	content: '■';
	color: var(--main-color);
	padding-right: 5px;
}
.contact .cont01 .line-box h2::before {
	content: '■';
	color: #00b12b;
	padding-right: 5px;
}
.contact .cont01 .tel-box p {
	display: flex;
	align-items: center;
	margin-top: 10px;
	line-height: 1.5;
}
.contact .cont01 .tel-box a {
	display: inline-block;
	font-size: 30px;
	padding-right: 20px;
	pointer-events: none;
}
.contact .cont01 .line-box p {
	margin-top: 15px;
}
.contact .cont01 .line-box a {
	font-size: 18px;
	line-height: 1;
	padding: 20px 75px 20px 55px;
	background: url(img/contact-line.png) no-repeat center left, url(img/contact-qr.png) no-repeat center right;
}


/* cont02 */
.contact .cont02 {
	width: 1000px;
	margin: 40px auto 250px;
}
.contact .cont02 h2{
	font-size: 18px;
}
.contact .cont02 h2::before {
	content: '■';
	color: var(--main-color);
	padding-right: 5px;
}
.contact .cont02 .lead {
	margin-top: 20px;
	font-size: 14px;
	line-height: 2;
}
.contact .cont02 table{
	width:1000px;
	margin: 40px auto 0;
}
.contact .cont02 table tr {
	border-top: 1px solid var(--main-color);
}
.contact .cont02 table tr:last-of-type {
	border-bottom: 1px solid var(--main-color);
}
.contact .cont02 table th{
	width: 265px;
	text-align: left;
	vertical-align: middle;
	position: relative;
	box-sizing: border-box;
	font-weight: bold;
	padding: 30px 0;
	position: relative;
}
.contact .cont02 table th span{
	color: #fff;
	background: var(--main-color);
	border-radius: 5px;
	float: right;
	padding: 7px 15px;
	line-height: 1;
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
}
.contact .cont02 tr.address-contact th {
	vertical-align: top;
	padding-top: 48px;
}
.contact .cont02 tr.address-contact th span {
	top: 45px;
	transform: none;
}
.contact .cont02 table td{
	vertical-align: middle;
	padding: 30px 0 30px 25px;
}
.contact .cont02 table td .radio-box {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 20px 60px;
}
.contact .cont02 table td .radio-box span {
	display: flex;
	align-items: center;
	gap: 0 5px;
}
.contact .cont02 table td .radio-box span input {
	margin: 0 !important;
}
.contact .cont02 table td input[type="text"],
.contact .cont02 table td input[type="email"],
.contact .cont02 table td input[type="tel"],
.contact .cont02 table td select,
.contact .cont02 table td textarea{
	width:100% !important;
	height: 60px !important;
	font-size:16px;
	font: inherit;
	padding: 5px;
	box-sizing: border-box;
	padding: 20px 30px;
	border: none !important;
	background: var(--main-light-color);
	border-radius: 5px !important;
}
.contact .cont02 tr.address-contact input {
	margin-bottom: 10px !important;
}
.contact .cont02 tr.address-contact input:first-of-type {
	margin-right: 20px;
}
.contact .cont02 tr.address-contact input:first-of-type,
.contact .cont02 tr.address-contact input:nth-of-type(2) {
	width: 210px !important;
}
.contact .cont02 tr.address-contact input:last-of-type {
	margin-bottom: 0 !important;
}
.contact .cont02 table td select {
	cursor: pointer;
}
.contact .cont02 table td textarea{
	height: 250px !important;
	vertical-align: middle;
	resize:none
}
.contact .cont02 .privacy_check{
	text-align: center;
	padding: 50px 0 40px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
}
.contact .cont02 .privacy_check a {
	text-decoration: underline;
}
.contact .cont02 .privacy_check div.mfp_err {
	text-align: center;
	width: 1000px;
	margin: 0 auto;
	padding: 10px 0;
	box-sizing: border-box;
	background: url(img/mfp_error.gif) no-repeat top 12px left 320px;
}
.contact .cont02 .privacy_check input {
	width: 15px;
	height: 15px;
	margin: 0 5px;
}
.contact .cont02 .privacy_check label {
	margin: 0 5px!important;
}
.contact .cont02 .button{
	text-align: center;
}
.contact .cont02 .button input{
	font-family: var(--main-font) !important;
	width: 360px;
	border-radius: 60px;
	line-height: 1;
	padding: 20px 0;
	font-size: 16px;
	box-sizing: border-box;
	cursor: pointer;
	margin: auto;
	border: none;
	display: block;
	color: #fff;
	background: var(--main-color);
	border: 1px solid var(--main-color);
	transition: all .5s;
}
.contact .cont02 .button input:hover{
	background: #fff;
	color: var(--main-color);
	transition: all .5s;
}



/* thanks
------------------------------------------------------------------------*/
.thanks .cont01{
	padding: 70px 0 100px;
	text-align: center;
}
.thanks .cont01 h2{
	text-align: center;
	font-size: 24px;
}
.thanks .cont01 .text{
	margin: 40px 0 0;
	font-weight: bold;
}
.thanks .cont01 .button {
	margin-top: 50px;
}
.thanks .cont01 .button a{
	width: 360px;
	border-radius: 60px;
	line-height: 1;
	padding: 20px 0;
	font-size: 16px;
	box-sizing: border-box;
	cursor: pointer;
	margin: auto;
	border: none;
	display: block;
	color: #fff;
	background: var(--main-color);
	border: 1px solid var(--main-color);
	transition: all .5s;
}
.thanks .cont01 .button a:hover {
	background: #fff;
	color: var(--main-color);
	transition: all .5s;
}



/* privacy
------------------------------------------------------------------------*/
.privacy .cont01 {
	width: 1000px;
	margin: 50px auto 100px;
}
.privacy .cont01 h2 {
	font-size: 28px;
	text-align: center;
}
.privacy .cont01 .text01 {
	margin-top: 35px;
	line-height: 2;
}
.privacy .cont01 .box {
	margin-top: 30px;
	padding-bottom: 30px;
	border-bottom: 1px dashed var(--main-color);
}
.privacy .cont01 .box:first-of-type {
	margin-top: 45px;
}
.privacy .cont01 .box:last-of-type {
	border-bottom: none;
}
.privacy .cont01 .box h3 {
	font-size: 20px;
}
.privacy .cont01 .box .text02 {
	line-height: 2;
	margin-top: 10px;
}
.privacy .cont01 .box .text02 a {
	text-decoration: underline;
}
.privacy .cont01 .box ul {
	margin-top: 15px;
}
.privacy .cont01 .box ul li:nth-of-type(n+2) {
	margin-top: 8px;
}
.privacy .cont01 .box .text03 {
	line-height: 2;
	display: inline-block;
	padding: 25px 30px;
	background: var(--main-light-color);
	margin-top: 20px;
}



/* yonmaruyon yonichimaru
------------------------------------------------------------------------*/
.yonmaruyon .cont01,
.yonichimaru .cont01 {
	padding: 70px 0 100px;
	text-align: center;
}
.yonmaruyon .cont01 h2,
.yonichimaru .cont01 h2 {
	text-align: center;
	font-size: 24px;
}
.yonmaruyon .cont01 .text,
.yonichimaru .cont01 .text {
	margin: 30px 0 0;
	font-weight: bold;
}
.yonmaruyon .cont01 .button,
.yonichimaru .cont01 .button {
	margin-top: 40px;
}
.yonmaruyon .cont01 .button a,
.yonichimaru .cont01 .button a {
	width: 360px;
	border-radius: 60px;
	line-height: 1;
	padding: 20px 0;
	font-size: 16px;
	box-sizing: border-box;
	cursor: pointer;
	margin: auto;
	border: none;
	display: block;
	color: #fff;
	background: var(--main-color);
	border: 1px solid var(--main-color);
	transition: all .5s;
}
.yonmaruyon .cont01 .button a:hover,
.yonichimaru .cont01 .button a:hover {
	background: #fff;
	color: var(--main-color);
	transition: all .5s;
}



/* contact_box
------------------------------------------------------------------------*/
	
	.contact_box{
		background: #002f7c;
	}
	.contact_box .inner{
		padding: 140px 0 265px;
		color: #fff;
		position: relative;
	}
	.contact_box .inner::before{
		position: absolute;
		top: 50%;
		right: 60px;
		transform: translateY(-50%);
		content: "";
		background: url("img/common_slideimg01.png")center center repeat-y;
		width: 350px;
		height: 100%;
		animation: contactsSlideMove 25s linear infinite;
	}
	.contact_box .inner::after{
		position: absolute;
		top: 50%;
		right: -310px;
		transform: translateY(-50%);
		content: "";
		background: url("img/common_slideimg02.png")center center repeat-y;
		width: 350px;
		height: 100%;
		animation: contactsSlideMoveR 25s linear infinite;
	}
	@keyframes contactsSlideMove{
		0% {background-position: 0 0;}
		50% {background-position: 0 405px;}
		100% {background-position: 0 810px;}
	}
	@keyframes contactsSlideMoveR{
		0% {background-position: 0 810px;}
		50% {background-position: 0 405px;}
		100% {background-position: 0 0;}
	}
	.contact_box .inner h2{
		background: url("img/common_text01.svg")left top no-repeat;
		padding: 20px 0 0 220px;
		font-size: 16px;
		line-height: 1;
	}
	.contact_box .inner .text01{
		margin-top: 52px;
	}
	.contact_box .inner .btn_box{
		display: flex;
		align-items: center;
		gap: 0 30px;
		margin-top: 40px;
	}
	@media screen and (max-width: 1300px){
		.contact_box .inner{
			padding: 100px 0 235px;
		}
		.contact_box .inner::before{
			right: 240px;
		}
		.contact_box .inner::after{
			right: -130px;
		}
		.contact_box .inner .text01{
			width: 450px;
			margin-top: 45px;
		}
		.contact_box .inner .btn_box{
			display: flex;
			flex-direction: column;
			align-items: flex-start;
			gap: 20px 0;
		}
	}
	.contact_box .inner .btn_box .tel{
		font-size: 16px;
		line-height: 1;
		text-align: center;
	}
	.contact_box .inner .btn_box .tel a{
		display: block;
		background: url("img/tel_icon.svg")left center no-repeat;
		padding: 0 0 0 24px;
		box-sizing: border-box;
		line-height: 1;
		margin-bottom: 10px;
	}
	.contact_box .inner .btn_box .tel a img{
		width: 220px;
		height: 28px;
		filter: invert(1);
	}
	.contact_box .inner .btn_box .button a{
		display: block;
		width: 290px;
		height: 50px;
		background: #0171b9 url("img/common_icon17.svg")left 69px center no-repeat;
		padding: 0 0 0 95px;
		border-radius: 25px;
		box-sizing: border-box;
		color: #fff;
		font-size: 16px;
		font-weight: bold;
		line-height: 50px;
	}
	.contact_box .inner .btn_box .button a:hover{
		background: #fff url("img/common_icon18.svg")left 69px center no-repeat;
		color: #0171b9;
		opacity: 1;
	}



/*post_cont
------------------------------------------------------------------------*/
.post_cont .index_nav {
	box-sizing: border-box;
	padding: 40px;
	border: none;
	border-radius: 0px;
	margin: 20px 0 45px;
	background: var(--main-light-color);
	border-radius: 10px;
}
.post_cont .index_nav .title {
	font-weight: bold;
	position: relative;
	padding: 0 !important;
	padding-left: 35px !important;
	font-size: 18px;
	line-height: 1.5;
	font-weight: normal;
}
.post_cont .index_nav .title::before {
	content: '';
	width: 20px;
	height: 18px;
	background: url(img/index_icon.png) no-repeat center / 100%;
	position: absolute;
	top: 4px;
	left: 5px;
}
.post_cont .index_nav {
	position: static;
}
.post_cont .index_nav ul {
	margin: 20px 0 0 0;
	padding-bottom: 0;
}
.post_cont .index_nav ul li.index_level03 {
	margin-left: 15px;
}
.post_cont .index_nav ul li.index_level04 {
	margin-left: 30px;
}
.post_cont .index_nav ul li.index_level05 {
	margin-left: 45px;
}
.post_cont .index_nav ul li {
	display: block;
	text-align: left;
	margin-top: 25px;
}
.post_cont .index_nav ul li.index_level03,
.post_cont .index_nav ul li.index_level04,
.post_cont .index_nav ul li.index_level05 {
	margin-top: 15px;
}
.post_cont .index_nav ul li a {
	font-size: 18px;
	font-weight: normal;
	text-decoration: none;
}
.post_cont .index_nav ul li.index_level03 a,
.post_cont .index_nav ul li.index_level04 a,
.post_cont .index_nav ul li.index_level05 a {
	font-size: 16px;
}
.post_cont .index_nav ul li a:hover {
	text-decoration: none;
}
.post_cont .index_nav ul li::before {
	display: none;
}

.post_cont .has-text-align-left{
	text-align: left;
}
.post_cont .has-text-align-center{
	text-align: center;
}
.post_cont .has-text-align-right{
	text-align: right;
}

.post_cont h2{
	margin: 50px 0 30px;
	padding: 0 0 0 35px;
	font-size: 24px;
	position: relative;
	line-height: 1.2;
}
.post_cont h2:before{
	content: "";
	display: block;
	width:14px;
	height: 14px;
	border:1px solid var(--main-color);
	background: #fff;
	position: absolute;
	top:0px;
	left:0;
}
.post_cont h2:after{
	content: "";
	display: block;
	width:14px;
	height: 14px;
	border:1px solid var(--main-color);
	background: var(--main-color);
	position: absolute;
	top:10px;
	left:10px;
}
.post_cont h3{
	margin: 45px 0 30px;
	padding: 0 0 0 30px;
	font-size: 22px;
	position: relative;
	line-height: 1.2;
}
.post_cont h3:before{
	content: "";
	display: block;
	width:20px;
	height: 20px;
	background: var(--main-color);
	position: absolute;
	top:2px;
	left:0;
}

.post_cont h4{
	font-size:20px;
	border-left:5px solid var(--main-color);
	margin: 40px 0 30px;
	padding: 2px 0 0 15px;
	line-height: 1.2;
}

.post_cont h5{
	font-size:18px;
	margin: 35px 0 30px;
	padding: 0 0 0 25px;
	position: relative;
	line-height: 1.2;
}
.post_cont h5:before{
	content: "";
	display: block;
	width:15px;
	height: 5px;
	background: var(--main-color);
	position: absolute;
	top:10px;
	left:0;
}
.post_cont strong{
	font-weight: bold;
	color: var(--main-dark-color);
}
.post_cont em{
	font-style: italic;
	color: var(--main-color);
}
.post_cont a{
	text-decoration: underline;
	color:var(--main-color);
}

.post_cont > p{
	margin: 0 0 30px;
}
.post_cont ul{
	margin: 0 0 30px 23px;
	list-style-type: disc;
}
.post_cont ol{
	margin: 0 0 30px 23px;
	list-style-type: decimal;
}
.post_cont table{
	border-collapse: separate;
	border-spacing: 5px;
	width: 100%;
	margin: 0 0 30px;
}
.post_cont table th{
	background: var(--main-color);
	color:#fff;
	font-weight: bold;
	padding: 10px 15px;
}
.post_cont table tr:nth-of-type(1) th{
	background: var(--main-dark-color);
}
.post_cont table td{
	background: var(--main-light-color);
	padding: 10px 15px;
}
.post_cont .wp-block-quote{
	background: var(--main-light-color);
	padding: 50px;
	border-left: 3px solid var(--main-color);
	margin: 0 0 30px;
	position: relative;
}
.post_cont .wp-block-quote:before,
.post_cont .wp-block-quote:after{
	content: "”";
	display: block;
	font-size: 100px;
	color:var(--main-color);
	line-height: 1;
	position: absolute;
}
.post_cont .wp-block-quote:before{
	top: 10px;
	left: 10px;
}
.post_cont .wp-block-quote:after{
	bottom: 10px;
	right: 10px;
	transform: rotate(180deg);
}

.post_cont .wp-block-buttons{
	margin: 0 0 30px;
	display: flex;
}
.post_cont .wp-block-buttons a{
	display: block;
	text-align: center;
	background: var(--main-color);
	border: 1px solid var(--main-color);
	box-sizing: border-box;
	line-height: 48px;
	min-width: 350px;
	height: 50px;
	border-radius: 50px;
	color: #fff;
	font-size: 16px;
	font-weight: bold;
	transition: all 0.5s;
	position: relative;
	text-decoration: none;
}
.post_cont .wp-block-buttons a::after{
	content: "";
	background: url(img/btn_arrow01.png)center left / cover no-repeat;
	width: 16px;
	height: 12px;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 20px;
}
.post_cont .wp-block-buttons a:hover {
	color: var(--main-color);
	background: #fff;
	opacity: 1;
}
.post_cont .wp-block-buttons a:hover::after {
	filter: brightness(0) saturate(100%) invert(15%) sepia(53%) saturate(5355%) hue-rotate(201deg) brightness(95%) contrast(101%);
}
.post_cont .wp-block-code{
	display: block;
	white-space: pre-wrap;
	margin: 0 0 30px;
}
.post_cont .wp-block-code code{
	display: inline-block;
	padding: 20px;
	color: #fff;
	background: #333;
}
.post_cont .wp-block-image{
	margin: 0 0 30px;
}
.post_cont .wp-block-image img{
	max-width: 100%;
	border-radius: 10px;
}



/* footer
------------------------------------------------------------------------*/
	footer{
		background: #0e263f;
		border-radius: 150px 150px 0 0;
		margin-top: -150px;
		position: relative;
	}
	@media screen and (max-width: 1300px){
		footer{
			background: #0e263f;
			border-radius: 100px 100px 0 0;
			margin-top: -100px;
			position: relative;
	}
	}
	footer .inner{
		display: flex;
		justify-content: space-between;
		padding: 150px 0;
		color: #fff;
	}
	footer .inner .h_box{
		position: relative;
	}
	footer .inner .h_box .text01 a{
		display: flex;
		flex-direction: column;
		justify-content: center;
		min-height: 74px;
		background: url("img/logo.svg")left center no-repeat;
		padding-left: 100px;
		font-size: 20px;
		line-height: 1;
		filter: brightness(0) invert(1);
	}
	footer .inner .h_box .text01 a span{
		display: block;
		font-size: 14px;
		margin-bottom: 14px;
	}
	footer .inner .h_box address{
		margin-top: 30px;
	}
	footer .inner .h_box address .tel::before{
		content: "TEL："
	}
	footer .inner .h_box address .fax::before{
		content: "FAX："
	}
	footer .inner .h_box address .mail::before{
		content: "Mail："
	}
	footer .inner .h_box .opentime::before{
		content: "営業時間：";
	}
	footer .inner .h_box .copy{
		position: absolute;
		bottom: 0;
		left: 0;
		color: rgba(255,255,255,0.3);
		font-size: 13px;
	}

	footer .inner .sitemap_box{
	}
	footer .inner .sitemap_box ul{
		margin-top: 10px;
	}
	footer .inner .sitemap_box ul li a{
		color: #fff;
		font-size: 16px;
		line-height: 2.625;
		padding-left: 1em;
		position: relative;
	}
	footer .inner .sitemap_box ul li a::before{
		position: absolute;
		top: 50%;
		left: 0;
		transform: translateY(-50%);
		content: "・";
	}
	footer .inner .sitemap_box ul li a:hover{
		text-decoration: underline;
	}

	footer .inner .area_box{
		width: 175px;
	}
	footer .inner .area_box ul{
		height: 460px;
		overflow-y: auto;
		margin-top: 12px;
	}
	footer .inner .area_box ul::-webkit-scrollbar {
		width: 3px;
	}
	footer .inner .area_box ul::-webkit-scrollbar-track {
		background-color: transparent;
	}
	footer .inner .area_box ul::-webkit-scrollbar-thumb {
		background-color: #959595;
	}
	footer .inner .area_box ul li a{
		color: #fff;
		font-size: 14px;
		line-height: 2.71;
		padding-left: 1em;
		position: relative;
	}
	footer .inner .area_box ul li a::before{
		position: absolute;
		top: 50%;
		left: 0;
		transform: translateY(-50%);
		content: "・";
	}
	footer .inner .area_box ul li a:hover{
		text-decoration: underline;
	}

	footer .inner .blog_box{
		width: 200px;
	}
	footer .inner .blog_box ul{
		margin-top: 12px;
	}
	footer .inner .blog_box ul li a{
		color: #fff;
		width: 195px;
		font-size: 14px;
		line-height: 2.71;
		overflow: hidden;
		display: -webkit-box;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 1;
		padding-left: 1em;
		position: relative;
	}
	footer .inner .blog_box ul li a::before{
		position: absolute;
		top: 50%;
		left: 0;
		transform: translateY(-50%);
		content: "・";
	}
	footer .inner .blog_box ul li a:hover{
		text-decoration: underline;
	}



}/*PCの記述ここまで*/





/*===============================================
横幅441px以下 sp
===============================================*/

@media screen and (max-width: 441px) {
html,
body,
.wrap{
	width: 440px;
	position: relative;
}
.inner {
	box-sizing: border-box;
	padding: 0 30px;
	width: auto;
}
.pc {
	display: none;
}
.sp {
	display: inline;
}
p {
	font-size: 16px;
	line-height: 2;
}



/* header
------------------------------------------------------------------------*/
	header{
		width: 100%;
		z-index: 10000;
		position: relative;
	}
	header h1{
		position: absolute;
		top: 69px;
		left: 101px;
		font-size: 10px;
		line-height: 1;
	}

	header .header_box{
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 60px;
		background: #fff;
	}
	header .header_box .logo a{
		position: absolute;
		top: 0;
		left: 0;
		display: grid;
		place-items: center;
		width: 90px;
		height: 90px;
		background: #fff;
		border-radius: 0 0 20px 0;
		box-sizing: border-box;
		transition: none;
	}
	header .header_box .logo a img{
		width: 56px;
	}
	header .header_box .text01{
		position: absolute;
		top: 0;
		left: 100px;
		display: flex;
		flex-direction: column;
		justify-content: center;
		height: 60px;
		color: #002f7c;
		font-size: 16px;
		font-weight: bold;
		line-height: 1;
	}
	header .header_box .text01 span{
		display: block;
		color: #222;
		font-size: 12px;
		font-weight: bold;
		margin: 7px 0 0 -0.5em;
	}
	header .header_box .text01 span::before{
		content: "［";
		padding: 0 2px;
	}
	header .header_box .text01 span::after{
		content: "］";
		padding: 0 0 0 2px;
	}
	header .header_box .button{
		display: none;
	}
	header .header_box .header_contact_box{
		position: fixed;
		bottom: 0;
		left: 0;
		display: flex;
		justify-content: center;
		align-items: center;
		width: 100%;
		height: 50px;
		background: #0171b9;
		color: #fff;
		z-index: 11111;
	}
	header .header_box .header_contact_box::after{
		position: absolute;
		top: 50px;
		left: 0;
		content: "";
		background: #fff;
		width: 100%;
		height: 100px;
	}
	header .header_box .text02{
		padding-right: 20px;
		border-right: 2px solid #fff;
		font-size: 16px;
		font-weight: bold;
		line-height: 1;
	}
	header .header_box .tel{
		display: flex;
		align-items: center;
		height: 50px;
		font-size: 15px;
		margin-right: 10px;
	}
	header .header_box .tel a{
		display: block;
		width: 40px;
		height: 50px;
		background: url("img/tel_icon.svg")left 20px center no-repeat;
		background-size: 15px;
		padding: 50px 0 0;
		box-sizing: border-box;
		line-height: 1;
		filter: brightness(0) invert(1);
	}
	header .header_box .tel span::before{
		content: "営業時間：";
	}
	header .header_box .mail a{
		display: block;
		width: 36px;
		height: 36px;
		background: #002f7c url("img/header_icon02.svg")center center no-repeat;
		border-radius: 50%;
		padding: 36px 0 0;
		box-sizing: border-box;
		overflow: hidden;
		transition: none;
	}
	header .under_damy_box{
		position: fixed;
		bottom: 0;
		left: 0;
		content: "";
		background: rgba(255,255,255,0.01);
		width: 100%;
		height: 50px;
		pointer-events: none;
		z-index: 99999;
	}

	/* header_box active */
	header .header_box.active .logo a{
		position: absolute;
		top: 12px;
		left: 20px;
		display: block;
		width: 41px;
		height: 39px;
		border-radius: 0;
		transition: none;
	}
	header .header_box.active .text01{
		left: 76px;
	}



/* nav
------------------------------------------------------------------------*/
	#nav{
		display: none;
	}
	#nav-btn.active + #nav{
		position: fixed;
		top: 0;
		bottom: 0;
		left: 0;
		display: block;
		background: #eaeff4;
		width: 440px;
		height: 100dvh;
		padding-bottom: 100px;
	}

	#nav .nav_sp_box{
		width: 100%;
		height: calc(100% - 50px);
		overflow-y: scroll;
	}
	#nav .nav_sp_box ul{
		display: flex;
		flex-direction: column;
		gap: 26px 0;
		width: 340px;
		box-sizing: border-box;
		margin: 74px 0 20px 60px;
	}
	#nav .nav_sp_box ul li a{
		display: block;
		font-size: 16px;
		font-weight: bold;
		line-height: 1.5;
	}
	#nav .nav_sp_box ul li.pc_nav a::before{
		content: "・";
	}
	#nav .nav_sp_box ul li.sp_nav a{
		display: block;
		font-size: 14px;
		font-weight: normal;
		line-height: 1;
	}
	#nav .nav_sp_box ul li:nth-of-type(9) a{
		margin-top: 10px;
	}

	#nav .nav_sp_box ul li.stock a{
		display: block;
		width: 200px;
		height: 36px;
		background: #fff url("img/header_icon01.svg")left 45px center no-repeat;
		border: 1px solid #0171b9;
		border-radius: 18px;
		margin-top: 10px;
		padding: 0 0 0 68px;
		box-sizing: border-box;
		color: #0171b9;
		font-size: 14px;
		font-weight: bold;
		line-height: 34px;
	}

	#nav-btn {
		position: fixed;
		top: 8px;
		right: 8px;
		width: 44px;
		height: 44px;
		background: #0171b9;
		border-radius: 50%;
		z-index: 10001;
	}
	#nav-btn .menu-btn {
		position: absolute;
		top: 0;
		bottom: 0;
		right: 0;
		left: 0;
		margin: auto;
		width: 14px;
		height: 12px;
	}
	#nav-btn .menu-btn span {
		position: absolute;
		left: 0;
		display: inline-block;
		background: #fff;
		width: 100%;
		height: 2px;
		transition: all 0.5s;
	}
	#nav-btn .menu-btn span:nth-of-type(1) {
		top: 0;
	}
	#nav-btn .menu-btn span:nth-of-type(2) {
		top: 5px;
	}
	#nav-btn .menu-btn span:nth-of-type(3) {
		bottom: 0;
	}
	#nav-btn.active .menu-btn span:nth-of-type(1) {
		transform: translateY(5px) rotate(-45deg);
	}
	#nav-btn.active .menu-btn span:nth-of-type(2) {
		opacity: 0;
	}
	#nav-btn.active .menu-btn span:nth-of-type(3) {
		transform: translateY(-5px) rotate(45deg);
	}



/* home
------------------------------------------------------------------------*/

	/* key */
	.home .key{
		width: 100%;
		min-height: 750px;
		height: 100dvh;
		padding: 60px 10px 10px;
		box-sizing: border-box;
		position: relative;
	}
	.home .key .swiper01{
		width: 100%;
		height: calc(100% - 185px);
		z-index: -1;
		position: relative;
	}
	.home .key .swiper01 .swiper-slide img{
		width: 100%;
		height: 100%;
		border-radius: 0 10px 0 0;
		object-fit: cover;
	}

	.home .key .inner{
		position: absolute;
		top: 0;
		left: 0;
		display: flex;
		flex-direction: column;
		justify-content: flex-end;
		align-items: center;
		width: 100%;
		height: calc(100% - 60px);
		padding: 0 10px;
		box-sizing: border-box;
	}
	.home .key .inner .text01{
		display: inline-block;
		width: 400px;
		background: #fff;
		border-radius: 3px;
		box-sizing: border-box;
		color: #002f7c;
		font-size: 14px;
		font-weight: bold;
		line-height: 30px;
		text-align: center;
	}
	.home .key .inner .text01 span{
		font-weight: bold;
	}
	.home .key .inner .text01 span::before{
		content: "［";
		padding-right: 3px;
	}
	.home .key .inner .text01 span::after{
		content: "］";
		padding-left: 3px;
	}
	.home .key .inner .text02{
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		width: 420px;
		height: 136px;
		background: #002f7c;
		border-radius: 0 0 10px 10px;
		box-sizing: border-box;
		margin-top: 10px;
	}
	.home .key .inner .text02 .span01{
		position: relative;
	}
	.home .key .inner .text02 .span01::after{
		position: absolute;
		top: 47px;
		left: 50%;
		transform: translateX(-50%);
		content: "";
		background: url("img/home_key_text02.svg")no-repeat;
		background-size: 361px;
		width: 361px;
		height: 11px;
		filter: invert(31%) sepia(87%) saturate(1915%) hue-rotate(182deg) brightness(71%) contrast(100%);
	}
	.home .key .inner .text02 .span01 img{
		width: 360px;
		filter: brightness(0) invert(1);
	}
	.home .key .inner .text02 .span02{
		margin-top: 23px;
	}
	.home .key .inner .text02 .span02 img{
		width: 360px;
		filter: brightness(0) invert(1);
	}


	/* cont01 */
	.home .cont01{
		padding: 45px 20px 0;
	}
	.home .cont01 .inner{
		display: flex;
		flex-direction: column;
		align-items: center;
		background: #e0efff;
		border-radius: 5px;
		padding: 26px 30px 22px;
		box-sizing: border-box;
	}
	.home .cont01 .inner h2{
		line-height: 1;
		padding-bottom: 20px;
		position: relative;
	}
	.home .cont01 .inner h2::before{
		position: absolute;
		bottom: 0;
		left: 50%;
		transform: translateX(-50%);
		content: "";
		background: #002f7c;
		width: 340px;
		height: 1.75px;
	}
	.home .cont01 .inner .news_box{
		max-height: 100px;
		overflow-y: auto;
		margin: 20px 0 0;
		box-sizing: border-box;
		position: relative;
	}
	.home .cont01 .inner .news_box::-webkit-scrollbar {
		width: 1.5px;
	}
	.home .cont01 .inner .news_box::-webkit-scrollbar-track {
		background-color: transparent;
	}
	.home .cont01 .inner .news_box::-webkit-scrollbar-thumb {
		background-color: #ccc;
	}
	.home .cont01 .inner .news_box .cont + .cont{
		margin-top: 20px;
	}
	.home .cont01 .inner .news_box .cont .news_ttl{
		font-size: 16px;
		font-weight: bold;
		line-height: 1.75;
	}
	.home .cont01 .inner .news_box .cont .text01{
		font-size: 14px;
		line-height: 1.5;
		margin-top: 6px;
	}


	/* cont02 */
	.home .cont02 .inner{
		padding: 280px 20px 200px;
		text-align: center;
		position: relative;
	}
	.home .cont02 .inner h2{
		color: #002f7c;
		font-size: 26px;
		line-height: 1.44;
	}
	.home .cont02 .inner h2 span{
		display: block;
		color: #222;
		font-size: 18px;
		font-weight: bold;
		line-height: 1;
		margin-bottom: 22px;
	}
	.home .cont02 .inner h2 span::before{
		content: "[";
		padding-right: 6px;
	}
	.home .cont02 .inner h2 span::after{
		content: "]";
		padding-left: 6px;
	}
	.home .cont02 .inner .text01{
		font-size: 16px;
		line-height: 2.15;
		margin-top: 30px;
	}
	.home .cont02 .inner .text01 + .text01{
		margin-top: 16px;
	}
	.home .cont02 .inner figure:nth-of-type(1){
		position: absolute;
		top: 100px;
		left: 20px;
		width: 190px;
	}
	.home .cont02 .inner figure:nth-of-type(2){
		position: absolute;
		top: 100px;
		right: 20px;
		width: 190px;
	}
	.home .cont02 .inner figure:nth-of-type(3){
		position: absolute;
		bottom: 20px;
		left: 20px;
		width: 190px;
	}
	.home .cont02 .inner figure:nth-of-type(4){
		position: absolute;
		bottom: 20px;
		right: 20px;
		width: 190px;
	}


	/* cont03 */
	.home .cont03{
		margin-top: 40px;
		position: relative;
	}
	.home .cont03::before{
		position: absolute;
		top: 0;
		left: 50%;
		transform: translateX(-50%);
		content: "";
		background: linear-gradient(90deg ,#1158b2 ,#2c80d1);
		width: 1800px;
		height: 100%;
		
		-webkit-mask-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxODAwIDQ1NSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+PHBhdGggZmlsbD0iYmxhY2siIGQ9Ik0wLDQ1NS4zMTQ5NlMzMzUuMjg5MDYsNDguMDkyNzQsMTIzNy42NDk2Miw0OC4wOTI3NGMzNDEuMjI0NzcsMCw1NjIuMzUwMzgsNjcuNjA4MDUsNTYyLjM1MDM4LDY3LjYwODA1VjQ1NUgwWiIvPjwvc3ZnPg=="),linear-gradient(#000, #000);
		mask-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxODAwIDQ1NSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+PHBhdGggZmlsbD0iYmxhY2siIGQ9Ik0wLDQ1NS4zMTQ5NlMzMzUuMjg5MDYsNDguMDkyNzQsMTIzNy42NDk2Miw0OC4wOTI3NGMzNDEuMjI0NzcsMCw1NjIuMzUwMzgsNjcuNjA4MDUsNTYyLjM1MDM4LDY3LjYwODA1VjQ1NUgwWiIvPjwvc3ZnPg=="),linear-gradient(#000, #000); 

		-webkit-mask-size: 100% 455px , 100% calc(100% - 455px);
		mask-size: 100% 455px , 100% calc(100% - 455px);
		-webkit-mask-position: top center, bottom center;
		-webkit-mask-repeat: no-repeat;
		mask-repeat: no-repeat;
		z-index: -1;
	}
	.home .cont03 .inner{
		padding: 160px 20px 120px;
		position: relative;
	}
	.home .cont03 .inner::before{
		position: absolute;
		top: 40px;
		left: 27px;
		content: "";
		background: url("img/common_illust01.svg")no-repeat;
		background-size: 79px;
		width: 79px;
		height: 100px;
	}
	.home .cont03 .inner::after{
		position: absolute;
		top: 0;
		right: 27px;
		content: "";
		background: url("img/common_illust02.svg")no-repeat;
		background-size: 166px;
		width: 166px;
		height: 95px;
	}
	.home .cont03 .inner h2{
		background: url("img/home_text02.svg")center top no-repeat;
		background-size: 204px;
		padding: 104px 0 0;
		color: #fff;
		font-size: 14px;
		line-height: 1;
		text-align: center;
	}
	.home .cont03 .inner .service_box{
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 35px 0;
		margin-top: 45px;
	}
	.home .cont03 .inner .service_box .cont{
		display: flex;
		flex-direction: column;
		align-items: center;
		width: 400px;
		background: #fff;
		border-radius: 5px;
		padding-bottom: 30px;
		box-sizing: border-box;
		position: relative;
	}
	.home .cont03 .inner .service_box .cont h3{
		color: #013384;
		font-size: 22px;
		line-height: 1.5;
		text-align: center;
		margin-top: 34px;
		order: 2;
		z-index: 11;
		position: relative;
	}
	.home .cont03 .inner .service_box .cont figure{
		order: 1;
		position: relative;
	}
	.home .cont03 .inner .service_box .cont figure::before{
		position: absolute;
		top: 135px;
		left: 50%;
		transform: translateX(-50%);
		content: "";
		background: #fff;
		width: 145px;
		height: 145px;
		border-radius: 50%;
	}
	.home .cont03 .inner .service_box .cont figure::after{
		position: absolute;
		top: 155px;
		left: 50%;
		transform: translateX(-50%);
		content: "";
		background: url("img/home_icon01.svg")no-repeat;
		background-size: 80px;
		width: 80px;
		height: 61px;
	}
	.home .cont03 .inner .service_box .cont:nth-of-type(2) figure::after{
		top: 157px;
		background: url("img/home_icon02.svg")no-repeat;
		background-size: 111px;
		width: 111px;
		height: 59px;
	}
	.home .cont03 .inner .service_box .cont figure img{
		border-radius: 5px 5px 0 0;
	}
	.home .cont03 .inner .service_box .cont .text01{
		font-size: 16px;
		font-weight: bold;
		line-height: 1;
		letter-spacing: 0.4px;
		font-feature-settings: "palt" 1;
		margin-top: 15px;
		order: 3;
	}
	.home .cont03 .inner .service_box .cont .text01::before{
		content: "[";
		padding-right: 2px;
	}
	.home .cont03 .inner .service_box .cont .text01::after{
		content: "]";
		padding-left: 2px;
	}
	.home .cont03 .inner .service_box .cont .text02{
		line-height: 1.875;
		text-align: center;
		margin-top: 23px;
		order: 4;
	}
	.home .cont03 .inner .service_box .cont .button{
		order: 5;
	}
	.home .cont03 .inner .service_box .cont .button a{
		display: block;
		width: 300px;
		height: 50px;
		background: #002f7c url("img/common_arrow01.svg")right 14px center no-repeat;
		border-radius: 25px;
		padding: 4px 0 0 40px;
		box-sizing: border-box;
		color: #fff;
		font-size: 14px;
		font-weight: bold;
		line-height: 1.45;
		margin-top: 23px;
	}
	.home .cont03 .inner .service_box .cont:nth-of-type(2) .button a{
		width: 320px;
		padding: 0;
		font-size: 16px;
		line-height: 50px;
		text-align: center;
	}


	/* cont04 */
	.home .cont04{
		background: #eaeff4;
		border-radius: 35px 35px 0 0;
		margin-top: -40px;
		position: relative;
	}
	.home .cont04::before{
		position: absolute;
		bottom: 0;
		left: 50%;
		transform: translateX(-50%);
		content: "";
		background: url("img/home_slideimg01_sp.png")center center repeat-x;
		width: 100%;
		height: 170px;
		animation: aboutslideMove 40s linear infinite;
		z-index: 12;
	}
	@keyframes aboutslideMove{
		0% {background-position: 1320px 0;}
		50% {background-position: 660px 0;}
		100% {background-position: 0 0;}
	}
	.home .cont04 .inner{
		padding: 100px 10px 230px;
		position: relative;
	}
	.home .cont04 .inner h2{
		background: url("img/home_text03.svg")center top no-repeat;
		background-size: 273px;
		padding: 62px 0 0;
		font-size: 16px;
		line-height: 1;
		text-align: center;
	}
	.home .cont04 .inner .products_box{
		display: flex;
		justify-content: space-between;
		flex-wrap: wrap;
		gap: 20px 10px;
		margin-top: 60px;
	}
	.home .cont04 .inner .products_box .cont{
		display: block;
		width: 205px;
		background: #fff;
		border: 1px solid #0171b9;
		border-radius: 5px;
		box-sizing: border-box;
		position: relative;
	}
	.home .cont04 .inner .products_box .cont a{
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		align-content: flex-start;
		padding: 0 0 60px;
		box-sizing: border-box;
	}
	.home .cont04 .inner .products_box .cont a h3{
		display: flex;
		align-items: center;
		height: 50px;
		font-size: 18px;
		line-height: 1.45;
		margin: 13px 0 0;
		order: 2;
		position: relative;
	}
	.home .cont04 .inner .products_box .cont:nth-of-type(1) a h3{
		background: url("img/common_icon01.svg")left center no-repeat;
		padding-left: 58px;
	}
	.home .cont04 .inner .products_box .cont:nth-of-type(2) a h3{
		background: url("img/common_icon02.svg")left center no-repeat;
		padding-left: 45px;
		font-size: 16px;
	}
	.home .cont04 .inner .products_box .cont:nth-of-type(3) a h3{
		background: url("img/common_icon03.svg")left center no-repeat;
		padding-left: 58px;
		font-size: 16px;
	}
	.home .cont04 .inner .products_box .cont:nth-of-type(4) a h3{
		background: url("img/common_icon04.svg")left center no-repeat;
		padding-left: 49px;
	}
	.home .cont04 .inner .products_box .cont:nth-of-type(5) a h3{
		background: url("img/common_icon05.svg")left center no-repeat;
		padding-left: 49px;
	}
	.home .cont04 .inner .products_box .cont:nth-of-type(6) a h3{
		background: url("img/common_icon06.svg")left center no-repeat;
		padding-left: 51px;
	}
	.home .cont04 .inner .products_box .cont:nth-of-type(7) a h3{
		background: url("img/common_icon07.svg")left center no-repeat;
		padding-left: 51px;
		font-size: 16px;
	}
	.home .cont04 .inner .products_box .cont:nth-of-type(8) a h3{
		background: url("img/common_icon08.svg")left center no-repeat;
		padding-left: 36px;
	}
	.home .cont04 .inner .products_box .cont:nth-of-type(9) a h3{
		background: url("img/common_icon09.svg")left center no-repeat;
		padding-left: 39px;
	}
	.home .cont04 .inner .products_box .cont:nth-of-type(10) a h3{
		background: url("img/common_icon10.svg")left center no-repeat;
		padding-left: 42px;
	}
	.home .cont04 .inner .products_box .cont:nth-of-type(11) a h3{
		background: url("img/common_icon11.svg")left center no-repeat;
		padding-left: 42px;
		font-size: 16px;
	}
	.home .cont04 .inner .products_box .cont:nth-of-type(12) a h3{
		background: url("img/common_icon12.svg")left center no-repeat;
		padding-left: 49px;
	}
	.home .cont04 .inner .products_box .cont:nth-of-type(13) a h3{
		background: url("img/common_icon13.svg")left center no-repeat;
		padding-left: 45px;
		font-size: 16px;
	}
	.home .cont04 .inner .products_box .cont:nth-of-type(14) a h3{
		background: url("img/common_icon14.svg")left center no-repeat;
		padding-left: 47px;
		font-size: 16px;
	}
	.home .cont04 .inner .products_box .cont:nth-of-type(15) a h3{
		background: url("img/common_icon15.svg")left center no-repeat;
		padding-left: 53px;
	}
	.home .cont04 .inner .products_box .cont:nth-of-type(16) a h3{
		background: url("img/common_icon16.svg")left center no-repeat;
		padding-left: 52px;
		font-size: 16px;
	}
	.home .cont04 .inner .products_box .cont a figure{
		width: 100%;
		height: 110px;
		border-radius: 4px 4px 0 0;
		overflow: hidden;
		order: 1;
	}
	.home .cont04 .inner .products_box .cont a .text01{
		font-size: 14px;
		line-height: 1.73;
		margin: 7px 10px 0 15px;
		order: 3;
	}
	.home .cont04 .inner .products_box .cont a .button{
		position: absolute;
		bottom: 0;
		left: 15px;
		display: flex;
		align-items: center;
		width: 175px;
		height: 60px;
		background: url("img/common_arrow03.svg")right center no-repeat;
		padding-right: 30px;
		box-sizing: border-box;
		color: #0171b9;
		font-size: 14px;
		font-weight: bold;
		line-height: 1.35;
		order: 4;
	}
	.home .cont04 .inner > .button > a{
		display: block;
		width: 380px;
		height: 50px;
		background: #002f7c url("img/common_arrow01.svg")right 14px center no-repeat;
		border-radius: 25px;
		box-sizing: border-box;
		color: #fff;
		font-size: 16px;
		font-weight: bold;
		line-height: 50px;
		text-align: center;
		margin: 45px auto 0;
	}


	/* cont05 */
	.home .cont05{
		margin-top: 40px;
		position: relative;
	}
	.home .cont05::before{
		position: absolute;
		top: 0;
		left: 50%;
		transform: translateX(-50%) scaleX(-1);
		content: "";
		background: #002f7c;
		width: 1800px;
		height: 100%;
		
		-webkit-mask-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxODAwIDQ1NSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+PHBhdGggZmlsbD0iYmxhY2siIGQ9Ik0wLDQ1NS4zMTQ5NlMzMzUuMjg5MDYsNDguMDkyNzQsMTIzNy42NDk2Miw0OC4wOTI3NGMzNDEuMjI0NzcsMCw1NjIuMzUwMzgsNjcuNjA4MDUsNTYyLjM1MDM4LDY3LjYwODA1VjQ1NUgwWiIvPjwvc3ZnPg=="),linear-gradient(#000, #000);
		mask-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxODAwIDQ1NSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+PHBhdGggZmlsbD0iYmxhY2siIGQ9Ik0wLDQ1NS4zMTQ5NlMzMzUuMjg5MDYsNDguMDkyNzQsMTIzNy42NDk2Miw0OC4wOTI3NGMzNDEuMjI0NzcsMCw1NjIuMzUwMzgsNjcuNjA4MDUsNTYyLjM1MDM4LDY3LjYwODA1VjQ1NUgwWiIvPjwvc3ZnPg=="),linear-gradient(#000, #000); 

		-webkit-mask-size: 100% 455px , 100% calc(100% - 455px);
		mask-size: 100% 455px , 100% calc(100% - 455px);
		-webkit-mask-position: top center, bottom center;
		-webkit-mask-repeat: no-repeat;
		mask-repeat: no-repeat;
		z-index: -1;
	}
	.home .cont05 .inner{
		padding: 200px 20px;
		color: #fff;
		position: relative;
	}
	.home .cont05 .inner h2{
		background: url("img/home_text04.svg")center top no-repeat;
		background-size: 216px;
		padding: 65px 0 0;
		font-size: 18px;
		line-height: 1;
		text-align: center;
		margin-bottom: 45px;
	}
	.home .cont05 .inner h2 span{
		display: block;
		font-size: 12px;
		line-height: 1;
		margin-bottom: 12px;
	}
	.home .cont05 .inner .box{
		display: flex;
		flex-direction: column-reverse;
		align-items: center;
		gap: 25px 0;
		padding: 30px 0 24px;
		border-top: 1px solid rgba(255,255,255,0.3);
	}
	.home .cont05 .inner .box:last-of-type{
		border-bottom: 1px solid rgba(255,255,255,0.3);
	}
	.home .cont05 .inner .box .text_box{
		width: 370px;
	}
	.home .cont05 .inner .box h3{
		font-size: 20px;
		line-height: 1.5;
	}
	.home .cont05 .inner .box .text01{
		margin-top: 14px;
	}
	.home .cont05 .inner .button a{
		display: block;
		width: 380px;
		height: 50px;
		background: #0b88c5 url("img/common_arrow04.svg")right 14px center no-repeat;
		border-radius: 25px;
		padding: 0 0 0 40px;
		box-sizing: border-box;
		color: #fff;
		font-size: 14px;
		font-weight: bold;
		line-height: 50px;
		margin: 55px auto 0;
	}


	/* cont06 */
	.home .cont06{
		background: #eaeff4;
		position: relative;
	}
	.home .cont06::before{
		position: absolute;
		top: -100px;
		left: 50%;
		transform: translateX(-50%);
		content: "";
		background: url("img/home_img10_sp.png")center center no-repeat;
		width: 100%;
		height: 247px;
		border-radius: 25px;
	}
	.home .cont06 .inner{
		padding: 200px 20px 70px;
		position: relative;
	}
	.home .cont06 .inner h2{
		display: flex;
		flex-direction: column;
		justify-content: center;
		min-height: 44px;
		background: url("img/home_text05.svg")left top no-repeat;
		background-size: 106px;
		padding: 0 0 0 130px;
		font-size: 18px;
		line-height: 1;
	}
	.home .cont06 .inner h2 span{
		display: block;
		font-size: 12px;
		font-weight: bold;
		line-height: 1;
		margin-bottom: 8px;
	}
	.home .cont06 .inner .text01{
		font-size: 14px;
		line-height: 1.875;
		margin-top: 35px;
	}
	.home .cont06 .inner dl{
		display: flex;
		flex-direction: column;
		gap: 20px 0;
		margin-top: 30px;
		position: relative;
	}
	.home .cont06 .inner dl::before{
		position: absolute;
		top: -101px;
		right: 5px;
		content: "";
		background: url("img/common_illust03.svg")no-repeat;
		background-size: 132px;
		width: 132px;
		height: 101px;
		z-index: -1;
	}
	.home .cont06 .inner dl .faq_wrap{
		background: #fff;
		border: 1px solid #fff;
		border-radius: 5px;
		padding: 19px 15px 18px 20px;
		box-sizing: border-box;
	}
	.home .cont06 .inner dl .faq_wrap .qes{
		background: url("img/home_icon03.svg")left top 2px no-repeat;
		background-size: 20px;
		padding: 0 30px 0 32px;
		color: #013384;
		font-size: 16px;
		font-weight: bold;
		line-height: 1.45;
		cursor: pointer;
		position: relative;
	}
	.home .cont06 .inner dl .faq_wrap .qes::after{
		position: absolute;
		top: 5px;
		right: 5px;
		transform: rotate(180deg);
		transform-origin: center;
		content: "";
		background: url("img/home_arrow01.svg")no-repeat;
		background-size: 18px;
		transition: all .5s ease;
		width: 18px;
		height: 11px;
	}
	.home .cont06 .inner dl .faq_wrap.is-open{
		border: 1px solid #002f7c;
	}
	.home .cont06 .inner dl .faq_wrap.is-open .qes::after{
		position: absolute;
		top: 5px;
		right: 5px;
		transform: rotate(0deg);
		transform-origin: center;
		content: "";
		background: url("img/home_arrow01.svg")no-repeat;
		background-size: 18px;
		transition: all .5s ease;
		width: 18px;
		height: 11px;
	}
	.home .cont06 .inner dl .faq_wrap .ans{
		display: none;
		padding: 12px 0 0;
		box-sizing: border-box;
		font-size: 14px;
		line-height: 1.875;
		position: relative;
	}
	.home .cont06 .inner .button a{
		display: block;
		width: 380px;
		height: 50px;
		background: #002f7c url("img/common_arrow01.svg")right 14px center no-repeat;
		border-radius: 25px;
		padding: 0 0 0 30px;
		box-sizing: border-box;
		color: #fff;
		font-size: 14px;
		font-weight: bold;
		line-height: 50px;
		margin: 45px auto 0;
	}


	/* cont07 */
	.home .cont07{
		background: #eaeff4;
		padding-bottom: 110px;
		position: relative;
	}
	.home .cont07::before{
		position: absolute;
		top: 0;
		right: 50px;
		content: "";
		background: linear-gradient(90deg, #1158b2, #2c80d1);
		width: 390px;
		height: 600px;
		border-radius: 0 5px 5px 0;
	}
	.home .cont07 .h_box{
		display: flex;
		flex-direction: column;
		gap: 20px 0;
		width: 370px;
		padding: 70px 0 0;
		box-sizing: border-box;
		color: #fff;
		margin: 0 auto;
	}
	.home .cont07 .h_box h2{
		background: url("img/home_text06.svg")left top no-repeat;
		padding: 47px 0 8px;
		font-size: 15px;
		line-height: 1;
		position: relative;
	}
	.home .cont07 .h_box .text01{
		padding-right: 20px;
		font-size: 14px;
		position: relative;
	}
	.home .cont07 .h_box .button a{
		position: absolute;
		bottom: 0;
		left: 50%;
		transform: translateX(-50%);
		display: block;
		width: 380px;
		height: 50px;
		background: #002f7c url("img/common_arrow01.svg")right 14px center no-repeat;
		border-radius: 25px;
		padding: 0 0 0 44px;
		box-sizing: border-box;
		color: #fff;
		font-size: 14px;
		font-weight: bold;
		line-height: 50px;
	}
	.home .cont07 .blog_box{
		margin-top: 30px;
	}
	.home .cont07 .blog_box .swiper-slide{
		display: block;
		width: 370px;
		background: #fff;
		border-radius: 5px;
		border: 1px solid #0b88c5;
		box-sizing: border-box;
	}
	.home .cont07 .blog_box .swiper-slide a{
		display: flex;
		justify-content: flex-start;
		flex-wrap: wrap;
		gap: 0 5px;
		padding: 20px 20px 18px;
		box-sizing: border-box;
	}
	.home .cont07 .blog_box .swiper-slide a h3{
		width: 100%;
		font-size: 16px;
		flex-shrink: 1;
		overflow: hidden;
		display: -webkit-box;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 1;
		margin-top: 12px;
		order: 2;
	}
	.home .cont07 .blog_box .swiper-slide a .date{
		color: #1f7ed5;
		font-size: 14px;
		font-weight: bold;
		line-height: 17px;
		margin: 6px 0 0;
		order: 3;
	}
	.home .cont07 .blog_box .swiper-slide a .cate{
		height: 17px;
		background: #1f7ed5;
		padding: 0 10px;
		border-radius: 2px;
		box-sizing: border-box;
		color: #fff;
		font-size: 12px;
		line-height: 17px;
		text-align: center;
		margin: 6px 0 0 4px;
		order: 4;
	}
	.home .cont07 .blog_box .swiper-slide a .text02{
		font-size: 14px;
		line-height: 2;
		flex-shrink: 1;
		overflow: hidden;
		display: -webkit-box;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 2;
		margin-top: 8px;
		order: 5;
	}
	.home .cont07 .blog_box .swiper-slide a figure{
		width: 330px;
		height: 220px;
		border-radius: 5px;
		overflow: hidden;
		order: 1;
	}
	.home .cont07 .blog_box .swiper-slide a figure img{
		width: 330px;
		height: 220px;
	}


	/* cont08 */
	.home .cont08{
		background: #eaeff4;
		position: relative;
	}
	.home .cont08 .inner{
		display: flex;
		flex-direction: column;
		gap: 25px 0;
		padding: 100px 20px 80px;
	}
	.home .cont08 .inner .h_box{
		display: flex;
		flex-direction: column;
		align-items: center;
		order: 2;
	}
	.home .cont08 .inner .h_box .text_box h2{
		display: flex;
		flex-direction: column;
		justify-content: center;
		min-height: 76px;
		background: url("img/logo.svg")left center no-repeat;
		background-size: 64px;
		padding-left: 80px;
		font-size: 22px;
		line-height: 1;
	}
	.home .cont08 .inner .h_box .text_box h2 span{
		display: block;
		font-size: 14px;
		margin-bottom: 14px;
	}
	.home .cont08 .inner .h_box .text_box address{
		text-align: center;
		margin-top: 20px;
	}
	.home .cont08 .inner .h_box .text_box address p{
		font-size: 14px;
	}
	.home .cont08 .inner .h_box .text_box address .tel{
		display: inline-block;
	}
	.home .cont08 .inner .h_box .text_box address .tel::before{
		content: "TEL："
	}
	.home .cont08 .inner .h_box .text_box address .fax{
		display: inline-block;
	}
	.home .cont08 .inner .h_box .text_box address .fax::before{
		content: "／FAX："
	}
	.home .cont08 .inner .h_box .text_box address .mail::before{
		content: "Mail："
	}
	.home .cont08 .inner .h_box .text_box .opentime{
		font-size: 14px;
		text-align: center;
	}
	.home .cont08 .inner .h_box .text_box .opentime::before{
		content: "営業時間：";
	}
	.home .cont08 .inner .h_box .sdgs_box{
		width: 400px;
		background: #fff;
		border-radius: 5px;
		padding: 22px 160px 22px 20px;
		box-sizing: border-box;
		margin-top: 46px;
		position: relative;
	}
	.home .cont08 .inner .h_box .sdgs_box .text01{
		font-size: 14px;
		line-height: 1.875;
	}
	.home .cont08 .inner .h_box .sdgs_box figure{
		position: absolute;
		bottom: 20px;
		right: 20px;
		cursor: pointer;
		width: 130px;
		z-index: 11;
	}

	/* モーダル */
	.home .cont08 .inner .h_box .sdgs_box dialog{
		width: 90%;
		max-width: 400px;
		height: 85vh;
		padding: 0;
		border: none;
		border-radius: 10px;
		overflow: hidden;
	}
	.home .cont08 .inner .h_box .sdgs_box dialog::backdrop{
		background: rgba(0, 0, 0, 0.8);
	}
	.home .cont08 .inner .h_box .sdgs_box dialog .modal-content{
		width: 100%;
		height: 100%;
	}
	.home .cont08 .inner .h_box .sdgs_box dialog .close-btn {
		position: absolute;
		top: 10px;
		right: 10px;
		padding: 5px 15px;
	}

	.home .cont08 .inner picture{
		order: 1;
	}
	.home .cont08 .inner .button{
		order: 3;
	}
	.home .cont08 .inner .button a{
		display: block;
		width: 380px;
		height: 50px;
		background: #002f7c url("img/common_arrow01.svg")right 14px center no-repeat;
		border-radius: 25px;
		box-sizing: border-box;
		color: #fff;
		font-size: 16px;
		font-weight: bold;
		line-height: 50px;
		text-align: center;
		margin: 20px auto 0;
	}



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

	/* header */
	.common header h1{
		top: 65px;
		left: auto;
		right: 20px;
		color: #0171b9;
		font-size: 8px;
		line-height: 1.1;
		text-align: right;
	}


	/* key */
	.common .key{
		display: grid;
		place-items: center;
		width: 420px;
		height: 150px;
		background: url("img/common_key_bg_sp.png")center center /cover no-repeat;
		padding: 6px 0 0;
		border-radius: 10px;
		box-sizing: border-box;
		margin: 60px auto 0;
	}
	.common .key .text01{
		padding: 34px 0 0;
		font-size: 14px;
		font-weight: bold;
		line-height: 1;
		text-align: center;
	}


	/* pankuzu */
	.pankuzu {
		margin-top: 12px;
		line-height: 1.3;
		z-index: 15;
		position: relative;
	}
	.pankuzu .inner{
		width: 100%;
		padding-left: 20px;
		box-sizing: border-box;
	}
	.pankuzu ul li {
		display: inline-block;
		margin-right: 10px;
		color: var(--main-color);
		font-size: 12px;
		font-weight: bold;
	}
	.pankuzu ul li a {
		color: #333;
	}
	.pankuzu ul li:not(:last-of-type)::after {
		content: "-";
		margin-left: 10px;
		flex-shrink: 0;
	}
	.pankuzu ul li:last-of-type {
		margin-right: 0;
	}


/* 一覧ページのページャー */
.archive-pager{
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 20px;
	width: 380px;
	margin:70px auto;
}
.archive-pager .page-numbers{
	background: var(--main-color);
	color: #fff;
	font-weight: bold;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 45px;
	height: 45px;
	border-radius: 50%;
	box-sizing: border-box;
}
.archive-pager .page-numbers.current {
	border: 1px solid var(--main-color);
	color:var(--main-color);
	background: #fff;
}
.archive-pager .page-numbers.prev,
.archive-pager .page-numbers.next{
	background: var(--main-dark-color);
	color: #fff;
	font-weight: bold;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 45px;
	height: 45px;
	border-radius: 50%;
	box-sizing: border-box;
	padding-top: 3px;
}
.archive-pager .page-numbers.next {
	padding-left: 3px;
}



.single-pager{
	width: 100%;
	margin: 60px auto;
}
.single-pager .prev-pager-box {
	margin:0 10px 30px;
}
.single-pager .next-pager-box {
	margin:0 10px;
}
.single-pager a {
	display: flex;
	align-items: center;
	text-decoration: none !important;
	text-align: left;
	font-size: 14px;
	position: relative;
	justify-content: flex-end;
}
.single-pager .prev-pager-box a {
	flex-direction: row-reverse;
	justify-content: flex-end;
}
.single-pager .prev-pager-box a::before,
.single-pager .next-pager-box a::before {
	content: "";
	width: 25px;
	height: 25px;
	background: var(--main-color);
	border-radius: 50%;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}
.single-pager .prev-pager-box a::before{
	left: -10px;
}
.single-pager .next-pager-box a::before {
	right: -10px;
}
.single-pager .prev-pager-box a::after,
.single-pager .next-pager-box a::after {
	content: "";
	width: 0;
	height: 0;
	border-top: 4px solid transparent;
	border-bottom: 4px solid transparent;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}
.single-pager .prev-pager-box a::after{
	border-right: 6px solid #fff;
	left: -2px;
}
.single-pager .next-pager-box a::after {
	border-left: 6px solid #fff;
	right: -2px;
}
.single-pager .prev-pager-box a .text-box {
	padding-left: 20px;
}
.single-pager .next-pager-box a .text-box {
	padding-right: 20px;
}
.single-pager a h2 {
	line-height: 1.5;
	margin-bottom: 5px;
	font-weight: bold;
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}
.single-pager a .img {
	flex-shrink: 0;
	box-shadow: 0 0 10px 3px rgba(0, 0, 0, 0.05);
}
.single-pager a .img img {
	width: 150px;
	border-radius: 5px;
}



/* ここから各下層ページ
------------------------------------------------------------------------*/
	/* key */
	
	/* item */
	.item-archive .key .text01,
	.item-single .key .text01{
		min-width: 147px;
		background: url("img/item_key_text01.svg")center top no-repeat;
		background-size: 147px;
	}
	
	/* original */
	.original .key .text01{
		min-width: 138px;
		background: url("img/original_key_text01.svg")center top no-repeat;
		background-size: 138px;
	}
	
	/* catalog */
	.catalog .key .text01{
		min-width: 134px;
		background: url("img/catalog_key_text01.svg")center top no-repeat;
		background-size: 134px;
	}
	
	/* flow */
	.flow .key .text01{
		min-width: 83px;
		background: url("img/flow_key_text01.svg")center top no-repeat;
		background-size: 83px;
	}
	
	/* reason */
	.reason .key .text01{
		min-width: 117px;
		background: url("img/reason_key_text01.svg")center top no-repeat;
		background-size: 117px;
	}


	/* blog */
	.blog .key .text01{
		min-width: 84px;
		background: url("img/blog_key_text01.svg")center top no-repeat;
		background-size: 84px;
	}

	/* company */
	.company .key .text01{
		min-width: 154px;
		background: url("img/company_key_text01.svg")center top no-repeat;
		background-size: 154px;
	}

	/* contact */
	.contact .key .text01{
		min-width: 140px;
		background: url("img/contact_key_text01.svg")center top no-repeat;
		background-size: 140px;
	}

	/* stocklist */
	.stocklist .key .text01{
		min-width: 140px;
		background: url("img/stocklist_key_text01.svg")center top no-repeat;
		background-size: 140px;
	}

	/* faq */
	.faq .key .text01{
		min-width: 60px;
		background: url("img/faq_key_text01.svg")center top no-repeat;
		background-size: 60px;
	}

	/* privacy */
	.privacy .key .text01{
		min-width: 132px;
		background: url("img/privacy_key_text01.svg")center top no-repeat;
		background-size: 132px;
	}

	/* thanks */
	.thanks .key .text01{
		min-width: 115px;
		background: url("img/thanks_key_text01.svg")center top no-repeat;
		background-size: 115px;
	}

	/* 404 */
	.yonmaruyon .key .text01{
		min-width: 52px;
		background: url("img/yonmaruyon_key_text01.svg")center top no-repeat;
		background-size: 52px;
	}

	/* 410 */
	.yonichimaru .key .text01{
		min-width: 48px;
		background: url("img/yonichimaru_key_text01.svg")center top no-repeat;
		background-size: 48px;
	}



/* item-archive
------------------------------------------------------------------------*/
	/* cont01 */
	.item-archive .cont01{
		position: relative;
	}
	.item-archive .cont01::after{
		position: absolute;
		bottom: 0;
		right: 0;
		content: "";
		background: url("img/item-archive_img19_sp.png")no-repeat;
		width: 400px;
		height: 343px;
		z-index: -1;
	}
	.item-archive .cont01 .inner{
		display: flex;
		justify-content: center;
		flex-wrap: wrap;
		gap: 45px 0;
		padding: 70px 20px 260px;
		position: relative;
	}
	.item-archive .cont01 .inner .cont{
		display: flex;
		flex-direction: column;
		align-items: center;
		width: 370px;
		background: #eaeff4;
		border-radius: 5px;
		padding: 20px 20px 60px;
		box-sizing: border-box;
		position: relative;
	}
	.item-archive .cont01 .inner .cont::after{
		position: absolute;
		bottom: 59px;
		left: 50%;
		transform: translateX(-50%);
		content: "";
		background: #0171b9;
		width: calc(100% - 40px);
		height: 1px;
	}
	.item-archive .cont01 .inner .cont h2{
		color: #033384;
		font-size: 18px;
		line-height: 1.55;
		text-align: center;
		margin-top: 20px;
		order: 2;
		z-index: 11;
		position: relative;
	}
	.item-archive .cont01 .inner .cont .text01{
		padding-bottom: 12px;
		font-size: 14px;
		line-height: 2;
		margin-top: 12px;
		order: 3;
		z-index: 11;
		position: relative;
	}
	.item-archive .cont01 .inner .cont figure{
		order: 1;
		position: relative;
	}
	.item-archive .cont01 .inner .cont figure img{
		width: 330px;
		height: 173px;
		object-fit: cover;
		border-radius: 5px;
	}
	.item-archive .cont01 .inner .cont figure::before{
		position: absolute;
		top: 116px;
		left: 50%;
		transform: translateX(-50%);
		content: "";
		background: #eaeff4;
		width: 110px;
		height: 110px;
		border-radius: 50%;
	}
	.item-archive .cont01 .inner .cont figure::after{
		position: absolute;
		top: 138px;
		left: 50%;
		transform: translateX(-50%);
		content: "";
		background: url("img/common_icon01.svg")no-repeat;
		width: 45px;
		height: 35px;
	}
	.item-archive .cont01 .inner .cont:nth-of-type(2) figure::after{
		top: 134px;
		background: url("img/common_icon02.svg")no-repeat;
		width: 33px;
		height: 39px;
	}
	.item-archive .cont01 .inner .cont:nth-of-type(3) figure::after{
		top: 135px;
		background: url("img/common_icon03.svg")no-repeat;
		width: 45px;
		height: 37px;
	}
	.item-archive .cont01 .inner .cont:nth-of-type(4) figure::after{
		top: 136px;
		background: url("img/common_icon04.svg")no-repeat;
		width: 36px;
		height: 36px;
	}
	.item-archive .cont01 .inner .cont:nth-of-type(5) figure::after{
		top: 137px;
		background: url("img/common_icon05.svg")no-repeat;
		width: 37px;
		height: 34px;
	}
	.item-archive .cont01 .inner .cont:nth-of-type(6) figure::after{
		top: 138px;
		background: url("img/common_icon06.svg")no-repeat;
		width: 36px;
		height: 36px;
	}
	.item-archive .cont01 .inner .cont:nth-of-type(7) figure::after{
		top: 131px;
		background: url("img/common_icon07.svg")no-repeat;
		width: 40px;
		height: 41px;
	}
	.item-archive .cont01 .inner .cont:nth-of-type(8) figure::after{
		top: 133px;
		background: url("img/common_icon08.svg")no-repeat;
		width: 23px;
		height: 40px;
	}
	.item-archive .cont01 .inner .cont:nth-of-type(9) figure::after{
		top: 140px;
		background: url("img/common_icon09.svg")no-repeat;
		width: 26px;
		height: 28px;
	}
	.item-archive .cont01 .inner .cont:nth-of-type(10) figure::after{
		top: 135px;
		background: url("img/common_icon10.svg")no-repeat;
		width: 28px;
		height: 37px;
	}
	.item-archive .cont01 .inner .cont:nth-of-type(11) figure::after{
		top: 141px;
		background: url("img/common_icon11.svg")no-repeat;
		width: 33px;
		height: 33px;
	}
	.item-archive .cont01 .inner .cont:nth-of-type(12) figure::after{
		top: 140px;
		background: url("img/common_icon12.svg")no-repeat;
		width: 36px;
		height: 34px;
	}
	.item-archive .cont01 .inner .cont:nth-of-type(13) figure::after{
		top: 138px;
		background: url("img/common_icon13.svg")no-repeat;
		width: 35px;
		height: 35px;
	}
	.item-archive .cont01 .inner .cont:nth-of-type(14) figure::after{
		top: 136px;
		background: url("img/common_icon14.svg")no-repeat;
		width: 37px;
		height: 38px;
	}
	.item-archive .cont01 .inner .cont:nth-of-type(15) figure::after{
		top: 133px;
		background: url("img/common_icon15.svg")no-repeat;
		width: 41px;
		height: 41px;
	}
	.item-archive .cont01 .inner .cont:nth-of-type(16) figure::after{
		top: 135px;
		background: url("img/common_icon16.svg")no-repeat;
		width: 37px;
		height: 37px;
	}
	.item-archive .cont01 .inner .cont .button a{
		position: absolute;
		bottom: 0;
		left: 50%;
		transform: translateX(-50%);
		display: inline-block;
		width: 100%;
		height: 60px;
		color: #0171b9;
		font-size: 14px;
		line-height: 60px;
		text-align: center;
		white-space: nowrap;
	}
	.item-archive .cont01 .inner .cont .button a span{
		padding-right: 32px;
		font-weight: bold;
		position: relative;
	}
	.item-archive .cont01 .inner .cont .button a span::after{
		position: absolute;
		top: 50%;
		right: 0;
		transform: translateY(-50%);
		content: "";
		background: url("img/common_arrow03.svg")no-repeat;
		width: 21px;
		height: 21px;
		transition: all .4s;
	}



/* item-single
------------------------------------------------------------------------*/

	/* cont01 */
	.item-single .cont01 .inner{
		display: flex;
		flex-direction: column-reverse;
		align-items: center;
		gap: 20px 0;
		padding: 70px 20px 60px;
		position: relative;
	}
	.item-single .cont01 .inner .text_box{
		width: 390px;
	}
	.item-single .cont01 .inner .text_box h2{
		color: #033384;
		font-size: 14px;
		line-height: 2;
	}
	.item-single .cont01 .inner .text_box .text01{
		padding-bottom: 24px;
		border-bottom: 1px solid #ccc;
		font-size: 18px;
		font-weight: bold;
		line-height: 1;
		margin-top: 12px;
	}
	.item-single .cont01 .inner .text_box .text02{
		font-size: 14px;
		margin-top: 18px;
	}
	.item-single .cont01 .inner figure{
		width: 400px;
		border-radius: 10px;
		overflow: hidden;
	}


	/* cont02 */
	.item-single .cont02{
		background: #eaeff4;
	}
	.item-single .cont02 .inner{
		padding: 80px 10px 100px;
	}
	.item-single .cont02 .inner h2{
		background: url("img/item-single_text01.svg")center top no-repeat;
		background-size: 202px;
		padding: 64px 0 0;
		font-size: 16px;
		line-height: 1.35;
		text-align: center;
	}
	.item-single .cont02 .inner h2 span{
		font-weight: bold;
	}
	.item-single .cont02 .inner .sample_box{
		display: flex;
		justify-content: space-between;
		flex-wrap: wrap;
		gap: 20px 10px;
		margin-top: 45px;
	}
	.item-single .cont02 .inner .sample_box .cont{
		display: block;
		width: 205px;
		background: #fff;
		border-radius: 5px;
		padding-bottom: 12px;
		overflow: hidden;
		position: relative;
	}
	.item-single .cont02 .inner .sample_box .cont figure img{
		width: 205px;
		height: 256px;
		object-fit: cover;
	}
	.item-single .cont02 .inner .sample_box .cont dl{
		display: flex;
		flex-direction: column;
		gap: 4px 0;
		margin: 10px 15px;
	}
	.item-single .cont02 .inner .sample_box .cont dl .info_list{
		display: flex;
		flex-direction: column;
	}
	.item-single .cont02 .inner .sample_box .cont dl .info_list dt{
		color: #0171b9;
		font-size: 14px;
		font-weight: bold;
		line-height: 1.65;
		white-space: nowrap;
	}
	.item-single .cont02 .inner .sample_box .cont dl .info_list dt::after{
		content: "：";
	}
	.item-single .cont02 .inner .sample_box .cont dl .info_list dd{
		font-size: 14px;
		line-height: 1.65;
	}
	.item-single .cont02 .inner .sample_box .cont .text01{
		padding-top: 9px;
		border-top: 1px solid #0171b9;
		font-size: 14px;
		line-height: 1.714;
		margin: 0 15px;
	}


	/* cont03 */
	.item-single .cont03{
		position: relative;
	}
	.item-single .cont03::before{
		position: absolute;
		top: -39px;
		right: 0;
		content: "";
		background: url("img/common_img01_sp.png")no-repeat;
		width: 300px;
		height: 114px;
	}
	.item-single .cont03 .inner{
		padding: 120px 20px 70px;
	}
	.item-single .cont03 .inner h2{
		background: url("img/common_text02.svg")left top no-repeat;
		background-size: 83px;
		padding: 42px 0 0;
		font-size: 16px;
		line-height: 1;
	}
	.item-single .cont03 .inner h2 span{
		font-weight: bold;
	}
	.item-single .cont03 .inner .flow_box{
		display: flex;
		flex-flow: column;
		gap: 30px 0;
		overflow: hidden;
		margin-top: 45px;
		position: relative;
	}
	.item-single .cont03 .inner .flow_box::before{
		position: absolute;
		top: 12px;
		left: 66px;
		content: "";
		background: url("img/common_line01.svg")repeat-y;
		background-size: 3px;
		width: 3px;
		height: calc(100% - 20px);
		z-index: -1;
	}
	.item-single .cont03 .inner .flow_box .cont{
		display: flex;
		flex-direction: column;
		justify-content: center;
		width: 400px;
		min-height: 150px;
		background: #eaeff4 url("img/common_numbertxt01.svg")left 20px center no-repeat;
		background-size: 45px;
		padding: 18px 20px 18px 85px;
		border-radius: 10px;
		box-sizing: border-box;
	}
	.item-single .cont03 .inner .flow_box .cont:nth-of-type(2){
		background: #eaeff4 url("img/common_numbertxt02.svg")left 20px center no-repeat;
		background-size: 45px;
	}
	.item-single .cont03 .inner .flow_box .cont:nth-of-type(3){
		background: #eaeff4 url("img/common_numbertxt03.svg")left 20px center no-repeat;
		background-size: 45px;
	}
	.item-single .cont03 .inner .flow_box .cont:nth-of-type(4){
		background: #eaeff4 url("img/common_numbertxt04.svg")left 20px center no-repeat;
		background-size: 45px;
	}
	.item-single .cont03 .inner .flow_box .cont:nth-of-type(5){
		background: #eaeff4 url("img/common_numbertxt05.svg")left 20px center no-repeat;
		background-size: 45px;
	}
	.item-single .cont03 .inner .flow_box .cont:nth-of-type(6){
		background: #eaeff4 url("img/common_numbertxt06.svg")left 20px center no-repeat;
		background-size: 45px;
		border: 2px solid #002f7c;
	}
	.item-single .cont03 .inner .flow_box .cont h3{
		color: #002f7c;
		font-size: 18px;
		line-height: 1.6;
	}
	.item-single .cont03 .inner .flow_box .cont .text01{
		font-size: 14px;
		line-height: 1.75;
		margin-top: 8px;
	}
	.item-single .cont03 .inner .flow_box .cont .in_box{
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 0 15px;
		height: 60px;
		background: #fff;
		border-radius: 5px;
		margin-top: 13px;
	}
	.item-single .cont03 .inner .flow_box .cont .in_box .tel{
		font-size: 13px;
		line-height: 1;
		text-align: center;
	}
	.item-single .cont03 .inner .flow_box .cont .in_box .tel a{
		display: block;
		min-height: 22px;
		background: url("img/tel_icon.svg")left center no-repeat;
		background-size: 17px;
		padding-left: 22px;
		margin-bottom: 6px;
	}
	.item-single .cont03 .inner .flow_box .cont .in_box .tel a span{
		display: block;
	}
	.item-single .cont03 .inner .flow_box .cont .in_box .mail a{
		display: block;
		width: 40px;
		height: 40px;
		background: #0171b9 url("img/common_icon17.svg")center center no-repeat;
		background-size: 20px;
		border-radius: 50%;
		padding: 40px 0 0;
		box-sizing: border-box;
		overflow: hidden;
	}
	.item-single .cont03 .inner .flow_box .cont .in_box .tel a img{
		width: 172px;
	}
	.item-single .cont03 .inner .button a{
		display: block;
		width: 380px;
		height: 50px;
		background: #002f7c url("img/common_arrow01.svg")right 14px center no-repeat;
		border: 1px solid #002f7c;
		border-radius: 25px;
		box-sizing: border-box;
		color: #fff;
		font-size: 16px;
		font-weight: bold;
		line-height: 48px;
		text-align: center;
		margin: 50px auto 0;
	}
	.item-single .cont03 .inner .button a span{
		font-weight: bold;
	}


	/* cont04 */
	.item-single .cont04{
		background: #eaeff4;
	}
	.item-single .cont04 .inner{
		padding: 90px 20px 70px;
	}
	.item-single .cont04 .inner h2{
		background: url("img/item-single_text03.svg")left top no-repeat;
		background-size: 118px;
		padding: 40px 0 0;
		font-size: 18px;
		line-height: 1;
	}
	.item-single .cont04 .inner h2 .span01{
		display: block;
		font-size: 14px;
		line-height: 1.35;
		margin-bottom: 12px;
	}
	.item-single .cont04 .inner .cont{
		display: flex;
		flex-direction: column-reverse;
		align-items: center;
		gap: 25px 0;
		padding: 30px 0;
		border-top: 1px solid rgba(204,204,204,0.88);
		position: relative;
	}
	.item-single .cont04 .inner .cont:first-of-type{
		margin-top: 70px;
	}
	.item-single .cont04 .inner .cont:last-of-type{
		border-bottom: 1px solid rgba(204,204,204,0.88);
	}
	.item-single .cont04 .inner .cont:first-of-type::after{
		position: absolute;
		top: -101px;
		right: 0;
		content: "";
		background: url("img/common_illust03.svg")no-repeat;
		background-size: 132px;
		width: 132px;
		height: 101px;
	}
	.item-single .cont04 .inner .cont .text_box{
		width: 380px;
	}
	.item-single .cont04 .inner .cont h3{
		font-size: 18px;
		line-height: 1.73;
	}
	.item-single .cont04 .inner .cont .text01{
		font-size: 14px;
		margin-top: 12px;
	}
	.item-single .cont04 .inner .cont figure{
		border-radius: 5px;
		overflow: hidden;
	}
	.item-single .cont04 .inner .button a{
		display: block;
		width: 380px;
		height: 50px;
		background: #002f7c url("img/common_arrow01.svg")right 14px center no-repeat;
		border: 1px solid #002f7c;
		border-radius: 25px;
		box-sizing: border-box;
		color: #fff;
		font-size: 16px;
		font-weight: bold;
		line-height: 48px;
		text-align: center;
		margin: 45px auto 0;
	}
	.item-single .cont04 .inner .button a span{
		font-weight: bold;
	}



/* original
------------------------------------------------------------------------*/
	/* cont01 */
	.original .cont01 .inner{
		padding: 150px 20px 60px;
		text-align: center;
		position: relative;
	}
	.original .cont01 .inner::before{
		position: absolute;
		top: 20px;
		left: 30px;
		content: "";
		background: url("img/common_illust01.svg")no-repeat;
		background-size: 79px;
		width: 79px;
		height: 100px;
	}
	.original .cont01 .inner::after{
		position: absolute;
		top: 20px;
		right: 40px;
		content: "";
		background: url("img/common_illust02.svg")no-repeat;
		background-size: 166px;
		width: 166px;
		height: 95px;
	}
	.original .cont01 .inner h2{
		font-size: 14px;
		font-weight: normal;
		line-height: 1;
	}
	.original .cont01 .inner .text01{
		font-size: 26px;
		font-weight: bold;
		line-height: 1.5;
	}
	.original .cont01 .inner .text01 span{
		display: inline-block;
		padding: 12px 20px;
		border-top: 1px solid #ccc;
		border-bottom: 1px solid #ccc;
		color: #033384;
		font-size: 18px;
		font-weight: bold;
		line-height: 1;
		margin: 20px 0 26px;
	}
	.original .cont01 .inner .text02{
		font-size: 16px;
		line-height: 2.2;
		margin-top: 26px;
	}
	.original .cont01 .inner .button a{
		display: block;
		width: 380px;
		height: 50px;
		background: #002f7c url("img/common_arrow01.svg")right 14px center no-repeat;
		border: 1px solid #002f7c;
		border-radius: 25px;
		box-sizing: border-box;
		color: #fff;
		font-size: 16px;
		font-weight: bold;
		line-height: 48px;
		text-align: center;
		margin: 40px auto 0;
	}


	/* cont02 */
	.original .cont02{
		background: #eaeff4;
		border-radius: 35px 35px 0 35px;
		position: relative;
	}
	.original .cont02 .inner{
		padding: 80px 10px 100px;
		position: relative;
	}
	.original .cont02 .inner h2{
		background: url("img/original_text01.svg")center top no-repeat;
		background-size: 351px;
		padding: 50px 0 0;
		font-size: 16px;
		line-height: 1;
		text-align: center;
	}
	.original .cont02 .inner .category_box{
		display: flex;
		justify-content: space-between;
		flex-wrap: wrap;
		gap: 20px 10px;
		margin-top: 60px;
	}
	.original .cont02 .inner .category_box .cont{
		display: block;
		width: 205px;
		background: #fff;
		border: 1px solid #0171b9;
		border-radius: 5px;
		box-sizing: border-box;
		position: relative;
	}
	.original .cont02 .inner .category_box .cont a{
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		align-content: flex-start;
		padding: 0 0 60px;
		box-sizing: border-box;
	}
	.original .cont02 .inner .category_box .cont a h3{
		display: flex;
		align-items: center;
		height: 50px;
		font-size: 18px;
		line-height: 1.45;
		margin: 13px 0 0;
		order: 2;
		position: relative;
	}
	.original .cont02 .inner .category_box .cont:nth-of-type(1) a h3{
		background: url("img/common_icon01.svg")left center no-repeat;
		padding-left: 58px;
	}
	.original .cont02 .inner .category_box .cont:nth-of-type(2) a h3{
		background: url("img/common_icon02.svg")left center no-repeat;
		padding-left: 45px;
		font-size: 16px;
	}
	.original .cont02 .inner .category_box .cont:nth-of-type(3) a h3{
		background: url("img/common_icon03.svg")left center no-repeat;
		padding-left: 58px;
		font-size: 16px;
	}
	.original .cont02 .inner .category_box .cont:nth-of-type(4) a h3{
		background: url("img/common_icon04.svg")left center no-repeat;
		padding-left: 49px;
	}
	.original .cont02 .inner .category_box .cont:nth-of-type(5) a h3{
		background: url("img/common_icon05.svg")left center no-repeat;
		padding-left: 49px;
	}
	.original .cont02 .inner .category_box .cont:nth-of-type(6) a h3{
		background: url("img/common_icon06.svg")left center no-repeat;
		padding-left: 51px;
	}
	.original .cont02 .inner .category_box .cont:nth-of-type(7) a h3{
		background: url("img/common_icon07.svg")left center no-repeat;
		padding-left: 51px;
		font-size: 16px;
	}
	.original .cont02 .inner .category_box .cont:nth-of-type(8) a h3{
		background: url("img/common_icon08.svg")left center no-repeat;
		padding-left: 36px;
	}
	.original .cont02 .inner .category_box .cont:nth-of-type(9) a h3{
		background: url("img/common_icon09.svg")left center no-repeat;
		padding-left: 39px;
	}
	.original .cont02 .inner .category_box .cont:nth-of-type(10) a h3{
		background: url("img/common_icon10.svg")left center no-repeat;
		padding-left: 42px;
	}
	.original .cont02 .inner .category_box .cont:nth-of-type(11) a h3{
		background: url("img/common_icon11.svg")left center no-repeat;
		padding-left: 42px;
		font-size: 16px;
	}
	.original .cont02 .inner .category_box .cont:nth-of-type(12) a h3{
		background: url("img/common_icon12.svg")left center no-repeat;
		padding-left: 49px;
	}
	.original .cont02 .inner .category_box .cont:nth-of-type(13) a h3{
		background: url("img/common_icon13.svg")left center no-repeat;
		padding-left: 45px;
		font-size: 16px;
	}
	.original .cont02 .inner .category_box .cont:nth-of-type(14) a h3{
		background: url("img/common_icon14.svg")left center no-repeat;
		padding-left: 47px;
		font-size: 16px;
	}
	.original .cont02 .inner .category_box .cont:nth-of-type(15) a h3{
		background: url("img/common_icon15.svg")left center no-repeat;
		padding-left: 53px;
	}
	.original .cont02 .inner .category_box .cont:nth-of-type(16) a h3{
		background: url("img/common_icon16.svg")left center no-repeat;
		padding-left: 52px;
		font-size: 16px;
	}
	.original .cont02 .inner .category_box .cont a figure{
		width: 100%;
		height: 110px;
		border-radius: 4px 4px 0 0;
		overflow: hidden;
		order: 1;
	}
	.original .cont02 .inner .category_box .cont a .text01{
		font-size: 14px;
		line-height: 1.73;
		margin: 7px 10px 0 15px;
		order: 3;
	}
	.original .cont02 .inner .category_box .cont a .button{
		position: absolute;
		bottom: 0;
		left: 15px;
		display: flex;
		align-items: center;
		width: 175px;
		height: 60px;
		background: url("img/common_arrow03.svg")right center no-repeat;
		padding-right: 30px;
		box-sizing: border-box;
		color: #0171b9;
		font-size: 14px;
		font-weight: bold;
		line-height: 1.35;
		order: 4;
	}
	.original .cont02 .inner > .button > a{
		display: block;
		width: 380px;
		height: 50px;
		background: #002f7c url("img/common_arrow01.svg")right 14px center no-repeat;
		border-radius: 25px;
		box-sizing: border-box;
		color: #fff;
		font-size: 16px;
		font-weight: bold;
		line-height: 50px;
		text-align: center;
		margin: 45px auto 0;
	}


	/* cont03 */
	.original .cont03{
		position: relative;
	}
	.original .cont03::before{
		position: absolute;
		top: -39px;
		right: 0;
		content: "";
		background: url("img/common_img01_sp.png")no-repeat;
		width: 300px;
		height: 114px;
	}
	.original .cont03 .inner{
		padding: 120px 20px 70px;
	}
	.original .cont03 .inner h2{
		background: url("img/common_text02.svg")left top no-repeat;
		background-size: 83px;
		padding: 42px 0 0;
		font-size: 16px;
		line-height: 1;
	}
	.original .cont03 .inner .flow_box{
		display: flex;
		flex-flow: column;
		gap: 30px 0;
		overflow: hidden;
		margin-top: 45px;
		position: relative;
	}
	.original .cont03 .inner .flow_box::before{
		position: absolute;
		top: 12px;
		left: 66px;
		content: "";
		background: url("img/common_line01.svg")repeat-y;
		background-size: 3px;
		width: 3px;
		height: calc(100% - 20px);
		z-index: -1;
	}
	.original .cont03 .inner .flow_box .cont{
		display: flex;
		flex-direction: column;
		justify-content: center;
		width: 400px;
		min-height: 150px;
		background: #eaeff4 url("img/common_numbertxt01.svg")left 20px center no-repeat;
		background-size: 45px;
		padding: 18px 20px 18px 85px;
		border-radius: 10px;
		box-sizing: border-box;
	}
	.original .cont03 .inner .flow_box .cont:nth-of-type(2){
		background: #eaeff4 url("img/common_numbertxt02.svg")left 20px center no-repeat;
		background-size: 45px;
	}
	.original .cont03 .inner .flow_box .cont:nth-of-type(3){
		background: #eaeff4 url("img/common_numbertxt03.svg")left 20px center no-repeat;
		background-size: 45px;
	}
	.original .cont03 .inner .flow_box .cont:nth-of-type(4){
		background: #eaeff4 url("img/common_numbertxt04.svg")left 20px center no-repeat;
		background-size: 45px;
	}
	.original .cont03 .inner .flow_box .cont:nth-of-type(5){
		background: #eaeff4 url("img/common_numbertxt05.svg")left 20px center no-repeat;
		background-size: 45px;
	}
	.original .cont03 .inner .flow_box .cont:nth-of-type(6){
		background: #eaeff4 url("img/common_numbertxt06.svg")left 20px center no-repeat;
		background-size: 45px;
		border: 2px solid #002f7c;
	}
	.original .cont03 .inner .flow_box .cont h3{
		color: #002f7c;
		font-size: 18px;
		line-height: 1.6;
	}
	.original .cont03 .inner .flow_box .cont .text01{
		font-size: 14px;
		line-height: 1.75;
		margin-top: 8px;
	}
	.original .cont03 .inner .flow_box .cont .in_box{
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 0 15px;
		height: 60px;
		background: #fff;
		border-radius: 5px;
		margin-top: 13px;
	}
	.original .cont03 .inner .flow_box .cont .in_box .tel{
		font-size: 13px;
		line-height: 1;
		text-align: center;
	}
	.original .cont03 .inner .flow_box .cont .in_box .tel a{
		display: block;
		min-height: 22px;
		background: url("img/tel_icon.svg")left center no-repeat;
		background-size: 17px;
		padding-left: 22px;
		margin-bottom: 6px;
	}
	.original .cont03 .inner .flow_box .cont .in_box .tel a span{
		display: block;
	}
	.original .cont03 .inner .flow_box .cont .in_box .mail a{
		display: block;
		width: 40px;
		height: 40px;
		background: #0171b9 url("img/common_icon17.svg")center center no-repeat;
		background-size: 20px;
		border-radius: 50%;
		padding: 40px 0 0;
		box-sizing: border-box;
		overflow: hidden;
	}
	.original .cont03 .inner .flow_box .cont .in_box .tel a img{
		width: 172px;
	}
	.original .cont03 .inner .button a{
		display: block;
		width: 380px;
		height: 50px;
		background: #002f7c url("img/common_arrow01.svg")right 14px center no-repeat;
		border: 1px solid #002f7c;
		border-radius: 25px;
		box-sizing: border-box;
		color: #fff;
		font-size: 16px;
		font-weight: bold;
		line-height: 48px;
		text-align: center;
		margin: 50px auto 0;
	}
	.original .cont03 .inner .button a span{
		font-weight: bold;
	}



/* catalog
------------------------------------------------------------------------*/
	/* cont01 */
	.catalog .cont01 .inner{
		padding: 290px 20px 70px;
		text-align: center;
		position: relative;
	}
	.catalog .cont01 .inner h2{
		font-size: 14px;
		font-weight: normal;
		line-height: 1;
	}
	.catalog .cont01 .inner .text01{
		font-size: 26px;
		font-weight: bold;
		line-height: 1.5;
	}
	.catalog .cont01 .inner .text01 span{
		display: inline-block;
		padding: 12px 20px;
		border-top: 1px solid #ccc;
		border-bottom: 1px solid #ccc;
		color: #033384;
		font-size: 18px;
		font-weight: bold;
		line-height: 1;
		margin: 20px 0 26px;
	}
	.catalog .cont01 .inner .text02{
		font-size: 16px;
		line-height: 2.2;
		margin-top: 30px;
	}
	.catalog .cont01 .inner .button a{
		display: block;
		width: 380px;
		height: 50px;
		background: #002f7c url("img/common_arrow01.svg")right 14px center no-repeat;
		border: 1px solid #002f7c;
		border-radius: 25px;
		box-sizing: border-box;
		color: #fff;
		font-size: 16px;
		font-weight: bold;
		line-height: 48px;
		text-align: center;
		margin: 40px auto 0;
	}
	.catalog .cont01 .inner figure{
		position: absolute;
		top: 70px;
		left: 20px;
		width: 190px;
	}
	.catalog .cont01 .inner figure:nth-of-type(2){
		position: absolute;
		left: auto;
		right: 20px;
		width: 190px;
	}


	/* cont02 */
	.catalog .cont02{
		background: #eaeff4;
	}
	.catalog .cont02 .inner{
		padding: 70px 10px 0;
		position: relative;
	}
	.catalog .cont02 .inner ul{
		display: flex;
		flex-wrap: wrap;
		gap: 10px;
	}
	.catalog .cont02 .inner ul li{
		width: 205px;
		display: flex;
	}
	.catalog .cont02 .inner ul li a{
		width: 100%;
		display: flex;
		align-items: center;
		justify-content: center;
		color: #002f7c;
		background: #fff;
		border: 1px solid #002f7c;
		font-size: 16px;
		line-height: 1.4;
		font-weight: bold;
		padding: 15px;
		text-align: center;
		box-sizing: border-box;
		border-radius: 5px;
	}


	/* catalog_wrap */
	.catalog .catalog_wrap{
		background: #eaeff4;
		padding-bottom: 30px;
	}


	/* catalog_cont */
	.catalog .catalog_cont{
		width: 420px;
		padding: 60px 0;
		margin: 0 auto;
	}
	.catalog .catalog_cont:nth-of-type(n+2){
		border-top: 1px solid #0171b9;
	}
	.catalog .catalog_cont h2{
		background: url("img/catalog_text01.svg")center top no-repeat;
		background-size: 70px;
		padding: 25px 0 0;
		color: #002f7c;
		font-size: 18px;
		line-height: 1;
		text-align: center;
	}
	.catalog .catalog_cont h2 span{
		font-weight: bold;
	}
	.catalog .catalog_cont .catalog_box{
		display: flex;
		justify-content: space-between;
		flex-wrap: wrap;
		gap: 20px 10px;
		margin-top: 45px;
	}
	.catalog .catalog_cont .catalog_box .cont a{
		display: block;
		width: 205px;
		background: #fff;
		border-radius: 5px;
		padding-bottom: 30px;
		overflow: hidden;
		position: relative;
	}
	.catalog .catalog_cont .catalog_box .cont a figure img{
		width: 205px;
		height: 256px;
		object-fit: cover;
	}
	.catalog .catalog_cont .catalog_box .cont a dl{
		display: flex;
		flex-direction: column;
		gap: 4px 0;
		margin: 10px 15px;
	}
	.catalog .catalog_cont .catalog_box .cont a dl .info_list{
		display: flex;
		flex-direction: column;
	}
	.catalog .catalog_cont .catalog_box .cont a dl .info_list dt{
		color: #0171b9;
		font-size: 14px;
		font-weight: bold;
		line-height: 1.65;
		white-space: nowrap;
	}
	.catalog .catalog_cont .catalog_box .cont a dl .info_list dd{
		font-size: 14px;
		line-height: 1.65;
	}
	.catalog .catalog_cont .catalog_box .cont a .text01{
		padding-top: 9px;
		border-top: 1px solid #0171b9;
		font-size: 14px;
		line-height: 1.714;
		margin: 0 15px 14px;
	}
	.catalog .catalog_cont .catalog_box .cont a .button{
		position: absolute;
		bottom: 0;
		left: 0;
		display: block;
		width: 205px;
		height: 30px;
		background: #0171b9 url("img/common_arrow05.svg")right 10px center no-repeat;
		border-radius: 0 0 5px 5px;
		box-sizing: border-box;
		color: #fff;
		font-size: 14px;
		font-weight: bold;
		line-height: 30px;
		text-align: center;
		transition: all .4s;
	}



/* flow
------------------------------------------------------------------------*/
	/* cont01 */
	.flow .cont01 .inner{
		padding: 60px 20px 70px;
		position: relative;
	}
	.flow .cont01 .inner::before{
		position: absolute;
		top: 150px;
		left: 50%;
		transform: translateX(-50%);
		content: "";
		background: url("img/common_line01.svg")repeat-y;
		background-size: 3px;
		width: 3px;
		height: calc(100% - 300px);
	}
	.flow .cont01 .inner .cont{
		display: flex;
		flex-direction: column-reverse;
		align-items: center;
		gap: 40px 0;
		width: 400px;
		background: #eaeff4;
		border-radius: 10px;
		padding: 20px;
		box-sizing: border-box;
	}
	.flow .cont01 .inner .cont:nth-of-type(n+2){
		margin-top: 40px;
	}
	.flow .cont01 .inner .cont .text_box{
		width: 360px;
	}
	.flow .cont01 .inner .cont .text_box h2{
		font-size: 18px;
		line-height: 1.5;
		text-align: center;
	}
	.flow .cont01 .inner .cont .text_box .text01{
		font-size: 14px;
		line-height: 1.875;
		margin-top: 16px;
	}
	.flow .cont01 .inner .cont .text_box .in_box{
		display: flex;
		align-items: center;
		justify-content: center;
		flex-wrap: wrap;
		gap: 0 9px;
		width: 360px;
		padding: 15px;
		box-sizing: border-box;
		background: #fff;
		border-radius: 5px;
		margin-top: 15px;
	}
	.flow .cont01 .inner .cont .text_box .in_box h3{
		width: 100%;
		padding-bottom: 12px;
		border-bottom: 1px solid #0171b9;
		color: #0171b9;
		font-size: 14px;
		line-height: 1;
		text-align: center;
		margin-bottom: 10px;
	}
	.flow .cont01 .inner .cont .text_box .in_box .tel{
		display: flex;
		align-items: center;
		gap: 0 6px;
		font-size: 13px;
		line-height: 1;
	}
	.flow .cont01 .inner .cont .text_box .in_box .tel a{
		display: inline-block;
		min-height: 22px;
		background: url("img/tel_icon.svg")left center no-repeat;
		background-size: 16px;
		padding-left: 20px;
	}
	.flow .cont01 .inner .cont .text_box .in_box .mail a{
		display: block;
		width: 35px;
		height: 35px;
		background: #0171b9 url("img/common_icon17.svg")center center no-repeat;
		background-size: 16px;
		border-radius: 50%;
		padding: 35px 0 0;
		box-sizing: border-box;
		overflow: hidden;
	}
	.flow .cont01 .inner .cont .text_box .in_box .tel a img{
		width: 155px;
	}
	.flow .cont01 .inner .cont figure{
		position: relative;
	}
	.flow .cont01 .inner .cont figure::before{
		position: absolute;
		bottom: -27px;
		left: 50%;
		transform: translateX(-50%);
		content: "";
		background: url("img/common_numbertxt01.svg")no-repeat;
		background-size: 55px;
		width: 55px;
		height: 55px;
	}
	.flow .cont01 .inner .cont:nth-of-type(2) figure::before{
		background: url("img/common_numbertxt02.svg")no-repeat;
		background-size: 55px;
	}
	.flow .cont01 .inner .cont:nth-of-type(3) figure::before{
		background: url("img/common_numbertxt03.svg")no-repeat;
		background-size: 55px;
	}
	.flow .cont01 .inner .cont:nth-of-type(4) figure::before{
		background: url("img/common_numbertxt04.svg")no-repeat;
		background-size: 55px;
	}
	.flow .cont01 .inner .cont:nth-of-type(5) figure::before{
		background: url("img/common_numbertxt05.svg")no-repeat;
		background-size: 55px;
	}
	.flow .cont01 .inner .cont:nth-of-type(6) figure::before{
		background: url("img/common_numbertxt06.svg")no-repeat;
		background-size: 55px;
	}
	.flow .cont01 .inner .cont:nth-of-type(7) figure::before{
		background: url("img/common_numbertxt07.svg")no-repeat;
		background-size: 55px;
	}
	.flow .cont01 .inner .cont:nth-of-type(8) figure::before{
		background: url("img/common_numbertxt08.svg")no-repeat;
		background-size: 55px;
	}



/* reason
------------------------------------------------------------------------*/
	/* cont01 */
	.reason .cont01 .inner{
		padding: 70px 20px;
		position: relative;
	}
	.reason .cont01 .inner h2{
		display: block;
		width: 380px;
		margin: 0 auto;
	}
	.reason .cont01 .inner .text01{
		font-size: 16px;
		font-weight: bold;
		text-align: center;
		margin: 30px 0 0 0.5em;
	}
	.reason .cont01 .inner .reason_box{
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		gap: 30px 0;
		margin-top: 45px;
	}
	.reason .cont01 .inner .reason_box .cont{
		display: flex;
		flex-direction: column;
		align-items: center;
		width: 400px;
		background: #eaeff4;
		border-radius: 10px;
		padding: 0 0 26px;
		box-sizing: border-box;
		overflow: hidden;
	}
	.reason .cont01 .inner .reason_box .cont h3{
		color: #002f7c;
		font-size: 20px;
		line-height: 1.54;
		text-align: center;
		margin-top: 30px;
		order: 2;
		z-index: 11;
		position: relative;
	}
	.reason .cont01 .inner .reason_box .cont .text02{
		padding: 0 20px 0 25px;
		font-size: 14px;
		margin-top: 20px;
		order: 3;
		z-index: 11;
		position: relative;
	}
	.reason .cont01 .inner .reason_box .cont figure{
		order: 1;
		position: relative;
	}
	.reason .cont01 .inner .reason_box .cont figure img{
		width: 400px;
		height: 200px;
		object-fit: cover;
	}
	.reason .cont01 .inner .reason_box .cont figure::before{
		position: absolute;
		top: 135px;
		left: 50%;
		transform: translateX(-50%);
		content: "";
		background: #eaeff4;
		width: 130px;
		height: 130px;
		border-radius: 50%;
	}
	.reason .cont01 .inner .reason_box .cont figure::after{
		position: absolute;
		top: 160px;
		left: 50%;
		transform: translateX(-50%);
		content: "";
		background: url("img/reason_icon01.svg")no-repeat;
		background-size: 57px;
		width: 57px;
		height: 53px;
	}
	.reason .cont01 .inner .reason_box .cont:nth-of-type(2) figure::after{
		top: 152px;
		background: url("img/reason_icon02.svg")no-repeat;
		background-size: 62px;
		width: 62px;
		height: 56px;
	}
	.reason .cont01 .inner .reason_box .cont:nth-of-type(3) figure::after{
		top: 156px;
		background: url("img/reason_icon03.svg")no-repeat;
		background-size: 104px;
		width: 104px;
		height: 52px;
	}
	.reason .cont01 .inner .reason_box .cont:nth-of-type(4) figure::after{
		top: 157px;
		background: url("img/reason_icon04.svg")no-repeat;
		background-size: 60px;
		width: 60px;
		height: 54px;
	}
	.reason .cont01 .inner .reason_box .cont:nth-of-type(5) figure::after{
		top: 151px;
		background: url("img/reason_icon05.svg")no-repeat;
		background-size: 74px;
		width: 74px;
		height: 60px;
	}
	.reason .cont01 .inner .reason_box .cont:nth-of-type(6) figure::after{
		top: 158px;
		background: url("img/reason_icon06.svg")no-repeat;
		background-size: 71px;
		width: 71px;
		height: 54px;
	}



/* stocklist
------------------------------------------------------------------------*/
	.stocklist .cont01{
		margin-top: 15px;
		padding: 70px 20px;
		background: #eaeff4;
		box-sizing: border-box;
		position: relative;
	}
	.stocklist .cont01 .inner{
		padding: 70px 20px;
		background: #fff;
		border: 1px solid #0171b9;
		border-radius: 5px;
		box-sizing: border-box;
		position: relative;
	}
	.stocklist .cont01 .inner h2{
		background: url("img/stocklist_text01.svg")center top no-repeat;
		background-size: 310px;
		padding: 45px 0 0;
		font-size: 16px;
		line-height: 1;
		text-align: center;
	}
	.stocklist .cont01 .stock_top{
		display: flex;
		justify-content: space-between;
		align-items: center;
		gap: 40px;
		margin: 30px auto 15px;
	}
	.stocklist .cont01 .stock_top .welcome{
		font-size: 20px;
		line-height: 1;
	}
	.stocklist .cont01 .stock_top .logout a{
		display: inline-block;
		width: 130px;
		height: 40px;
		font-size: 14px;
		color: #fff;
		background: #0171b9;
		line-height: 40px;
		font-weight: bold;
		text-align: center;
	}
	.stocklist .cont01 .stocklist ul li + li{
		margin-top: 15px;
	}
	.stocklist .cont01 .stocklist ul li .date{
		color: var(--main-color);
		font-weight: bold;
		margin-bottom: 10px;
	}
	.stocklist .cont01 .stocklist ul li a{
		display: inline-block;
		width: 100%;
		height: 50px;
		font-size: 14px;
		color: #fff;
		background: var(--main-color);
		line-height: 50px;
		font-weight: bold;
		text-align: center;
	}



/* faq
------------------------------------------------------------------------*/
.faq .cont01 {
	box-sizing: border-box;
	margin: 70px 30px;
}
.faq .cont01 h2 {
	margin-bottom: 40px;
}
.faq .cont01 .box {
	padding: 30px 30px 30px 27px;
	border-top: 1px solid var(--main-color);
	position: relative;
	cursor: pointer;
}
.faq .cont01 .box:last-of-type {
	border-bottom: 1px solid var(--main-color);
}
.faq .cont01 .box span {
	position: absolute;
	top: 35px;
	right: 10px;
	width: 19px;
	height: 19px;
	background: var(--main-color);
	border-radius: 50%;
	transition: all .3s;
}
.faq .cont01 .box.active span {
	background: #bbbbbb;
	transition: all .3s;
}
.faq .cont01 .box span::before {
	content: "";
	width: 8px;
	height: 2px;
	background: #fff;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.faq .cont01 .box span::after {
	content: "";
	width: 2px;
	height: 8px;
	background: #fff;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	opacity: 1;
	transition: all .3s;
}
.faq .cont01 .box.active span::after {
	opacity: 0;
	transition: all .3s;
}
.faq .cont01 .box p {
	position: relative;
}
.faq .cont01 .box .qus::before {
	content: 'Q';
	position: absolute;
	top: -2px;
	left: -20px;
	font-size: 18px;
	font-weight: bold;
	color: var(--main-color);
}
.faq .cont01 .box .qus {
	font-size: 16px;
	line-height: 1.6;
	font-weight: bold;
}
.faq .cont01 .box.active .qus {
	color: #bbbbbb;
}
.faq .cont01 .box .ans {
	line-height: 2;
	padding-top: 15px;
	display: none;
}



/* company
------------------------------------------------------------------------*/
/* company 共通 */
.company .cont01 h2,
.company .cont02 h2,
.company .cont03 h2 {
	font-size: 22px;
	text-align: center;
	padding-bottom: 25px;
	font-weight: bold;
	position: relative;
}
.company .cont01 h2::before,
.company .cont02 h2::before,
.company .cont03 h2::before {
	content: '';
	font-size: 12px;
	font-weight: bold;
	color: var(--main-color);
	width: 100%;
	text-align: center;
	position: absolute;
	bottom: 0;
	left: 0;
}
.company .cont01 h2::before {
	content: "GREETING";
}
.company .cont02 h2::before {
	content: "COMPANY PROFILE";
}
.company .cont03 h2::before {
	content: "OUTLINE";
}
.company table {
	width: 100%;
	text-align: left;
	margin: 40px auto 0;
	font-size: 14px;
}
.company table tr {
	border-top: 1px solid #fff;
	padding: 20px;
	display: block;
}
.company table tr:last-of-type {
	border-bottom: 1px solid #fff;
}
.company table th {
	display: block;
	font-weight: bold;
	margin-bottom: 10px;
}
.company table td {
	display: block;
}


/* cont01 */
.company .cont01 {
	margin: 60px auto;
	padding: 0 30px;
}
.company .cont01 .flex {
	margin-top: 20px;
}
.company .cont01 .flex .text_box {
	padding-top: 25px;
	line-height: 1.9;
}
.company .cont01 .flex .text_box h3 {
	font-size: 18px;
	padding-bottom: 12px;
}
.company .cont01 .flex .text_box .text02 {
	text-align: right;
	font-size: 18px;
	margin-top: 15px;
	font-weight: bold;
}
.company .cont01 .flex .text_box .text02 span {
	font-size: 14px;
	font-weight: bold;
}
.company .cont01 .flex .text_box .text02 img {
	width: 120px;
	vertical-align: text-bottom;
	margin-top: 5px;
}
.company .cont01 .flex .img img {
	width: 100%;
	border-radius: 10px;
}


/* cont02 */
.company .cont02 {
	margin: 60px auto;
	padding: 60px 0;
	background: var(--main-light-color);
}


/* cont03 */
.company .cont03 {
	margin: 60px auto;
	padding: 0 30px;
}
.company .cont03 table tr {
	border-top: 1px solid var(--main-color);
}
.company .cont03 table tr:last-of-type {
	border-bottom: 1px solid var(--main-color);
}



/*blog 共通項目
--------------------------------------------------------------------------*/
.blog .flex{
	margin:70px auto;
}
.blog .flex .side .side_box01,
.blog .flex .side .side_box02,
.blog .flex .side .side_box03 {
	margin: 70px 0;
}
.blog .flex .side .cont a {
	display: flex;
	flex-direction: row-reverse;
	justify-content: flex-end;
	align-items: center;
	box-sizing: border-box;
	margin-top: 20px;
}
.blog .flex .side h2 {
	font-size: 20px;
	font-weight: bold;
	padding-bottom: 5px;
	border-bottom: 1px solid var(--main-color);
	position: relative;
}
.blog .flex .side h2::before {
	content: "";
	color: var(--main-color);
	font-size: 14px;
	position: absolute;
	top: 7px;
	left: 100px;
}
.blog .flex .side .side_box01 h2::before {
	content: "Popular Articles";
}
.blog .flex .side .side_box02 h2::before {
	content: "New Articles";
}
.blog .flex .side .side_box03 h2::before {
	content: "Category";
	left: 110px;
}
.blog .flex .side .cont .text_box {
	padding-left: 15px;
	font-size: 14px;
}
.blog .flex .side .cont .text_box h3 {
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	margin-bottom: 10px;
}
.blog .flex .side .cont .img {
	width: 150px;
	flex-shrink: 0;
	box-shadow: 0 0 10px 3px rgba(0, 0, 0, 0.05);
	border-radius: 5px;
}
.blog .flex .side .cont .img img {
	max-width: 100%;
	border-radius: 5px;
}
.blog .flex .side .side_box01 .cont .img {
	position: relative;
}
.blog .flex .side .side_box01 .cont .img::before {
	content: "";
	width: 25px;
	height: 25px;
	font-size: 14px;
	font-weight: bold;
	color: #fff;
	background: var(--main-color);
	line-height: 25px;
	text-align: center;
	position: absolute;
	top: 0;
	left: 0;
}
.blog .flex .side .side_box01 .cont:nth-of-type(1) .img::before {
	content: "1";
	background: #f2cd44;
}
.blog .flex .side .side_box01 .cont:nth-of-type(2) .img::before {
	content: "2";
	background: #ababab;
}
.blog .flex .side .side_box01 .cont:nth-of-type(3) .img::before {
	content: "3";
	background: #bc6c25;
}
.blog .flex .side .side_box01 .cont:nth-of-type(4) .img::before {
	content: "4";
}
.blog .flex .side .side_box01 .cont:nth-of-type(5) .img::before {
	content: "5";
}
.blog .flex .side .side_box02 .cont .img {
	position: relative;
}
.blog .flex .side .side_box02 .cont .img::before {
	content: "NEW";
	width: 50px;
	height: 25px;
	line-height: 1;
	font-size: 14px;
	box-sizing: border-box;
	padding-top: 5px;
	color: #fff;
	background: var(--main-color);
	border-right: 1px solid #fff;
	border-bottom: 1px solid #fff;
	text-align: center;
	position: absolute;
	top: 0;
	left: 0;
}
.blog .flex .side .side_box03 ul {
	margin-top: 15px;
}
.blog .flex .side .side_box03 ul li {
	position: relative;
	padding-left: 32px;
}
.blog .flex .side .side_box03 ul li:nth-of-type(n+2) {
	margin-top: 15px;
}
.blog .flex .side .side_box03 ul li::before {
	content: '';
	width: 25px;
	height: 25px;
	border-radius: 50%;
	background: url(img/category_icon.png) no-repeat top 7px left 7px var(--main-color);
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
}



/* blog_archive
------------------------------------------------------------------------*/

.blog_archive .cont01 .cont{
	width: 330px;
	margin:0 auto 35px;
	padding-bottom: 25px;
	border-bottom: 1px solid var(--main-color);
}
.blog_archive .cont01 .cont a {
	display: flex;
	flex-direction: column-reverse;
}
.blog_archive .cont01 .cont h2 {
	font-size: 16px;
	line-height: 1.8;
	margin-top: 15px;
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}
.blog_archive .cont01 .cont .text_box .cate_box .cate {
	font-size: 12px;
	line-height: 1;
	color: #fff;
	background: var(--main-color);
	border-radius: 5px;
	min-width: 95px;
	padding: 7px 15px;
	text-align: center;
	display: inline-block;
	box-sizing: border-box;
	margin: 10px 0;
}
.blog_archive .cont01 .cont .text {
	margin-top: 5px;
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
}
.blog_archive .cont01 .cont .img{
	box-shadow: 0 0 10px 3px rgba(0, 0, 0, 0.05);
	border-radius: 5px;
}
.blog_archive .cont01 .cont .img img {
	background: var(--main-light-color);
	border-radius: 5px;
}


/* ブログ詳細 css */
.blog_single .cont01 h1{
	padding-bottom: 10px;
	border-bottom: 1px solid var(--main-color);
	font-size: 16px;
	line-height: 1.5;
	margin: 0 0 25px;
	font-weight: bold;
	position: relative;
}
.blog_single .cont01 .cate_box {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
	margin: 0 0 20px;
}
/*
.blog_single .cont01 .cate_box .cate {
	line-height: 1;
	font-size: 12px;
	color: #fff;
	text-align: center;
	min-width: 100px;
	padding: 7px 15px;
	border-radius: 5px;
	background: var(--main-color);
	box-sizing: border-box;
	margin: 0;
}*/

.blog_single .cont01 .cate_box .cate {
	text-align: center;
}
.blog_single .cont01 .cate_box .cate a{
	color: #fff;
	text-decoration: none;
	display: block;
	line-height: 1;
	font-size: 12px;
	min-width: 100px;
	padding: 7px 15px;
	border-radius: 5px;
	background: var(--main-color);
}

.blog_single .cont01 .cate_box .date{
	font-size: 14px;
	line-height: 1;
	margin: 0;
	font-weight: bold;
}



/* contact
------------------------------------------------------------------------*/
/* cont01 */
.contact .cont01 {
	width: 100%;
	padding: 0 30px;
	box-sizing: border-box;
	margin: 70px auto 0;
}
.contact .cont01 .tel-box {
	padding: 30px 0;
	border-top: 1px solid var(--main-color);
	/* border-bottom: 1px solid var(--main-color); */
}
.contact .cont01 .line-box {
	padding: 30px 0;
	border-top: 1px solid var(--main-color);
	border-bottom: 1px solid var(--main-color);
}
.contact .cont01 h2{
	font-size: 16px;
}
.contact .cont01 .tel-box h2::before {
	content: '■';
	color: var(--main-color);
	padding-right: 5px;
}
.contact .cont01 .line-box h2::before {
	content: '■';
	color: #00b12b;
	padding-right: 5px;
}
.contact .cont01 .tel-box p {
	margin-top: 5px;
	line-height: 1.5;
}
.contact .cont01 .tel-box a {
	display: inline-block;
	font-size: 30px;
}
.contact .cont01 .line-box p {
	margin-top: 15px;
}
.contact .cont01 .line-box a {
	display: inline-block;
	color: #fff;
	font-size: 16px;
	line-height: 1;
	padding: 15px 30px 15px 70px;
	border-radius: 30px;
	background: url(img/contact-line_sp.png) no-repeat center left 30px #00b12b;
}


/* cont02 */
.contact .cont02 {
	margin: 30px auto 105px;
	padding: 0 30px;
}
.contact .cont02 h2{
	font-size: 16px;
}
.contact .cont02 h2::before {
	content: '■';
	color: var(--main-color);
	padding-right: 5px;
}
.contact .cont02 .lead {
	margin-top: 15px;
	font-size: 14px;
	line-height: 1.8;
}
.contact .cont02 .lead li:nth-of-type(n+2) {
	margin-top: 10px;
}
.contact .cont02 table{
	width:100%;
	margin: 20px auto 0;
	font-size: 14px;
}
.contact .cont02 table tr {
	display: block;
	padding: 20px 0;
	border-top: 1px solid var(--main-color);
}
.contact .cont02 table tr:last-of-type {
	border-bottom: 1px solid var(--main-color);
}
.contact .cont02 table tr:first-of-type {
	border-top: none;
}
.contact .cont02 table th{
	display: block;
	text-align: left;
	font-size: 16px;
	font-weight: bold;
	position: relative;
	margin-bottom: 15px;
}
.contact .cont02 table th span{
	color: #fff;
	background: var(--main-color);
	border-radius: 5px;
	padding: 7px 15px;
	font-size: 12px;
	line-height: 1;
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
}
.contact .cont02 table td{
	display: block;
}
.contact .cont02 table td .radio-box {
	display: flex;
	flex-direction: column;
	gap: 10px 0;
}
.contact .cont02 table td .radio-box span {
	display: flex;
	align-items: center;
	gap: 0 5px;
}
.contact .cont02 table td .radio-box span input {
	margin: 0 !important;
}
.contact .cont02 table td input[type="text"],
.contact .cont02 table td input[type="email"],
.contact .cont02 table td input[type="tel"],
.contact .cont02 table td select,
.contact .cont02 table td textarea{
	width:100% !important;
	height: 60px !important;
	font-size:16px;
	font: inherit;
	padding: 5px;
	box-sizing: border-box;
	padding: 20px;
	border: none !important;
	background: var(--main-light-color);
	border-radius: 5px !important;
}
.contact .cont02 table td textarea{
	height: 250px !important;
}
.contact .cont02 tr.address-contact td {
	position: relative;
	padding-top: 30px;
}
.contact .cont02 tr.address-contact td span {
	position: absolute;
	top: 0;
	left: 0;
	font-size: 14px;
}
.contact .cont02 tr.address-contact input:first-of-type {
	width: 150px !important;
	margin-right: 5px;
}
.contact .cont02 tr.address-contact input:nth-of-type(2) {
	width: 220px !important;
}
.contact .cont02 tr.address-contact input:last-of-type {
	margin-top: 10px !important;
}
.contact .cont02 .privacy_check{
	text-align: center;
	padding: 50px 0 20px;
	font-size: 16px;
}
.contact .cont02 .privacy_check a {
	text-decoration: underline;
}
.contact .cont02 .privacy_check div.mfp_err {
	text-align: center;
	background: url(img/mfp_error.gif) no-repeat top 7px left 30px;
}
.contact .cont02 .privacy_check input {
	width: 15px;
	height: 15px;
	border-radius: 3px;
	margin: 0 5px !important;
}
.contact .cont02 .privacy_check label {
	margin: 0 5px !important;
}
.contact .cont02 .button{
	text-align: center;
}
.contact .cont02 .button input[type="submit"] {
	font-family: var(--main-font) !important;
	width: 360px;
	border-radius: 60px;
	line-height: 1;
	padding: 20px 0;
	font-size: 16px;
	box-sizing: border-box;
	cursor: pointer;
	margin: auto;
	border: none;
	display: block;
	color: #fff;
	background: var(--main-color);
}



/* thanks
------------------------------------------------------------------------*/
.thanks .cont01{
	padding: 50px 15px 70px;
	text-align: center;
}
.thanks .cont01 h2{
	text-align: center;
	font-size: 18px;
}
.thanks .cont01 .text{
	margin: 30px 0 0;
	font-weight: bold;
}
.thanks .cont01 .button {
	margin-top: 40px;
}
.thanks .cont01 .button a{
	width: 280px;
	border-radius: 60px;
	line-height: 1;
	padding: 20px 0;
	font-size: 16px;
	box-sizing: border-box;
	cursor: pointer;
	margin: auto;
	border: none;
	display: block;
	color: #fff;
	background: var(--main-color);
}



/* privacy
------------------------------------------------------------------------*/
.privacy .cont01 {
	padding: 70px 30px 0;
}
.privacy .cont01 h2 {
	font-size: 24px;
	text-align: center;
}
.privacy .cont01 .text01 {
	margin-top: 20px;
	font-size: 14px;
	line-height: 2;
}
.privacy .cont01 .box {
	margin-top: 30px;
	padding-bottom: 25px;
	border-bottom: 1px dashed var(--main-color);
}
.privacy .cont01 .box:first-of-type {
	margin-top: 30px;
}
.privacy .cont01 .box:last-of-type {
	border-bottom: none;
}
.privacy .cont01 .box h3 {
	font-size: 18px;
}
.privacy .cont01 .box .text02 {
	line-height: 2;
	margin-top: 10px;
	font-size: 14px;
}
.privacy .cont01 .box .text02 a {
	text-decoration: underline;
}
.privacy .cont01 .box ul {
	margin-top: 15px;
}
.privacy .cont01 .box ul li {
	font-size: 14px;
}
.privacy .cont01 .box ul li:nth-of-type(n+2) {
	margin-top: 10px;
}
.privacy .cont01 .box .text03 {
	line-height: 2;
	padding: 25px;
	background: var(--main-light-color);
	margin-top: 20px;
	font-size: 14px;
	margin-bottom: 40px;
}



/* yonmaruyon yonichimaru
------------------------------------------------------------------------*/

.yonmaruyon .cont01,
.yonichimaru .cont01{
	padding: 50px 0 80px;
	text-align: center;
}
.yonmaruyon .cont01 h2,
.yonichimaru .cont01 h2{
	text-align: center;
	font-size: 20px;
}
.yonmaruyon .cont01 .text,
.yonichimaru .cont01 .text{
	margin: 30px 0 0;
	font-weight: bold;
}
.yonmaruyon .cont01 .button ,
.yonichimaru .cont01 .button {
	margin-top: 40px;
}
.yonmaruyon .cont01 .button a,
.yonichimaru .cont01 .button a{
	width: 280px;
	border-radius: 60px;
	line-height: 1;
	padding: 20px 0;
	font-size: 16px;
	box-sizing: border-box;
	cursor: pointer;
	margin: auto;
	border: none;
	display: block;
	color: #fff;
	background: var(--main-color);
}



/* contact_box
------------------------------------------------------------------------*/
	
	.contact_box{
		background: #002f7c;
	}
	.contact_box .inner{
		padding: 70px 30px 90px;
		color: #fff;
		position: relative;
	}
	.contact_box .inner::before{
		position: absolute;
		top: 50%;
		right: 0;
		transform: translateY(-50%);
		content: "";
		background: url("img/common_slideimg01_sp.png")center center repeat-y;
		width: 150px;
		height: 100%;
		animation: contactsSlideMove 25s linear infinite;
	}
	@keyframes contactsSlideMove{
		0% {background-position: 0 694px;}
		50% {background-position: 0 347px;}
		100% {background-position: 0 0;}
	}
	.contact_box .inner h2{
		background: url("img/common_text01.svg")left top no-repeat;
		background-size: 175px;
		padding: 47px 0 0;
		font-size: 16px;
		line-height: 1;
	}
	.contact_box .inner .text01{
		font-size: 14px;
		margin-top: 32px;
	}
	.contact_box .inner .btn_box{
		display: flex;
		flex-direction: column;
		gap: 20px 0;
		width: 224px;
		margin-top: 30px;
	}
	.contact_box .inner .btn_box .tel{
		font-size: 14px;
		line-height: 1;
		text-align: center;
	}
	.contact_box .inner .btn_box .tel a{
		display: block;
		background: url("img/tel_icon.svg")left center no-repeat;
		background-size: 17px;
		padding: 0 0 0 24px;
		box-sizing: border-box;
		line-height: 1;
		margin-bottom: 10px;
	}
	.contact_box .inner .btn_box .tel a img{
		width: 200px;
		height: 25px;
		filter: invert(1);
	}
	.contact_box .inner .btn_box .button a{
		display: block;
		width: 224px;
		height: 45px;
		background: #0171b9 url("img/common_icon17.svg")left 36px center no-repeat;
		padding: 0 0 0 62px;
		border-radius: 25px;
		box-sizing: border-box;
		color: #fff;
		font-size: 16px;
		font-weight: bold;
		line-height: 45px;
	}
	.contact_box .inner .btn_box .button a:hover{
		background: #fff url("img/common_icon18.svg")left 69px center no-repeat;
		color: #0171b9;
		opacity: 1;
	}



/*post_cont
------------------------------------------------------------------------*/
.post_cont .index_nav {
	box-sizing: border-box;
	padding: 30px;
	border: none;
	border-radius: 0px;
	margin: 20px 0 45px;
	background: var(--main-light-color);
	border-radius: 10px;
}
.post_cont .index_nav .title {
	font-weight: bold;
	position: relative;
	padding: 0 !important;
	padding-left: 35px !important;
	font-size: 18px;
	line-height: 1.5;
	font-weight: normal;
}
.post_cont .index_nav .title::before {
	content: '';
	width: 20px;
	height: 18px;
	background: url(img/index_icon.png) no-repeat center / 100%;
	position: absolute;
	top: 4px;
	left: 5px;
}
.post_cont .index_nav {
	position: static;
}
.post_cont .index_nav ul {
	margin: 20px 0 0 0;
	padding-bottom: 0;
}
.post_cont .index_nav ul li.index_level03 {
	margin-left: 15px;
}
.post_cont .index_nav ul li.index_level04 {
	margin-left: 30px;
}
.post_cont .index_nav ul li.index_level05 {
	margin-left: 45px;
}
.post_cont .index_nav ul li {
	display: block;
	text-align: left;
	margin-top: 30px;
	line-height: 1.2;
}
.post_cont .index_nav ul li.index_level03,
.post_cont .index_nav ul li.index_level04,
.post_cont .index_nav ul li.index_level05 {
	margin-top: 25px;
}
.post_cont .index_nav ul li a {
	font-size: 16px;
	font-weight: normal;
	text-decoration: none;
}
.post_cont .index_nav ul li.index_level03 a,
.post_cont .index_nav ul li.index_level04 a,
.post_cont .index_nav ul li.index_level05 a {
	font-size: 14px;
}
.post_cont .index_nav ul li::before {
	display: none;
}

.post_cont .has-text-align-left{
	text-align: left;
}
.post_cont .has-text-align-center{
	text-align: center;
}
.post_cont .has-text-align-right{
	text-align: right;
}

.post_cont h2{
	margin: 50px 0 30px;
	padding: 0 0 0 35px;
	font-size: 22px;
	position: relative;
	line-height: 1.2;
}
.post_cont h2:before{
	content: "";
	display: block;
	width:14px;
	height: 14px;
	border:1px solid var(--main-color);
	background: #fff;
	position: absolute;
	top:0px;
	left:0;
}
.post_cont h2:after{
	content: "";
	display: block;
	width:14px;
	height: 14px;
	border:1px solid var(--main-color);
	background: var(--main-color);
	position: absolute;
	top:10px;
	left:10px;
}
.post_cont h3{
	margin: 45px 0 30px;
	padding: 0 0 0 30px;
	font-size: 20px;
	position: relative;
	line-height: 1.2;
}
.post_cont h3:before{
	content: "";
	display: block;
	width:20px;
	height: 20px;
	background: var(--main-color);
	position: absolute;
	top:2px;
	left:0;
}

.post_cont h4{
	font-size:18px;
	border-left:5px solid var(--main-color);
	margin: 40px 0 30px;
	padding: 2px 0 0 15px;
	line-height: 1.2;
}

.post_cont h5{
	font-size:16px;
	margin: 35px 0 30px;
	padding: 0 0 0 25px;
	position: relative;
	line-height: 1.2;
}
.post_cont h5:before{
	content: "";
	display: block;
	width:15px;
	height: 5px;
	background: var(--main-color);
	position: absolute;
	top:10px;
	left:0;
}
.post_cont strong{
	font-weight: bold;
	color: var(--main-dark-color);
}
.post_cont em{
	font-style: italic;
	color: var(--main-color);
}
.post_cont a{
	text-decoration: underline;
	color:var(--main-color);
}

.post_cont > p{
	margin: 0 0 30px;
}
.post_cont ul{
	margin: 0 0 30px 23px;
	list-style-type: disc;
}
.post_cont ol{
	margin: 0 0 30px 23px;
	list-style-type: decimal;
}
.post_cont table{
	border-collapse: separate;
	border-spacing: 5px;
	width: 100%;
	margin: 0 0 30px;
	font-size: 14px;
	line-height: 1.5;
}
.post_cont table th{
	background: var(--main-color);
	color:#fff;
	font-weight: bold;
	padding: 10px 15px;
}
.post_cont table tr:nth-of-type(1) th{
	background: var(--main-dark-color);
}
.post_cont table td{
	background: var(--main-light-color);
	padding: 10px 15px;
}
.post_cont .wp-block-quote{
	background: var(--main-light-color);
	padding: 50px;
	border-left: 3px solid var(--main-color);
	margin: 0 0 30px;
	position: relative;
}
.post_cont .wp-block-quote:before,
.post_cont .wp-block-quote:after{
	content: "”";
	display: block;
	font-size: 100px;
	color:var(--main-color);
	line-height: 1;
	position: absolute;
}
.post_cont .wp-block-quote:before{
	top: 10px;
	left: 10px;
}
.post_cont .wp-block-quote:after{
	bottom: 10px;
	right: 10px;
	transform: rotate(180deg);
}

.post_cont .wp-block-buttons{
	margin: 0 0 30px;
	display: flex;
}
.post_cont .wp-block-buttons a{
	display: block;
	text-align: center;
	background: var(--main-color);
	border: 1px solid var(--main-color);
	box-sizing: border-box;
	line-height: 48px;
	min-width: 380px;
	height: 50px;
	border-radius: 50px;
	color: #fff;
	font-weight: bold;
	transition: all 0.5s;
	position: relative;
	text-decoration: none;
}
.post_cont .wp-block-buttons a::after{
	content: "";
	background: url(img/btn_arrow01.png)center left / cover no-repeat;
	width: 16px;
	height: 12px;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 20px;
}
.post_cont .wp-block-code{
	display: block;
	white-space: pre-wrap;
	margin: 0 0 30px;
}
.post_cont .wp-block-code code{
	display: inline-block;
	padding: 20px;
	color: #fff;
	background: #333;
}
.post_cont .wp-block-image{
	margin: 0 0 30px;
}
.post_cont .wp-block-image img{
	max-width: 100%;
	border-radius: 10px;
}



/* footer
------------------------------------------------------------------------*/
	footer{
		background: #0e263f;
		border-radius: 35px 35px 0 0;
		margin-top: -35px;
		position: relative;
	}
	footer .inner{
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		gap: 30px 20px;
		padding: 80px 20px 120px;
		color: #fff;
		position: relative;
	}
	footer .inner .h_box .text01 a{
		display: flex;
		flex-direction: column;
		justify-content: center;
		min-height: 74px;
		background: url("img/logo.svg")left center no-repeat;
		background-size: 64px;
		padding-left: 80px;
		font-size: 20px;
		line-height: 1;
		filter: brightness(0) invert(1);
	}
	footer .inner .h_box .text01 a span{
		display: block;
		font-size: 14px;
		margin-bottom: 14px;
	}
	footer .inner .h_box address{
		margin-top: 30px;
	}
	footer .inner .h_box address p{
		font-size: 14px;
	}
	footer .inner .h_box address .tel::before{
		content: "TEL："
	}
	footer .inner .h_box address .fax::before{
		content: "FAX："
	}
	footer .inner .h_box address .mail::before{
		content: "Mail："
	}
	footer .inner .h_box .opentime{
		font-size: 14px;
	}
	footer .inner .h_box .opentime::before{
		content: "営業時間：";
	}
	footer .inner .h_box .copy{
		position: absolute;
		bottom: 65px;
		left: 50%;
		transform: translateX(-50%);
		color: rgba(255,255,255,0.3);
		font-size: 12px;
		white-space: nowrap;
	}

	footer .inner .sitemap_box{
	}
	footer .inner .sitemap_box ul{
		margin-top: 10px;
	}
	footer .inner .sitemap_box ul li a{
		color: #fff;
		font-size: 16px;
		line-height: 2.625;
		padding-left: 1em;
		position: relative;
	}
	footer .inner .sitemap_box ul li a::before{
		position: absolute;
		top: 50%;
		left: 0;
		transform: translateY(-50%);
		content: "・";
	}
	footer .inner .sitemap_box ul li a:hover{
		text-decoration: underline;
	}

	footer .inner .area_box{
		width: 150px;
	}
	footer .inner .area_box ul{
		height: 460px;
		overflow-y: auto;
		margin-top: 12px;
	}
	footer .inner .area_box ul::-webkit-scrollbar {
		width: 3px;
	}
	footer .inner .area_box ul::-webkit-scrollbar-track {
		background-color: transparent;
	}
	footer .inner .area_box ul::-webkit-scrollbar-thumb {
		background-color: #959595;
	}
	footer .inner .area_box ul li a{
		color: #fff;
		font-size: 14px;
		line-height: 2.71;
		padding-left: 1em;
		position: relative;
	}
	footer .inner .area_box ul li a::before{
		position: absolute;
		top: 50%;
		left: 0;
		transform: translateY(-50%);
		content: "・";
	}
	footer .inner .area_box ul li a:hover{
		text-decoration: underline;
	}

	footer .inner .blog_box{
		width: 360px;
	}
	footer .inner .blog_box ul{
		margin-top: 12px;
	}
	footer .inner .blog_box ul li a{
		color: #fff;
		width: 350px;
		font-size: 14px;
		line-height: 2.71;
		overflow: hidden;
		display: -webkit-box;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 1;
		padding-left: 1em;
		position: relative;
	}
	footer .inner .blog_box ul li a::before{
		position: absolute;
		top: 50%;
		left: 0;
		transform: translateY(-50%);
		content: "・";
	}
	footer .inner .blog_box ul li a:hover{
		text-decoration: underline;
	}



}/*SPの記述ここまで*/





/* swiper
----------------------------------------------------------*/

@font-face{font-family:swiper-icons;src:url('data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA');font-weight:400;font-style:normal}:root{--swiper-theme-color:#007aff}.swiper{margin-left:auto;margin-right:auto;position:relative;overflow:hidden;list-style:none;padding:0;z-index:1}.swiper-vertical>.swiper-wrapper{flex-direction:column}.swiper-wrapper{position:relative;width:100%;height:100%;z-index:1;display:flex;transition-property:transform;box-sizing:content-box}.swiper-android .swiper-slide,.swiper-wrapper{transform:translate3d(0px,0,0)}.swiper-pointer-events{touch-action:pan-y}.swiper-pointer-events.swiper-vertical{touch-action:pan-x}.swiper-slide{flex-shrink:0;width:100%;height:100%;position:relative;transition-property:transform}.swiper-slide-invisible-blank{visibility:hidden}.swiper-autoheight,.swiper-autoheight .swiper-slide{height:auto}.swiper-autoheight .swiper-wrapper{align-items:flex-start;transition-property:transform,height}.swiper-backface-hidden .swiper-slide{transform:translateZ(0);-webkit-backface-visibility:hidden;backface-visibility:hidden}.swiper-3d,.swiper-3d.swiper-css-mode .swiper-wrapper{perspective:1200px}.swiper-3d .swiper-cube-shadow,.swiper-3d .swiper-slide,.swiper-3d .swiper-slide-shadow,.swiper-3d .swiper-slide-shadow-bottom,.swiper-3d .swiper-slide-shadow-left,.swiper-3d .swiper-slide-shadow-right,.swiper-3d .swiper-slide-shadow-top,.swiper-3d .swiper-wrapper{transform-style:preserve-3d}.swiper-3d .swiper-slide-shadow,.swiper-3d .swiper-slide-shadow-bottom,.swiper-3d .swiper-slide-shadow-left,.swiper-3d .swiper-slide-shadow-right,.swiper-3d .swiper-slide-shadow-top{position:absolute;left:0;top:0;width:100%;height:100%;pointer-events:none;z-index:10}.swiper-3d .swiper-slide-shadow{background:rgba(0,0,0,.15)}.swiper-3d .swiper-slide-shadow-left{background-image:linear-gradient(to left,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-3d .swiper-slide-shadow-right{background-image:linear-gradient(to right,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-3d .swiper-slide-shadow-top{background-image:linear-gradient(to top,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-3d .swiper-slide-shadow-bottom{background-image:linear-gradient(to bottom,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-css-mode>.swiper-wrapper{overflow:auto;scrollbar-width:none;-ms-overflow-style:none}.swiper-css-mode>.swiper-wrapper::-webkit-scrollbar{display:none}.swiper-css-mode>.swiper-wrapper>.swiper-slide{scroll-snap-align:start start}.swiper-horizontal.swiper-css-mode>.swiper-wrapper{scroll-snap-type:x mandatory}.swiper-vertical.swiper-css-mode>.swiper-wrapper{scroll-snap-type:y mandatory}.swiper-centered>.swiper-wrapper::before{content:'';flex-shrink:0;order:9999}.swiper-centered.swiper-horizontal>.swiper-wrapper>.swiper-slide:first-child{margin-inline-start:var(--swiper-centered-offset-before)}.swiper-centered.swiper-horizontal>.swiper-wrapper::before{height:100%;min-height:1px;width:var(--swiper-centered-offset-after)}.swiper-centered.swiper-vertical>.swiper-wrapper>.swiper-slide:first-child{margin-block-start:var(--swiper-centered-offset-before)}.swiper-centered.swiper-vertical>.swiper-wrapper::before{width:100%;min-width:1px;height:var(--swiper-centered-offset-after)}.swiper-centered>.swiper-wrapper>.swiper-slide{scroll-snap-align:center center}.swiper-virtual .swiper-slide{-webkit-backface-visibility:hidden;transform:translateZ(0)}.swiper-virtual.swiper-css-mode .swiper-wrapper::after{content:'';position:absolute;left:0;top:0;pointer-events:none}.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after{height:1px;width:var(--swiper-virtual-size)}.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after{width:1px;height:var(--swiper-virtual-size)}:root{--swiper-navigation-size:44px}.swiper-button-next,.swiper-button-prev{position:absolute;top:50%;width:calc(var(--swiper-navigation-size)/ 44 * 27);height:var(--swiper-navigation-size);margin-top:calc(0px - (var(--swiper-navigation-size)/ 2));z-index:10;cursor:pointer;display:flex;align-items:center;justify-content:center;color:var(--swiper-navigation-color,var(--swiper-theme-color))}.swiper-button-next.swiper-button-disabled,.swiper-button-prev.swiper-button-disabled{opacity:.35;cursor:auto;pointer-events:none}.swiper-button-next:after,.swiper-button-prev:after{font-family:swiper-icons;font-size:var(--swiper-navigation-size);text-transform:none!important;letter-spacing:0;text-transform:none;font-variant:initial;line-height:1}.swiper-button-prev,.swiper-rtl .swiper-button-next{left:10px;right:auto}.swiper-button-prev:after,.swiper-rtl .swiper-button-next:after{content:'prev'}.swiper-button-next,.swiper-rtl .swiper-button-prev{right:10px;left:auto}.swiper-button-next:after,.swiper-rtl .swiper-button-prev:after{content:'next'}.swiper-button-lock{display:none}.swiper-pagination{position:absolute;text-align:center;transition:.3s opacity;transform:translate3d(0,0,0);z-index:10}.swiper-pagination.swiper-pagination-hidden{opacity:0}.swiper-horizontal>.swiper-pagination-bullets,.swiper-pagination-bullets.swiper-pagination-horizontal,.swiper-pagination-custom,.swiper-pagination-fraction{bottom:10px;left:0;width:100%}.swiper-pagination-bullets-dynamic{overflow:hidden;font-size:0}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transform:scale(.33);position:relative}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active{transform:scale(1)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main{transform:scale(1)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev{transform:scale(.66)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev{transform:scale(.33)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next{transform:scale(.66)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next{transform:scale(.33)}.swiper-pagination-bullet{width:var(--swiper-pagination-bullet-width,var(--swiper-pagination-bullet-size,8px));height:var(--swiper-pagination-bullet-height,var(--swiper-pagination-bullet-size,8px));display:inline-block;border-radius:50%;background:var(--swiper-pagination-bullet-inactive-color,#000);opacity:var(--swiper-pagination-bullet-inactive-opacity, .2)}button.swiper-pagination-bullet{border:none;margin:0;padding:0;box-shadow:none;-webkit-appearance:none;appearance:none}.swiper-pagination-clickable .swiper-pagination-bullet{cursor:pointer}.swiper-pagination-bullet:only-child{display:none!important}.swiper-pagination-bullet-active{opacity:var(--swiper-pagination-bullet-opacity, 1);background:var(--swiper-pagination-color,var(--swiper-theme-color))}.swiper-pagination-vertical.swiper-pagination-bullets,.swiper-vertical>.swiper-pagination-bullets{right:10px;top:50%;transform:translate3d(0px,-50%,0)}.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet,.swiper-vertical>.swiper-pagination-bullets .swiper-pagination-bullet{margin:var(--swiper-pagination-bullet-vertical-gap,6px) 0;display:block}.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,.swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic{top:50%;transform:translateY(-50%);width:8px}.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,.swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{display:inline-block;transition:.2s transform,.2s top}.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet{margin:0 var(--swiper-pagination-bullet-horizontal-gap,4px)}.swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic{left:50%;transform:translateX(-50%);white-space:nowrap}.swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transition:.2s transform,.2s left}.swiper-horizontal.swiper-rtl>.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transition:.2s transform,.2s right}.swiper-pagination-progressbar{background:rgba(0,0,0,.25);position:absolute}.swiper-pagination-progressbar .swiper-pagination-progressbar-fill{background:var(--swiper-pagination-color,var(--swiper-theme-color));position:absolute;left:0;top:0;width:100%;height:100%;transform:scale(0);transform-origin:left top}.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill{transform-origin:right top}.swiper-horizontal>.swiper-pagination-progressbar,.swiper-pagination-progressbar.swiper-pagination-horizontal,.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite,.swiper-vertical>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite{width:100%;height:4px;left:0;top:0}.swiper-horizontal>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite,.swiper-pagination-progressbar.swiper-pagination-vertical,.swiper-vertical>.swiper-pagination-progressbar{width:4px;height:100%;left:0;top:0}.swiper-pagination-lock{display:none}.swiper-scrollbar{border-radius:10px;position:relative;-ms-touch-action:none;background:rgba(0,0,0,.1)}.swiper-horizontal>.swiper-scrollbar{position:absolute;left:1%;bottom:3px;z-index:50;height:5px;width:98%}.swiper-vertical>.swiper-scrollbar{position:absolute;right:3px;top:1%;z-index:50;width:5px;height:98%}.swiper-scrollbar-drag{height:100%;width:100%;position:relative;background:rgba(0,0,0,.5);border-radius:10px;left:0;top:0}.swiper-scrollbar-cursor-drag{cursor:move}.swiper-scrollbar-lock{display:none}.swiper-zoom-container{width:100%;height:100%;display:flex;justify-content:center;align-items:center;text-align:center}.swiper-zoom-container>canvas,.swiper-zoom-container>img,.swiper-zoom-container>svg{max-width:100%;max-height:100%;object-fit:contain}.swiper-slide-zoomed{cursor:move}.swiper-lazy-preloader{width:42px;height:42px;position:absolute;left:50%;top:50%;margin-left:-21px;margin-top:-21px;z-index:10;transform-origin:50%;box-sizing:border-box;border:4px solid var(--swiper-preloader-color,var(--swiper-theme-color));border-radius:50%;border-top-color:transparent}.swiper-slide-visible .swiper-lazy-preloader{animation:swiper-preloader-spin 1s infinite linear}.swiper-lazy-preloader-white{--swiper-preloader-color:#fff}.swiper-lazy-preloader-black{--swiper-preloader-color:#000}@keyframes swiper-preloader-spin{100%{transform:rotate(360deg)}}.swiper .swiper-notification{position:absolute;left:0;top:0;pointer-events:none;opacity:0;z-index:-1000}.swiper-free-mode>.swiper-wrapper{transition-timing-function:ease-out;margin:0 auto}.swiper-grid>.swiper-wrapper{flex-wrap:wrap}.swiper-grid-column>.swiper-wrapper{flex-wrap:wrap;flex-direction:column}.swiper-fade.swiper-free-mode .swiper-slide{transition-timing-function:ease-out}.swiper-fade .swiper-slide{pointer-events:none;transition-property:opacity}.swiper-fade .swiper-slide .swiper-slide{pointer-events:none}.swiper-fade .swiper-slide-active,.swiper-fade .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-cube{overflow:visible}.swiper-cube .swiper-slide{pointer-events:none;-webkit-backface-visibility:hidden;backface-visibility:hidden;z-index:1;visibility:hidden;transform-origin:0 0;width:100%;height:100%}.swiper-cube .swiper-slide .swiper-slide{pointer-events:none}.swiper-cube.swiper-rtl .swiper-slide{transform-origin:100% 0}.swiper-cube .swiper-slide-active,.swiper-cube .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-cube .swiper-slide-active,.swiper-cube .swiper-slide-next,.swiper-cube .swiper-slide-next+.swiper-slide,.swiper-cube .swiper-slide-prev{pointer-events:auto;visibility:visible}.swiper-cube .swiper-slide-shadow-bottom,.swiper-cube .swiper-slide-shadow-left,.swiper-cube .swiper-slide-shadow-right,.swiper-cube .swiper-slide-shadow-top{z-index:0;-webkit-backface-visibility:hidden;backface-visibility:hidden}.swiper-cube .swiper-cube-shadow{position:absolute;left:0;bottom:0px;width:100%;height:100%;opacity:.6;z-index:0}.swiper-cube .swiper-cube-shadow:before{content:'';background:#000;position:absolute;left:0;top:0;bottom:0;right:0;filter:blur(50px)}.swiper-flip{overflow:visible}.swiper-flip .swiper-slide{pointer-events:none;-webkit-backface-visibility:hidden;backface-visibility:hidden;z-index:1}.swiper-flip .swiper-slide .swiper-slide{pointer-events:none}.swiper-flip .swiper-slide-active,.swiper-flip .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-flip .swiper-slide-shadow-bottom,.swiper-flip .swiper-slide-shadow-left,.swiper-flip .swiper-slide-shadow-right,.swiper-flip .swiper-slide-shadow-top{z-index:0;-webkit-backface-visibility:hidden;backface-visibility:hidden}.swiper-creative .swiper-slide{-webkit-backface-visibility:hidden;backface-visibility:hidden;overflow:hidden;transition-property:transform,opacity,height}.swiper-cards{overflow:visible}.swiper-cards .swiper-slide{transform-origin:center bottom;-webkit-backface-visibility:hidden;backface-visibility:hidden;overflow:hidden}





/*mail form pro
----------------------------------------------------------*/
div#mfp_hidden {
	overflow: hidden;
	width: 1px;
	height: 1px;
	padding: 0px;
	margin: 0px;
}
div#mfp_hidden input {
	margin: 10px;
}
div.mfp_thanks {
	padding: 30px;
}
div.mfp_thanks p {
	line-height: 1.7em;
}
div.mfp_thanks ul.mfp_caution {
	margin: 0px;
	padding: 0px;
}
div.mfp_thanks ul.mfp_caution li {
	display: block;
	color: #C00;
	margin: 0px;
	padding: 5px 0px;
}
div#mfp_thanks {
	text-align: center;
	font-size: 18px;
	padding: 20px 0px;
}
div#mfp_thanks strong {
	color: #C00;
	font-size: 24px;
}
form#mailformpro dl dt {
	float: left;
	width: 160px;
	clear: both;
	font-size: 12px;
	padding: 10px 0px;
	text-align: right;
	border-top: solid 1px #CCC;
	margin: 0px;
}
form#mailformpro dl dd {
	border-top: solid 1px #CCC;
	margin: 0px;
	padding: 10px 5px 20px 170px;
	font-size: 12px;
	line-height: 1.5em;
	text-align: left;
}
form#mailformpro dl dd ul,form#mailformpro dl dd ol {
	margin: 0px;
	padding: 0px;
}
form#mailformpro dl dd ul li,form#mailformpro dl dd ol li {
	margin: 0px;
	padding: 0px;
	list-style: none;
}
form#mailformpro .must {
	display: block;
	background-color: #C00;
	border: solid 2px #C00;
	text-shadow: 0px 1px 2px #933;
	padding: 2px 5px;
	font-size: 10px;
	color: #FFF;
	float: left;
	margin: 0px 5px;
	border-radius: 4px;
	box-shadow: 0px 0px 5px #CCC;
	background-image: url(img/mfp_header.png);
	background-size: 100% 100%;
}
form#mailformpro .optionally {
	display: block;
	background-color: #06C;
	border: solid 2px #06C;
	text-shadow: 0px 1px 2px #933;
	padding: 2px 5px;
	font-size: 10px;
	color: #FFF;
	float: left;
	margin: 0px 5px;
	border-radius: 4px;
	box-shadow: 0px 0px 5px #CCC;
	background-image: url(img/mfp_header.png);
	background-size: 100% 100%;
}
form#mailformpro label {
	border-radius: 3px;
	margin: 3px;
	display: inline-block;
	white-space: nowrap;
}
table#mfp_confirm_table {
	border-spacing: 0px;
	border-collapse: collapse;
	width: 100%;
	margin: 20px 0;
}
table#mfp_confirm_table tr.mfp_colored {
	background-color: #F6F7F9;
}
table#mfp_confirm_table tr.mfp_achroma {
	background-color: #FFF;
}
table#mfp_confirm_table tr th,table#mfp_confirm_table tr td {
	text-align: left;
	border-top: solid 1px #CCC;
	padding: 9px;
}
table#mfp_confirm_table tr th {
	white-space: nowrap;
	width: 200px;
}
table#mfp_confirm_table tr td {
	line-height: 1.5em;
	word-break: break-all;
}
div#mfp_phase_confirm {
	clear: both;
}
div#mfp_phase_confirm h4 {
	font-size: 36px;
	padding: 10px 0px 0px 0px;
	text-align: center;
}
div#mfp_overlay {
	position: absolute;
	display: none;
	z-index: 10001;
}
div#mfp_overlay_inner {
	background-color: #FFF;
	padding: 15px;
	margin: 0px auto;
	border-radius: 5px;
	box-shadow: 0px 0px 10px #000;
	width: 640px;
	max-width: 90%;
}
div#mfp_overlay_background {
	background-color: #000;
	position: absolute;
	display: none;
	z-index: 10001;
}
div#mfp_loading_screen {
	z-index: 20000;
	opacity: 0.8;
	display: none;
	background-color: #000;
	position: absolute;
}
div#mfp_loading {
	z-index: 20001;
	position: absolute;
	display: none;
	width: 40px;
	height: 40px;
	background-image: url(img/mfp_loading.gif);
}
.mfp_colored {
	background-color: #F6F7F9;
}
.mfp_achroma {
	background-color: #FFF;
}
div.mfp_err {
	clear: both;
	display: none;
	text-align: left;
	margin: 5px 0px 0px 0px;
	padding: 3px 0px 5px 17px;
	color: #F00;
	font-size: 14px;
	line-height: normal;
	background-image: url(img/mfp_error.gif);
	background-repeat: no-repeat;
	background-position: 0px 7px;
}
.mfp_parent_error {
	border: solid 2px #F00;
}
form#mailformpro .problem {
	background-color: #FCC;
}
div#mfp_error {
	background-color: #FEE;
	border: solid 1px #F00;
	padding: 10px;
	display: none;
}
div#mfp_error p {
	padding: 0px;
	margin: 0px;
	font-size: 14px;
	text-align: center;
}
div#mfp_error p strong {
	font-size: 18px;
	color: #F00;
}
div#mfp_warning {
	background-color: #FEE;
	border: solid 1px #F00;
	padding: 10px;
	display: none;
	border-radius: 5px;
}
div#mfp_warning p {
	padding: 0px;
	margin: 0px;
	font-size: 14px;
	text-align: center;
}
div#mfp_warning p strong {
	font-size: 18px;
	color: #F00;
}
div#mfp_price {
	color: #C00;
	font-size: 36px;
	padding: 10px;
	font-weight: bolder;
}
div#mfp_price span {
	color: #666;
	font-size: 12px;
	font-weight: normal;
}
button.mfp_next,button.mfp_prev {
	font-size: 18px;
	margin: 10px;
	padding: 5px 10px;
}
button.mfp_next {
	float: right;
}
button.mfp_prev {
	float: left;
}
ul#mfp_phase_stat {
	padding: 10px;
	text-align: center;
}
ul#mfp_phase_stat li {
	display: inline-block;
	padding: 8px 15px;
	border-radius: 5px;
	margin: 0px 5px;
	list-style: none;
	font-size: 14px;
}
ul#mfp_phase_stat li.mfp_phase_arrow {
	box-shadow: none;
	color: #999;
	padding: 8px 0px;
}
ul#mfp_phase_stat li.mfp_active_phase {
	box-shadow: 0px 1px 6px #000;
	background-image: url(img/mfp_header.png);
	background-size: 100% 100%;
	background-color: #0068B7;
	border: solid 2px #0068B7;
	font-weight: bolder;
	color: #FFF;
	text-shadow: 0px 1px 3px #000;
}
ul#mfp_phase_stat li.mfp_inactive_phase {
	background-image: url(img/mfp_header.png);
	background-size: 100% 100%;
	background-color: #EEE;
	border: solid 2px #EEE;
	color: #999;
	box-shadow: 0px 1px 6px #CCC;
}
div#mfp_shopping_cart {
	border: solid 1px #CCC;
	margin: 0px;
	padding: 0px;
}
div#mfp_shopping_cart p {
	margin: 0px;
	text-align: center;
	padding: 20px 10px;
	font-size: 12px;
	background-color: #FEE;
}
table.mfp_shoppingcart {
	border-spacing: 0px;
	border-collapse: collapse;
	width: 100%;
}
table.mfp_shoppingcart thead tr td {
	background-color: #EEE;
	border-bottom: solid 1px #CCC;
	text-align: center;
	font-size: 12px;
	padding: 5px;
}
table.mfp_shoppingcart tbody tr th,table.mfp_shoppingcart tbody tr td {
	font-size: 12px;
	padding: 5px;
	border-bottom: solid 1px #CCC;
}
table.mfp_shoppingcart tbody tr td select {
	display: block;
	margin: 0px auto;
	text-align: center;
}
table.mfp_shoppingcart tbody tr td select option {
	text-align: center;
}
table.mfp_shoppingcart tbody tr th span {
	display: block;
	font-weight: normal;
	font-size: 10px;
	color: #666;
	padding: 3px 0px;
}
table.mfp_shoppingcart tfoot tr td {
	padding: 5px;
	font-size: 16px;
	font-weight: bolder;
	color: #900;
}
td.msc_price {
	font-size: 12px;
	text-align: right;
}
div.mfp_buttons {
	clear: both;
	padding: 10px 0px;
	text-align: center;
}
div.mfp_buttons button#mfp_button_send {
	padding: 10px 100px;
	background-color: #3ac5ff;
	border: 1px solid #3ac5ff;
	color: #FFFFFF;
	cursor: pointer;
}
div.mfp_buttons button#mfp_button_cancel {
	padding: 10px 100px;
	border: 1px solid #3ac5ff;
	color: #3ac5ff;
	cursor: pointer;
	background:#fff;
}
.imagebutton {
	margin: 0px;
	padding: 0px;
	border: none;
	outline: none;
	background: none;
}
.mfp_element_checkbox,
.mfp_element_radio {
	vertical-align: middle;
	margin: 0px 2px;
}
.mfp_element_file {
	font-size: 12px;
	display: inline-block;
	padding: 10px 10px;
	vertical-align: middle;
	border: solid 1px #CCC;
	border-radius: 3px;
	box-shadow: 0px 0px 5px #CCC inset;
	background: #EEE;
}
.mfp_element_reset {
	color: #333;
}
button.mfp_next,button.mfp_prev {
	font-size: 14px;
}
input#mfp_reserve_item,input#mfp_reserve_date {
	display: none;
}
div#mfp_reserve_wrapper {
	position: relative;
	overflow: hidden;
	border: solid 1px #CCC;
}
div#mfp_reserve_inner {
	position: relative;
	padding: 0px 0px 0px 100px;
	overflow: auto;
}
div#mfp_reserve_wrapper table {
	border-spacing: 0px;
	border-collapse: collapse;
}
div#mfp_reserve_wrapper table.mfp_reserve_table_label {
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100px;
	background-color: #FEE;
	z-index: 100;
}
div#mfp_reserve_wrapper table.mfp_reserve_table_value {
	padding: 0px 0px 0px 0px;
}
div#mfp_reserve_wrapper table.mfp_reserve_table_value tr td.mfp_reserve_active,
div#mfp_reserve_wrapper table.mfp_reserve_table_value tr td.mfp_reserve_warning {
	cursor: pointer;
}
@media screen and (min-width: 441px){
div#mfp_reserve_wrapper table.mfp_reserve_table_value tr td.mfp_reserve_active:hover,
div#mfp_reserve_wrapper table.mfp_reserve_table_value tr td.mfp_reserve_warning:hover {
	background-color: #E8EEF9;
}
}
div#mfp_reserve_wrapper table.mfp_reserve_table_value tr td.mfp_reserve_current {
	background-color: #0068B7;
	color: #FFF;
}
td.mfp_reserve_disabled {
	background-color: #CCC;
}
td.mfp_reserve_warning {
	background-color: #FFC;
}
div#mfp_reserve_wrapper table tr td,div#mfp_reserve_wrapper table tr th {
	border: solid 1px #CCC;
	padding: 0px 5px;
	font-size: 12px;
	text-align: center;
	font-family: Osaka,"ＭＳ Ｐゴシック","MS PGothic",Sans-Serif;
	font-weight: normal;
	height: 20px;
	text-align: left;
}
td.mfp_reserve_week_0 {
	color: #F00;
	background-color: #FEE;
}
td.mfp_reserve_week_6 {
	color: #00F;
	background-color: #EEF;
}
div.mfp_ok {
	border: solid 1px #111;
	display: inline-block;
	padding: 1px 10px;
	margin-top: 5px;
	color: #111;
	font-size: 12px;
	display: none;
}
div.prefcodeWrapper {
	position: relative;
}
div.prefcodeResult {
	position: absolute;
	top: 0px;
	left: 0px;
	padding: 5px;
	border: solid 1px #CCC;
	background-color: #FFF;
	box-shadow: 0px 0px 5px #CCC;
	display: none;
}
div.prefcodeResult div {
	cursor: pointer;
}
@media screen and (min-width: 441px){
div.prefcodeResult div:hover {
	background-color: #C9EBFB;
}
}
div.prefcodeResult div.prefcodeNext {
	background-color: #EEE;
	text-align: center;
}
div.prefLoading {
	padding: 60px 100px;
	background: url(img/mfp_zip_loading.gif) no-repeat center center;
}
.hidefield {
	height: 0px;
	overflow: hidden;
}
.showfield {
	height: auto;
	overflow: visible;
}
div.mfp_attached_thumbnails {
	display: none;
	padding: 5px;
	margin: 5px auto;
	border: solid 1px #CCC;
	border-radius: 3px;
	box-shadow: 0px 0px 5px #CCC inset;
	background: #EEE;
}
div.mfp_attached_thumbnails ul {
	margin: 0px;
	padding: 0px;
}
form#mailformpro dl dd div.mfp_attached_thumbnails ul li {
	display: inline-block;
	vertical-align: top;
	padding: 0px;
	border: solid 4px #FFF;
	margin: 5px;
	box-shadow: 0px 2px 5px #999;
}
form#mailformpro dl dd div.mfp_attached_thumbnails ul li a {
	display: block;
	max-height: 100px;
	overflow: hidden;
}
div.mfp_attached_thumbnails ul li a img {
	display: block;
	max-width: 80px;
}
button.mfp_attached_reset {
	font-size: 14px;
}
div#mfp_OperationCheck div#mfp_OperationCheck_inner {
	display: none;
}
div#mfp_OperationCheck strong {
	background: #090;
	display: block;
	color: #222;
	text-align: center;
	border-radius: 3px;
}
div#mfp_OperationCheck * {
	padding: 0px;
	margin: 0px;
	font-size: 12px;
}
div#mfp_OperationCheck p {
	padding: 0px 5px;
	margin: 0px;
	font-size: 12px;
}
div#mfp_OperationCheck p a {
	color: #0C0;
	text-decoration: none;
}
@media screen and (min-width: 441px){
div#mfp_OperationCheck p a:hover,
div#mfp_OperationCheck p button:hover {
	text-decoration: underline;
}
}
div#mfp_OperationCheck p button {
	border: none;
	background: none;
	color: #0C0;
	cursor: pointer;
}
div#mfp_OperationCheck ul li,
div#mfp_OperationCheck ul li label,
div#mfp_OperationCheck ul li label input {
	line-height: 12px;
	font-size: 12px;
	list-style: none;
	vertical-align: middle;
}
div#mfp_OperationCheck ul li {
	padding: 5px 10px;
}
div#mfp_OperationCheck ul li
{
	text-decoration: underline;
}
button#mfp_recorder_record,
button#mfp_recorder_clear,
button#mfp_recorder_restore {
	border-radius: 5px;
	padding: 5px 10px 5px 2em;
	border: solid 1px #CCC;
	background: gradient(linear, center top, center bottom, from(#EEE), to(#CCC));
	background: -webkit-gradient(linear, center top, center bottom, from(#EEE), to(#CCC));
	background: -moz-linear-gradient(top, #EEE, #CCC);
	background: -ms-linear-gradient(top, #EEE 0%, #CCC 100%);
	text-shadow: 0px 2px 0px #FFF;
	font-size: 16px;
	cursor: pointer;
	outline: none;
	display: inline-block;
	margin: 5px auto;
}
button#mfp_recorder_record {
	background: url(img/mfp_record_disabled.png) no-repeat 5px center #EEE;
	background-size: 24px 24px;
}
button#mfp_recorder_clear {
	background: url(img/mfp_record_remove.png) no-repeat 5px center #EEE;
	background-size: 24px 24px;
}
button#mfp_recorder_restore {
	background: url(img/mfp_record_restore.png) no-repeat 5px center #EEE;
	background-size: 24px 24px;
}
button.enabled#mfp_recorder_record,
button.enabled#mfp_recorder_clear,
button.enabled#mfp_recorder_restore {
	background: url(img/mfp_record_enabled.png) no-repeat 5px center #EEE;
	background-size: 24px 24px;
}
div#mfp_recorder_wrap {
	border: solid 1px #CCC;
	padding: 10px;
	text-align: center;
	margin: 5px auto;
}
td.request_image {
	width: 100px;
}
td.request_image img {
	max-width: 100px;
}
span.mfp_tips {
	background-image: url(img/mfp_header.png);
	background-size: 100% 100%;
	background-color: #FCC;
	display: block;
	border-radius: 5px;
	padding: 10px;
	margin: 2px;
	box-shadow: 0px 2px 10px #999;
}
span.mfp_tips strong {
	color: #800040;
}
span.mfp_tips span {
	display: block;
	padding: 10px;
	color: #008080;
}
span.mfp_tips em {
	font-style: normal;
	color: #090;
	font-weight: bold;
}
@media screen and (max-width: 1240px) {
	div#mfp_overlay_background{
		width:1240px !important;
		height: 100% !important;
	}
	div#mfp_overlay{
		width:1240px !important;
	}
}
@media screen and (max-width: 800px) {
	form#mailformpro dl dt {
		float: none;
		width: auto;
		font-size: 12px;
		padding: 5px;
		text-align: left;
	}
	form#mailformpro dl dd {
		clear: both;
		border-top: none;
		padding: 5px 15px;
		font-size: 12px;
		line-height: 1.5em;
	}
	div.mfp_buttons button {
		font-size: 14px;
	}
	div#mfp_phase_confirm h4 {
		font-size: 18px;
	}
	ul#mfp_phase_stat {
		padding: 0px;
		text-align: left;
	}
	ul#mfp_phase_stat li {
		text-align: center;
		padding: 5px 0px;
		border-radius: 3px;
		margin: 5px;
		list-style: none;
		font-size: 14px;
		width: 28%;
	}
	ul#mfp_phase_stat li.mfp_phase_arrow {
		bos-shadow: none;
		display: none;
	}
	table#mfp_confirm_table tr th {
		white-space: nowrap;
		width: 150px;
	}
	div#mfp_thanks {
		text-align: center;
		font-size: 18px;
		padding: 20px 0px;
	}
	div#mfp_thanks strong {
		color: #C00;
		font-size: 24px;
		display: block;
	}
}

@media screen and (max-width: 441px) {
	div#mfp_overlay_background{
		width:440px !important;
		height: 100% !important;
	}
	div#mfp_overlay{
		width:440px !important;
	}
	div#mfp_overlay_inner{
		width:390px;
		max-width:none;
	}
	div.mfp_buttons button#mfp_button_send {
		padding: 10px 0;
		width:300px;
		margin-bottom: 10px;
	}
	div.mfp_buttons button#mfp_button_cancel {
		padding: 9px 0;
		width:300px;
		margin-right: 3px;
	}
}


