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

/* Reset
----------------------------------------------------------- */
:root {
	/* bodyの背景色 */
	--body-bg-color: #fff;

	/* メインのフォントファミリー */
    --main-font: "游ゴシック体", YuGothic, "Yu Gothic Medium", sans-serif;

	/* メインのフォントカラー */
	--main-font-color: #222;

	/* h2~h5タグまでのフォントウェイト */
	--h-tag-weight: bold;
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header,
menu, nav, output, ruby, section, summary,
time, mark, audio, video{
	zoom:1;	/* hasLayout in IE */
	margin:0;
	padding:0;
	border:0;
	outline: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-all;
}
header, menu, nav, footer,
section,article, aside,
details, summary,
figure, figcaption{display:block;}
table{
	border-collapse:collapse;
	border-spacing:0;
}
::placeholder{
	color: #949292;
}
q, blockquote{quotes:none;}
q:before, q:after, blockquote:before, blockquote:after{
	content:"";
	content:none;
}
img{
	font-size:0;
	line-height:0;
	vertical-align:bottom;
	height:auto;
	max-width:100%;
}
input[type="text"],
input[type="email"] {
	border-radius: 0;
	-webkit-appearance: none;
	line-height: normal;
	color: var(--main-font-color);
}
a{
	margin:0;
	padding:0;
	font-size:100%;
	vertical-align:baseline;
	background:transparent;
	color: var(--main-font-color);
}
a:focus{ outline:none; }
a img{
	border:none;
	vertical-align:middle;
}
textarea{overflow:auto;}
label{cursor:pointer;}
.clearfix:after{
	display:block;
	visibility:hidden;
	content:".";
	clear:both;
	height:0;
	font-size:0;
	line-height:0;
}
* html .clearfix{ zoom:1; }
*:first-child + html .clearfix{ zoom:1; }
a{ text-decoration:none; }
strong{ font-weight:bold; }
ul,ol{ list-style-type:none; }
body{
	font-family: var(--main-font);
	font-size:16px;
	line-height:1.5;
	color: var(--main-font-color);
	background: var(--body-bg-color);
}
.wrap{
	width:100%;
	overflow-x:hidden;
}
h2,h3,h4,h5{
	font-weight: var(--h-tag-weight);
}
.inner{
	margin:0 auto;
	width:1200px;
}


/*===============================================
横幅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;
	}
	p {
		line-height: 2;
	}

	/* スムーススクロール設定 */
	html {
		scroll-behavior: smooth;
	}
	:root {
		--header-height: 110px;
	}


/* header
------------------------------------------------------------------------*/
	header{
		width: 100%;
		height: 90px;
		z-index: 10000;
		position: relative;
	}
	header h1{
		position: absolute;
		top: 125px;
		right: 50%;
		transform: translateX(600px);
		font-size: 12px;
		line-height: 1;
	}
	header .header_box{
		position: relative;
		top: 0;
		left: 50%;
		transform: translateX(-50%);
		width: 100%;
		max-width: 1800px;
		height: 90px;
		display: flex;
		justify-content: flex-end;
		padding-right: 20px;
		box-sizing: border-box;
	}
	header .header_box.active{
		position: fixed;
		width: 1240px;
		padding: 0 20px;
	}
	@media screen and (max-width: 1240px) {
		header .header_box{
			width: 1240px;
			padding: 0 20px;
			left: 0;
			transform: none;
		}
	}
	header .header_box::after{
		position: absolute;
		top: 0;
		left: 50%;
		transform: translateX(-50%);
		content: "";
		width: 100vw;
		height: 90px;
		z-index: -1;
	}
	header .header_box.active::after{
		background: rgba(255,255,255,0.8);
	}
	@media screen and (max-width: 1240px){
		header .header_box::after{
			width: 1240px;
		}
	}
	header .header_box .logo{
		position: absolute;
		top: 14px;
		left: 30px;
	}
	header .header_box .logo a{
		display: block;
		width: 208px;
		height: 0;
		background: url("img/header_logo.png")no-repeat;
		background-size: 208px;
		padding: 45px 0 0;
		box-sizing: border-box;
		overflow: hidden;
	}
	header .header_box.active .logo{
		left: 20px;
	}
	@media screen and (max-width: 1400px){
		header .header_box .logo a{
			width: 180px;
			background-size: 180px;
			padding: 40px 0 0;
		}	
		header .header_box.active .logo a{
			width: 208px;
			background-size: 208px;
			padding: 45px 0 0;
		}	
	}
	@media screen and (max-width: 1240px){
		header .header_box .logo{
			left: 20px;
		}	
	}
	header .header_box .text01{
		position: absolute;
		top: 28px;
		left: 308px;
		font-size: 18px;
		font-weight: bold;
		line-height: 1;
	}
	header .header_box .text01::before{
		content: "";
		background: url(img/header_accent01.png)no-repeat;
		background-size: 12px;
		width: 12px;
		height: 22px;
		position: absolute;
		top: -3px;
		left: -18px;
	}
	header .header_box .text01::after{
		content: "";
		background: url(img/header_accent02.png)no-repeat;
		background-size: 12px;
		width: 12px;
		height: 22px;
		position: absolute;
		top: -3px;
		right: -18px;
	}
	header .header_box .text01 span{
		color: #ea7d3d;
		font-weight: bold;
	}
	header .header_box.active .text01{
		display: none;
	}
	@media screen and (max-width: 1400px){
		header .header_box .text01{
			left: 245px;
			font-size: 14px;
		}
	}
	header .header_box .tel a{
		display: flex;
		align-items: center;
		margin: 23px 10px 0 0;
		position: relative;
	}
	header .header_box .tel a::before{
		content: "";
		background: url(img/tel_icon.png)top 0.5px left no-repeat;
		background-size: 16px;
		width: 16px;
		height: 24px;
		position: absolute;
		left: -20px;
	}
	header .header_box .tel .text02{
		width: 175px;
		height: 0;
		background: url(img/tel_text.png)no-repeat;
		background-size: 175px;
		padding: 22px 0 0;
		box-sizing: border-box;
		overflow: hidden;
		margin-right: 12px;
	}
	header .header_box .tel .text03{
		font-size: 14px;
		margin-top: 2.5px;
	}
	@media screen and (max-width: 1400px){
		header .header_box .tel a{
			margin: 23px 5px 0 0;
		}	
		header .header_box .tel a::before{
			background-size: 14px;
			width: 14px;
			height: 21px;
			left: -16px;
		}
		header .header_box .tel .text02{
			width: 165px;
			background-size: 165px;
			padding: 20px 0 0;
			margin-right: 8px;
		}
		header .header_box.active .tel a{
			margin: 23px 10px 0 0;
		}	
		header .header_box.active .tel a::before{
			background-size: 16px;
			width: 16px;
			height: 24px;
			left: -20px;
		}
		header .header_box.active .tel .text02{
			width: 175px;
			background-size: 175px;
			padding: 22px 0 0;
			margin-right: 12px;
		}
	}
	header .header_box .line_btn a{
		display: block;
		width: 180px;
		height: 35px;
		background: #22ba4f url("img/line_icon.png")left 22px center no-repeat;
		background-size: 21px;
		border: 1px solid #22ba4f;
		padding: 10px 0 0 50px;
		margin: 18px 0 0 10px;
		box-sizing: border-box;
		border-radius: 5px;
		color: #fff;
		font-size: 14px;
		font-weight: bold;
		line-height: 1;
	}
	header .header_box .line_btn a:hover{
		opacity: 1;
		background: #fff url("img/line_icon_ho.png")left 22px center no-repeat;
		background-size: 21px;
		color: #22ba4f;
	}
	header .header_box .mail_btn a{
		display: block;
		width: 180px;
		height: 35px;
		background: #3fa7d1 url("img/mail_icon.png")left 22px center no-repeat;
		background-size: 16px;
		border: 1px solid #3fa7d1;
		padding: 10px 0 0 46px;
		margin: 18px 0 0 10px;
		box-sizing: border-box;
		border-radius: 5px;
		color: #fff;
		font-size: 14px;
		font-weight: bold;
		line-height: 1;
		pointer-events: auto;
	}
	header .header_box .mail_btn a:hover{
		opacity: 1;
		background: #fff url("img/mail_icon_ho.png")left 22px center no-repeat;
		background-size: 16px;
		color: #3fa7d1;
	}
	

/* nav
------------------------------------------------------------------------*/
	header nav #nav{
		position: absolute;
		top: 70px;
		left: 50%;
		transform: translateX(-50%);
		width: 1200px;
	}
	header nav #nav ul{
		display: flex;
		justify-content: space-between;
		align-items: center;
		width: 100%;
		height: 40px;
		background: #dfedd0;
		border-radius: 25px;
		padding: 0 82px 0 80px;
		box-sizing: border-box;
	}
	header nav #nav ul li{
		display: inline-block;
		box-sizing: border-box;
		position: relative;
	}
	header nav #nav ul li a{
		display: block;
		height: 40px;
		font-weight: bold;
		line-height: 40px;
		text-align: center;
	}
	header nav #nav ul li a:hover{
		color: #1f8c63;
		text-decoration: underline;
		text-underline-offset: 3px;
		opacity: 1;
	}
	header nav #nav ul li a:hover::before{
		content: "";
		background: #1f8c63;
		width: 6px;
		height: 6px;
		border-radius: 50%;
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
		left: -15px;
	}
	

/* home
------------------------------------------------------------------------*/
	
	/* key */
	.key {
		background: #f5f4ea;
		margin-top: -110px;
		padding-bottom: 553px;
		position: relative;
		z-index: -1;
	}
	.key::before{
		content: "";
		width: calc(100% + 200px);
		height: 550px;
		background: #1f8c63;
		transform: translateX(-50%) rotate(-8deg);
		transform-origin: center;
		position: absolute;
		top: calc(50% - 55px);
		left: 50%;
		z-index: -3;
	}
	.key::after{
		content: "";
		width: 811px;
		height: 964px;
		background: url(img/key_img01.png)no-repeat;
		position: absolute;
		top: 15px;
		left: 50%;
		transform: translateX(-117px);
		z-index: -1;
	}

	/* loop */
	.key .key_img{
		width: calc(100% + 200px);
		height: 982px;
		background: url(img/key_img02.png) repeat-x 0 0/auto 100%;
		background-size: 3637px;
		animation: loop 40s linear infinite;
		transform: translateX(-50%) rotate(-8deg);
		transform-origin: center;
	
		position: absolute;
		top: calc(50% - 119px);
		left: 50%;
		z-index: -2;
	}
	
	@keyframes loop {
		from {
			background-position: 0 0;
		}
		to {
			background-position: -2000px 0;
		}
	}

	.key .key_text_box{
		padding-top: 215px;
		position: relative;
	}
	.key .key_text_box::before{
		content: "";
		background: url(img/home_img01.png)no-repeat;
		width: 716px;
		height: 797px;
		position: absolute;
		bottom: -1072px;
		right: -400px;
	}
	.key .key_text_box::after{
		content: "";
		background: url(img/key_text03.png)no-repeat;
		background-size: 234px;
		width: 234px;
		height: 355px;
		position: absolute;
		top: 343px;
		right: 120px;
	}
	.key .key_text_box .text01{
		color: #777;
		font-size: 24px;
		font-weight: bold;
		line-height: 1;
		margin: 0 0 30px -8px;
	}
	.key .key_text_box .text01::before{
		content: "[";
		padding: 0 10px;
	}
	.key .key_text_box .text01::after{
		content: "]";
		padding-left: 10px;
	}
	.key .key_text_box .text02{
		background: url(img/key_text01.png)no-repeat;
		background-size: 526px;
		width: 526px;
		height: 0;
		padding-top: 146px;
		overflow: hidden;
	}
	.key .key_text_box ul{
		width: 620px;
		display: flex;
		flex-wrap: wrap;
		gap: 10px;
		margin: 40px 0 15px;
	}
	.key .key_text_box ul li{
		font-size: 18px;
		line-height: 1;
		font-weight: bold;
		color: #1f8c63;
		background: url(img/home_accent01.png)center left 28px no-repeat,#fff;
		background-size: 27px;
		border: 2px solid #1f8c63;
		border-radius: 50px;
		padding: 16px 0 13px 63px;
		box-sizing: border-box;
	}
	.key .key_text_box ul li:nth-of-type(1){
		width: 255px;
	}
	.key .key_text_box ul li:nth-of-type(2){
		width: 355px;
	}
	.key .key_text_box ul li:nth-of-type(3){
		width: 290px;
	}
	.key .key_text_box ul li:nth-of-type(4){
		width: 320px;
	}
	.key .key_text_box .text03{
		background: url(img/key_text02.png)no-repeat;
		background-size: 698px;
		width: 698px;
		height: 0;
		padding-top: 121px;
		overflow: hidden;
		margin-left: -25px;
	}


	/* cont01 */
	.home .cont01{
		background: #f5f4ea;
		padding: 0 0 180px;
		position: relative;
		z-index: -2;
	}
	.home .cont01 .inner{
		position: relative;
	}
	.home .cont01 .inner::after{
		content: "";
		background: url(img/home_img02.png)no-repeat;
		width: 614px;
		height: 780px;
		position: absolute;
		top: 44px;
		left: -222px;
		z-index: -2;
	}
	.home .cont01 .inner h2{
		background: url("img/home_text01.png")center top no-repeat;
		padding: 60px 0 0;
		font-size: 16px;
		line-height: 1;
		text-align: center;
	}
	.home .cont01 .inner .text01{
		margin-top: 70px;
		text-align: center;
		font-size: 30px;
		line-height: 1;
		font-weight: bold;
	}
	.home .cont01 .inner .text01 .span01{
		display: inline-block;
		font-size: 56px;
		font-weight: bold;
		color: #fff;
		background: url(img/home_cont01_icon01.png)center right 28px no-repeat,#1f8c63;
		background-size: 52px;
		border-radius: 5px;
		margin: 30px 10px 0 0;
		padding: 17px 90px 13px 30px;
		box-sizing: border-box;
	}
	.home .cont01 .inner .text01 .span02{
		display: inline-block;
		font-size: 56px;
		font-weight: bold;
		color: #fff;
		background: url(img/home_cont01_icon02.png)center right 35px no-repeat,#3fa7d1;
		background-size: 35px;
		border-radius: 5px;
		margin: 30px 0 33px 0;
		padding: 17px 90px 13px 30px;
		box-sizing: border-box;
	}
	.home .cont01 .inner .text01 .span03{
		font-size: 38px;
		font-weight: bold;
		letter-spacing: 1px;
	}
	.home .cont01 .inner .text01 .span04{
		font-size: 48px;
		font-weight: bold;
		background-image: radial-gradient(circle at center, #222 13%, transparent 18%);
		background-position: top right;
		background-repeat: repeat-x;
		background-size: 1em 0.3em;
		padding-top: 15px;
	}
	.home .cont01 .inner .box01{
		margin-top: 80px;
		position: relative;
	}
	.home .cont01 .inner .box01 ul{
		display: flex;
		justify-content: space-between;
	}
	.home .cont01 .inner .box01 ul li{
		background: url(img/home_img03.png)top 36px center no-repeat,#fff;
		width: 300px;
		height: 300px;
		border-radius: 50%;
		font-size: 26px;
		line-height: 1.385;
		font-weight: bold;
		text-align: center;
		padding-top: 195px;
		box-sizing: border-box;
		position: relative;
	}
	.home .cont01 .inner .box01 ul li:nth-of-type(1){
		z-index: 1;
	}
	.home .cont01 .inner .box01 ul li:nth-of-type(2){
		background: #ea7d3d;
		color: #fff;
		padding-top: 210px;
	}
	.home .cont01 .inner .box01 ul li:nth-of-type(2)::before{
		content: "";
		background: url(img/home_img04.png)top center no-repeat;
		width: 218px;
		height: 213px;
		position: absolute;
		top: -15px;
		left: 50%;
		transform: translateX(-50%);
		z-index: 3;
	}
	.home .cont01 .inner .box01 ul li:nth-of-type(3){
		background: url(img/home_img05.png)top 65px center no-repeat,#fff;
		padding-top: 210px;
		z-index: 1;
	}
	.home .cont01 .inner .box01 .arrow01,
	.home .cont01 .inner .box01 .arrow02,
	.home .cont01 .inner .box01 .arrow03,
	.home .cont01 .inner .box01 .arrow04{
		width: 230px;
		height: 70px;
		font-size: 18px;
		line-height: 1.333;
		font-weight: bold;
		color: #fff;
		text-align: center;
		padding: 12px 0 0 0;
		box-sizing: border-box;
		position: absolute;
	}
	.home .cont01 .inner .box01 .arrow01{
		background: #1f8c63;
		padding-left: 32px;
		top: 72px;
		left: 246px;
	}
	.home .cont01 .inner .box01 .arrow01::before{
		content: "";
		width: 0;
		height: 0;
		border-style: solid;
		border-top: 35.5px solid transparent;
		border-bottom: 35.5px solid transparent;
		border-left: 30px solid #1f8c63;
		border-right: 0;
		position: absolute;
		top: 0px;
		left: 229.5px;		
	}
	.home .cont01 .inner .box01 .arrow02{
		background: #ea7d3d;
		padding-left: 32px;
		top: 72px;
		right: 273px;
		z-index: 2;
	}
	.home .cont01 .inner .box01 .arrow02::before{
		content: "";
		width: 0;
		height: 0;
		border-style: solid;
		border-top: 35.5px solid transparent;
		border-bottom: 35.5px solid transparent;
		border-left: 30px solid #ea7d3d;
		border-right: 0;
		position: absolute;
		top: 0px;
		left: 229.5px;
	}
	.home .cont01 .inner .box01 .arrow03{
		background: #ea7d3d;
		padding-right: 50px;
		bottom: 72px;
		left: 273px;
		z-index: 2;
	}
	.home .cont01 .inner .box01 .arrow03::before{
		content: "";
		width: 0;
		height: 0;
		border-style: solid;
		border-top: 35.5px solid transparent;
		border-bottom: 35.5px solid transparent;
		border-right: 30px solid #ea7d3d;
		border-left: 0;
		position: absolute;
		top: 0px;
		right: 229.5px;
	}
	.home .cont01 .inner .box01 .arrow04{
		background: #3fa7d1;
		padding-right: 50px;
		bottom: 72px;
		right: 246px;
	}
	.home .cont01 .inner .box01 .arrow04::before{
		content: "";
		width: 0;
		height: 0;
		border-style: solid;
		border-top: 35.5px solid transparent;
		border-bottom: 35.5px solid transparent;
		border-right: 30px solid #3fa7d1;
		border-left: 0;
		position: absolute;
		top: 0px;
		right: 229.5px;
	}
	.home .cont01 .inner .box02{
		display: flex;
		justify-content: space-between;
		align-items: center;
		background: #f5f4ea;
		border: 4px solid #ea7d3d;
		border-radius: 10px;
		margin-top: 70px;
		padding: 50px 80px 50px 60px;
		box-sizing: border-box;
		position: relative;
	}
	.home .cont01 .inner .box02::before{
		content: "";
		background: url(img/home_img06.png)no-repeat;
		width: 610px;
		height: 702px;
		position: absolute;
		top: -188px;
		left: -370px;
		z-index: -1;
	}
	.home .cont01 .inner .box02 .text02{
		color: #ea7d3d;
		font-size: 32px;
		line-height: 1;
		font-weight: bold;
	}
	.home .cont01 .inner .box02 .text02 span{
		display: block;
		font-size: 24px;
		line-height: 1;
		font-weight: bold;
		margin-bottom: -12px;
	}
	.home .cont01 .inner .box02 ul{
		display: flex;
		gap: 0 30px;
	}
	.home .cont01 .inner .box02 ul li{
		width: 160px;
		background: url(img/home_img07.png)top center no-repeat;
		font-size: 20px;
		line-height: 1;
		font-weight: bold;
		text-align: center;
		padding-top: 180px;
	}
	.home .cont01 .inner .box02 ul li:nth-of-type(2){
		background: url(img/home_img08.png)top center no-repeat;
	}
	.home .cont01 .inner .box02 ul li:nth-of-type(3){
		background: url(img/home_img09.png)top center no-repeat;
	}
	.home .cont01 .inner .point_box{
		margin: 100px 0 0;
		display: flex;
		flex-direction: column;
		gap: 60px 0;
	}
	.home .cont01 .inner .point_box .cont{
		display: flex;
		align-items: center;
		padding: 50px 0;
		position: relative;
	}
	.home .cont01 .inner .point_box .cont:nth-of-type(odd){
		flex-direction: row-reverse;
		z-index: -1;
	}
	.home .cont01 .inner .point_box .cont:nth-of-type(even)::before{
		content: "";
		background: #fff;
		width: 1200px;
		height: 100%;
		border-radius: 0 10px 10px 0;
		position: absolute;
		top: 0;
		left: -300px;
		z-index: -1;
	}
	.home .cont01 .inner .point_box .cont:nth-of-type(odd)::before{
		content: "";
		background: #fff;
		width: 1200px;
		height: 100%;
		border-radius: 10px 0 0 10px;
		position: absolute;
		top: 0;
		right: -300px;
		z-index: -1;
	}
	.home .cont01 .inner .point_box .cont:nth-of-type(1)::after{
		content: "";
		background: url(img/home_img10.png)no-repeat;
		width: 239px;
		height: 278px;
		position: absolute;
		top: -37px;
		right: -87px;
	}
	.home .cont01 .inner .point_box .cont:nth-of-type(2)::after{
		content: "";
		background: url(img/home_img11.png)no-repeat;
		width: 473px;
		height: 317px;
		position: absolute;
		bottom: -231px;
		left: -237px;
		z-index: 1;
	}
	.home .cont01 .inner .point_box .cont:nth-of-type(3)::after{
		content: "";
		background: url(img/home_img12.png)no-repeat;
		width: 396px;
		height: 575px;
		position: absolute;
		top: -25px;
		right: -240px;
	}
	.home .cont01 .inner .point_box .cont:nth-of-type(4)::after{
		content: "";
		background: url(img/home_img13.png)no-repeat;
		width: 343px;
		height: 204px;
		position: absolute;
		bottom: -93px;
		left: 383px;
	}
	@media screen and (max-width: 1240px) {
		.home .cont01 .inner .point_box .cont:nth-of-type(1)::after{
			background: url(img/home_img10.png)no-repeat;
			background-size: 209px;
			width: 209px;
			height: 248px;
			right: 0;
		}
		.home .cont01 .inner .point_box .cont:nth-of-type(2)::after{
			background: url(img/home_img11.png)no-repeat;
			background-size: 443px;
			width: 443px;
			height: 287px;
			left: -37px;
			z-index: 1;
		}
		.home .cont01 .inner .point_box .cont:nth-of-type(3)::after{
			background: url(img/home_img12.png)no-repeat;
			background-size: 366px;
			width: 366px;
			height: 545px;
			right: -180px;
		}
		.home .cont01 .inner .point_box .cont:nth-of-type(4)::after{
			background: url(img/home_img13.png)no-repeat;
			background-size: 313px;
			width: 313px;
			height: 174px;
		}
	}
	.home .cont01 .inner .point_box .cont .text_box{
		width: 50%;
		padding-left: 80px;
		box-sizing: border-box;
	}
	.home .cont01 .inner .point_box .cont:nth-of-type(odd) .text_box{
		padding-left: 65px;
	}
	.home .cont01 .inner .point_box .cont .text_box h3{
		background: url(img/home_text02.png)top left 20px no-repeat;
		background-size: 79px;
		font-size: 40px;
		line-height: 1;
		padding-top: 56px;
		margin-bottom: 40px;
		position: relative;
	}
	.home .cont01 .inner .point_box .cont:nth-of-type(2) .text_box h3{
		background: url(img/home_text03.png)top left 20px no-repeat;
		background-size: 80px;
	}
	.home .cont01 .inner .point_box .cont:nth-of-type(3) .text_box h3{
		background: url(img/home_text04.png)top left 20px no-repeat;
		background-size: 80px;
	}
	.home .cont01 .inner .point_box .cont:nth-of-type(4) .text_box h3{
		background: url(img/home_text05.png)top left 20px no-repeat;
		background-size: 80px;
	}
	.home .cont01 .inner .point_box .cont .text_box h3::first-letter{
		color: #1f8c63;
	}
	.home .cont01 .inner .point_box .cont .text_box h3::before{
		content: "";
		background: #1f8c63;
		width: 8px;
		height: 8px;
		border-radius: 50%;
		position: absolute;
		top: 4px;
		left: 0;
	}
	.home .cont01 .inner .point_box .cont .text_box p{
		font-size: 18px;
		font-weight: bold;
		line-height: 2;
	}


	/* cont02 */
	.home .cont02{
		background: #1f8c63;
		background-image: url(img/home_cont02_bg.png);
		background-position: top center;
		background-repeat: no-repeat;
		background-size: 100% 708px;
		padding: 150px 0;
	}
	.home .cont02 .inner h2{
		background: url("img/home_text06.png")center top no-repeat;
		padding: 60px 0 0;
		font-size: 16px;
		color: #fff;
		line-height: 1;
		text-align: center;
	}
	.home .cont02 .inner ul.thought{
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		gap: 40px 20px;
		margin-top: 70px;
	}
	.home .cont02 .inner ul.thought li{
		background: url(img/home_accent01.png)center left 41px no-repeat,#fff;
		background-size: 37px;
		font-size: 24px;
		line-height: 1;
		font-weight: bold;
		padding: 24px 45px 22px 85px;
		box-sizing: border-box;
		border-radius: 70px;
		position: relative;
	}
	.home .cont02 .inner ul.thought li::before{
		content: "";
		background: url(img/home_accent03.png)no-repeat;
		background-size: 20px;
		width: 20px;
		height: 17px;
		position: absolute;
		bottom: -16px;
		left: 73px;
	}
	.home .cont02 .inner ul.thought li:nth-of-type(2):before{
		background: url(img/home_accent02.png)no-repeat;
		background-size: 20px;
		left: auto;
		right: 187px;
	}
	.home .cont02 .inner ul.thought li:nth-of-type(3):before{
		background: url(img/home_accent02.png)no-repeat;
		background-size: 20px;
		left: auto;
		right: 69px;
	}
	.home .cont02 .inner ul.thought li:nth-of-type(4):before{
		left: 75px;
	}
	.home .cont02 .inner .case_box01,
	.home .cont02 .inner .case_box02{
		background: #fff;
		border-radius: 10px;
		padding: 48px 50px 55px;
		box-sizing: border-box;
	}
	.home .cont02 .inner .case_box01{
		margin-top: 85px;
		padding: 48px 50px 50px;
	}
	.home .cont02 .inner .case_box02{
		margin-top: 60px;
	}
	.home .cont02 .inner h3{
		background: url(img/home_cont02_icon01.png)top left no-repeat;
		background-size: 17px;
		font-size: 16px;
		line-height: 1;
		padding: 2px 0 0 30px;
	}
	.home .cont02 .inner .case_box02 h3{
		background: url(img/home_cont02_icon04.png)top left no-repeat;
		background-size: 18px;
		padding: 2px 0 0 28px;
	}
	.home .cont02 .inner .text01{
		background: #f5f4ea;
		border-radius: 10px;
		height: 70px;
		margin: 16px 0 30px;
		padding: 21px 30px;
		box-sizing: border-box;
		position: relative;
	}
	.home .cont02 .inner .text01::before{
		content: "";
		background: url(img/home_img18.png)no-repeat;
		width: 236px;
		height: 245px;
		position: absolute;
		top: -121px;
		right: 22px;
		z-index: 1;
	}
	.home .cont02 .inner .case_box02 .text01::before{
		background: url(img/home_img21.png)no-repeat;
		width: 220px;
		height: 215px;
		top: -117px;
		right: 50px;
	}
	.home .cont02 .inner .case_box01 .text01{
		font-size: 22px;
		line-height: 1;
		font-weight: bold;
	}
	.home .cont02 .inner .case_box01 .text01 span{
		font-size: 28px;
		color: #1f8c63;
		font-weight: bold;
		padding: 7px 20px 0 0;
	}
	.home .cont02 .inner .case_box01 .flex_box01{
		display: flex;
		justify-content: space-between;
	}
	.home .cont02 .inner .case_box01 .flex_box01 .box{
		position: relative;
	}
	.home .cont02 .inner .case_box01 .flex_box01 .box:nth-of-type(1)::before{
		content: "";
		background: url(img/home_accent04.png)no-repeat;
		width: 60px;
		height: 60px;
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
		right: -60px;
	}
	.home .cont02 .inner .case_box01 .flex_box01 .box .text02{
		width: 520px;
		font-size: 20px;
		font-weight: bold;
		text-align: center;
		color: #fff;
		background: #1f8c63;
		border-radius: 0 0 10px 10px;
		padding: 5px 0;
		position: absolute;
		left: 0;
		bottom: 0;
	}
	.home .cont02 .inner .case_box01 .flex_box01 .box:nth-of-type(2) .text02{
		background: #ea7d3d;
	}
	.home .cont02 .inner .case_box01 .flex_box02{
		background: #f5f4ea;
		border-radius: 10px;
		display: flex;
		margin-top: 30px;
		padding: 36px 30px;
		box-sizing: border-box;
		justify-content: space-between;
		position: relative;
	}
	.home .cont02 .inner .case_box01 .flex_box02::before{
		content: "";
		background: url(img/home_cont02_icon05.png)no-repeat;
		width: 100px;
		height: 100px;
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%,-50%);
	}
	.home .cont02 .inner .case_box01 .flex_box02 .box{
		display: flex;
		align-items: center;
		position: relative;
	}
	.home .cont02 .inner .case_box01 .flex_box02 .box::before{
		content: "";
		background: url(img/home_accent05.png)no-repeat;
		background-size: 40px;
		width: 40px;
		height: 4px;
		position: absolute;
		top: 50%;
		right: -50px;
		transform: translateY(-50%);
	}
	.home .cont02 .inner .case_box01 .flex_box02 .box:nth-of-type(2)::before{
		left: -85px;
	}
	.home .cont02 .inner .case_box01 .flex_box02 .box .ttl{
		font-size: 16px;
		line-height: 1;
		font-weight: bold;
		background: url(img/home_cont02_icon02.png)top center no-repeat;
		background-size: 30px;
		padding-top: 40px;
		margin-right: 20px;
		box-sizing: border-box;
	}
	.home .cont02 .inner .case_box01 .flex_box02 .box:nth-of-type(2) .ttl{
		background: url(img/home_cont02_icon03.png)top center no-repeat;
		background-size: 49px;
		padding-top: 52px;
		margin-right: 25px;
	}
	.home .cont02 .inner .case_box01 .flex_box02 .box .text03{
		font-size: 18px;
		line-height: 1.667;
		font-weight: bold;
		padding-left: 20px;
		position: relative;
	}
	.home .cont02 .inner .case_box01 .flex_box02 .box .text04{
		font-size: 23px;
		line-height: 1;
		font-weight: bold;
		padding-left: 20px;
		position: relative;
	}
	.home .cont02 .inner .case_box01 .flex_box02 .box .text03::before,
	.home .cont02 .inner .case_box01 .flex_box02 .box .text04::before{
		content: "";
		background: #1f8c63;
		width: 2px;
		height: 60px;
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
		left: 0;
	}
	.home .cont02 .inner .case_box01 .text05{
		width: 215px;
		font-size: 22px;
		font-weight: bold;
		color: #3fa7d1;
		margin: 15px auto 0;
		padding-right: 15px;
		text-align: center;
		position: relative;
	}
	.home .cont02 .inner .case_box01 .text05::before{
		content: "";
		background: url(img/home_accent06.png)no-repeat;
		background-size: 15px;
		width: 15px;
		height: 28px;
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
		left: 0;
	}
	.home .cont02 .inner .case_box01 .text05::after{
		content: "";
		background: url(img/home_accent07.png)no-repeat;
		background-size: 15px;
		width: 15px;
		height: 28px;
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
		right: 0;
	}
	.home .cont02 .inner .case_box02 .text01{
		font-size: 28px;
		line-height: 1;
		font-weight: bold;
	}
	.home .cont02 .inner .case_box02 .text01 span{
		color: #1f8c63;
		font-weight: bold;
	}
	.home .cont02 .inner .case_box02 ul{
		display: flex;
		justify-content: center;
		gap: 0 35px;
	}
	.home .cont02 .inner .case_box02 ul li{
		width: 250px;
		background: url(img/home_img22.png)top center no-repeat;
		font-size: 18px;
		line-height: 1.333;
		font-weight: bold;
		text-align: center;
		padding-top: 265px;
	}
	.home .cont02 .inner .case_box02 ul li:nth-of-type(2){
		background: url(img/home_img23.png)top center no-repeat;
	}
	.home .cont02 .inner .case_box02 ul li:nth-of-type(3){
		background: url(img/home_img24.png)top center no-repeat;
	}
	.home .cont02 .inner .case_box02 ul li:nth-of-type(4){
		background: url(img/home_img25.png)top center no-repeat;
	}


	/* cont03 */
	.home .cont03{
		background: #f5f4ea;
		padding: 150px 0 0;
	}
	.home .cont03 h2{
		background: url("img/home_text07.png")center top no-repeat;
		padding: 60px 0 0;
		font-size: 16px;
		line-height: 1;
		text-align: center;
	}
	.home .cont03 .swiper{
		padding: 0 40px 0 80px;
		box-sizing: border-box;
	}
	.home .cont03 .flow_box{
		margin-top: 40px;
	}
	.home .cont03 .flow_box .swiper-slide{
		background: url(img/home_cont03_bg01.png)no-repeat;
		width: 510px;
		height: 400px;
		box-sizing: border-box;
		position: relative;
	}
	.home .cont03 .flow_box .slide05{
		background: url(img/home_cont03_bg02.png)no-repeat;
	}
	.home .cont03 .flow_box .swiper-slide .box{
		width: 390px;
		background: #fff;
		border: 2px solid #1f8c63;
		border-radius: 10px;
		padding: 28px 28px 28px 33px;
		box-sizing: border-box;
		position: absolute;
		top: 240px;
		left: -30px;
	}
	.home .cont03 .flow_box .swiper-slide .box h3{
		font-size: 20px;
		background: url(img/home_no01.png)top 3px left no-repeat;
		background-size: 30px;
		line-height: 1.5;
		padding-left: 45px;
		box-sizing: border-box;
		position: relative;
	}
	.home .cont03 .flow_box .slide02 .box h3{
		background: url(img/home_no02.png)top 3px left no-repeat;
		background-size: 30px;
	}
	.home .cont03 .flow_box .slide03 .box h3{
		background: url(img/home_no03.png)top 3px left no-repeat;
		background-size: 30px;
	}
	.home .cont03 .flow_box .slide04 .box h3{
		background: url(img/home_no04.png)top 3px left no-repeat;
		background-size: 30px;
	}
	.home .cont03 .flow_box .slide05 .box h3{
		background: url(img/home_no05.png)top 3px left no-repeat;
		background-size: 30px;
	}
	.home .cont03 .flow_box .swiper-slide .box h3::before{
		content: "";
		width: 7px;
		height: 18px;
		background: #1f8c63;
		position: absolute;
		top: 4px;
		left: -34px;
	}
	.home .cont03 .flow_box .swiper-slide .box .text01{
		font-size: 16px;
		line-height: 1.875;
		margin-top: 11px;
		letter-spacing: -0.5px;
	}
	.home .cont03 .flow_box .swiper-slide .img{
		padding: 30px 0 0 30px;
		box-sizing: border-box;
	}


	/* cont04 */
	.home .cont04{
		background: #f5f4ea;
		padding: 150px 0 0;
		position: relative;
	}
	.home .cont04::before{
		content: "";
		background: url(img/home_cont04_bg02.png)no-repeat;
		width: 1023px;
		height: 913px;
		position: absolute;
		top: -12px;
		left: 50%;
		transform: translateX(-65px);
	}
	.home .cont04 .inner{
		background: #fff;
		padding: 120px 0 125px 80px;
		border-radius: 10px;
		box-sizing: border-box;
		position: relative;
		overflow: hidden;
	}
	.home .cont04 .inner::before{
		content: "";
		background: url(img/home_cont04_bg01.png)no-repeat;
		width: 1000px;
		height: 889px;
		position: absolute;
		top: -145px;
		left: 50%;
		transform: translateX(-50px);
	}
	.home .cont04 .inner h2{
		background: url("img/home_text08.png")top left no-repeat;
		padding: 60px 0 0;
		font-size: 16px;
		line-height: 1;
		margin-bottom: 50px;
	}
	.home .cont04 .inner .text01{
		font-size: 30px;
		font-weight: bold;
		line-height: 1;
		margin-bottom: 25px;
	}
	.home .cont04 .inner .text02{
		font-size: 18px;
		font-weight: bold;
		line-height: 2.22;
	}
	.home .cont04 .inner .area_icon{
		font-size: 20px;
		font-weight: bold;
		line-height: 1.4;
		color: #1f8c63;
		text-align: center;
		width: 168px;
		height: 168px;
		border-radius: 50%;
		background: rgba(223,237,208,0.8);
		padding-top: 54px;
		box-sizing: border-box;
		position: absolute;
		top: 130px;
		right: 245px;
	}


	/* cont05 */
	.home .cont05{
		background: #f5f4ea;
		padding: 150px 0 0;
	}
	.home .cont05 h2{
		background: url("img/home_text09.png")center top no-repeat;
		padding: 60px 0 0;
		font-size: 16px;
		line-height: 1;
		text-align: center;
		margin-bottom: 50px;
	}
	.home .cont05 .inner{
		display: flex;
		justify-content: flex-end;
		gap: 0 90px;
	}
	.home .cont05 .inner .img_box .img:nth-of-type(1){
		position: absolute;
		top: -150px;
		left: -350px;
	}
	.home .cont05 .inner .img_box .img:nth-of-type(3){
		position: absolute;
		top: 312px;
		left: -260px;
	}
	.home .cont05 .inner .img_box .img:nth-of-type(4){
		margin-top: 35px;
	}
	@media screen and (max-width: 1240px) {
		.home .cont05 .inner .img_box .img:nth-of-type(1){
			width: 250px;
			position: absolute;
			top: -100px;
			left: -90px;
		}
		.home .cont05 .inner .img_box .img:nth-of-type(2){
			width: 320px;
		}	
		.home .cont05 .inner .img_box .img:nth-of-type(3){
			width: 160px;
			position: absolute;
			top: 230px;
			left: 0;
		}
		.home .cont05 .inner .img_box .img:nth-of-type(4){
			width: 170px;
			margin-top: 20px;
		}	
	}
	.home .cont05 .inner .text_box{
		margin-top: 65px;
	}
	.home .cont05 .inner .text_box h3{
		font-size: 24px;
		line-height: 1.667;
		margin-bottom: 35px;
	}
	.home .cont05 .inner .text_box .text01{
		font-size: 16px;
		line-height: 2.25;		
	}
	.home .cont05 .inner .text_box .text01 + .text01{
		margin-top: 25px;
	}
	.home .cont05 .inner .text_box h4{
		font-size: 16px;
		margin-top: 35px;
	}
	.home .cont05 .inner .text_box h4 span{
		font-size: 20px;
		font-weight: bold;
		padding-left: 20px;
		position: relative;
	}
	.home .cont05 .inner .text_box h4 span::before{
		content: "";
		background: url(img/home_text10.png)bottom right no-repeat;
		background-size: 56px;
		width: 56px;
		height: 14px;
		position: absolute;
		top: 10px;
		right: -65px;
	}


	/* cont06 */
	.home .cont06{
		background: #f5f4ea;
		padding: 135px 0 150px;
	}
	.home .cont06 h2{
		background: url("img/home_text11.png")center top no-repeat;
		padding: 60px 0 0;
		font-size: 16px;
		line-height: 1;
		text-align: center;
		margin-bottom: -52px;
		position: relative;
		z-index: 1;
	}
	.home .cont06 .inner{
		background: #fff;
		display: flex;
		justify-content: center;
		align-items: center;
		border-radius: 10px;
		gap: 0 70px;
		padding: 100px 0 90px;
		box-sizing: border-box;
		position: relative;
	}
	.home .cont06 .inner::before{
		content: "";
		background: url(img/home_img35.png)no-repeat;
		width: 315px;
		height: 543px;
		position: absolute;
		top: 75px;
		left: -240px;
	}
	.home .cont06 .inner::after{
		content: "";
		background: url(img/home_img36.png)no-repeat;
		width: 451px;
		height: 504px;
		position: absolute;
		top: -65px;
		right: -240px;
	}
	.home .cont06 .inner .text_box .text01{
		font-size: 24px;
		font-weight: bold;
		color: #1f8c63;
		line-height: 1.667;
		border-top: 1px solid #1f8c63;
		border-bottom: 1px solid #1f8c63;
		padding: 15px 0;
	}
	.home .cont06 .inner .text_box .text02{
		font-size: 18px;
		font-weight: bold;
		line-height: 1.778;
		padding-top: 25px;
	}
	.home .cont06 .inner .info_box{
		width: 435px;
		display: flex;
		flex-wrap: wrap;
		gap: 0 20px;
	}
	.home .cont06 .inner .info_box h3{
		font-size: 20px;
		line-height: 1;
		margin-bottom: 22px;
	}
	.home .cont06 .inner .info_box .place{
		font-size: 16px;
		line-height: 2;
	}
	.home .cont06 .inner .info_box .tel{
		font-size: 16px;
		line-height: 2;
	}
	.home .cont06 .inner .info_box .tel::before{
		content: "TEL：";
	}
	.home .cont06 .inner .info_box .time{
		font-size: 16px;
		line-height: 2;
	}
	.home .cont06 .inner .info_box .time::before{
		content: "受付時間：";
	}
	.home .cont06 .inner .info_box .mail{
		font-size: 16px;
		line-height: 2;
	}
	.home .cont06 .inner .info_box .mail::before{
		content: "MAIL：";
	}


	/* cont07 */
	.home .cont07{
		background: #1f8c63;
		padding-top: 150px;
	}
	.home .cont07 .inner{
		background: #fff;
		border-radius: 10px;
		padding: 80px 100px 90px;
		box-sizing: border-box;
		position: relative;
	}
	.home .cont07 .inner h2{
		background: url("img/home_text12.png")center top no-repeat;
		padding: 60px 0 0;
		font-size: 16px;
		line-height: 1;
		text-align: center;
	}
	.home .cont07 .inner .text01{
		font-size: 20px;
		line-height: 1;
		font-weight: bold;
		text-align: center;
		margin-top: 50px;
	}
	.home .cont07 .inner .text02{
		font-size: 16px;
		font-weight: bold;
		line-height: 1;
		text-align: center;
		margin-top: 20px;
	}
	.home .cont07 .inner .flex_box{
		display: flex;
		justify-content: center;
		align-items: center;
		gap: 0 60px;
		padding: 50px 0 35px;
		box-sizing: border-box;
	}
	.home .cont07 .inner .flex_box .tel{
		font-size: 16px;
		line-height: 1;
		text-align: center;
		padding-right: 15px;
		position: relative;
	}
	.home .cont07 .inner .flex_box .tel::before{
		content: "";
		background: url(img/tel_icon.png)top left no-repeat;
		background-size: 24px;
		width: 24px;
		height: 34px;
		position: absolute;
		top: -1px;
		left: -25px;
	}
	.home .cont07 .inner .flex_box .tel span{
		display: block;
		width: 269px;
		height: 0;
		background: url(img/tel_text.png)no-repeat top center;
		background-size: 269px;
		overflow: hidden;
		padding-top: 42px;
		margin-right: -15px;
	}
	.home .cont07 .inner .flex_box .line a{
		display: block;
		background: url(img/line_icon.png)center left 55px no-repeat,#22ba4f;
		background-size: 32px;
		width: 300px;
		height: 55px;
		border-radius: 6px;
		font-size: 20px;
		line-height: 55px;
		font-weight: bold;
		color: #fff;
		text-align: center;
		padding-left: 35px;
		box-sizing: border-box;
	}
	.home .cont07 .inner .flex_box .tel a:hover,
	.home .cont07 .inner .flex_box .line a:hover{
		opacity: 0.5;
	}
	.home .cont07 .inner .text03{
		font-size: 14px;
		line-height: 2;
		text-indent: -1em;
		padding-left: 1em;
		margin-top: 14px;
		margin-right: -5px;
	}
	.home .cont07 .inner .text03 + .text03{
		margin-top: 0;
	}
	.home .cont07 .inner .text03::before{
		content: "※";
	}
	.home .cont07 .inner table {
		margin-top: 40px;
		border-bottom: 1px solid #ccc;
	}
	.home .cont07 .inner table th{
		width: 282px;
		padding: 20px 0;
		box-sizing: border-box;
		font-size: 16px;
		font-weight: bold;
		line-height: 1.5;
		text-align: left;
		vertical-align: middle;
		position: relative;
		border-top: 1px solid #ccc;
	}
	.home .cont07 .inner table th span{
		position: absolute;
		top: 50%;
		right: 23px;
		transform: translateY(-50%);
		width: 60px;
		height: 30px;
		background: #3fa7d1;
		border-radius: 5px;
		color: #fff;
		font-size: 14px;
		font-weight: bold;
		line-height: 32px;
		text-align: center;
	}
	.home .cont07 .inner table td{
		width: 718px;
		padding: 20px 0;
		box-sizing: border-box;
		vertical-align: middle;
		border-top: 1px solid #ccc;
	}
	.home .cont07 .inner table td input[type="text"],
	.home .cont07 .inner table td input[type="tel"],
	.home .cont07 .inner table td input[type="email"] {
		width: 100%;
		height: 100%;
		min-height: 60px;
		padding: 0 0 0 30px;
		font-size: 16px;
		line-height: 1.5;
		background: #ededed;
		box-sizing: border-box;
		border-radius: 5px;
		border: none;
		font-family: "游ゴシック体", YuGothic, "Yu Gothic Medium", sans-serif;
	}
	.home .cont07 .inner table td textarea{
		display: block;
		width: 100% !important;
		height: 260px !important;
		background: #ededed;
		border-radius: 5px;
		border: none;
		box-sizing: border-box;
		padding: 30px;
		font-family: "游ゴシック体", YuGothic, "Yu Gothic Medium", sans-serif;
	}
	.home .cont07 .inner .privacy_check{
		text-align: center;
		margin-top: 45px;
	}
	.home .cont07 .inner .privacy_check label{
		font-weight: bold;
	}
	.home .cont07 .inner .privacy_check input[type="checkbox"] {
		position: relative;
		width: 16px;
		height: 16px;
		border: 1px solid #222;
		vertical-align: -5px;
		-webkit-appearance: none;
		   -moz-appearance: none;
				appearance: none;	  
		margin-right: 8px;
	}
	.home .cont07 .inner .privacy_check input[type="checkbox"]:checked:before {
		content: "";
		width: 4px;
		height: 8px;
		border-right: 2px solid #222;
		border-bottom: 2px solid #222;
		position: absolute;
		top: 1px;
		left: 4px;
		transform: rotate(50deg);
	}
	.home .cont07 .inner .button input{
		display: block;
		width: 360px;
		height: 50px;
		background: #3fa7d1;
		border: 2px solid #3fa7d1;
		border-radius: 25px;
		color: #fff;
		font-size: 16px;
		font-weight: bold;
		text-align: center;
		box-sizing: border-box;
		cursor: pointer;
		margin: 20px auto 0;
		position: relative;
		font-family: "游ゴシック体", YuGothic, "Yu Gothic Medium", sans-serif;
	}
	.home .cont07 .inner .button input:hover{
		background: #fff;
		color: #3fa7d1;
	}
	.home .cont07 .inner .privacyBox{
		width: 1000px;
		margin: 40px auto 0;
		border-radius: 12px;
		border: 2px solid #1f8c63;
	}
	.home .cont07 .inner .privacyBox h3{
		height: 40px;
		color: #fff;
		background: #1f8c63;
		border-radius: 8px 8px 0 0;
		font-size: 16px;
		line-height: 40px;
		text-align: center;
	}
	.home .cont07 .inner .privacyBox .txtBox{
		height: 160px;
		padding: 20px 30px 30px 40px;
		box-sizing: border-box;
		overflow-y: auto;
		margin: 10px 10px 0 0;
	}
	.home .cont07 .inner .privacyBox .txtBox::-webkit-scrollbar{
		width: 5px;
	}
	.home .cont07 .inner .privacyBox .txtBox::-webkit-scrollbar-track{
		background-color: transparent;
	}
	.home .cont07 .inner .privacyBox .txtBox::-webkit-scrollbar-thumb{
		background-color: #ccc;
		border-radius: 2px;
	}
	.home .cont07 .inner .privacyBox .txtBox h4{
		font-size: 14px;
		line-height: 2;
	}
	.home .cont07 .inner .privacyBox .txtBox h4::before{
		content: "■";
		color: #1f8c63;
		margin-right: 5px;
	}
	.home .cont07 .inner .privacyBox .txtBox .text04{
		font-size: 14px;
		line-height: 2;
		margin-bottom: 20px;
	}


/* thanks
------------------------------------------------------------------------*/
	.thanks .cont01{
		padding: 100px 0;
		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;
		font-weight: bold;
		background: #1f8c63;
		border: 1px solid #1f8c63;
		transition: all .5s;
	}
	.thanks .cont01 .button a:hover {
		background: #fff;
		color: #1f8c63;
		transition: all .5s;
	}


/* footer
------------------------------------------------------------------------*/
	footer{
		background: #1f8c63;
	}
	footer .inner{
		display: flex;
		justify-content: center;
		align-items: flex-end;
		gap: 0 60px;
		padding: 120px 0;
		box-sizing: border-box;
		color: #fff;
	}
	footer .inner .h_box{
		margin-bottom: 10px;
	}
	footer .inner .h_box .copy{
		color: #ccc;
		font-size: 12px;
		line-height: 1;
		margin-top: 45px;
	}
	footer .inner .info_box{
		width: 435px;
		display: flex;
		flex-wrap: wrap;
		gap: 0 20px;
	}
	footer .inner .info_box .text01{
		font-size: 20px;
		font-weight: bold;
		line-height: 1;
		margin-bottom: 22px;
	}
	footer .inner .info_box .place{
		font-size: 16px;
		line-height: 2;
	}
	footer .inner .info_box .tel{
		font-size: 16px;
		line-height: 2;
	}
	footer .inner .info_box .tel::before{
		content: "TEL：";
	}
	footer .inner .info_box .time{
		font-size: 16px;
		line-height: 2;
	}
	footer .inner .info_box .time::before{
		content: "受付時間：";
	}
	footer .inner .info_box .mail{
		font-size: 16px;
		line-height: 2;
	}
	footer .inner .info_box .mail::before{
		content: "MAIL：";
	}
	
}



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

@media screen and (max-width: 441px) {
	html,
	body,
	.wrap{
		width: 440px;
		position: relative;
	}
	.inner{
		box-sizing: border-box;
		padding: 0 20px;
		width: auto;
	}
	img{
		max-width: 100%;
	}
	.pc{
		display: none;
	}
	.sp {
		display: block;
	}
	p {
		line-height: 1.8;
		font-size: 14px;
	}

	/* スムーススクロール設定 */
	html {
		scroll-behavior: smooth;
	}
	:root {
		--header-height: 60px;
	}


/* header
------------------------------------------------------------------------*/
	header{
		top: 0;
		left: 0;
		width: 100%;
		height: 60px;
		z-index: 10000;
		position: relative;
	}
	header h1{
		font-weight: normal;
		position: absolute;
		top: 18px;
		left: 170px;
		font-size: 10px;
		line-height: 1.4;
	}
	header .header_box{
		position: fixed;
		top: 0;
		left: 0;
		width: 440px;
		height: 60px;
		box-sizing: border-box;
	}
	header .header_box.active{
		background: #f5f4ea;
	}
	header .header_box.nav-active{
		background: linear-gradient(90deg, #f5f4ea 0%, #f5f4ea 170px, #1f8c63 170px, #1f8c63 100%);
	}
	header .header_box .logo a{
		position: absolute;
		top: 15px;
		left: 10px;
		display: block;
		width: 140px;
		height: 30px;
		background: url("img/header_logo_sp.png")no-repeat;
		background-size: 140px;
		padding: 30px 0 0;
		box-sizing: border-box;
		overflow: hidden;
	}
	header .header_box .text01{
		display: none;
	}
	header .header_box .tel{
		position: absolute;
		top: 50%;
		right: 60px;
		transform: translateY(-50%);
	}
	header .header_box .tel .text02{
		display: block;
		width: 30px;
		height: 30px;
		background: url(img/tel_icon.png)center center no-repeat;
		background-size: 20px;
		padding: 30px 0 0;
		box-sizing: border-box;
		overflow: hidden;
	}
	header .header_box.nav-active .tel .text02{
		-webkit-filter: brightness(0) invert(1);
		filter: brightness(0) invert(1);
	}
	header .header_box .tel .text03{
		display: none;
	}
	header .header_box .line_btn{
		position: fixed;
		bottom: 10px;
		left: 35px;
	}
	header .header_box .line_btn a{
		display: block;
		width: 180px;
		height: 40px;
		background: #22ba4f url("img/line_icon.png")left 22px center no-repeat;
		background-size: 21px;
		padding: 13px 0 0 50px;
		box-sizing: border-box;
		border-radius: 5px;
		color: #fff;
		font-size: 14px;
		font-weight: bold;
		line-height: 1;
	}
	header .header_box .mail_btn{
		position: fixed;
		bottom: 10px;
		right: 35px;
	}
	header .header_box .mail_btn a{
		display: block;
		width: 180px;
		height: 40px;
		background: #3fa7d1 url("img/mail_icon.png")left 22px center no-repeat;
		background-size: 16px;
		padding: 13px 0 0 46px;
		box-sizing: border-box;
		border-radius: 5px;
		color: #fff;
		font-size: 14px;
		font-weight: bold;
		line-height: 1;
		pointer-events: auto;
	}


/* key
------------------------------------------------------------------------*/
	.key {
		background: #f5f4ea;
		margin-top: -60px;
		padding-bottom: 170px;
		position: relative;
		z-index: -1;
	}
	.key::before{
		content: "";
		width: calc(100% + 60px);
		height: 375px;
		background: #1f8c63;
		transform: translateX(-50%) rotate(-8deg);
		transform-origin: center;
		position: absolute;
		bottom: 0;
		left: 50%;
		z-index: -3;
	}
	.key::after{
		content: "";
		width: 288px;
		height: 452px;
		background: url(img/key_img01_sp.png)no-repeat;
		position: absolute;
		top: 226px;
		right: -77px;
		z-index: -1;
	}

	/* loop */
	.key .key_img{
		width: calc(100% + 60px);
		height: 160px;
		background: url(img/key_img02_sp.png) repeat-x 0 0/auto 100%;
		background-size: 1182px;
		animation: loop 40s linear infinite;
		transform: translateX(-50%) rotate(-8deg);
		transform-origin: center;
	
		position: absolute;
		bottom: 59px;
		left: 50%;
		z-index: -2;
	}
	
	@keyframes loop {
		from {
			background-position: 0 0;
		}
		to {
			background-position: -800px 0;
		}
	}

	.key .key_text_box{
		padding: 90px 25px 0;
		box-sizing: border-box;
		position: relative;
	}
	.key .key_text_box::after{
		content: "";
		background: url(img/key_text03_sp.png)no-repeat;
		background-size: 117px;
		width: 117px;
		height: 260px;
		position: absolute;
		bottom: -5px;
		right: 2px;
	}
	.key .key_text_box .text01{
		color: #777;
		font-size: 15px;
		font-weight: bold;
		line-height: 1;
		margin: 0 0 20px -6px;
	}
	.key .key_text_box .text01::before{
		content: "[";
		padding: 0 7px;
	}
	.key .key_text_box .text01::after{
		content: "]";
		padding-left: 7px;
	}
	.key .key_text_box .text02{
		background: url(img/key_text01_sp.png)no-repeat;
		background-size: 332px;
		width: 332px;
		height: 0;
		padding-top: 97px;
		overflow: hidden;
	}
	.key .key_text_box ul{
		display: flex;
		flex-direction: column;
		gap: 5px;
		margin: 30px 0 5px;
	}
	.key .key_text_box ul li{
		font-size: 14px;
		line-height: 1;
		font-weight: bold;
		color: #1f8c63;
		background: url(img/home_accent01.png)center left 18px no-repeat,#fff;
		background-size: 19px;
		border: 2px solid #1f8c63;
		border-radius: 35px;
		padding: 10px 0 8px 43px;
		box-sizing: border-box;
	}
	.key .key_text_box ul li:nth-of-type(1){
		width: 190px;
	}
	.key .key_text_box ul li:nth-of-type(2){
		width: 265px;
	}
	.key .key_text_box ul li:nth-of-type(3){
		width: 220px;
	}
	.key .key_text_box ul li:nth-of-type(4){
		width: 230px;
	}
	.key .key_text_box .text03{
		background: url(img/key_text02_sp.png)no-repeat;
		background-size: 310px;
		width: 310px;
		height: 0;
		padding-top: 160px;
		overflow: hidden;
		margin-left: -20px;
	}
	

/* nav
------------------------------------------------------------------------*/
	#nav {
		display: none;
		width: 100%;
		position: fixed;
		z-index: 100;
	}
	#nav-btn.active + #nav{
		width: 270px;
		display: block;
		background: #1f8c63;
		max-height: 100vh;
		max-height: 100dvh;
		top: 59px;
		right: 0;
		margin-left: auto;
		z-index: 10000;
		position: relative;
	}
	#nav ul{
		display: flex;
		flex-wrap: wrap;
		align-content: flex-start;
		gap: 32px 0;
		height: 100vh;
		height: 100dvh;
		padding: 60px 55px 70px;
		box-sizing: border-box;
		overflow-y: scroll;
	}
	#nav ul li{
		width: 100%;
	}
	#nav ul li a{
		display: inline-block;
		color: #fff;
		font-size: 16px;
		font-weight: bold;
	}	
	#nav-btn {
		width: 60px;
		height: 60px;
		box-sizing: border-box;
		position: fixed;
		top: 0;
		right: 0;
		z-index: 10010;
		transition: all .5s;
	}
	.menu-btn {
		position: absolute;
		width: 40px;
		height: 40px;
		border-radius: 50%;
		background: #1f8c63;
		top: 0;
		bottom: 0;
		right: 0;
		left: 0;
		margin: auto;
	}
	#nav-btn.active .menu-btn {
		background: #fff;
	}
	.menu-btn,
	header .menu-btn span {
		display: inline-block;
		transition: all .4s;
		box-sizing: border-box;
	}
	.menu-btn span {
		position: absolute;
		left: 50%;
		transform: translateX(-50%);
		width: 12px;
		height: 2px;
		background: #fff;
	}
	.menu-btn span:nth-of-type(1) {
		top: 14px;
		transition: all 0.5s;
	}
	.menu-btn span:nth-of-type(2) {
		top: 19px;
		transition: all 0.5s;
	}
	.menu-btn span:nth-of-type(3) {
		top: 24px;
		transition: all 0.5s;
	}
	#nav-btn.active span {
		background: #1f8c63;
	}
	#nav-btn.active span:nth-of-type(1),
	#nav-btn.active span:nth-of-type(2),
	#nav-btn.active span:nth-of-type(3) {
		top: 19px;
	}
	#nav-btn.active span:nth-of-type(1) {
		transform: translate(-50%, 0) rotate(-45deg);
		transition: all 0.5s;
	}
	#nav-btn.active span:nth-of-type(2) {
		opacity: 0;
		transition: all 0.5s;
	}
	#nav-btn.active span:nth-of-type(3) {
		transform: translate(-50%, 0) rotate(45deg);
		transition: all 0.5s;
	}


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

	/* cont01 */
	.home .cont01{
		background: #f5f4ea;
		padding: 160px 0 100px;
		position: relative;
		z-index: -2;
	}
	.home .cont01 .inner{
		position: relative;
	}
	.home .cont01 .inner::before{
		content: "";
		background: url(img/home_img01.png)no-repeat;
		background-size: 200px;
		width: 200px;
		height: 224px;
		position: absolute;
		top: -158px;
		right: -20px;
	}
	.home .cont01 .inner::after{
		content: "";
		background: url(img/home_img02.png)no-repeat;
		background-size: 314px;
		width: 314px;
		height: 403px;
		position: absolute;
		top: -35px;
		left: -115px;
		z-index: -2;
	}
	.home .cont01 .inner h2{
		background: url("img/home_text01.png")center top no-repeat;
		background-size: 160px;
		padding: 47px 0 0;
		font-size: 14px;
		text-align: center;
		line-height: 1;
	}
	.home .cont01 .inner .text01{
		margin-top: 50px;
		text-align: center;
		font-size: 20px;
		line-height: 1;
		font-weight: bold;
	}
	.home .cont01 .inner .text01 .span01{
		display: inline-block;
		font-size: 34px;
		font-weight: bold;
		color: #fff;
		background: url(img/home_cont01_icon01.png)center right 18px no-repeat,#1f8c63;
		background-size: 42px;
		border-radius: 5px;
		margin: 20px 10px 0 0;
		padding: 17px 70px 13px 15px;
		box-sizing: border-box;
	}
	.home .cont01 .inner .text01 .span02{
		display: inline-block;
		font-size: 34px;
		font-weight: bold;
		color: #fff;
		background: url(img/home_cont01_icon02.png)center right 25px no-repeat,#3fa7d1;
		background-size: 25px;
		border-radius: 5px;
		margin: 20px 0 27px 0;
		padding: 17px 65px 13px 20px;
		box-sizing: border-box;
	}
	.home .cont01 .inner .text01 .span03{
		font-size: 24px;
		font-weight: bold;
		letter-spacing: 1px;
	}
	.home .cont01 .inner .text01 .span04{
		font-size: 30px;
		font-weight: bold;
		background-image: radial-gradient(circle at center, #222 13%, transparent 18%);
		background-position: top right;
		background-repeat: repeat-x;
		background-size: 1em 0.3em;
		padding-top: 13px;
	}
	.home .cont01 .inner .box01{
		margin-top: 40px;
		position: relative;
	}
	.home .cont01 .inner .box01::before{
		content: "";
		background: url(img/home_img06.png)no-repeat;
		background-size: 300px;
        width: 300px;
        height: 345px;
        position: absolute;
        top: -41px;
        left: -100px;
		z-index: -1;
	}
	.home .cont01 .inner .box01 ul{
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 120px 0;
	}
	.home .cont01 .inner .box01 ul li{
		background: url(img/home_img03.png)top 35px center no-repeat,#fff;
		background-size: 105px;
		width: 240px;
		height: 240px;
		border-radius: 50%;
		font-size: 20px;
		line-height: 1.385;
		font-weight: bold;
		text-align: center;
		box-sizing: border-box;
		position: relative;
	}
	.home .cont01 .inner .box01 ul li:nth-of-type(1){
		padding-top: 155px;
		z-index: 1;
	}
	.home .cont01 .inner .box01 ul li:nth-of-type(2){
		padding-top: 100px;
		background: #ea7d3d;
		color: #ea7d3d;
	}
	.home .cont01 .inner .box01 ul li:nth-of-type(2)::before{
		content: "";
		background: url(img/home_img04.png)top center no-repeat;
		background-size: 140px;
		width: 140px;
		height: 141px;
		position: absolute;
		top: 20px;
		left: 50%;
		transform: translateX(-50%);
		z-index: 3;
	}
	.home .cont01 .inner .box01 ul li:nth-of-type(2)::after{
		width: 100%;
		content: "あさひ不動産";
		color: #fff;
		position: absolute;
		top: 170px;
		left: 50%;
		transform: translateX(-50%);
		z-index: 4;
	}
	.home .cont01 .inner .box01 ul li:nth-of-type(3){
		padding-top: 174px;
        background: url(img/home_img05.png) top 40px center no-repeat, #fff;
        background-size: 105px;
        z-index: 1;
	}
	.home .cont01 .inner .box01 .arrow01,
	.home .cont01 .inner .box01 .arrow02,
	.home .cont01 .inner .box01 .arrow03,
	.home .cont01 .inner .box01 .arrow04{
		width: 60px;
		height: 200px;
		font-size: 16px;
		line-height: 1.333;
		font-weight: bold;
		writing-mode: vertical-rl;
		color: #fff;
		padding: 23px 7px 0 0;
		box-sizing: border-box;
		position: absolute;
	}
	.home .cont01 .inner .box01 .arrow01{
		padding-top: 62px;
		background: #1f8c63;
		top: 185px;
        left: 240px;
	}
	.home .cont01 .inner .box01 .arrow01::before{
		content: "";
		width: 0;
		height: 0;
		border-style: solid;
		border-left: 30.5px solid transparent;
		border-right: 30.5px solid transparent;
		border-top: 25px solid #1f8c63;
		border-bottom: 0;
		position: absolute;
		top: 199px;
		left: 0.5px;		
	}
	.home .cont01 .inner .box01 .arrow02{
		padding-top: 62px;
		background: #ea7d3d;
		bottom: 225px;
		left: 240px;
		z-index: 2;
	}
	.home .cont01 .inner .box01 .arrow02::before{
		content: "";
		width: 0;
		height: 0;
		border-style: solid;
		border-left: 30.5px solid transparent;
		border-right: 30.5px solid transparent;
		border-top: 25px solid #ea7d3d;
		border-bottom: 0;
		position: absolute;
		top: 199px;
		left: 0.5px;
	}
	.home .cont01 .inner .box01 .arrow03{
		background: #ea7d3d;
		top: 225px;
		right: 240px;
		z-index: 2;
	}
	.home .cont01 .inner .box01 .arrow03::before{
		content: "";
		width: 0;
		height: 0;
		border-left: 30.5px solid transparent;
		border-right: 30.5px solid transparent;
		border-bottom: 25px solid #ea7d3d;
		border-top: 0;
		position: absolute;
		top: -24px;
		right: -1px;
	}
	.home .cont01 .inner .box01 .arrow04{
		padding-bottom: 32px;
		background: #3fa7d1;
		bottom: 185px;
		right: 240px;
	}
	.home .cont01 .inner .box01 .arrow04::before{
		content: "";
		width: 0;
		height: 0;
		border-style: solid;
		border-left: 30.5px solid transparent;
		border-right: 30.5px solid transparent;
		border-bottom: 25px solid #3fa7d1;
		border-top: 0;
		position: absolute;
		top: -24px;
		right: -1px;
	}
	.home .cont01 .inner .box02{
		background: #f5f4ea;
		border: 4px solid #ea7d3d;
		border-radius: 10px;
		margin-top: 40px;
		padding: 25px 20px;
		box-sizing: border-box;
		position: relative;
	}
	.home .cont01 .inner .box02 .text02{
		color: #ea7d3d;
		font-size: 22px;
		line-height: 1;
		font-weight: bold;
		text-align: center;
	}
	.home .cont01 .inner .box02 .text02 span{
		display: block;
		font-size: 16px;
		line-height: 1;
		font-weight: bold;
		margin-bottom: -12px;
	}
	.home .cont01 .inner .box02 ul{
		display: flex;
		gap: 0 10px;
		margin-top: 20px;
	}
	.home .cont01 .inner .box02 ul li{
		width: 160px;
		background: url(img/home_img07.png)top center no-repeat;
		background-size: 110px;
		font-size: 16px;
		line-height: 1.2;
		font-weight: bold;
		text-align: center;
		padding-top: 115px;
	}
	.home .cont01 .inner .box02 ul li:nth-of-type(2){
		background: url(img/home_img08.png)top center no-repeat;
		background-size: 110px;
	}
	.home .cont01 .inner .box02 ul li:nth-of-type(3){
		background: url(img/home_img09.png)top center no-repeat;
		background-size: 110px;
	}
	.home .cont01 .inner .point_box{
		margin: 60px 0 0;
		display: flex;
		flex-direction: column;
		gap: 40px 0;
	}
	.home .cont01 .inner .point_box .cont{
		display: flex;
		flex-direction: column-reverse;
		gap: 20px 0;
		padding: 20px;
		box-sizing: border-box;
		position: relative;
	}
	.home .cont01 .inner .point_box .cont:nth-of-type(odd){
		z-index: -1;
	}
	.home .cont01 .inner .point_box .cont::before{
		content: "";
		background: #fff;
		width: 400px;
		height: 100%;
		border-radius: 10px;
		position: absolute;
		top: 0;
		left: 0;
		z-index: -1;
	}
	.home .cont01 .inner .point_box .cont:nth-of-type(1)::after{
		content: "";
		background: url(img/home_img10.png)no-repeat;
		background-size: 135px;
        width: 135px;
        height: 167px;
        position: absolute;
        top: 168px;
        right: -12px;
	}
	.home .cont01 .inner .point_box .cont:nth-of-type(2)::after{
		content: "";
		background: url(img/home_img11.png)no-repeat;
		background-size: 220px;
        width: 220px;
        height: 317px;
        position: absolute;
        bottom: -305px;
        left: -28px;
		z-index: 1;
	}
	.home .cont01 .inner .point_box .cont:nth-of-type(3)::after{
		content: "";
		background: url(img/home_img12.png)no-repeat;
        background-size: 200px;
        width: 200px;
        height: 293px;
        position: absolute;
        top: 31px;
        right: -80px;
	}
	.home .cont01 .inner .point_box .cont:nth-of-type(4)::after{
		content: "";
		background: url(img/home_img13.png)no-repeat;
        background-size: 215px;
        width: 215px;
        height: 130px;
        position: absolute;
        bottom: -86px;
        right: -13px;
	}
	.home .cont01 .inner .point_box .cont .text_box h3{
		background: url(img/home_text02.png)top left 17px no-repeat;
		background-size: 65px;
		font-size: 28px;
		line-height: 1;
		padding-top: 30px;
		margin-bottom: 20px;
		position: relative;
	}
	.home .cont01 .inner .point_box .cont:nth-of-type(2) .text_box h3{
		background: url(img/home_text03.png)top left 17px no-repeat;
		background-size: 66px;
	}
	.home .cont01 .inner .point_box .cont:nth-of-type(3) .text_box h3{
		background: url(img/home_text04.png)top left 17px no-repeat;
		background-size: 66px;
	}
	.home .cont01 .inner .point_box .cont:nth-of-type(4) .text_box h3{
		background: url(img/home_text05.png)top left 17px no-repeat;
		background-size: 66px;
	}
	.home .cont01 .inner .point_box .cont .text_box h3::first-letter{
		color: #1f8c63;
	}
	.home .cont01 .inner .point_box .cont .text_box h3::before{
		content: "";
		background: #1f8c63;
		width: 8px;
		height: 8px;
		border-radius: 50%;
		position: absolute;
		top: 3px;
		left: 0;
	}
	.home .cont01 .inner .point_box .cont .text_box p{
		font-size: 16px;
		font-weight: bold;
		line-height: 1.85;
	}


	/* cont02 */
	.home .cont02{
		background: url(img/home_cont02_bg.png)top center no-repeat,#1f8c63;
		padding: 80px 0;
	}
	.home .cont02 .inner h2{
		background: url("img/home_text06.png")center top no-repeat;
		background-size: 190px;
		padding: 47px 0 0;
		color: #fff;
		font-size: 14px;
		text-align: center;
		line-height: 1;
	}
	.home .cont02 .inner ul.thought{
		display: flex;
		flex-wrap: wrap;
		gap: 20px 0;
		margin-top: 50px;
	}
	.home .cont02 .inner ul.thought li{
		background: url(img/home_accent01.png)center left 31px no-repeat,#fff;
		background-size: 27px;
		font-size: 18px;
		line-height: 1;
		font-weight: bold;
		padding: 18px 35px 16px 65px;
		box-sizing: border-box;
		border-radius: 60px;
		position: relative;
	}
	.home .cont02 .inner ul.thought li::before{
		content: "";
		background: url(img/home_accent03.png)no-repeat;
		background-size: 20px;
		width: 20px;
		height: 17px;
		position: absolute;
		bottom: -16px;
		left: 73px;
	}
	.home .cont02 .inner ul.thought li:nth-of-type(2):before{
		background: url(img/home_accent02.png)no-repeat;
		background-size: 20px;
		left: auto;
		right: 187px;
	}
	.home .cont02 .inner ul.thought li:nth-of-type(3):before{
		background: url(img/home_accent02.png)no-repeat;
		background-size: 20px;
		left: auto;
		right: 69px;
	}
	.home .cont02 .inner ul.thought li:nth-of-type(4):before{
		left: 75px;
	}
	.home .cont02 .inner .case_box01,
	.home .cont02 .inner .case_box02{
		background: #fff;
		border-radius: 10px;
		padding: 28px 20px 35px;
		box-sizing: border-box;
	}
	.home .cont02 .inner .case_box01{
		margin-top: 55px;
		padding: 28px 20px 30px;
	}
	.home .cont02 .inner .case_box02{
		margin-top: 40px;
	}
	.home .cont02 .inner h3{
		background: url(img/home_cont02_icon01.png)top left no-repeat;
		background-size: 17px;
		font-size: 16px;
		line-height: 1;
		padding: 2px 0 0 30px;
	}
	.home .cont02 .inner .case_box02 h3{
		background: url(img/home_cont02_icon04.png)top left no-repeat;
		background-size: 18px;
		padding: 2px 0 0 28px;
	}
	.home .cont02 .inner .text01{
		background: #f5f4ea;
		border-radius: 10px;
		margin: 16px 0 25px;
		padding: 20px;
		box-sizing: border-box;
		position: relative;
	}
	.home .cont02 .inner .text01::before{
		content: "";
		background: url(img/home_img18.png)no-repeat;
		background-size: 180px;
		width: 180px;
		height: 188px;
		position: absolute;
        top: -151px;
        right: -62px;
		z-index: 1;
	}
	.home .cont02 .inner .case_box02 .text01::before{
		background: url(img/home_img21.png)no-repeat;
		background-size: 150px;
		width: 150px;
		height: 150px;
		top: -120px;
        right: -15px;
	}
	.home .cont02 .inner .case_box01 .text01{
		font-size: 16px;
		line-height: 1.4;
		font-weight: bold;
	}
	.home .cont02 .inner .case_box01 .text01 span{
		font-size: 18px;
		color: #1f8c63;
		font-weight: bold;
	}
	.home .cont02 .inner .case_box01 .flex_box01{
		display: flex;
		flex-direction: column;
		gap: 28px 0;
	}
	.home .cont02 .inner .case_box01 .flex_box01 .box{
		position: relative;
	}
	.home .cont02 .inner .case_box01 .flex_box01 .box:nth-of-type(1)::before{
		content: "";
		background: url(img/home_accent04.png)no-repeat;
		background-size: 40px;
		width: 40px;
		height: 40px;
		position: absolute;
		bottom: -24px;
		left: 50%;
		transform: translateX(-50%) rotate(90deg);
	}
	.home .cont02 .inner .case_box01 .flex_box01 .box .text02{
		width: 100%;
		font-size: 16px;
		font-weight: bold;
		text-align: center;
		color: #fff;
		background: #1f8c63;
		border-radius: 0 0 10px 10px;
		padding: 5px 0;
		position: absolute;
		left: 0;
		bottom: 0;
	}
	.home .cont02 .inner .case_box01 .flex_box01 .box:nth-of-type(2) .text02{
		background: #ea7d3d;
	}
	.home .cont02 .inner .case_box01 .flex_box02{
		background: #f5f4ea;
		border-radius: 10px;
		display: flex;
		flex-direction: column;
		gap: 120px;
		margin-top: 30px;
		padding: 25px 20px;
		box-sizing: border-box;
		position: relative;
	}
	.home .cont02 .inner .case_box01 .flex_box02::before{
		content: "";
		background: url(img/home_cont02_icon05.png)no-repeat;
		background-size: 80px;
		width: 80px;
		height: 80px;
		position: absolute;
		top: 50%;
        left: 20px;
        transform: translateY(-50%);
	}
	.home .cont02 .inner .case_box01 .flex_box02 .box{
		display: flex;
		justify-content: space-between;
		align-items: center;
		position: relative;
	}
	.home .cont02 .inner .case_box01 .flex_box02 .box:nth-of-type(1){
		padding-bottom: 30px;
	}
	.home .cont02 .inner .case_box01 .flex_box02 .box::before{
		content: "";
		background: url(img/home_accent05.png)no-repeat;
		background-size: 40px;
		width: 40px;
		height: 4px;
		position: absolute;
		bottom: 12px;
		left: 20px;
		transform: rotate(90deg);
	}
	.home .cont02 .inner .case_box01 .flex_box02 .box:nth-of-type(2)::before{
		top: -30px;
	}
	.home .cont02 .inner .case_box01 .flex_box02 .box .ttl{
		font-size: 16px;
		line-height: 1;
		font-weight: bold;
		background: url(img/home_cont02_icon02.png)top center no-repeat;
		background-size: 30px;
		padding-top: 40px;
		box-sizing: border-box;
	}
	.home .cont02 .inner .case_box01 .flex_box02 .box:nth-of-type(2) .ttl{
		font-size: 14px;
		background: url(img/home_cont02_icon03.png)top center no-repeat;
		background-size: 49px;
		padding-top: 52px;
	}
	.home .cont02 .inner .case_box01 .flex_box02 .box .text03{
		width: 220px;
		font-size: 16px;
		line-height: 1.667;
		font-weight: bold;
		padding-left: 20px;
		box-sizing: border-box;
		position: relative;
	}
	.home .cont02 .inner .case_box01 .flex_box02 .box .text04{
		width: 220px;
		font-size: 20px;
		line-height: 1;
		font-weight: bold;
		padding-left: 20px;
		box-sizing: border-box;
		position: relative;
	}
	.home .cont02 .inner .case_box01 .flex_box02 .box .text03::before,
	.home .cont02 .inner .case_box01 .flex_box02 .box .text04::before{
		content: "";
		background: #1f8c63;
		width: 2px;
		height: 60px;
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
		left: 0;
	}
	.home .cont02 .inner .case_box01 .text05{
		width: 215px;
		font-size: 20px;
		font-weight: bold;
		color: #3fa7d1;
		padding-right: 15px;
		text-align: center;
		position: absolute;
		bottom: 185px;
        right: 38px;
	}
	.home .cont02 .inner .case_box01 .text05::before{
		content: "";
		background: url(img/home_accent06.png)no-repeat;
		background-size: 15px;
		width: 15px;
		height: 28px;
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
		left: 10px;
	}
	.home .cont02 .inner .case_box01 .text05::after{
		content: "";
		background: url(img/home_accent07.png)no-repeat;
		background-size: 15px;
		width: 15px;
		height: 28px;
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
		right: 10px;
	}
	.home .cont02 .inner .case_box02 .text01{
		font-size: 18px;
		line-height: 1.4;
		font-weight: bold;
	}
	.home .cont02 .inner .case_box02 .text01 span{
		color: #1f8c63;
		font-weight: bold;
	}
	.home .cont02 .inner .case_box02 ul{
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		gap: 10px 15px;
	}
	.home .cont02 .inner .case_box02 ul li{
		width: 172px;
		background: url(img/home_img22.png)top center no-repeat;
		background-size: 172px;
		font-size: 16px;
		line-height: 1.333;
		font-weight: bold;
		text-align: center;
		padding-top: 177px;
	}
	.home .cont02 .inner .case_box02 ul li:nth-of-type(2){
		background: url(img/home_img23.png)top center no-repeat;
		background-size: 172px;
	}
	.home .cont02 .inner .case_box02 ul li:nth-of-type(3){
		background: url(img/home_img24.png)top center no-repeat;
		background-size: 172px;
	}
	.home .cont02 .inner .case_box02 ul li:nth-of-type(4){
		background: url(img/home_img25.png)top center no-repeat;
		background-size: 172px;
	}


	/* cont03 */
	.home .cont03{
		background: #f5f4ea;
		padding: 70px 0 0;
	}
	.home .cont03 h2{
		background: url("img/home_text07.png")center top no-repeat;
		background-size: 90px;
		padding: 47px 0 0;
		font-size: 14px;
		text-align: center;
		line-height: 1;
	}
	.home .cont03 .flow_box{
		margin: 40px 0 0 15px;
	}
	.home .cont03 .flow_box .swiper-slide{
		background: url(img/home_cont03_bg01.png)no-repeat;
		background-size: 400px;
		width: 400px;
		height: 345px;
		box-sizing: border-box;
		position: relative;
	}
	.home .cont03 .flow_box .slide05{
		background: url(img/home_cont03_bg02.png)no-repeat;
		background-size: 350px;
	}
	.home .cont03 .flow_box .swiper-slide .box{
		width: 290px;
		background: #fff;
		border: 2px solid #1f8c63;
		border-radius: 10px;
		padding: 15px 15px 15px 20px;
		box-sizing: border-box;
		position: absolute;
		top: 193px;
		left: -30px;
	}
	.home .cont03 .flow_box .swiper-slide .box h3{
		font-size: 18px;
		background: url(img/home_no01.png)top 3px left no-repeat;
		background-size: 25px;
		line-height: 1.5;
		padding-left: 40px;
		box-sizing: border-box;
		position: relative;
	}
	.home .cont03 .flow_box .slide01 .box h3{
		letter-spacing: -0.5px;
	}
	.home .cont03 .flow_box .slide02 .box h3{
		background: url(img/home_no02.png)top 3px left no-repeat;
		background-size: 25px;
	}
	.home .cont03 .flow_box .slide03 .box h3{
		background: url(img/home_no03.png)top 3px left no-repeat;
		background-size: 25px;
	}
	.home .cont03 .flow_box .slide04 .box h3{
		background: url(img/home_no04.png)top 3px left no-repeat;
		background-size: 25px;
	}
	.home .cont03 .flow_box .slide05 .box h3{
		background: url(img/home_no05.png)top 3px left no-repeat;
		background-size: 25px;
	}
	.home .cont03 .flow_box .swiper-slide .box h3::before{
		content: "";
		width: 7px;
		height: 18px;
		background: #1f8c63;
		position: absolute;
		top: 4px;
		left: -21px;
	}
	.home .cont03 .flow_box .swiper-slide .box .text01{
		font-size: 16px;
		line-height: 1.7;
		margin-top: 6px;
	}
	.home .cont03 .flow_box .swiper-slide .img{
		padding: 25px 80px 30px 30px;
		box-sizing: border-box;
	}


	/* cont04 */
	.home .cont04{
		background: #f5f4ea;
		padding: 80px 20px;
		box-sizing: border-box;
		position: relative;
	}
	.home .cont04::before{
		content: "";
		background: url(img/home_cont04_bg02_sp.png)no-repeat;
		background-size: 455px;
		width: 455px;
		height: 408px;
		position: absolute;
		bottom: 14px;
		left: 50%;
		transform: translateX(-165px);
	}
	.home .cont04 .inner{
		background: #fff;
		padding: 40px 20px 340px;
		border-radius: 10px;
		box-sizing: border-box;
		position: relative;
		overflow: hidden;
	}
	.home .cont04 .inner::before{
		content: "";
		background: url(img/home_cont04_bg01_sp.png)no-repeat;
        background-size: 450px;
        width: 450px;
        height: 403px;
		position: absolute;
		bottom: -65px;
		left: 50%;
		transform: translateX(-165px);
	}
	.home .cont04 .inner h2{
		background: url("img/home_text08.png")top left no-repeat;
		background-size: 97px;
		padding: 47px 0 0;
		font-size: 14px;
		line-height: 1;
		margin-bottom: 30px;
	}
	.home .cont04 .inner .text01{
		font-size: 20px;
		font-weight: bold;
		line-height: 1;
		margin-bottom: 18px;
	}
	.home .cont04 .inner .text02{
		font-size: 16px;
		font-weight: bold;
		line-height: 2.22;
	}
	.home .cont04 .inner .area_icon{
		font-size: 14px;
		font-weight: bold;
		line-height: 1.4;
		color: #1f8c63;
		text-align: center;
		width: 110px;
		height: 110px;
		border-radius: 50%;
		background: rgba(223,237,208,0.8);
		padding-top: 37px;
		box-sizing: border-box;
		position: absolute;
		bottom: 130px;
		left: 125px;
	}


	/* cont05 */
	.home .cont05{
		background: #f5f4ea;
		margin-top: -1px;
	}
	.home .cont05 h2{
		background: url("img/home_text09.png")center top no-repeat;
		background-size: 145px;
		padding: 47px 0 0;
		font-size: 14px;
		text-align: center;
		line-height: 1;
	}
	.home .cont05 .inner{
		display: flex;
		flex-direction: column-reverse;
		gap: 0 90px;
	}
	.home .cont05 .inner .img_box{
		padding-left: 180px;
		box-sizing: border-box;
	}
	.home .cont05 .inner .img_box .img:nth-of-type(1){
		width: 160px;
		position: absolute;
		bottom: 236px;
		left: 20px;
	}
	.home .cont05 .inner .img_box .img:nth-of-type(2){
		width: 220px;
	}
	.home .cont05 .inner .img_box .img:nth-of-type(3){
		width: 125px;
		position: absolute;
		bottom: 27px;
		left: 57px;
	}
	.home .cont05 .inner .img_box .img:nth-of-type(4){
		width: 115px;
		margin-top: 6px;
	}
	.home .cont05 .inner .text_box{
		margin: 25px 0 100px;
	}
	.home .cont05 .inner .text_box h3{
		font-size: 20px;
		line-height: 1.667;
		margin-bottom: 20px;
	}
	.home .cont05 .inner .text_box .text01{
		font-size: 16px;
		line-height: 2.25;		
	}
	.home .cont05 .inner .text_box .text01 + .text01{
		margin-top: 20px;
	}
	.home .cont05 .inner .text_box h4{
		font-size: 16px;
		margin-top: 25px;
	}
	.home .cont05 .inner .text_box h4 span{
		font-size: 20px;
		font-weight: bold;
		padding-left: 20px;
		position: relative;
	}
	.home .cont05 .inner .text_box h4 span::before{
		content: "";
		background: url(img/home_text10.png)bottom right no-repeat;
        background-size: 50px;
        width: 50px;
        height: 13px;
        position: absolute;
        top: 9px;
        right: -58px;
	}


	/* cont06 */
	.home .cont06{
		background: #f5f4ea;
		padding: 90px 20px 80px;
		text-align: center;
		box-sizing: border-box;
	}
	.home .cont06 h2{
		background: url("img/home_text11.png")center top no-repeat;
		background-size: 145px;
		padding: 47px 0 0;
		font-size: 14px;
		line-height: 1;
		margin-bottom: -45px;
		position: relative;
		z-index: 1;
	}
	.home .cont06 .inner{
		background: #fff;
		border-radius: 10px;
		padding: 75px 20px 40px;
		position: relative;
		box-sizing: border-box;
	}
	.home .cont06 .inner::before{
		content: "";
		background: url(img/home_img35.png)no-repeat;
		background-size: 120px;
		width: 120px;
		height: 208px;
		position: absolute;
		bottom: -120px;
		left: -49px;
	}
	.home .cont06 .inner::after{
		content: "";
		background: url(img/home_img36.png)no-repeat;
		background-size: 170px;
        width: 170px;
        height: 191px;
        position: absolute;
        top: -87px;
        right: -50px;
	}
	.home .cont06 .inner .text_box .text01{
		font-size: 20px;
		font-weight: bold;
		color: #1f8c63;
		line-height: 1.667;
		border-top: 1px solid #1f8c63;
		border-bottom: 1px solid #1f8c63;
		padding: 15px 0;
	}
	.home .cont06 .inner .text_box .text02{
		font-size: 16px;
		font-weight: bold;
		line-height: 1.778;
		padding: 20px 0 30px;
	}
	.home .cont06 .inner .info_box h3{
		font-size: 18px;
		line-height: 1;
		margin-bottom: 18px;
	}
	.home .cont06 .inner .info_box .place{
		font-size: 14px;
		line-height: 1.875;
	}
	.home .cont06 .inner .info_box .tel{
		font-size: 14px;
		line-height: 1.875;
	}
	.home .cont06 .inner .info_box .tel::before{
		content: "TEL：";
	}
	.home .cont06 .inner .info_box .time{
		font-size: 14px;
		line-height: 1.875;
	}
	.home .cont06 .inner .info_box .time::before{
		content: "受付時間：";
	}
	.home .cont06 .inner .info_box .mail{
		font-size: 14px;
		line-height: 1.875;
	}
	.home .cont06 .inner .info_box .mail::before{
		content: "MAIL：";
	}


	/* cont07 */
	.home .cont07{
		background: #1f8c63;
		padding: 80px 20px 0;
		box-sizing: border-box;
	}
	.home .cont07 .inner{
		background: #fff;
		border-radius: 10px;
		padding: 40px 20px 60px;
		box-sizing: border-box;
		position: relative;
	}
	.home .cont07 .inner h2{
		background: url("img/home_text12.png")center top no-repeat;
		background-size: 145px;
		padding: 47px 0 0;
		font-size: 14px;
		line-height: 1;
		text-align: center;
	}
	.home .cont07 .inner .text01{
		font-size: 18px;
		line-height: 1.6;
		font-weight: bold;
		text-align: center;
		margin-top: 25px;
	}
	.home .cont07 .inner .text02{
		font-size: 14px;
		font-weight: bold;
		line-height: 1;
		text-align: center;
		margin-top: 15px;
	}
	.home .cont07 .inner .flex_box{
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 20px 0;
		padding: 20px;
		box-sizing: border-box;
		margin-top: 15px;
	}
	.home .cont07 .inner .flex_box .tel{
		font-size: 16px;
		line-height: 1;
		text-align: center;
		padding-right: 15px;
		position: relative;
	}
	.home .cont07 .inner .flex_box .tel::before{
		content: "";
		background: url(img/tel_icon.png)top left no-repeat;
		background-size: 20px;
		width: 20px;
		height: 28px;
		position: absolute;
		top: 0;
		left: -3px;
	}
	.home .cont07 .inner .flex_box .tel span{
		display: block;
		width: 240px;
		height: 0;
		background: url(img/tel_text.png)no-repeat top center;
		background-size: 240px;
		overflow: hidden;
		padding-top: 42px;
		margin-left: 20px;
	}
	.home .cont07 .inner .flex_box .line a{
		display: block;
		background: url(img/line_icon.png)center left 55px no-repeat,#22ba4f;
		background-size: 24px;
        width: 265px;
        height: 45px;
        border-radius: 6px;
        font-size: 16px;
        line-height: 44px;
        font-weight: bold;
        color: #fff;
        text-align: center;
        padding-left: 26px;
        box-sizing: border-box;
	}
	.home .cont07 .inner .text03{
		font-size: 12px;
		line-height: 2;
		text-indent: -1em;
		padding-left: 1em;
		margin-top: 12px;
	}
	.home .cont07 .inner .text03 + .text03{
		margin-top: 0;
	}
	.home .cont07 .inner .text03::before{
		content: "※";
	}
	.home .cont07 .inner table {
		width: 360px;
		margin: 10px auto 0;
		border-top: 1px solid #ccc;
		border-bottom: 1px solid #ccc;
	}
	.home .cont07 .inner table th{
		display: block;
		width: 100%;
		padding: 18px 0;
		box-sizing: border-box;
		font-size: 16px;
		font-weight: bold;
		line-height: 1.5;
		text-align: left;
		vertical-align: middle;
		position: relative;
	}
	.home .cont07 .inner table th span{
		position: absolute;
		top: 50%;
		right: 0;
		transform: translateY(-50%);
		width: 50px;
		height: 25px;
		background: #3fa7d1;
		border-radius: 5px;
		color: #fff;
		font-size: 14px;
		line-height: 25px;
		text-align: center;
	}
	.home .cont07 .inner table td{
		display: block;
		width: 100%;
		box-sizing: border-box;
		vertical-align: middle;
		font-size: 14px;
	}
	.home .cont07 .inner table td input[type="text"],
	.home .cont07 .inner table td input[type="tel"],
	.home .cont07 .inner table td input[type="email"] {
		width: 100%;
		height: 100%;
		min-height: 60px;
		padding: 0 0 0 30px;
		font-size: 16px;
		line-height: 1.5;
		background: #ededed;
		box-sizing: border-box;
		border-radius: 5px;
		border: none;
		font-family: "游ゴシック体", YuGothic, "Yu Gothic Medium", sans-serif;
	}
	.home .cont07 .inner table td textarea{
		display: block;
		width: 100% !important;
		height: 200px !important;
		background: #ededed;
		border-radius: 5px;
		border: none;
		box-sizing: border-box;
		padding: 30px;
		margin-bottom: 20px;
		font-family: "游ゴシック体", YuGothic, "Yu Gothic Medium", sans-serif;
	}
	.home .cont07 .inner .privacy_check{
		text-align: center;
		margin-top: 20px;
	}
	.home .cont07 .inner .privacy_check label{
		font-weight: bold;
	}
	.home .cont07 .inner .privacy_check input{
		-webkit-appearance: checkbox;
		margin-right: 8px;
	}
	.home .cont07 .inner .privacy_check input[type="checkbox"] {
		position: relative;
		width: 16px;
		height: 16px;
		border: 1px solid #222;
		vertical-align: -6px;
		-webkit-appearance: none;
		   -moz-appearance: none;
				appearance: none;	  
		margin-right: 8px;
	}
	.home .cont07 .inner .privacy_check input[type="checkbox"]:checked:before {
		content: "";
		width: 4px;
		height: 8px;
		border-right: 2px solid #222;
		border-bottom: 2px solid #222;
		position: absolute;
		top: 1px;
		left: 4px;
		transform: rotate(50deg);
	}
	.home .cont07 .inner .button input{
		display: block;
		width: 320px;
		height: 50px;
		background: #3fa7d1;
		border: 2px solid #3fa7d1;
		border-radius: 25px;
		color: #fff;
		font-size: 16px;
		font-weight: bold;
		text-align: center;
		box-sizing: border-box;
		cursor: pointer;
		margin: 15px auto 0;
		position: relative;
		font-family: "游ゴシック体", YuGothic, "Yu Gothic Medium", sans-serif;
	}
	.home .cont07 .inner .button input:hover{
		background: #fff;
		color: #3fa7d1;
	}
	.home .cont07 .inner .privacyBox{
		width: 360px;
		margin: 25px auto 0;
		border-radius: 12px;
		border: 2px solid #1f8c63;
	}
	.home .cont07 .inner .privacyBox h3{
		margin: -1px -1px 0 -1px;
		height: 40px;
		color: #fff;
		background: #1f8c63;
		border-radius: 12px 12px 0 0;
		font-size: 16px;
		line-height: 40px;
		text-align: center;
	}
	.home .cont07 .inner .privacyBox .txtBox{
		height: 130px;
		padding: 16px 13px 16px 23px;
		box-sizing: border-box;
		overflow-y: auto;
		margin: 8px 8px 0 0;
	}
	.home .cont07 .inner .privacyBox .txtBox::-webkit-scrollbar{
		width: 5px;
	}
	.home .cont07 .inner .privacyBox .txtBox::-webkit-scrollbar-track{
		background-color: transparent;
	}
	.home .cont07 .inner .privacyBox .txtBox::-webkit-scrollbar-thumb{
		background-color: #ccc;
		border-radius: 2px;
	}
	.home .cont07 .inner .privacyBox .txtBox h4{
		font-size: 14px;
		line-height: 1.714;
	}
	.home .cont07 .inner .privacyBox .txtBox h4::before{
		content: "■";
		color: #1f8c63;
		margin-right: 5px;
	}
	.home .cont07 .inner .privacyBox .txtBox .text04{
		font-size: 14px;
		line-height: 1.714;
		margin-bottom: 20px;
	}


/* 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: #1f8c63;
		font-weight: bold;
	}


/* footer
------------------------------------------------------------------------*/
	footer{
		background: #1f8c63;
		padding-bottom: 80px;
		margin-top: -1px;
	}
	footer .inner{
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 30px 0;
		padding: 50px 20px 0;
		box-sizing: border-box;
		color: #fff;
		position: relative;
	}
	footer .inner .h_box .logo{
		width: 270px;
	}
	footer .inner .h_box .copy{
		width: 100%;
		color: #ccc;
		font-size: 12px;
		line-height: 1;
		text-align: center;
		position: absolute;
		bottom: 0;
		left: 0;
	}
	footer .inner .info_box{
		padding-bottom: 42px;
		text-align: center;
	}
	footer .inner .info_box .text01{
		font-size: 18px;
		font-weight: bold;
		line-height: 1;
		margin-bottom: 18px;
	}
	footer .inner .info_box .place{
		font-size: 14px;
		line-height: 1.875;
	}
	footer .inner .info_box .tel{
		font-size: 14px;
		line-height: 1.875;
	}
	footer .inner .info_box .tel::before{
		content: "TEL：";
	}
	footer .inner .info_box .time{
		font-size: 14px;
		line-height: 1.875;
	}
	footer .inner .info_box .time::before{
		content: "受付時間：";
	}
	footer .inner .info_box .mail{
		font-size: 14px;
		line-height: 1.875;
	}
	footer .inner .info_box .mail::before{
		content: "MAIL：";
	}

}


/* フェードアニメーション 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, 100px, 0);
	-moz-transform: scale(1, 1) translate3d(0, 100px, 0);
	-ms-transform: scale(1, 1) translate3d(0, 100px, 0);
	-o-transform: scale(1, 1) translate3d(0, 100px, 0);
	transform: scale(1, 1) translate3d(0, 100px, 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
}



/* 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 {
	padding: 10px 0px;
	box-sizing: border-box;
}
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;
}
.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%;
}
.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;
}
.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: #1f8c63;
	border: 1px solid #1f8c63;
	color: #FFFFFF;
	cursor: pointer;
}
div.mfp_buttons button#mfp_button_cancel {
	padding: 10px 100px;
	border: 1px solid #1f8c63;
	color: #1f8c63;
	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;
}
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;
}
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;
}
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;
	}
}