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

/* サイトの基本カラーに合わせて変更 */
:root {
	--main-color: #e7920a;
	--main-light-color: #f9f4e0;
	--main-dark-color: #9f0e15;
}

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

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



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

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

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

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

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




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

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

/* header ※下記はTOPページのヘッダーのみCSSが当たっているので、下層ページの修正の場合はstyle.cssも一緒に変更※
------------------------------------------------------------------------------------------------------*/
	header{
		position: fixed;
		width: 100%;
		height: 80px;
		background: #f9f4e0!important;
		z-index: 10000;
	}
	header h1{
		position: absolute;
		top: 155px;
		right: 50%;
		transform: translateX(600px);
		color: #fff;
		font-size: 12px;
		line-height: 1;
		box-sizing: border-box;
	}
	.header_box.active h1 {
		opacity: 0;
		pointer-events: none;
	}
	header .header_box{
		display: flex;
		justify-content: space-between;
		align-items: center;
		width: 1200px;
		height: 80px;
		box-sizing: border-box;
		margin: 0 auto;
		position: relative;
	}
	header .header_box .logo a{
		display: block;
		width: 300px;
		height: 51px;
		background: url("img/header_logo.svg")no-repeat;
		background-size: 100%;
		padding: 51px 0 0;
		box-sizing: border-box;
		overflow: hidden;
	}
	header .header_box .text01{
		height: 40px;
		background: #efe3c8;
		padding: 0 6px 0 13px;
		box-sizing: border-box;
		font-size: 15px;
		font-weight: bold;
		line-height: 40px;
	}
	header .header_box .text02{
		background: url("img/header_icon01.svg")left center no-repeat , url("img/header_icon02.svg")right center no-repeat;
		background-size: 11px , 9px;
		padding: 3px 16px 3px 20px;
		font-size: 14px;
		font-weight: bold;
		text-align: center;
		line-height: 1;
	}
	header .header_box .text02 span{
		display: block;
		color: #e7920a;
		font-size: 17px;
		font-weight: bold;
		line-height: 1;
		margin-bottom: 5px;
	}
	header .header_box .mail a{
		display: block;
		width: 260px;
		height: 45px;
		background: #9f0e15 url("img/header_icon03.svg")left 33px center no-repeat;
		background-size: 16px;
		padding: 0 0 0 58px;
		box-sizing: border-box;
		border-radius: 23px;
		color: #fff;
		font-size: 14px;
		font-weight: bold;
		line-height: 45px;
	}


/* nav
------------------------------------------------------------------------*/
	header .header_box nav{
		position: absolute;
		top: 100px;
		left: 0;
		z-index: 1111;
	}
	header .header_box.active nav{
		top: 80px;
	}
	header .header_box nav #nav > ul{
		display: flex;
		justify-content: center;
		align-items: center;
		width: 1200px;
		height: 45px;
		background: #fff;
		backdrop-filter: blur(10px);
		border-radius: 23px;
		box-sizing: border-box;
		position: relative;
	}
	header .header_box.active nav #nav > ul{
		border-radius: 23px;
	}
	header .header_box nav #nav > ul > li > a span,
	header .header_box nav #nav > ul > li > span{
		display: block;
		height: 45px;
		padding: 0 32px;
		font-size: 16px;
		font-weight: bold;
		line-height: 45px;
		transition: all .2s;
		cursor: pointer;
		position: relative;
	}
	header .header_box nav #nav > ul > li > a span:hover{
		color: #f29600;
		opacity: 1;
	}
	header .header_box nav #nav ul > li.mark span:hover{
		color: #f29600;
		opacity: 1;
	}
	header .header_box nav #nav ul > li.mark span::after{
		position: absolute;
		top: 50%;
		right: 16px;
		transform: translateY(-50%);
		content: "";
		width:0;
		height:0;
		border-style:solid;
		border-width: 7px 4px 0 4px;
		border-color: #F29600 transparent transparent transparent;
	}
	header .header_box nav #nav ul li.mark .sub_nav{
		position: absolute;
		top: 45px;
		left: 0;
		display: flex;
		justify-content: center;
		flex-wrap: wrap;
		gap: 0 60px;
		width: 100%;
		height: auto;
		padding: 55px 0 40px;
		box-sizing: border-box;
		opacity: 0;
		visibility: hidden;
	}
	header .header_box nav #nav ul li.mark:nth-of-type(6) .sub_nav{
		padding-bottom: 50px;
		align-items: center;
	}
	header .header_box nav #nav ul li.mark:hover .sub_nav {
		visibility: visible;
		opacity: 1;
		z-index: 10;
	}
	header .header_box nav #nav ul li.mark .sub_nav::after{
		position: absolute;
		top: 5px;
		left: 50%;
		transform: translateX(-50%);
		content: "";
		background: #fff;
		backdrop-filter: blur(10px);
		-webkit-backdrop-filter: blur(10px);
		width: 100%;
		height: calc(100% - 5px);
		border-radius: 5px;
		z-index: -1;
	}
	header .header_box nav #nav ul li.mark .sub_nav .sub_nav_ttl{
		display: block;
		background: url("img/nav_text01.svg")left top no-repeat;
		background-size: 146px;
		padding-top: 50px;
		font-size: 24px;
		font-weight: bold;
		line-height: 1;
	}
	header .header_box nav #nav ul li.mark:nth-of-type(6) .sub_nav .sub_nav_ttl{
		background: url("img/nav_text02.svg")left top no-repeat;
		background-size: 99px;
	}
	header .header_box nav #nav ul li.mark .sub_nav .h_box{
		margin: 50px 15px 0 0;
	}
	header .header_box nav #nav ul li.mark .sub_nav .h_box .button a{
		display: block;
		width: 215px;
		height: 35px;
		background: #f29600 url("img/nav_icon01.svg")left 47px center no-repeat;
		background-size: 17px;
		padding: 0 0 0 69px;
		box-sizing: border-box;
		border-radius: 18px;
		color: #fff;
		font-size: 14px;
		font-weight: bold;
		line-height: 35px;
		margin-top: 28px;
	}
	header .header_box nav #nav ul li.mark .sub_nav .plan_ttl{
		padding-bottom: 10px;
		border-bottom: 1px solid #e7920a;
		color: #f29600;
		font-size: 16px;
		font-weight: bold;
		line-height: 1;
		margin-bottom: 12px;
	}
	header .header_box nav #nav ul li.mark .sub_nav .budget_list{
		display: flex;
		justify-content: space-between;
		flex-wrap: wrap;
		width: 200px;
		font-size: 16px;
		line-height: 2.625;
	}
	header .header_box nav #nav ul li.mark .sub_nav .search_list{
		font-size: 16px;
		line-height: 2.625;
	}
	header .header_box nav #nav ul li.mark .sub_nav .option_list,
	header .header_box nav #nav ul li.mark .sub_nav .deli_list{
		font-size: 16px;
		line-height: 2.125;
	}
	header .header_box nav #nav ul li.mark .sub_nav .option_list{
		margin-bottom: 30px;
	}
	header .header_box nav #nav ul li.mark:nth-of-type(2) .sub_nav li::before{
		content: "･";
		padding-right: 4px;
	}
	header .header_box nav #nav ul li.mark:nth-of-type(2) .sub_nav li a:hover{
		text-decoration: underline;
	}
	header .header_box nav #nav ul li.mark .sub_nav .guide_list{
		display: flex;
		flex-wrap: wrap;
		gap: 0 60px;
		width: 720px;
	}
	header .header_box nav #nav ul li.mark .sub_nav .guide_list li a{
		display: block;
		width: 330px;
		height: 70px;
		background: url("img/nav_arrow01.svg")right center no-repeat;
		background-size: 25px;
		border-top: 1px solid #e7920a;
		box-sizing: border-box;
		font-size: 16px;
		line-height: 70px;
		text-decoration: none;
	}
	header .header_box nav #nav ul li.mark .sub_nav .guide_list li:nth-of-type(n+3) a{
		border-bottom: 1px solid #e7920a;
	}
	header .header_box nav #nav ul li.mark .sub_nav .guide_list li a::before{
		content: "･";
		padding-right: 4px;
	}

/* home
------------------------------------------------------------------------*/
	/* key */
	.home .key{
		background: #f9f4e0;
		top: 80px;
		position: relative;
	}
	.home .key::before{
		position: absolute;
		top: 50%;
		left: 32px;
		transform: translateY(-50%);
		content: "";
		background: url("img/home_key_text03.svg")no-repeat;
		background-size: 100%;
		width: 16px;
		height: 350px;
	}
	.home.place .key::before {
		background: none;
	}	
	.home .key #keyslideshow{
		position: relative;
		top: 0;
		left: 0;
		right: 0;
		margin: 0 auto;
		width: calc(100% - 160px);
		height: 770px;
		border-radius: 20px;
		overflow: hidden;
	}
	.home .key #keyslideshow div{
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		margin: 0 auto;
		width: 100%;
		height: 100%;
		opacity: 0.0;
		transition: none;
		z-index: 8;
	}
	.home .key #keyslideshow .active{
		z-index: 10;
		opacity: 1.0;
	}
	.home .key #keyslideshow  .last-active{
		z-index: 9;
	}
	.home .key .key-slide-box div:nth-of-type(1){
		background: url("img/home_key_bg01.png")center center/cover no-repeat;
	}
	.home .key .key-slide-box div:nth-of-type(2){
		background: url("img/home_key_bg02.png")center center/cover no-repeat;
	}
	.home .key .key-slide-box div:nth-of-type(3){
		background: url("img/home_key_bg03.png")center center/cover no-repeat;
	}
	.home .key .inner{
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50% , -50%);
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		width: 100%;
		z-index: 100;
	}
	.home .key .inner .text01{
		width: 805px;
		height: 55px;
		background: url("img/home_key_text01.svg")no-repeat;
		background-size: 100%;
		padding: 55px 0 0;
		box-sizing: border-box;
		overflow: hidden;
		filter: drop-shadow(0 0 20px rgba(0,0,0,0.4));
	}
	.home.place .key .inner .text01 {
		background: none;
        overflow: visible;
        color: #fff;
        font-size: 23px;
        font-weight: bold;
		letter-spacing: 0.04em;
        text-align: center;
        padding: 10px 0 0 0;
	}
	.home.place .key .inner .text01::before {
		content: " [ ";
		position: absolute;
		left: -10px;
	}
	.home.place .key .inner .text01::after {
		content: " ] ";
		position: absolute;
		right: -10px;
	}
	.home .key .inner .text02{
		width: 835px;
		height: 199px;
		background: url("img/home_key_text02.svg")no-repeat;
		background-size: 100%;
		padding: 199px 0 0;
		box-sizing: border-box;
		overflow: hidden;
		filter: drop-shadow(0 0 20px rgba(0,0,0,0.4));
		margin-top: 13px;
	}
	.home.place .key .inner .text02{
		background: url("img/home_key_text04.svg")no-repeat;
	}
	.home .key .inner .text03{
		display: inline-block;
		color: #fff;
		font-size: 34px;
		font-weight: bold;
		line-height: 1;
		margin-top: 30px;
		filter: drop-shadow(0 0 20px rgba(0,0,0,0.4));
		position: relative;
	}
	.home .key .inner .text03::before{
		position: absolute;
		top: 50%;
		left: -96px;
		transform: translateY(-50%);
		content: "";
		background: #fff;
		width: 84px;
		height: 3px;
	}
	.home .key .inner .text03 span{
		font-weight: bold;
	}
	.home .key .inner .text03::after{
		position: absolute;
		top: 50%;
		right: -96px;
		transform: translateY(-50%);
		content: "";
		background: #fff;
		width: 84px;
		height: 3px;
	}
	.home .key .inner .key_box{
		display: flex;
		gap: 0 15px;
		margin-top: 26px;
	}
	.home .key .inner .key_box .cont{
		background: rgba(255,255,255,0.4);
		backdrop-filter: blur(3px);
		-webkit-backdrop-filter: blur(3px);
		padding: 20px 15px 19px 22px;
		border-radius: 3px;
		box-sizing: border-box;
		position: relative;
	}
	.home .key .inner .key_box .cont::before{
		position: absolute;
		top: 50%;
		left: 0;
		transform: translateY(-50%);
		content: "";
		background: #ffd815;
		width: 3px;
		height: calc(100% - 30px);
	}
	.home .key .inner .key_box .cont .text04{
		color: #ffd815;
		font-size: 22px;
		font-weight: bold;
		line-height: 1;
		filter: drop-shadow(0 0 10px rgba(0,0,0,0.4));
	}
	.home .key .inner .key_box .cont .text05{
		color: #fff;
		font-size: 18px;
		font-weight: bold;
		line-height: 1;
		filter: drop-shadow(0 0 10px rgba(0,0,0,0.4));
		margin-top: 10px;
	}


	/* cont01 */
	.home .cont01{
		background: #f9f4e0 url("img/home_bg01.png")center bottom no-repeat;
		padding: 120px 0 710px;
		text-align: center;
		position: relative;
	}
	@media screen and (min-width: 1801px) {
		.home .cont01{
			background: url("img/home_bg01.png")center bottom /100% 855px no-repeat;
		}
	}
	.home .cont01::before{
		position: absolute;
		top: 220px;
		left: 50%;
		transform: translateX(-50%);
		content: "";
		background: url("img/slide_logo01.svg")center center repeat-x;
		background-size: 4730px;
		width: 100%;
		height: 100px;
		filter: drop-shadow(0 0 10px rgba(0,0,0,0.1));
		animation: comLogoMove 50s linear infinite;
	}
	@keyframes comLogoMove{
		0% {background-position: 4730px 0;}
		50% {background-position: 2365px 0;}
		100% {background-position: 0 0;}
	}
	.home .cont01::after{
		position: absolute;
		top: 334px;
		left: 50%;
		transform: translateX(-50%);
		content: "";
		background: url("img/slide_logo02.svg")center center repeat-x;
		background-size: 4500px;
		width: 100%;
		height: 100px;
		filter: drop-shadow(0 0 10px rgba(0,0,0,0.1));
		animation: comLogoMoveR 50s linear infinite;
	}
	@keyframes comLogoMoveR{
		100% {background-position: 4500px 0;}
		50% {background-position: 2250px 0;}
		0% {background-position: 0 0;}
	}
	.home .cont01 h2{
		color: #999;
		line-height: 1;
	}
	.home .cont01 .text01{
		color: #9f0e15;
		font-size: 24px;
		font-weight: bold;
		line-height: 1;
		margin-top: 18px;
	}
	.home .cont01 .text02{
		line-height: 2.125;
		margin-top: 287px;
	}
	.home .cont01 .thanks_box{
		display: flex;
		justify-content: space-between;
		align-items: center;
		width: 1200px;
		background: rgba(239,225,198,0.85);
		backdrop-filter: blur(3px);
		padding: 90px 20px 65px 51px;
		border-radius: 5px;
		box-sizing: border-box;
		text-align: left;
		margin: 110px auto 0;
		position: relative;
	}
	.home .cont01 .thanks_box::before{
		position: absolute;
		top: -42px;
		left: 50%;
		transform: translateX(-50%);
		content: "";
		background: url("img/home_text01.svg")no-repeat;
		background-size: 100%;
		width: 534px;
		height: 112px;
		filter: drop-shadow(18px 15px 2px rgba(0,0,0,0.15));
	}
	.home .cont01 .thanks_box h3{
		font-size: 22px;
		line-height: 1.82;
	}
	.home .cont01 .thanks_box .thanks_list{
		width: 770px;
		height: 125px;
		padding: 8px 0 0;
		box-sizing: border-box;
		overflow-y: auto;
	}
	.home .cont01 .thanks_box .thanks_list::-webkit-scrollbar {
		width: 3px;
	}
	.home .cont01 .thanks_box .thanks_list::-webkit-scrollbar-track {
		background-color: transparent;
	}
	.home .cont01 .thanks_box .thanks_list::-webkit-scrollbar-thumb {
		background-color: #999;
	}
	.home .cont01 .thanks_box .thanks_list .cont{
		display: flex;
		gap: 0 15px;
		width: 750px;
		margin-bottom: 20px;
	}
	.home .cont01 .thanks_box .thanks_list .cont .date{
		font-weight: bold;
		line-height: 1.5;
	}
	.home .cont01 .thanks_box .thanks_list .cont .text03{
		width: 600px;
		font-weight: bold;
		line-height: 1.5;
	}


	/* cont02 */
	.home .cont02{
		background: #f9f4e0;
		padding: 26px 0 160px;
		position: relative;
	}
	.home .cont02::before{
		position: absolute;
		top: -114px;
		left: 50%;
		transform: translateX(-50%);
		content: "";
		background: #f9f4e0;
		width: 141vw;
		height: 660px;
		border-radius: 50%;
	}
	.home .cont02 h2{
		background: url("img/home_text02.svg")center top no-repeat;
		background-size: 304px;
		padding: 84px 0 0;
		text-align: center;
		line-height: 1;
		z-index: 11;
		position: relative;
	}
	.home .cont02 .rank_box{
		display: flex;
		justify-content: center;
		flex-wrap: wrap;
		gap: 90px 30px;
		width: 1740px;
		margin: 80px auto 0;
		z-index: 11;
		position: relative;
	}
	@media screen and (max-width: 1740px) {
		.home .cont02 .rank_box{
			width: 1240px;
		}
	}
	.home .cont02 .rank_box .cont a{
		display: flex;
		flex-direction: column;
		width: 560px;
		background: #fff;
		border-radius: 5px;
		position: relative;
	}
	.home .cont02 .rank_box .cont a::before{
		position: absolute;
		top: -44px;
		left: 20px;
		content: "";
		background: url("img/home_text12.svg")no-repeat;
		background-size: 100%;
		width: 2150px;
		height: 1310px;
		transform: scale(0.1);
		transform-origin: left top;
		z-index: 111;
	}
	.home .cont02 .rank_box .cont:nth-of-type(2) a::before{
		background: url("img/home_text13.svg")no-repeat;
		background-size: 100%;
	}
	.home .cont02 .rank_box .cont:nth-of-type(3) a::before{
		background: url("img/home_text14.svg")no-repeat;
		background-size: 100%;
	}
	.home .cont02 .rank_box .cont:nth-of-type(4) a::before{
		background: url("img/home_text15.svg")no-repeat;
		background-size: 100%;
	}
	.home .cont02 .rank_box .cont:nth-of-type(5) a::before{
		background: url("img/home_text16.svg")no-repeat;
		background-size: 100%;
	}
	.home .cont02 .rank_box .cont:nth-of-type(6) a::before{
		background: url("img/home_text17.svg")no-repeat;
		background-size: 100%;
	}
	.home .cont02 .rank_box .cont a h3{
		line-height: 1;
		margin: 40px 50px 0;
		order: 2;
	}
	.home .cont02 .rank_box .cont a h3 span{
		display: inline-block;
		font-size: 28px;
		font-weight: bold;
		position: relative;
	}
	.home .cont02 .rank_box .cont a h3 span::after{
		position: absolute;
		top: 50%;
		left: calc(100% + 22px);
		transform: translateY(-50%);
		content: "";
		background: url("img/home_text03.svg")no-repeat;
		background-size: 100%;
		width: 77px;
		height: 16px;
	}
	.home .cont02 .rank_box .cont:nth-of-type(2) a h3 span::after{
		background: url("img/home_text04.svg")no-repeat;
		background-size: 100%;
		width: 72px;
		height: 20px;
	}
	.home .cont02 .rank_box .cont:nth-of-type(3) a h3 span::after{
		background: url("img/home_text05.svg")no-repeat;
		background-size: 100%;
		width: 130px;
		height: 20px;
	}
	.home .cont02 .rank_box .cont:nth-of-type(4) a h3 span::after{
		background: url("img/home_text06.svg")no-repeat;
		background-size: 100%;
		width: 108px;
		height: 20px;
	}
	.home .cont02 .rank_box .cont:nth-of-type(5) a h3 span::after{
		background: url("img/home_text07.svg")no-repeat;
		background-size: 100%;
		width: 102px;
		height: 16px;
	}
	.home .cont02 .rank_box .cont:nth-of-type(6) a h3 span::after{
		background: url("img/home_text08.svg")no-repeat;
		background-size: 100%;
		width: 151px;
		height: 20px;
	}
	.home .cont02 .rank_box .cont a .text01{
		padding-bottom:  25px;
		border-bottom: 1px solid #ffd815;
		font-size: 18px;
		font-weight: bold;
		line-height: 1;
		margin: 28px 50px 0;
		order: 3;
	}
	.home .cont02 .rank_box .cont:nth-of-type(2) a .text01{
		border-bottom: 1px solid #9f0e15;
	}
	.home .cont02 .rank_box .cont:nth-of-type(3) a .text01{
		border-bottom: 1px solid #333;
	}
	.home .cont02 .rank_box .cont:nth-of-type(n+4) a .text01{
		border-bottom: 1px solid #e7920a;
	}
	.home .cont02 .rank_box .cont a .price{
		font-size: 18px;
		font-weight: bold;
		line-height: 1;
		margin: 24px 50px 0;
		order: 4;
	}
	.home .cont02 .rank_box .cont a .price .span01{
		font-size: 30px;
		font-weight: bold;
		padding-left: 5px;
	}
	.home .cont02 .rank_box .cont a .price .span02{
		display: inline-block;
		height: 30px;
		background: #efe3c8;
		border-radius: 3px;
		padding: 0 20px;
		font-size: 16px;
		font-weight: bold;
		line-height: 30px;
		margin-left: 20px;
		vertical-align: top;
	}
	.home .cont02 .rank_box .cont a .button{
		height: 50px;
		background: #ffd815;
		border-radius: 0 0 5px 5px;
		text-align: center;
		margin: 30px 0 0;
		order: 5;
	}
	.home .cont02 .rank_box .cont a .button span{
		display: inline-block;
		height: 50px;
		background: url("img/home_arrow01.svg")right center no-repeat;
		background-size: 30px;
		padding-right: 40px;
		font-weight: bold;
		line-height: 50px;
	}
	.home .cont02 .rank_box .cont:nth-of-type(2) a .button{
		background: #9f0e15;
	}
	.home .cont02 .rank_box .cont:nth-of-type(2) a .button span{
		background: url("img/home_arrow02.svg")right center no-repeat;
		background-size: 30px;
		color: #fff;
	}
	.home .cont02 .rank_box .cont:nth-of-type(3) a .button{
		background: #333;
	}
	.home .cont02 .rank_box .cont:nth-of-type(3) a .button span{
		background: url("img/home_arrow03.svg")right center no-repeat;
		background-size: 30px;
		color: #fff;
	}
	.home .cont02 .rank_box .cont:nth-of-type(n+4) a .button{
		background: #e7920a;
	}
	.home .cont02 .rank_box .cont:nth-of-type(n+4) a .button span{
		background: url("img/home_arrow04.svg")right center no-repeat;
		background-size: 30px;
		color: #fff;
	}
	.home .cont02 .rank_box .cont a figure{
		display: block;
		width: 560px;
		height: 374px;
		border-radius: 5px 5px 0 0;
		overflow: hidden;
	}
	.home .cont02 .rank_box .cont a figure img{
		width: 100%;
		transform: scale(1);
		transition: all .4s;
	}
	.home .cont02 .rank_box .cont a:hover figure img{
		transform: scale(1.05);
		transition: all .4s;
	}
	.home .cont02 .sub_cont{
		display: flex;
		justify-content: center;
		gap: 0 30px;
		width: 1740px;
		margin: 60px auto 0;
	}
	@media screen and (max-width: 1740px) {
		.home .cont02 .sub_cont{
			flex-wrap: wrap;
			gap: 30px 30px;
			width: 1240px;
		}
	}
	.home .cont02 .sub_cont li a{
		display: flex;
		align-items: center;
		width: 560px;
		height: 150px;
		background: #fff url("img/home_img01.png")left center no-repeat;
		border: 2px solid #e7920a;
		border-radius: 5px;
		padding: 0 0 0 350px;
		box-sizing: border-box;
		overflow: hidden;
	}
	.home .cont02 .sub_cont li:nth-of-type(2) a{
		background: #fff url("img/home_img02.png")left center no-repeat;
	}
	.home .cont02 .sub_cont li:nth-of-type(3) a{
		background: #fff url("img/home_img03.png")left center no-repeat;
	}
	.home .cont02 .sub_cont li a span{
		background: url("img/home_text09.svg")left top no-repeat;
		background-size: 49px;
		padding-top: 22px;
		font-size: 20px;
		font-weight: bold;
		line-height: 1.4;
	}
	.home .cont02 .sub_cont li:nth-of-type(2) a span{
		background: url("img/home_text10.svg")left top no-repeat;
		background-size: 79px;
	}
	.home .cont02 .sub_cont li:nth-of-type(3) a span{
		background: url("img/home_text11.svg")left top no-repeat;
		background-size: 72px;
	}


	/* cont03 */
	.home .cont03{
		background: #f9f4e0;
		padding: 0 0 130px;
		position: relative;
	}
	.home .cont03 #slideshow{
		position: relative;
		top: 0;
		left: 0;
		right: 0;
		margin: 0 auto;
		width: 100%;
		height: 668px;
		overflow: hidden;
	}
	.home .cont03 #slideshow::before{
		position: absolute;
		top: -1px;
		left: 50%;
		transform: translateX(-50%);
		content: "";
		background: url("img/slideshow_img01.png")center top no-repeat;
		width: 1800px;
		height: 330px;
		z-index: 11;
	}
	@media screen and (min-width: 1801px) {
		.home .cont03 #slideshow::before{
			position: absolute;
			top: -1px;
			left: 50%;
			transform: translateX(-50%);
			content: "";
			background: url("img/slideshow_img01.png")center top no-repeat;
			background-size: 100%;
			width: 100vw;
			height: 330px;
			z-index: 11;
		}
	}
	.home .cont03 #slideshow div{
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		margin: 0 auto;
		width: 100%;
		height: 100%;
		opacity: 0.0;
		transition: none;
		z-index: 8;
	}
	.home .cont03 #slideshow .active{
		z-index: 10;
		opacity: 1.0;
	}
	.home .cont03 #slideshow  .last-active{
		z-index: 9;
	}
	.home .cont03 .slide-box div:nth-of-type(1){
		background: url("img/home_slide_bg01.png")center center/cover no-repeat;
	}
	.home .cont03 .slide-box div:nth-of-type(2){
		background: url("img/home_slide_bg01.png")center center/cover no-repeat;
	}
	.home .cont03 .slide-box div:nth-of-type(3){
		background: url("img/home_slide_bg01.png")center center/cover no-repeat;
	}
	.home .cont03 h2{
		line-height: 1;
		text-align: center;
		margin-top: 58px;
		z-index: 112;
		position: relative;
	}
	.home .cont03 h2::before{
		position: absolute;
		top: -90px;
		left: 50%;
		transform: translateX(-50%);
		content: "";
		background: url("img/home_text18.svg")no-repeat;
		background-size: 100%;
		width: 277px;
		height: 63px;
		filter: drop-shadow(0 0 5px rgba(249,244,224,1));
	}
	.home .cont03 .cont{
		display: flex;
		flex-direction: row-reverse;
		align-items: center;
		gap: 0 50px;
		width: 1200px;
		background: #fff;
		border-radius: 5px;
		padding: 50px;
		box-sizing: border-box;
		margin: 48px auto 0;
	}
	.home .cont03 .cont:nth-of-type(2){
		margin-top: 25px;
	}
	.home .cont03 .cont .text_box{
		display: flex;
		flex-direction: column;
		justify-content: center;
		width: 570px;
	}
	.home .cont03 .cont .text_box h3{
		font-size: 24px;
		line-height: 1;
	}
	.home .cont03 .cont .text_box .text01{
		font-size: 16px;
		font-weight: bold;
		line-height: 1.875;
		margin-top: 20px;
	}
	.home .cont03 .cont .text_box .text02{
		margin-top: 10px;
	}
	.home .cont03 .cont .text_box .text02 span {
		font-weight: bold;
	}
	.home .cont03 .cont .text_box .in_box{
		width: 530px;
		background: #f9f4e0;
		border-radius: 5px;
		padding: 26px 0 25px 32px;
		box-sizing: border-box;
		margin-top: 32px;
	}
	.home .cont03 .cont .text_box .in_box h4{
		color: #e7920a;
		font-size: 20px;
		line-height: 1.4;
		position: relative;
	}
	.home .cont03 .cont .text_box .in_box h4::before{
		position: absolute;
		top: 50%;
		left: -32px;
		transform: translateY(-50%);
		content: "";
		background: #e7920a;
		width: 3px;
		height: 75%;
	}
	.home .cont03 .cont .text_box .in_box .text03{
		font-size: 16px;
		line-height: 1.875;
		margin-top: 9px;
	}
	.home .cont03 .cont figure{
		position: relative;
	}
	.home .cont03 .cont figure::after{
		position: absolute;
		top: 10px;
		right: 7px;
		content: "";
		background: url("img/home_text19.svg")no-repeat;
		background-size: 100%;
		width: 88px;
		height: 70px;
	}
	.home .cont03 .cont:nth-of-type(2) figure::after{
		background: url("img/home_text20.svg")no-repeat;
		background-size: 100%;
		width: 101px;
		height: 70px;
	}
	.home .cont03 .feature_box{
		margin-top: 50px;
	}
	.home .cont03 .feature_box .swiper-slide{
		display: flex;
		flex-direction: column;
		width: 340px;
		height: auto;
		background: #fff;
		border-radius: 5px;
		padding: 30px 0 30px 30px;
		box-sizing: border-box;
	}
	.home .cont03 .feature_box .swiper-slide h3{
		font-size: 20px;
		line-height: 1.5;
		margin-top: 14px;
		order: 2;
	}
	.home .cont03 .feature_box .swiper-slide .text04{
		font-size: 16px;
		line-height: 1.875;
		letter-spacing: 0.8px;
		font-feature-settings: "palt" 1;
		margin: 8px 30px 0 0;
		order: 3;
	}
	.home .cont03 .feature_box .swiper-slide figure{
		position: relative;
	}
	.home .cont03 .feature_box .swiper-slide figure img{
		width: 280px;
	}
	.home .cont03 .feature_box .swiper-slide:nth-of-type(6n+1) figure::after{
		position: absolute;
		top: 12px;
		right: 40px;
		content: "";
		background: url("img/home_text21.svg")no-repeat;
		background-size: 100%;
		width: 61px;
		height: 42px;
	}
	.home .cont03 .feature_box .swiper-slide:nth-of-type(6n+2) figure::after{
		position: absolute;
		top: 12px;
		right: 40px;
		content: "";
		background: url("img/home_text22.svg")no-repeat;
		background-size: 100%;
		width: 64px;
		height: 44px;
	}
	.home .cont03 .feature_box .swiper-slide:nth-of-type(6n+3) figure::after{
		position: absolute;
		top: 12px;
		right: 40px;
		content: "";
		background: url("img/home_text23.svg")no-repeat;
		background-size: 100%;
		width: 62px;
		height: 42px;
	}
	.home .cont03 .feature_box .swiper-slide:nth-of-type(6n+4) figure::after{
		position: absolute;
		top: 12px;
		right: 40px;
		content: "";
		background: url("img/home_text24.svg")no-repeat;
		background-size: 100%;
		width: 63px;
		height: 43px;
	}
	.home .cont03 .feature_box .swiper-slide:nth-of-type(6n+5) figure::after{
		position: absolute;
		top: 12px;
		right: 40px;
		content: "";
		background: url("img/home_text25.svg")no-repeat;
		background-size: 100%;
		width: 65px;
		height: 43px;
	}
	.home .cont03 .feature_box .swiper-slide:nth-of-type(6n+6) figure::after{
		position: absolute;
		top: 12px;
		right: 40px;
		content: "";
		background: url("img/home_text26.svg")no-repeat;
		background-size: 100%;
		width: 62px;
		height: 42px;
	}
	.home .cont03 .button a{
		display: block;
		width: 560px;
		height: 50px;
		background: #e7920a;
		border: 2px solid #e7920a;
		border-radius: 25px;
		box-sizing: border-box;
		color: #fff;
		font-size: 16px;
		font-weight: bold;
		line-height: 46px;
		text-align: center;
		margin: 60px auto 0;
	}
	.home .cont03 .button a:hover{
		background: #fff;
		color: #e7920a;
	}


	/* cont04 */
	.home .cont04{
		padding: 550px 0 0;
		position: relative;
	}
	.home .cont04.active::before{
		position: fixed;
		top: 50%;
		left: 50%;
		transform: translate(-50% , -50%);
		content: "";
		width: 100%;
		height: 100%;
		background: url("img/home_bg02.png")center center /cover no-repeat;
		z-index: -1;
	}
	.home .cont04 .inner{
		padding: 130px 0;
		z-index: 11;
		position: relative;
	}
	.home .cont04 .inner::before{
		position: absolute;
		bottom: -1px;
		left: 50%;
		transform: translateX(-50%);
		content: "";
		background: #f9f4e0;
		width: 100vw;
		height: 200px;
		z-index: -1;
	}
	.home .cont04 .inner::after{
		position: absolute;
		top: 0;
		left: 50%;
		transform: translateX(-50%);
		content: "";
		background: #fff;
		width: 100vw;
		height: 100%;
		border-radius: 150px;
		z-index: -1;
	}
	@media screen and (max-width: 1260px) {
		.home .cont04 .inner::after {
			width: 100%;
			padding: 0 20px;
		}
	}
	@media screen and (max-width: 1500px) {
		.home .cont04 .inner::after{
			border-radius: 100px;
		}
	}
	.home .cont04 .inner h2{
		background: url("img/home_text27.svg")left bottom no-repeat;
		background-size: 198px;
		padding: 36px 0 0 216px;
		line-height: 1;
	}
	.home .cont04 .inner .voice_box{
		border: 2px solid #e7920a;
		border-radius: 5px;
		padding: 15px 10px 5px 60px;
		box-sizing: border-box;
		margin-top: 46px;
	}
	.home .cont04 .inner .voice_box .voice_in_box{
		height: 326px;
		overflow-y: auto;
	}
	.home .cont04 .inner .voice_box .voice_in_box::-webkit-scrollbar {
		width: 3px;
	}
	.home .cont04 .inner .voice_box .voice_in_box::-webkit-scrollbar-track {
		background-color: transparent;
	}
	.home .cont04 .inner .voice_box .voice_in_box::-webkit-scrollbar-thumb {
		background-color: #999;
	}
	.home .cont04 .inner .voice_box .voice_in_box .cont{
		display: flex;
		justify-content: space-between;
		width: 1080px;
		padding: 22px 0;
		background: url("img/home_line01.png")left bottom repeat-x;
	}
	.home .cont04 .inner .voice_box .voice_in_box .cont .h_box h3{
		font-size: 16px;
		line-height: 1.75;
	}
	.home .cont04 .inner .voice_box .voice_in_box .cont .h_box .date{
		color: #e7920a;
		font-size: 14px;
		font-weight: bold;
		line-height: 1;
		margin-top: 9px;
	}
	.home .cont04 .inner .voice_box .voice_in_box .cont .text01{
		width: 825px;
		line-height: 1.875;
	}
	.home .cont04 .inner .pickup_voice_box{
		display: flex;
		justify-content: space-between;
		margin-top: 90px;
	}
	.home .cont04 .inner .pickup_voice_box .cont{
		width: 380px;
		background: #f9f4e0;
		border-radius: 5px;
		padding: 50px 0 42px 50px;
		box-sizing: border-box;
		position: relative;
	}
	.home .cont04 .inner .pickup_voice_box .cont::before{
		position: absolute;
		top: -12px;
		left: 22px;
		content: "";
		background: url("img/home_text28.svg")no-repeat;
		background-size: 100%;
		width: 81px;
		height: 24px;
	}
	.home .cont04 .inner .pickup_voice_box .cont::after{
		position: absolute;
		top: -1px;
		left: 115px;
		content: "";
		background: #9f0e15;
		width: 245px;
		height: 2px;
	}
	.home .cont04 .inner .pickup_voice_box .cont .h_box,
	.home.place .cont04 .inner .pickup_voice_box .cont.pharmacy .h_box{
		display: flex;
		flex-direction: column-reverse;
		justify-content: center;
		min-height: 150px;
		background: url("img/home_illust01.svg")left center no-repeat;
		background-size: 150px;
		padding: 0 0 0 170px;
		box-sizing: border-box;
	}
	.home .cont04 .inner .pickup_voice_box .cont:nth-of-type(2) .h_box,
	.home.place .cont04 .inner .pickup_voice_box .cont.party01 .h_box{
		background: url("img/home_illust02.svg")left center no-repeat;
		background-size: 150px;
	}
	.home .cont04 .inner .pickup_voice_box .cont:nth-of-type(3) .h_box,
	.home.place .cont04 .inner .pickup_voice_box .cont.party02 .h_box{
		background: url("img/home_illust03.svg")left center no-repeat;
		background-size: 150px;
	}
	.home .cont04 .inner .pickup_voice_box .cont .h_box h4{
		font-size: 20px;
		line-height: 1.4;
		margin-top: 10px;
	}
	.home .cont04 .inner .pickup_voice_box .cont .h_box .date{
		font-size: 16px;
		font-weight: bold;
		line-height: 1.5;
	}
	.home .cont04 .inner .pickup_voice_box .cont .text02{
		width: 280px;
		background: url("img/home_line02.png")left top repeat-x;
		padding: 20px 0 0;
		color: #9f0e15;
		font-size: 20px;
		font-weight: bold;
		line-height: 1.5;
		margin-top: 25px;
	}
	.home .cont04 .inner .pickup_voice_box .cont .text03{
		font-size: 16px;
		line-height: 1.875;
		margin: 10px 45px 0 0;
	}


	/* cont05 */
	.home .cont05{
		background: #f9f4e0;
		padding: 130px 0;
	}
	.home .cont05 h2{
		width: 1200px;
		background: url("img/home_text29.svg")left bottom no-repeat;
		background-size: 207px;
		padding: 36px 0 0 216px;
		box-sizing: border-box;
		line-height: 1;
		margin: 0 auto;
	}
	.home .cont05 .scene_box{
		display: flex;
		justify-content: center;
		flex-wrap: wrap;
		gap: 50px 30px;
		margin-top: 50px;
	}
	@media screen and (min-width: 1801px) {
		.home .cont05 .scene_box{
			width: 1800px;
			margin: 50px auto 0;
		}
	}
	.home .cont05 .scene_box .cont a{
		display: flex;
		flex-direction: column;
		justify-content: center;
		width: 560px;
		height: 280px;
		background: #fff url("img/home_img12.png")right center no-repeat;
		border-radius: 10px 180px 10px 10px;
		padding: 0 0 0 40px;
		box-sizing: border-box;
		filter: drop-shadow(0 0 10px rgba(0,0,0,0.1));
		position: relative;
	}
	.home .cont05 .scene_box .cont:nth-of-type(2) a{
		background: #fff url("img/home_img13.png")right center no-repeat;
	}
	.home .cont05 .scene_box .cont:nth-of-type(3) a{
		background: #fff url("img/home_img14.png")right center no-repeat;
	}
	.home .cont05 .scene_box .cont:nth-of-type(4) a{
		background: #fff url("img/home_img15.png")right center no-repeat;
	}
	.home .cont05 .scene_box .cont:nth-of-type(5) a{
		background: #fff url("img/home_img16.png")right center no-repeat;
	}
	.home .cont05 .scene_box .cont:nth-of-type(6) a{
		background: #fff url("img/home_img17.png")right center no-repeat;
	}
	.home .cont05 .scene_box .cont a::after{
		position: absolute;
		top: 9px;
		right: 5px;
		content: "";
		background: url("img/home_text30.svg")no-repeat;
		background-size: 100%;
		width: 60px;
		height: 59px;
	}
	.home .cont05 .scene_box .cont:nth-of-type(2) a::after{
		background: url("img/home_text31.svg")no-repeat;
		background-size: 100%;
		width: 60px;
		height: 61px;
	}
	.home .cont05 .scene_box .cont:nth-of-type(3) a::after{
		background: url("img/home_text32.svg")no-repeat;
		background-size: 100%;
		width: 60px;
		height: 60px;
	}
	.home .cont05 .scene_box .cont:nth-of-type(4) a::after{
		background: url("img/home_text33.svg")no-repeat;
		background-size: 100%;
		width: 62px;
		height: 61px;
	}
	.home .cont05 .scene_box .cont:nth-of-type(5) a::after{
		background: url("img/home_text34.svg")no-repeat;
		background-size: 100%;
		width: 61px;
		height: 60px;
	}
	.home .cont05 .scene_box .cont:nth-of-type(6) a::after{
		background: url("img/home_text35.svg")no-repeat;
		background-size: 100%;
		width: 61px;
		height: 61px;
	}
	.home .cont05 .scene_box .cont a h3{
		font-size: 20px;
		line-height: 1.6;
	}
	.home .cont05 .scene_box .cont a .text01{
		font-size: 16px;
		line-height: 1.875;
		margin-top: 15px;
	}
	.home .cont05 .scene_box .cont a .button{
		display: block;
		width: 190px;
		height: 30px;
		background: #e7920a;
		border: 1.5px solid #e7920a;
		border-radius: 15px;
		box-sizing: border-box;
		color: #fff;
		font-size: 14px;
		font-weight: bold;
		line-height: 30px;
		text-align: center;
		margin-top: 17px;
		transition: all .4s;
	}
	.home .cont05 .scene_box .cont a:hover .button{
		background: #fff;
		color: #e7920a;
		transition: all .4s;
	}


	/* cont06 */
	.home .cont06{
		background: url("img/home_bg06.png");
		padding: 130px 0;
		position: relative;
	}
	.home .cont06 .inner{
		z-index: 111;
		position: relative;
	}
	.home .cont06 .inner .h_box{
		display: flex;
		justify-content: space-between;
		align-items: flex-end;
	}
	.home .cont06 .inner .h_box h2{
		min-width: 363px;
		background: url("img/home_text36.svg")left top no-repeat;
		background-size: 363px;
		padding: 67px 0 8px;
		line-height: 1;
	}
	.home .cont06 .inner .flow_box{
		display: flex;
		flex-flow: column wrap;
		align-content: center;
		gap: 30px 40px;
		height: 640px;
		margin-top: 40px;
		position: relative;
	}
	.home .cont06 .flow_box .cont{
		width: 580px;
		background: #fff url("img/home_icon01.svg")left 30px center no-repeat;
		background-size: 60px;
		border-radius: 5px;
		padding: 29px 0 28px 120px;
		box-sizing: border-box;
		position: relative;
	}
	.home .cont06 .flow_box .cont:nth-of-type(2){
		background: #fff url("img/home_icon02.svg")left 43px center no-repeat;
		background-size: 38px;
	}
	.home .cont06 .flow_box .cont:nth-of-type(3){
		background: #fff url("img/home_icon03.svg")left 39px center no-repeat;
		background-size: 49px;
	}
	.home .cont06 .flow_box .cont:nth-of-type(4){
		background: #fff url("img/home_icon04.svg")left 45px center no-repeat;
		background-size: 48px;
		margin-top: 30px;
	}
	.home .cont06 .flow_box .cont:nth-of-type(5){
		background: #fff url("img/home_icon05.svg")left 40px center no-repeat;
		background-size: 48px;
	}
	.home .cont06 .flow_box .cont:nth-of-type(6){
		background: #fff url("img/home_icon06.svg")left 41px center no-repeat;
		background-size: 46px;
	}
	.home .cont06 .flow_box .cont:nth-of-type(1)::after{
		position: absolute;
		top: 100%;
		left: 60px;
		content: "";
		background: url("img/home_line03.png")no-repeat;
		width: 3px;
		height: 426px;
		z-index: -1;
	}
	.home .cont06 .flow_box .cont:nth-of-type(4)::after{
		position: absolute;
		top: -30px;
		left: 60px;
		content: "";
		background: url("img/home_line03.png")no-repeat;
		width: 3px;
		height: 426px;
		z-index: -1;
	}
	.home .cont06 .flow_box .cont:nth-of-type(6)::after{
		position: absolute;
		top: 162px;
		right: 20px;
		content: "";
		background: url("img/home_text43.svg")no-repeat;
		background-size: 100%;
		width: 97px;
		height: 97px;
	}
	.home .cont06 .flow_box .cont h3{
		padding-left: 35px;
		font-size: 20px;
		line-height: 1;
	}
	.home .cont06 .flow_box .cont:nth-of-type(1) h3{
		background: url("img/home_text37.svg")left center no-repeat;
		background-size: 19px;
	}
	.home .cont06 .flow_box .cont:nth-of-type(2) h3{
		background: url("img/home_text38.svg")left center no-repeat;
		background-size: 21px;
	}
	.home .cont06 .flow_box .cont:nth-of-type(3) h3{
		background: url("img/home_text39.svg")left center no-repeat;
		background-size: 21px;
	}
	.home .cont06 .flow_box .cont:nth-of-type(4) h3{
		background: url("img/home_text40.svg")left center no-repeat;
		background-size: 21px;
	}
	.home .cont06 .flow_box .cont:nth-of-type(5) h3{
		background: url("img/home_text41.svg")left center no-repeat;
		background-size: 21px;
	}
	.home .cont06 .flow_box .cont:nth-of-type(6) h3{
		background: url("img/home_text42.svg")left center no-repeat;
		background-size: 21px;
	}
	.home .cont06 .flow_box .cont .text02{
		line-height: 1.875;
		margin: 11px 0 0 0;
	}
	.home .cont06 .flow_box .cont .text03{
		font-size: 14px;
		line-height: 1.75;
		text-indent: -1em;
		padding-left: 1em;
		margin: 4px 0 0 0;
	}
	.home .cont06 .flow_box .cont .text03::before{
		content: "※";
	}


	/* cont07 */
	.home .cont07{
		background: url("img/home_bg06.png");
		z-index: 11;
		position: relative;
	}
	.home .cont07::before{
		position: absolute;
		top: -620px;
		left: 50%;
		transform: translateX(-2120px);
		content: "";
		background: url("img/home_map.svg")center bottom no-repeat;
		background-size: 5220px;
		width: 5220px;
		height: 2300px;
		-webkit-mask-image: linear-gradient(to top, transparent, black 1.5em, black calc(100% - 50em), transparent);
		mask-image: linear-gradient(to top, transparent, black 1.5em, black calc(100% - 50em), transparent);
		z-index: 9;
	}
	.home .cont07::after{
		position: absolute;
		top: 325px;
		left: 50%;
		transform: translateX(-345px);
		content: "";
		background: #9f0e15;
		width: 20px;
		height: 20px;
		border-radius: 50%;
		z-index: 11;
	}
	.home .cont07 .inner{
		padding: 0 0 164px 700px;
		box-sizing: border-box;
		z-index: 11;
		position: relative;
	}
	.home .cont07 .inner::before{
		position: absolute;
		top: 237px;
		left: 165px;
		content: "";
		background: #9f0e15;
		width: 200px;
		height: 200px;
		border-radius: 50%;
		opacity: 0.5;
		animation: 3s circleMap ease-out infinite forwards;
	}
	.home .cont07 .inner::after{
		position: absolute;
		top: 237px;
		left: 165px;
		content: "";
		background: #9f0e15;
		width: 200px;
		height: 200px;
		border-radius: 50%;
		opacity: 0.5;
		animation: 3s circleMap ease-out 0.7s infinite forwards;
	}
		/*波形が広がるアニメーション*/
	@keyframes circleMap {
		0% {
			transform: scale(0.01);
		}
		100% {
			transform: scale(3.5);
			opacity: 0;
		}
	}
	.home .cont07 .inner h2{
		background: url("img/home_text44.svg")left top no-repeat;
		background-size: 147px;
		padding: 65px 0 0;
		line-height: 1;
		position: relative;
	}
	.home .cont07 .inner h2::after{
		position: absolute;
		top: 237px;
		left: -535px;
		content: "";
		background: #9f0e15;
		width: 200px;
		height: 200px;
		border-radius: 50%;
		opacity: 0.5;
		animation: 3s circleMap ease-out 1.4s infinite forwards;
		z-index: -1;
	}
	.home .cont07 .inner .text01{
		font-size: 24px;
		font-weight: bold;
		line-height: 1;
		margin-top: 78px;
	}
	.home .cont07 .inner .text02{
		background: url("img/home_line04.png")left top repeat-x , url("img/home_line04.png")left bottom repeat-x;
		padding: 40px 0 30px;
		font-size: 28px;
		font-weight: bold;
		line-height: 1;
		margin-top: 39px;
	}
	.home .cont07 .inner .text02 .span01{
		color: #9f0e15;
		font-weight: bold;
	}
	.home .cont07 .inner .text02 .span02{
		display: block;
		color: #9f0e15;
		font-size: 20px;
		font-weight: bold;
		margin-top: 19px;
	}
	.home .cont07 .inner .text03{
		font-size: 20px;
		font-weight: bold;
		line-height: 1.8;
		margin-top: 32px;
	}
	.home .cont07 .inner .text04{
		margin-top: 12px;
	}
	.home .cont07 .inner .button a{
		display: block;
		width: 430px;
		height: 50px;
		background: #9f0e15;
		border: 2px solid #9f0e15;
		border-radius: 25px;
		box-sizing: border-box;
		color: #fff;
		font-size: 16px;
		font-weight: bold;
		line-height: 46px;
		text-align: center;
		margin-top: 40px;
	}
	.home .cont07 .inner .button a:hover{
		background: #fff;
		color: #9f0e15;
	}


	/* cont08 */
	.home .cont08{
		background: #f9f4e0;
		padding: 130px 0;
		position: relative;
		z-index: 99;
	}
	.home .cont08 .inner .h_box{
		display: flex;
		justify-content: space-between;
		align-items: flex-end;
	}
	.home .cont08 .inner .h_box h2{
		background: url("img/home_text45.svg")left top no-repeat;
		background-size: 132px;
		padding: 70px 0 8px;
		line-height: 1;
	}
	.home.place .cont08 .inner .h_box .text01 {
		width: 700px;
	}
	.home .cont08 .inner .faq_box{
		background: #fff;
		border-radius: 10px;
		padding: 20px 20px 20px 60px;
		margin-top: 40px;
	}
	.home .cont08 .inner .faq_box dl{
		height: 300px;
		overflow-y: auto;
	}
	.home .cont08 .inner .faq_box dl::-webkit-scrollbar {
		width: 3px;
	}
	.home .cont08 .inner .faq_box dl::-webkit-scrollbar-track {
		background-color: transparent;
	}
	.home .cont08 .inner .faq_box dl::-webkit-scrollbar-thumb {
		background-color: #ccc;
	}
	.home .cont08 .inner .faq_box dl .qes{
		width: 1080px;
		background: url("img/home_line01.png")left top repeat-x;
		padding: 31px 0 29px 38px;
		box-sizing: border-box;
		font-size: 18px;
		font-weight: bold;
		line-height: 1;
		cursor: pointer;
		position: relative;
	}
	.home .cont08 .inner .faq_box dl .qes:first-of-type{
		background: none;
	}
	.home .cont08 .inner .faq_box dl .qes::before{
		position: absolute;
		top: 50%;
		left: 0;
		transform: translateY(-50%);
		content: "";
		background: url("img/home_text46.svg")no-repeat;
		background-size: 100%;
		width: 19px;
		height: 19px;
	}
	.home .cont08 .inner .faq_box dl .qes::after{
		position: absolute;
		top: 50%;
		right: 0;
		transform: translateY(-50%) rotate(180deg);
		content: "";
		background: url("img/home_arrow05.svg")no-repeat;
		background-size: 100%;
		transition: all .5s ease;
		width: 30px;
		height: 30px;
	}
	.home .cont08 .inner .faq_box dl .qes.close::after{
		position: absolute;
		top: 50%;
		right: 0;
		transform: translateY(-50%);
		content: "";
		background: url("img/home_arrow05.svg")no-repeat;
		background-size: 100%;
		transition: all .5s ease;
		width: 30px;
		height: 30px;
	}
	.home .cont08 .inner .faq_box dl .ans{
		display: none;
		padding: 0 90px 0 0;
		box-sizing: border-box;
		font-size: 16px;
		line-height: 2;
		margin-bottom: 29px;
		position: relative;
	}
	.home .cont08 .inner .faq_box dl .ans span{
		font-weight: bold;
	}
	.home .cont08 .inner .button a{
		display: block;
		width: 580px;
		height: 50px;
		background: #e7920a;
		border: 2px solid #e7920a;
		border-radius: 25px;
		box-sizing: border-box;
		color: #fff;
		font-size: 16px;
		font-weight: bold;
		line-height: 46px;
		text-align: center;
		margin: 60px auto 0;
	}
	.home .cont08 .inner .button a:hover{
		background: #fff;
		color: #e7920a;
	}


	/* cont09 */
	.home .cont09{
		background: url("img/home_bg03.png");
		overflow: hidden;
		position: relative;
	}
	.home .cont09 .inner{
		padding: 130px 0;
		color: #fff;
		text-align: center;
		position: relative;
	}
	.home .cont09 .inner::before{
		position: absolute;
		top: 50%;
		left: -240px;
		transform: translateY(-50%);
		content: "";
		background: url("img/home_bg04.png")center center repeat-y;
		width: 420px;
		height: 100%;
		animation: greetingMove 40s linear infinite;
	}
	@keyframes greetingMove{
		0% {background-position: 0 0;}
		50% {background-position: 0 765px;}
		100% {background-position: 0 1530px;}
	}
	.home .cont09 .inner::after{
		position: absolute;
		top: 50%;
		right: -240px;
		transform: translateY(-50%);
		content: "";
		background: url("img/home_bg05.png")center center repeat-y;
		width: 420px;
		height: 100%;
		animation: greetingRMove 40s linear infinite;
	}
	@keyframes greetingRMove{
		0% {background-position: 0 1530px;}
		50% {background-position: 0 765px;}
		100% {background-position: 0 0;}
	}
	.home .cont09 .inner h2{
		background: url("img/home_text47.svg")center top no-repeat;
		background-size: 282px;
		padding: 63px 0 0;
		line-height: 1;
	}
	.home .cont09 .inner .text01{
		font-size: 16px;
		line-height: 2.375;
		margin-top: 49px;
	}
	.home .cont09 .inner .text01 span {
		font-weight: bold;
	}
	.home .cont09 .inner .text01 + .text01{
		margin-top: 22px;
	}
	.home .cont09 .inner .button a{
		display: block;
		width: 420px;
		height: 50px;
		border: 1px solid #fff;
		border-radius: 25px;
		box-sizing: border-box;
		color: #fff;
		font-size: 16px;
		font-weight: bold;
		line-height: 48px;
		margin: 48px auto 0;
	}
	.home .cont09 .inner .button a:hover{
		background: #fff;
		color: #9f0e15;
		opacity: 1;
	}


	/* cont10 */
	.home .cont10{
		background: #f9f4e0;
		padding: 130px 0;
	}
	.home .cont10 .inner{
		padding: 130px 0;
		position: relative;
	}
	.home .cont10 .inner::before{
		position: absolute;
		top: 0;
		left: 50%;
		transform: translateX(-50%);
		content: "";
		background: #fff;
		width: 1460px;
		height: 100%;
		border-radius: 5px;
		z-index: -1;
	}
	.home .cont10 .inner h2{
		background: url("img/home_text48.svg")left center no-repeat;
		background-size: 249px;
		padding: 30px 0 0 270px;
		box-sizing: border-box;
		line-height: 1;
	}
	.home .cont10 .inner .column_box{
		display: flex;
		justify-content: center;
		gap: 0 30px;
		margin-top: 52px;
	}
	.home .cont10 .inner .column_box .cont{
		width: 380px;
		background: #f9f4e0;
		border-radius: 5px;
		padding: 40px;
		box-sizing: border-box;
	}
	.home .cont10 .inner .column_box .cont h3{
		font-size: 20px;
		font-feature-settings: "palt" 1;
		line-height: 1;
		letter-spacing: 0.6px;
		position: relative;
	}
	.home .cont10 .inner .column_box .cont h3::before{
		position: absolute;
		top: 50%;
		left: -40px;
		transform: translateY(-50%);
		content: "";
		background: #e7920a;
		width: 5px;
		height: 42px;
	}
	.home .cont10 .inner .column_box .cont .text01{
		background: url("img/home_line01.png")left top repeat-x;
		padding-top: 20px;
		font-size: 16px;
		line-height: 1.875;
		margin-top: 24px;
	}
	.home .cont10 .inner .column_box .cont .button a{
		display: block;
		width: 300px;
		height: 45px;
		background: #e7920a;
		border: 1.5px solid #e7920a;
		border-radius: 23px;
		box-sizing: border-box;
		color: #fff;
		font-size: 16px;
		font-weight: bold;
		line-height: 42px;
		text-align: center;
		margin-top: 26px;
	}
	.home .cont10 .inner .column_box .cont:nth-of-type(1) .button a{
		font-size: 14px;
	}
	.home .cont10 .inner .column_box .cont .button a:hover{
		background: #fff;
		color: #e7920a;
	}


	/* cont11 */
	.home .cont11{
		padding: 120px 0 0;
		position: relative;
	}
	.home .cont11::before{
		position: absolute;
		top: 0;
		right: 50%;
		transform: translateX(670px);
		content: "";
		background: url("img/home_bg06.png");
		width: 2000px;
		height: 470px;
		border-radius: 10px;
		z-index: -1;
	}
	.home .cont11 .h_box{
		display: flex;
		justify-content: space-between;
		align-items: flex-end;
		width: 1200px;
		margin: 0 auto;
	}
	.home .cont11 .h_box h2{
		background: url("img/home_text49.svg")left center no-repeat;
		background-size: 133px;
		padding: 26px 0 0 152px;
		box-sizing: border-box;
		line-height: 1;
	}
	.home .cont11 .h_box .button a{
		display: block;
		width: 290px;
		height: 40px;
		background: #e7920a;
		border: 1.5px solid #e7920a;
		border-radius: 20px;
		box-sizing: border-box;
		color: #fff;
		font-size: 16px;
		font-weight: bold;
		line-height: 37px;
		text-align: center;
	}
	.home .cont11 .h_box .button a:hover{
		background: #fff;
		color: #e7920a;
	}
	.home .cont11 .swiper02{
		margin-top: 30px;
		z-index: 1111;
		position: relative;
	}
	.home .cont11 .swiper-slide{
		width: 330px;
		background: #fff;
		border-radius: 5px;
		filter: drop-shadow(15px 15px 15px rgba(0,0,0,0.1));
	}
	.home .cont11 .swiper-slide a{
		display: flex;
		justify-content: flex-start;
		flex-wrap: wrap;
		gap: 0 5px;
		padding: 20px 20px 18px;
		box-sizing: border-box;
	}
	.home .cont11 .swiper-slide a h3{
		width: 100%;
		font-size: 16px;
		line-height: 1.5;
		flex-shrink: 1;
		overflow: hidden;
		display: -webkit-box;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 1;
		margin-top: 16px;
		order: 2;
	}
	.home .cont11 .swiper-slide a .date{
		color: #f29600;
		font-size: 14px;
		font-weight: bold;
		line-height: 1;
		margin: 12px 0 0;
		order: 3;
	}
	.home .cont11 .swiper-slide a .text01{
		font-size: 14px;
		line-height: 1.857;
		flex-shrink: 1;
		overflow: hidden;
		display: -webkit-box;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 2;
		margin-top: 12px;
		order: 5;
	}
	.home .cont11 .swiper-slide a figure{
		width: 290px;
		height: 194px;
		border-radius: 5px;
		overflow: hidden;
		order: 1;
	}
	.home .cont11 .swiper-slide a figure img{
		transform: scale(1);
		transition: all .4s;
		width: 330px;
		height: 220px;
		object-fit: cover;
	}
	.home .cont11 .swiper-slide a:hover figure img{
		transform: scale(1.1);
		transition: all .4s;
	}
	.home .cont11 .swiper-button-prev{
		top: -48px;
		left: 50%;
		transform: translateX(185px);
		width: 40px;
		height: 40px;
		background: url("img/home_arrow06.svg")no-repeat;
		background-size: 100%;
	}
	.home .cont11 .swiper-button-next{
		top: -48px;
		left: 50%;
		transform: translateX(235px);
		width: 40px;
		height: 40px;
		background: url("img/home_arrow07.svg")no-repeat;
		background-size: 100%;
	}
	.home .cont11 .swiper-button-prev::after,
	.home .cont11 .swiper-button-next::after{
		content: "";
		width: 40px;
		height: 40px;
		margin: auto;
	}

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

/* key */
.common .key{
	display: flex;
	flex-direction: column;
	justify-content: center;
	height: 260px;
	background: var(--main-light-color);
	margin-top: 100px;
	box-sizing: border-box;
	position: relative;
}
.common .key::before{
	content: "";
	background: url(img/common_key_img.png)no-repeat;
	width: 1322px;
	height: 260px;
	position: absolute;
	top: 0;
	right: calc(50% - 900px);
}
@media screen and (min-width: 1800px) {
	.common .key::before{
		right: 0;
	}
}
.common .key .inner .ttl_en{
	color: var(--main-color);
	font-size: 16px;
	line-height: 1;
	font-weight: bold;
	letter-spacing: 1px;
	text-transform: uppercase;
}
.common .key .inner .ttl_jp{
	padding-top: 20px;
	font-size: 24px;
	line-height: 1;
	font-weight: 500;
}


/* contact_box
------------------------------------------------------------------------*/
	.contact_box{
		display: flex;
		justify-content: space-between;
		align-items: center;
		width: 1200px;
		height: 380px;
		background: url("img/common_bg01.png")center center no-repeat;
		padding: 0 120px;
		border-radius: 5px;
		box-sizing: border-box;
		color: #fff;
		margin: 128px auto 130px;
	}
	.contact_box .h_box h2{
		background: url("img/common_text01.svg")left center no-repeat;
		background-size: 198px;
		padding: 19px 0 0 207px;
		line-height: 1;
		filter: drop-shadow(0 0 10px rgba(0,0,0,0.4));
	}
	.contact_box .h_box .text01{
		font-size: 16px;
		line-height: 1.875;
		margin-top: 23px;
		filter: drop-shadow(0 0 10px rgba(0,0,0,0.4));
	}
	.contact_box .btn_box{
		display: flex;
		flex-direction: column;
		align-items: center;
	}
	.contact_box .btn_box .tel{
		filter: drop-shadow(0 0 10px rgba(0,0,0,0.4));
	}
	.contact_box .btn_box .tel a{
		display: block;
		width: 339px;
		height: 35px;
		background: url("img/common_tel.svg")no-repeat;
		padding: 35px 0 0;
		box-sizing: border-box;
		overflow: hidden;
	}
	.contact_box .btn_box .tel_info{
		line-height: 1;
		text-align: center;
		margin-top: 7px;
	}
	.contact_box .btn_box .button a{
		display: block;
		width: 430px;
		height: 50px;
		background: #9f0e15 url("img/common_icon01.svg")left 105px center no-repeat;
		background-size: 16px;
		border: 2px solid #9f0e15;
		border-radius: 25px;
		padding: 0 0 0 131px;
		box-sizing: border-box;
		color: #fff;
		font-size: 16px;
		font-weight: bold;
		line-height: 46px;
		margin-top: 29px;
	}
	.contact_box .btn_box .button a:hover{
		background: #fff url("img/common_icon01_ho.svg")left 105px center no-repeat;
		background-size: 16px;
		color: #9f0e15;
	}

/* footer　※下記はTOPページのフッターのみCSSが当たっているので、下層ページの修正の場合はstyle.cssも一緒に変更※
------------------------------------------------------------------------------------------------------*/
	footer{
		border-top: 1px solid #f29600;
		font-family: "游ゴシック体", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
		position: relative;
	}
	footer .inner{
		display: grid;
		grid-template-columns: 330px 250px 250px 250px;
		grid-template-rows: 305px auto;
		gap: 0 40px;
		padding: 130px 0;
	}
	
	footer .inner .h_box{
		grid-column: 1/2;
		grid-row: 1/2;
	}
	footer .inner .h_box .logo a{
		display: block;
		width: 315px;
		height: 55px;
		background: url("img/footer_logo.svg")no-repeat;
		background-size: 100%;
		padding: 55px 0 0;
		box-sizing: border-box;
		overflow: hidden;
	}
	footer .inner .h_box .text01{
		line-height: 1;
		font-size: 16px;
		margin-top: 30px;
	}
	footer .inner .h_box .place{
		font-size: 16px;
		line-height: 1.875;
		margin: 22px 0;
	}
	footer .inner .h_box .tel{
		font-size: 16px;
		line-height: 1;
	}
	
	footer .inner .h_under_box{
		grid-column: 1/2;
		grid-row: 2/3;
		display: flex;
		flex-direction: column;
		justify-content: flex-end;
		padding-bottom: 12px;
	}
	footer .inner .h_under_box .bana a{
		display: block;
		width: 320px;
		height: 110px;
		background: url("img/footer_bana01.svg")center top 19px no-repeat , linear-gradient(#fff 80px, #c30d23 80px);
		background-size: 290px , 100%;
		border: 2px solid #c30d23;
		padding: 87px 0 0;
		border-radius: 5px;
		box-sizing: border-box;
		color: #fff;
		font-size: 15px;
		font-weight: bold;
		line-height: 1;
		text-align: center;
	}
	footer .inner .h_under_box .copy{
		color: #999;
		font-size: 12px;
		line-height: 1;
		margin-top: 29px;
	}

	footer .inner .box_ttl{
		padding-bottom: 9px;
		border-bottom: 1px solid #f29600;
		color: #f29600;
		font-size: 16px;
		font-weight: bold;
		line-height: 1;
	}
	footer .inner ul{
		margin-top: 15px;
	}
	footer .inner ul li.main::before{
		content: "･";
		padding-right: 4px;
	}
	footer .inner ul li.main a{
		font-size: 16px;
		font-weight: bold;
		font-feature-settings: "palt" 1;
		line-height: 2.75;
		letter-spacing: 0.6px;
	}
	footer .inner ul li.main a:hover{
		text-decoration: underline;
	}
	footer .inner ul li.sub{
		font-size: 14px;
		line-height: 1;
		padding-left: 1em;
		margin-bottom: 12px;
	}
	footer .inner ul li.sub a:hover{
		text-decoration: underline;
	}

	footer .inner .sitemap_box{
		grid-column: 2/3;
		grid-row: 1/3;
	}

	footer .inner .plan_box{
		grid-column: 3/4;
		grid-row: 1/2;
	}

	footer .inner .area_box{
		grid-column: 3/4;
		grid-row: 2/3;
	}
	footer .inner .area_box ul{
		height: 220px;
		overflow-y: auto;
	}
	footer .inner .area_box ul::-webkit-scrollbar {
		width: 3px;
	}
	footer .inner .area_box ul::-webkit-scrollbar-track {
		background-color: transparent;
	}
	footer .inner .area_box ul::-webkit-scrollbar-thumb {
		background-color: #ccc;
	}

	footer .inner .search_box{
		grid-column: 4/5;
		grid-row: 1/2;
	}

	footer .inner .price_box{
		grid-column: 4/5;
		grid-row: 2/3;
	}
	footer .inner .price_box ul{
		display: flex;
		flex-wrap: wrap;
		gap: 0 34px;
	}

	/*　お問合わせ・見積りボタン　*/
	footer .side_box{
		position: fixed;
		top: 80px;
		right: -660px;
		display: block;
		z-index: 11112;
		transition: all .4s;
	}
	footer .side_box.active{
		right: 0;
		transition: all .4s;
	}
	footer .side_box .side_btn01{
		position: absolute;
		top: 0;
		left: -60px;
		width: 60px;
		height: 380px;
		background: #9f0e15 url("img/side_icon01.svg")center top 87px no-repeat;
		background-size: 20px;
		border-radius: 5px 0 0 5px;
		padding: 111px 0 0;
		box-sizing: border-box;
		writing-mode: vertical-rl;
		color: #fff;
		font-size: 16px;
		font-weight: bold;
		line-height: 60px;
		letter-spacing: 1px;
		cursor: pointer;
	}
	footer .side_box .side_in_box{
		width: 660px;
		height: 600px;
		background: #fff;
		border-radius: 0 0 0 10px;
		padding: 40px 10px 0 40px;
		box-sizing: border-box;
	}
	footer .side_box .side_in_box .side_scroll_box{
		height: 520px;
		padding-bottom: 40px;
		overflow-y: auto;
	}
	footer .side_box .side_in_box .side_scroll_box::-webkit-scrollbar {
		width: 3px;
	}
	footer .side_box .side_in_box .side_scroll_box::-webkit-scrollbar-track {
		background-color: transparent;
	}
	footer .side_box .side_in_box .side_scroll_box::-webkit-scrollbar-thumb {
		background-color: #ccc;
	}
	footer .side_box .side_in_box .side_scroll_box .side_text01{
		line-height: 1.75;
	}
	footer .side_box .side_in_box .side_scroll_box table{
		width: 580px;
		border-collapse: separate;
		border-spacing: 0 15px;
		margin-top: 8px;
	}
	footer .side_box .side_in_box .side_scroll_box table th{
		width: 160px;
		padding: 0;
		font-size: 16px;
		font-weight: bold;
		text-align: left;
		vertical-align: middle;
		position: relative;
	}
	footer .side_box .side_in_box .side_scroll_box table tr:nth-of-type(6) th{
		padding-top: 10px;
		vertical-align: top;
	}
	footer .side_box .side_in_box .side_scroll_box table th span{
		position: absolute;
		top: 18px;
		right: 0;
		color: #e7920a;
		font-size: 14px;
		font-weight: bold;
		line-height: 1;
	}
	footer .side_box .side_in_box .side_scroll_box table td{
		width: 420px;
	}
	footer .side_box .side_in_box .side_scroll_box table td input[type="text"],
	footer .side_box .side_in_box .side_scroll_box table td input[type="tel"],
	footer .side_box .side_in_box .side_scroll_box table td input[type="email"] {
		width: 100%;
		height: 50px;
		padding: 0 0 0 20px;
		font-size: 16px;
		line-height: 1.5;
		background: #efe3c8;
		box-sizing: border-box;
		border-radius: 5px;
		border: none;
	}
	footer .side_box .side_in_box .side_scroll_box table td select {
		width: 100%;
		height: 50px;
		padding: 0 0 0 20px;
		font-size: 16px;
		line-height: 1.5;
		background: #efe3c8;
		box-sizing: border-box;
		border-radius: 5px;
		margin-bottom: 7px;
		border: none;
	}
	footer .side_box .side_in_box .side_scroll_box table tr:nth-of-type(5) td{
		display: flex;
		justify-content: space-between;
	}
	footer .side_box .side_in_box .side_scroll_box table tr:nth-of-type(5) td select{
		width: 136px;
	}
	footer .side_box .side_in_box .side_scroll_box table tr:nth-of-type(5) td select,
	footer .side_box .side_in_box .side_scroll_box table tr:nth-of-type(n+9) td select:last-of-type{
		margin-bottom: 0;
	}
	footer .side_box .side_in_box .side_scroll_box table td textarea{
		display: block;
		width: 100% !important;
		height: 220px !important;
		background: #efe3c8;
		border-radius: 5px;
		border: none;
		box-sizing: border-box;
		padding: 20px 15px;
		font-size: 16px;
		line-height: 1.5;
	}
	footer .side_box .side_in_box .side_scroll_box .privacy_check{
		text-align: center;
		margin-top: 20px;
	}
	footer .side_box .side_in_box .side_scroll_box .privacy_check input{
		-webkit-appearance: checkbox;
		margin-right: 8px;
	}
	footer .side_box .side_in_box .side_scroll_box .privacy_check label{
		font-weight: bold;
	}
	footer .side_box .side_in_box .side_scroll_box .button input{
		display: block;
		width: 560px;
		height: 50px;
		background: #9f0e15 url("img/side_icon03.svg")left 189px center no-repeat;
		background-size: 20px;
		border: 1.5px solid #9f0e15;
		border-radius: 25px;
		padding-left: 223px;
		box-sizing: border-box;
		color: #fff;
		font-size: 16px;
		font-weight: bold;
		text-align: left;
		cursor: pointer;
		margin: 30px auto 0;
		transition: all .4s;
		position: relative;
	}
	footer .side_box .side_in_box .side_scroll_box .button input:hover{
		background: #fff url("img/side_icon03_ho.svg")left 189px center no-repeat;
		background-size: 20px;
		color: #9f0e15;
		transition: all .4s;
	}
	footer .side_box .side_in_box .side_scroll_box .privacy {
		width: 580px;
		border: 1px solid #e7920a;
		border-radius: 5px;
		margin: 40px auto 0;
	}
	footer .side_box .side_in_box .side_scroll_box .privacy h2 {
		height: 40px;
		color: #333;
		background: #efe3c8;
		border-radius: 5px 5px 0 0;
		font-size: 16px;
		line-height: 40px;
		text-align: center;
	}
	footer .side_box .side_in_box .side_scroll_box .privacy .text_box {
		height: 150px;
		padding: 16px 28px;
		font-size: 14px;
		box-sizing: border-box;
		overflow-y: auto;
	}
	footer .side_box .side_in_box .side_scroll_box .privacy .text_box::-webkit-scrollbar {
		width: 3px;
	}
	footer .side_box .side_in_box .side_scroll_box .privacy .text_box::-webkit-scrollbar-track {
		background-color: transparent;
	}
	footer .side_box .side_in_box .side_scroll_box .privacy .text_box::-webkit-scrollbar-thumb {
		background-color: #ccc;
		border-radius: 2px;
	}
	footer .side_box .side_in_box .side_scroll_box .privacy .text_box .lead {
		padding-bottom: 10px;
	}
	footer .side_box .side_in_box .side_scroll_box .privacy .text_box .text01 {
		padding-bottom: 10px;
	}

	/*　全メニューPDFボタン　*/
	footer .side_btn02 a{
		position: fixed;
		top: 465px;
		right: 0;
		display: block;
		width: 60px;
		height: 210px;
		background: #e7920a url("img/side_icon02.svg")center top 20px no-repeat;
		background-size: 20px;
		border: 1.5px solid #e7920a;
		border-right: none;
		border-radius: 5px 0 0 5px;
		padding: 52px 0 0;
		box-sizing: border-box;
		writing-mode: vertical-rl;
		color: #fff;
		font-size: 16px;
		font-weight: bold;
		line-height: 58.5px;
		letter-spacing: 1px;
		z-index: 11111;
	}
	footer .side_btn02 a:hover{
		background: #fff url("img/side_icon02_ho.svg")center top 20px no-repeat;
		background-size: 20px;
		color: #e7920a;
	}
	footer .side_btn02 span {
		text-orientation: upright;
		font-weight: bold;
	}

	/*　空き状況確認ボタン　*/
	footer .availability_btn a{
		position: fixed;
		bottom: 30px;
		right: 70px;
		display: flex;
		justify-content: center;
		align-items: center;
		width: 186px;
		height: 145px;
		background: url("img/availability_bg.svg")no-repeat;
		background-size: 100%;
		filter: drop-shadow(15px 15px 7px rgba(0,0,0,0.2));
		color: #fff;
		text-align: center;
		font-size: 14px;
		line-height: 1;
		z-index: 11111;
	}
	footer .availability_btn a span{
		font-weight: bold;
		transform-origin: center center;
		transform: rotate(-5deg);
	}
	footer .availability_btn a span .span01{
		display: block;
		font-size: 20px;
		font-weight: bold;
		line-height: 1.25;
		filter: drop-shadow(6px 6px 4px rgba(0,0,0,0.3));
		margin-bottom: 6px;
	}
	footer .availability_btn a span .span02{
		font-weight: bold;
	}

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

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

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

/* header　※下記はTOPページのヘッダーのみCSSが当たっているので、下層ページの修正の場合はstyle.cssも一緒に変更※
--------------------------------------------------------------------------------------------------------*/
	header{
		width: 100%;
		height: 60px;
		background: #f9f4e0;
		z-index: 11111;
		position: relative;
	}
	header h1{
		position: absolute;
		top: 70px;
		right: 30px;
		color: #fff;
		font-size: 12px;
		line-height: 1;
		box-sizing: border-box;
		height: 0;
		overflow: hidden;
	}
	header .header_box{
		width: 100%;
		height: 60px;
		background: #f9f4e0;
		box-sizing: border-box;
		position: fixed;
	}
	header .header_box .logo a{
		position: absolute;
		top: 10px;
		left: 10px;
		display: block;
		width: 176px;
		height: 30px;
		background: url("img/header_logo.svg")no-repeat;
		background-size: 100%;
		padding: 30px 0 0;
		box-sizing: border-box;
		overflow: hidden;
	}
	header .header_box .text01{
		display: none;
	}
	header .header_box .text02{
		display: none;
	}
	header .header_box .mail a{
		display: none;
	}



/* nav
------------------------------------------------------------------------*/
	#nav{
		display: none;
	}
	#nav-btn.active + #nav{
		position: fixed;
		top: 60px;
		bottom: 0;
		left: 0;
		display: block;
		background: #f9f4e0;
		/* background: var(--main-color); */
		width: 440px;
		padding-bottom: 80px;
		z-index: 11111;
	}

	#nav .sp_nav_box{
		display: block; 
		margin: 20px 10px 0 40px;
		box-sizing: border-box;
		overflow-y: auto;
		height: 100%;
	}
	#nav .sp_nav_box::-webkit-scrollbar {
		width: 3px;
	}
	#nav .sp_nav_box::-webkit-scrollbar-track {
		background-color: transparent;
	}
	#nav .sp_nav_box:-webkit-scrollbar-thumb {
		background-color: #999;
	}
	#nav .sp_nav_box .sp_nav_ttl{
		width: 360px;
		padding-bottom: 9px;
		border-bottom: 1px solid #f29600;
		color: #f29600;
		font-size: 16px;
		font-weight: bold;
		line-height: 1;
	}
	#nav .sp_nav_box .sp_nav_ttl:nth-of-type(2){
		margin-top: 50px;
	}
	#nav .sp_nav_box .sp_nav_ttl:nth-of-type(n+3){
		margin-top: 30px;
	}
	#nav .sp_nav_box ul{
		width: 360px;
		margin-top: 15px;
	}
	#nav .sp_nav_box ul:nth-of-type(3){
		display: flex;
		flex-wrap: wrap;
		gap: 0 60px;
		width: 280px;
	}
	#nav .sp_nav_box ul li a {
		font-size: 16px;
		line-height: 2;
	}
	#nav .sp_nav_box ul li.main::before{
		content: "･";
		padding-right: 4px;
	}
	#nav .sp_nav_box ul li.main a{
		font-size: 16px;
		font-weight: bold;
		line-height: 3;
	}
	#nav .sp_nav_box ul li.sub{
		font-size: 14px;
		line-height: 1;
		padding-left: 1em;
		margin-bottom: 12px;
	}

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

/* home
------------------------------------------------------------------------*/
	/* key */
	.home .key{
		background: #f9f4e0;
		position: relative;
	}
	.home .key #keyslideshow{
		position: relative;
		top: 0;
		left: 0;
		right: 0;
		margin: 0 auto;
		width: 400px;
		height: 650px;
		border-radius: 10px;
		overflow: hidden;
	}
	.home .key #keyslideshow div{
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		margin: 0 auto;
		width: 100%;
		height: 100%;
		opacity: 0.0;
		transition: none;
		z-index: 8;
	}
	.home .key #keyslideshow .active{
		z-index: 10;
		opacity: 1.0;
	}
	.home .key #keyslideshow  .last-active{
		z-index: 9;
	}
	.home .key .key-slide-box div:nth-of-type(1){
		background: url("img/home_key_bg01_sp.png")center center/cover no-repeat;
	}
	.home .key .key-slide-box div:nth-of-type(2){
		background: url("img/home_key_bg02_sp.png")center center/cover no-repeat;
	}
	.home .key .key-slide-box div:nth-of-type(3){
		background: url("img/home_key_bg03_sp.png")center center/cover no-repeat;
	}
	.home .key .inner{
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50% , -50%);
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		width: 100%;
		height: 100%;
		z-index: 100;
	}
	.home .key .inner .text01{
		width: 283px;
        height: 48px;
        background: url(img/home_key_text01_sp.svg) no-repeat;
        background-size: 100%;
        padding: 48px 0 0;
        box-sizing: border-box;
        overflow: hidden;
        filter: drop-shadow(0 0 20px rgba(0, 0, 0, 0.4));
    }
	.home.place .key .inner .text01 {
		width: 283px;
		height: 48px;
		background: none;
		overflow: visible;
		color: #fff;
		font-weight: bold;
		text-align: center;
   		line-height: 1.5;
    	font-size: 14px;
		padding: 0;
		box-sizing: border-box;
		filter: drop-shadow(0 0 20px rgba(0,0,0,0.4));
	}
	.home .key .inner .text02{
		width: 274px;
		height: 263px;
		background: url("img/home_key_text02_sp.svg")no-repeat;
		background-size: 100%;
		padding: 263px 0 0;
		box-sizing: border-box;
		overflow: hidden;
		filter: drop-shadow(0 0 20px rgba(0,0,0,0.4));
		margin-top: 20px;
	}
	.home.place .key .inner .text02 {
		background: url("img/home_key_text04_sp.svg")no-repeat;
		margin-top: 15px;
	}
	.home .key .inner .text03{
		display: inline-block;
		color: #fff;
		font-size: 20px;
		font-weight: bold;
		line-height: 1.45;
		text-align: center;
		margin-top: 16px;
		filter: drop-shadow(0 0 20px rgba(0,0,0,0.4));
		position: relative;
	}
	.home .key .inner .text03 .span01{
		display: inline-block;
		font-weight: bold;
		position: relative;
	}
	.home .key .inner .text03 .span01::before{
		position: absolute;
		top: 50%;
		left: -87px;
		transform: translateY(-50%);
		content: "";
		background: #fff;
		width: 70px;
		height: 2px;
	}
	.home .key .inner .text03 .span01::after{
		position: absolute;
		top: 50%;
		right: -87px;
		transform: translateY(-50%);
		content: "";
		background: #fff;
		width: 70px;
		height: 2px;
	}
	.home .key .inner .key_box{
		position: absolute;
		bottom: -150px;
		left: 50%;
		transform: translateX(-50%);
		display: flex;
		justify-content: space-between;
		width: 400px;
	}
	.home .key .inner .key_box .cont{
		width: 125px;
		background: #fff;
		padding: 15px 0 20px;
		border-radius: 3px;
		box-sizing: border-box;
		text-align: center;
		position: relative;
	}
	.home .key .inner .key_box .cont::before{
		position: absolute;
		top: 0;
		left: 50%;
		transform: translateX(-50%);
		content: "";
		background: #e7920a;
		width: 90px;
		height: 3px;
	}
	.home .key .inner .key_box .cont .text04{
		color: #e7920a;
		font-size: 16px;
		font-weight: bold;
		line-height: 1.5;
	}
	.home .key .inner .key_box .cont .text05{
		font-size: 14px;
		font-weight: bold;
		line-height: 1.43;
		margin-top: 10px;
	}


	/* cont01 */
	.home .cont01{
		background: #f9f4e0 url("img/home_bg01_sp.png")center bottom no-repeat;
		padding: 220px 20px 250px;
		text-align: center;
		position: relative;
	}
	.home .cont01::before{
		position: absolute;
		top: 340px;
		left: 50%;
		transform: translateX(-50%);
		content: "";
		background: url("img/slide_logo01.svg")center center repeat-x;
		background-size: 3200px;
		width: 440px;
		height: 67px;
		filter: drop-shadow(0 0 6px rgba(0,0,0,0.1));
		animation: comLogoMove 60s linear infinite;
	}
	.home.place .cont01::before {
		top: 370px;
	}
	@keyframes comLogoMove{
		0% {background-position: 3200px 0;}
		50% {background-position: 1600px 0;}
		100% {background-position: 0 0;}
	}
	.home .cont01::after{
		position: absolute;
		top: 420px;
		left: 50%;
		transform: translateX(-50%);
		content: "";
		background: url("img/slide_logo02.svg")center center repeat-x;
		background-size: 3200px;
		width: 440px;
		height: 67px;
		filter: drop-shadow(0 0 6px rgba(0,0,0,0.1));
		animation: comLogoMoveR 60s linear infinite;
	}
	.home.place .cont01::after {
		top: 450px;
	}
	@keyframes comLogoMoveR{
		100% {background-position: 3200px 0;}
		50% {background-position: 1600px 0;}
		0% {background-position: 0 0;}
	}
	.home .cont01 h2{
		color: #999;
		line-height: 1;
	}
	.home.place .cont01 h2 {
		line-height: 1.6;
	}
	.home .cont01 .text01{
		color: #9f0e15;
		font-size: 20px;
		font-weight: bold;
		line-height: 1.65;
		margin-top: 14px;
	}
	.home .cont01 .text02{
		line-height: 2.125;
		margin-top: 200px;
	}
	.home .cont01 .thanks_box{
		display: flex;
		flex-direction: column;
		align-items: center;
		width: 400px;
		background: rgba(239,225,198,0.85);
		backdrop-filter: blur(3px);
		padding: 50px 20px 25px;
		border-radius: 5px;
		box-sizing: border-box;
		margin: 70px auto 0;
		position: relative;
	}
	.home .cont01 .thanks_box::before{
		position: absolute;
		top: -22px;
		left: 50%;
		transform: translateX(-50%);
		content: "";
		background: url("img/home_text01.svg")no-repeat;
		background-size: 100%;
		width: 267px;
		height: 56px;
		filter: drop-shadow(18px 15px 2px rgba(0,0,0,0.15));
	}
	.home .cont01 .thanks_box h3{
		font-size: 18px;
		line-height: 1.65;
	}
	.home .cont01 .thanks_box .thanks_list{
		width: 360px;
		height: 125px;
		padding: 8px 0 0;
		box-sizing: border-box;
		overflow-y: auto;
		text-align: left;
		margin-top: 20px;
	}
	.home .cont01 .thanks_box .thanks_list::-webkit-scrollbar {
		width: 3px;
	}
	.home .cont01 .thanks_box .thanks_list::-webkit-scrollbar-track {
		background-color: transparent;
	}
	.home .cont01 .thanks_box .thanks_list::-webkit-scrollbar-thumb {
		background-color: #999;
	}
	.home .cont01 .thanks_box .thanks_list .cont{
		display: flex;
		flex-direction: column;
		width: 350px;
		margin-bottom: 20px;
	}
	.home .cont01 .thanks_box .thanks_list .cont .date{
		width: 100%;
		font-weight: bold;
		line-height: 1.5;
	}
	.home .cont01 .thanks_box .thanks_list .cont .text03{
		font-weight: bold;
		line-height: 1.5;
	}


	/* cont02 */
	.home .cont02{
		background: #f9f4e0;
		padding: 26px 20px 80px;
		position: relative;
	}
	.home .cont02::before{
		position: absolute;
		top: -40px;
		left: 50%;
		transform: translateX(-50%);
		content: "";
		background: #f9f4e0;
		width: 153vw;
		height: 220px;
		border-radius: 50%;
	}
	.home .cont02 h2{
		background: url("img/home_text02.svg")center top no-repeat;
		background-size: 202px;
		padding: 54px 0 0;
		text-align: center;
		line-height: 1;
		z-index: 11;
		position: relative;
	}
	.home.place .cont02 h2 {
		line-height: 1.6;
	}
	.home .cont02 .rank_box{
		display: flex;
		justify-content: center;
		flex-wrap: wrap;
		gap: 60px 0;
		width: 400px;
		margin: 70px auto 0;
		z-index: 11;
		position: relative;
	}
	.home .cont02 .rank_box .cont a{
		display: flex;
		flex-direction: column;
		width: 400px;
		background: #fff;
		border-radius: 5px;
		position: relative;
	}
	.home .cont02 .rank_box .cont a::before{
		position: absolute;
		top: -30px;
		left: 14px;
		content: "";
		background: url("img/home_text12.svg")no-repeat;
		background-size: 100%;
		width: 1433px;
		height: 874px;
		transform: scale(0.1);
		transform-origin: left top;
		z-index: 111;
	}
	.home .cont02 .rank_box .cont:nth-of-type(2) a::before{
		background: url("img/home_text13.svg")no-repeat;
		background-size: 100%;
	}
	.home .cont02 .rank_box .cont:nth-of-type(3) a::before{
		background: url("img/home_text14.svg")no-repeat;
		background-size: 100%;
	}
	.home .cont02 .rank_box .cont:nth-of-type(4) a::before{
		background: url("img/home_text15.svg")no-repeat;
		background-size: 100%;
	}
	.home .cont02 .rank_box .cont:nth-of-type(5) a::before{
		background: url("img/home_text16.svg")no-repeat;
		background-size: 100%;
	}
	.home .cont02 .rank_box .cont:nth-of-type(6) a::before{
		background: url("img/home_text17.svg")no-repeat;
		background-size: 100%;
	}
	.home .cont02 .rank_box .cont a h3{
		line-height: 1;
		margin: 30px 20px 0;
		order: 2;
	}
	.home .cont02 .rank_box .cont a h3 span{
		display: inline-block;
		font-size: 22px;
		font-weight: bold;
		position: relative;
	}
	.home .cont02 .rank_box .cont a h3 span::after{
		position: absolute;
		top: 50%;
		left: calc(100% + 16px);
		transform: translateY(-50%);
		content: "";
		background: url("img/home_text03.svg")no-repeat;
		background-size: 100%;
		width: 58px;
		height: 13px;
	}
	.home .cont02 .rank_box .cont:nth-of-type(2) a h3 span::after{
		background: url("img/home_text04.svg")no-repeat;
		background-size: 100%;
		width: 54px;
		height: 16px;
	}
	.home .cont02 .rank_box .cont:nth-of-type(3) a h3 span::after{
		background: url("img/home_text05.svg")no-repeat;
		background-size: 100%;
		width: 97px;
		height: 16px;
	}
	.home .cont02 .rank_box .cont:nth-of-type(4) a h3 span::after{
		background: url("img/home_text06.svg")no-repeat;
		background-size: 100%;
		width: 81px;
		height: 16px;
	}
	.home .cont02 .rank_box .cont:nth-of-type(5) a h3 span::after{
		background: url("img/home_text07.svg")no-repeat;
		background-size: 100%;
		width: 76px;
		height: 12px;
	}
	.home .cont02 .rank_box .cont:nth-of-type(6) a h3 span::after{
		background: url("img/home_text08.svg")no-repeat;
		background-size: 100%;
		width: 113px;
		height: 16px;
	}
	.home .cont02 .rank_box .cont a .text01{
		padding-bottom: 20px;
		border-bottom: 1px solid #ffd815;
		font-size: 14px;
		font-weight: bold;
		line-height: 1.5;
		margin: 20px 20px 0;
		order: 3;
	}
	.home .cont02 .rank_box .cont:nth-of-type(2) a .text01{
		border-bottom: 1px solid #9f0e15;
	}
	.home .cont02 .rank_box .cont:nth-of-type(3) a .text01{
		border-bottom: 1px solid #333;
	}
	.home .cont02 .rank_box .cont:nth-of-type(n+4) a .text01{
		border-bottom: 1px solid #e7920a;
	}
	.home .cont02 .rank_box .cont a .price{
		font-size: 14px;
		font-weight: bold;
		line-height: 1;
		margin: 18px 20px 0;
		order: 4;
	}
	.home .cont02 .rank_box .cont a .price .span01{
		font-size: 26px;
		font-weight: bold;
		padding-left: 4px;
	}
	.home .cont02 .rank_box .cont a .price .span02{
		display: inline-block;
		height: 24px;
		background: #efe3c8;
		border-radius: 3px;
		padding: 0 14px;
		font-size: 12px;
		font-weight: bold;
		line-height: 24px;
		margin-left: 14px;
		vertical-align: top;
	}
	.home .cont02 .rank_box .cont a .button{
		height: 40px;
		background: #ffd815;
		border-radius: 0 0 5px 5px;
		text-align: center;
		margin: 23px 0 0;
		order: 5;
	}
	.home .cont02 .rank_box .cont a .button span{
		display: inline-block;
		height: 40px;
		background: url("img/home_arrow01.svg")right center no-repeat;
		background-size: 24px;
		padding-right: 35px;
		font-weight: bold;
		line-height: 40px;
	}
	.home .cont02 .rank_box .cont:nth-of-type(2) a .button{
		background: #9f0e15;
	}
	.home .cont02 .rank_box .cont:nth-of-type(2) a .button span{
		background: url("img/home_arrow02.svg")right center no-repeat;
		background-size: 24px;
		color: #fff;
	}
	.home .cont02 .rank_box .cont:nth-of-type(3) a .button{
		background: #333;
	}
	.home .cont02 .rank_box .cont:nth-of-type(3) a .button span{
		background: url("img/home_arrow03.svg")right center no-repeat;
		background-size: 24px;
		color: #fff;
	}
	.home .cont02 .rank_box .cont:nth-of-type(n+4) a .button{
		background: #e7920a;
	}
	.home .cont02 .rank_box .cont:nth-of-type(n+4) a .button span{
		background: url("img/home_arrow04.svg")right center no-repeat;
		background-size: 24px;
		color: #fff;
	}
	.home .cont02 .rank_box .cont a figure{
		display: block;
		width: 400px;
		height: 267px;
		border-radius: 5px 5px 0 0;
		overflow: hidden;
	}
	.home .cont02 .rank_box .cont a figure img{
		width: 100%;
		transform: scale(1);
		transition: all .4s;
	}
	.home .cont02 .sub_cont{
		display: flex;
		justify-content: center;
		flex-wrap: wrap;
		gap: 30px 0;
		width: 400px;
		margin: 50px auto 0;
	}
	.home .cont02 .sub_cont li a{
		display: flex;
		align-items: center;
		width: 400px;
		height: 100px;
		background: #fff url("img/home_img01.png")left center no-repeat;
		background-size: 215px;
		border: 2px solid #e7920a;
		border-radius: 5px;
		padding: 0 0 0 230px;
		box-sizing: border-box;
		overflow: hidden;
	}
	.home .cont02 .sub_cont li:nth-of-type(2) a{
		background: #fff url("img/home_img02.png")left center no-repeat;
		background-size: 215px;
	}
	.home .cont02 .sub_cont li:nth-of-type(3) a{
		background: #fff url("img/home_img03.png")left center no-repeat;
		background-size: 215px;
	}
	.home .cont02 .sub_cont li a span{
		background: url("img/home_text09.svg")left top no-repeat;
		background-size: 37px;
		padding-top: 18px;
		font-size: 16px;
		font-weight: bold;
		line-height: 1.4;
	}
	.home .cont02 .sub_cont li:nth-of-type(2) a span{
		background: url("img/home_text10.svg")left top no-repeat;
		background-size: 59px;
	}
	.home .cont02 .sub_cont li:nth-of-type(3) a span{
		background: url("img/home_text11.svg")left top no-repeat;
		background-size: 54px;
	}


	/* cont03 */
	.home .cont03{
		background: #f9f4e0;
		padding: 0 0 70px;
		position: relative;
	}
	.home .cont03 #slideshow{
		position: relative;
		top: 0;
		left: 0;
		right: 0;
		margin: 0 auto;
		width: 100%;
		height: 300px;
		overflow: hidden;
	}
	.home .cont03 #slideshow::before{
		position: absolute;
		top: -1px;
		left: 50%;
		transform: translateX(-50%);
		content: "";
		background: url("img/slideshow_img01_sp.png")center top no-repeat;
		width: 700px;
		height: 98px;
		z-index: 11;
	}
	.home .cont03 #slideshow div{
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		margin: 0 auto;
		width: 100%;
		height: 100%;
		opacity: 0.0;
		transition: none;
		z-index: 8;
	}
	.home .cont03 #slideshow .active{
		z-index: 10;
		opacity: 1.0;
	}
	.home .cont03 #slideshow  .last-active{
		z-index: 9;
	}
	.home .cont03 .slide-box div:nth-of-type(1){
		background: url("img/home_slide_bg01_sp.png")center center/cover no-repeat;
	}
	.home .cont03 .slide-box div:nth-of-type(2){
		background: url("img/home_slide_bg01_sp.png")center center/cover no-repeat;
	}
	.home .cont03 .slide-box div:nth-of-type(3){
		background: url("img/home_slide_bg01_sp.png")center center/cover no-repeat;
	}
	.home .cont03 h2{
		line-height: 1;
		text-align: center;
		margin-top: 38px;
		z-index: 112;
		position: relative;
	}
	.home.place .cont03 h2 {
		line-height: 1.6;
	}
	.home .cont03 h2::before{
		position: absolute;
		top: -60px;
		left: 50%;
		transform: translateX(-50%);
		content: "";
		background: url("img/home_text18.svg")no-repeat;
		background-size: 100%;
		width: 184px;
		height: 42px;
	}
	.home .cont03 .cont{
		display: flex;
		flex-direction: column-reverse;
		gap: 20px 0;
		width: 400px;
		background: #fff;
		border-radius: 5px;
		padding: 25px;
		box-sizing: border-box;
		margin: 48px auto 0;
	}
	.home .cont03 .cont:nth-of-type(2){
		margin-top: 25px;
	}
	.home .cont03 .cont .text_box{
		display: flex;
		flex-direction: column;
		justify-content: center;
		width: 350px;
	}
	.home .cont03 .cont .text_box h3{
		font-size: 22px;
		line-height: 1.65;
	}
	.home .cont03 .cont .text_box .text01{
		font-size: 16px;
		font-weight: bold;
		line-height: 1.875;
		margin-top: 16px;
	}
	.home .cont03 .cont .text_box .text02{
		margin-top: 15px;
	}
	.home .cont03 .cont .text_box .text02 span{
		font-weight: bold;
	}
	.home .cont03 .cont .text_box .in_box{
		width: 350px;
		background: #f9f4e0;
		border-radius: 5px;
		padding: 20px 25px 25px;
		box-sizing: border-box;
		margin-top: 24px;
	}
	.home .cont03 .cont .text_box .in_box h4{
		color: #e7920a;
		font-size: 16px;
		line-height: 1.4;
		position: relative;
	}
	.home .cont03 .cont .text_box .in_box h4::before{
		position: absolute;
		top: 50%;
		left: -25px;
		transform: translateY(-50%);
		content: "";
		background: #e7920a;
		width: 3px;
		height: 75%;
	}
	.home .cont03 .cont .text_box .in_box .text03{
		font-size: 14px;
		line-height: 1.875;
		margin-top: 9px;
	}
	.home .cont03 .cont figure{
		position: relative;
	}
	.home .cont03 .cont figure::after{
		position: absolute;
		top: 10px;
		right: 7px;
		content: "";
		background: url("img/home_text19.svg")no-repeat;
		background-size: 100%;
		width: 66px;
		height: 53px;
	}
	.home .cont03 .cont:nth-of-type(2) figure::after{
		background: url("img/home_text20.svg")no-repeat;
		background-size: 100%;
		width: 76px;
		height: 53px;
	}
	.home .cont03 .feature_box{
		margin-top: 40px;
	}
	.home .cont03 .feature_box .swiper-slide{
		display: flex;
		flex-direction: column;
		width: 340px;
		height: auto;
		background: #fff;
		border-radius: 5px;
		padding: 30px 0 30px 30px;
		box-sizing: border-box;
	}
	.home .cont03 .feature_box .swiper-slide h3{
		font-size: 20px;
		line-height: 1.5;
		margin-top: 14px;
		order: 2;
	}
	.home .cont03 .feature_box .swiper-slide .text04{
		font-size: 16px;
		line-height: 1.875;
		letter-spacing: 0.8px;
		font-feature-settings: "palt" 1;
		margin: 8px 30px 0 0;
		order: 3;
	}
	.home .cont03 .feature_box .swiper-slide figure{
		position: relative;
	}
	.home .cont03 .feature_box .swiper-slide figure img{
		width: 280px;
	}
	.home .cont03 .feature_box .swiper-slide:nth-of-type(6n+1) figure::after{
		position: absolute;
		top: 12px;
		right: 40px;
		content: "";
		background: url("img/home_text21.svg")no-repeat;
		background-size: 100%;
		width: 61px;
		height: 42px;
	}
	.home .cont03 .feature_box .swiper-slide:nth-of-type(6n+2) figure::after{
		position: absolute;
		top: 12px;
		right: 40px;
		content: "";
		background: url("img/home_text22.svg")no-repeat;
		background-size: 100%;
		width: 64px;
		height: 44px;
	}
	.home .cont03 .feature_box .swiper-slide:nth-of-type(6n+3) figure::after{
		position: absolute;
		top: 12px;
		right: 40px;
		content: "";
		background: url("img/home_text23.svg")no-repeat;
		background-size: 100%;
		width: 62px;
		height: 42px;
	}
	.home .cont03 .feature_box .swiper-slide:nth-of-type(6n+4) figure::after{
		position: absolute;
		top: 12px;
		right: 40px;
		content: "";
		background: url("img/home_text24.svg")no-repeat;
		background-size: 100%;
		width: 63px;
		height: 43px;
	}
	.home .cont03 .feature_box .swiper-slide:nth-of-type(6n+5) figure::after{
		position: absolute;
		top: 12px;
		right: 40px;
		content: "";
		background: url("img/home_text25.svg")no-repeat;
		background-size: 100%;
		width: 65px;
		height: 43px;
	}
	.home .cont03 .feature_box .swiper-slide:nth-of-type(6n+6) figure::after{
		position: absolute;
		top: 12px;
		right: 40px;
		content: "";
		background: url("img/home_text26.svg")no-repeat;
		background-size: 100%;
		width: 62px;
		height: 42px;
	}
	.home .cont03 .button a{
		display: block;
		width: 360px;
		height: 40px;
		background: #e7920a;
		border-radius: 20px;
		box-sizing: border-box;
		color: #fff;
		font-size: 14px;
		font-weight: bold;
		line-height: 40px;
		text-align: center;
		margin: 45px auto 0;
	}


	/* cont04 */
	.home .cont04{
		padding: 250px 0 0;
		position: relative;
	}
	.home .cont04.active::before{
		position: fixed;
		top: 50%;
		left: 50%;
		transform: translate(-50% , -50%);
		content: "";
		width: 100%;
		height: 100%;
		background: url("img/home_bg02_sp.png")center center /cover no-repeat;
		z-index: -1;
	}
	.home .cont04 .inner{
		padding: 80px 20px;
		z-index: 11;
		position: relative;
	}
	.home .cont04 .inner::before{
		position: absolute;
		bottom: -1px;
		left: 50%;
		transform: translateX(-50%);
		content: "";
		background: #f9f4e0;
		width: 440px;
		height: 200px;
		z-index: -1;
	}
	.home .cont04 .inner::after{
		position: absolute;
		top: 0;
		left: 50%;
		transform: translateX(-50%);
		content: "";
		background: #fff;
		width: 440px;
		height: 100%;
		border-radius: 30px;
		z-index: -1;
	}
	.home .cont04 .inner h2{
		background: url("img/home_text27.svg")center top no-repeat;
		background-size: 132px;
		padding: 54px 0 0;
		line-height: 1;
		text-align: center;
	}
	.home.place .cont04 .inner h2 {
		line-height: 1.6;
	}
	.home .cont04 .inner .voice_box{
		border: 2px solid #e7920a;
		border-radius: 5px;
		padding: 15px 10px 5px 25px;
		box-sizing: border-box;
		margin-top: 40px;
	}
	.home .cont04 .inner .voice_box .voice_in_box{
		height: 326px;
		overflow-y: auto;
	}
	.home .cont04 .inner .voice_box .voice_in_box::-webkit-scrollbar {
		width: 3px;
	}
	.home .cont04 .inner .voice_box .voice_in_box::-webkit-scrollbar-track {
		background-color: transparent;
	}
	.home .cont04 .inner .voice_box .voice_in_box::-webkit-scrollbar-thumb {
		background-color: #999;
	}
	.home .cont04 .inner .voice_box .voice_in_box .cont{
		display: flex;
		flex-direction: column;
		width: 320px;
		padding: 22px 0;
		background: url("img/home_line01.png")left bottom repeat-x;
	}
	.home .cont04 .inner .voice_box .voice_in_box .cont .h_box h3{
		font-size: 16px;
		line-height: 1.75;
	}
	.home .cont04 .inner .voice_box .voice_in_box .cont .h_box .date{
		color: #e7920a;
		font-size: 14px;
		font-weight: bold;
		line-height: 1;
		margin-top: 5px;
	}
	.home .cont04 .inner .voice_box .voice_in_box .cont .text01{
		width: 320px;
		line-height: 1.875;
		margin-top: 20px;
	}
	.home .cont04 .inner .pickup_voice_box{
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 40px 0;
		margin-top: 55px;
	}
	.home .cont04 .inner .pickup_voice_box .cont{
		width: 380px;
		background: #f9f4e0;
		border-radius: 5px;
		padding: 50px 0 42px 50px;
		box-sizing: border-box;
		position: relative;
	}
	.home .cont04 .inner .pickup_voice_box .cont::before{
		position: absolute;
		top: -12px;
		left: 22px;
		content: "";
		background: url("img/home_text28.svg")no-repeat;
		background-size: 100%;
		width: 81px;
		height: 24px;
	}
	.home .cont04 .inner .pickup_voice_box .cont::after{
		position: absolute;
		top: -1px;
		left: 115px;
		content: "";
		background: #9f0e15;
		width: 245px;
		height: 2px;
	}
	.home .cont04 .inner .pickup_voice_box .cont .h_box,
	.home.place .cont04 .inner .pickup_voice_box .cont.pharmacy .h_box{
		display: flex;
		flex-direction: column-reverse;
		justify-content: center;
		min-height: 150px;
		background: url("img/home_illust01.svg")left center no-repeat;
		background-size: 150px;
		padding: 0 0 0 170px;
		box-sizing: border-box;
	}
	.home .cont04 .inner .pickup_voice_box .cont:nth-of-type(2) .h_box,
	.home.place .cont04 .inner .pickup_voice_box .cont.party01 .h_box{
		background: url("img/home_illust02.svg")left center no-repeat;
		background-size: 150px;
	}
	.home .cont04 .inner .pickup_voice_box .cont:nth-of-type(3) .h_box,
	.home.place .cont04 .inner .pickup_voice_box .cont.party02 .h_box{
		background: url("img/home_illust03.svg")left center no-repeat;
		background-size: 150px;
	}
	.home .cont04 .inner .pickup_voice_box .cont .h_box h4{
		font-size: 20px;
		line-height: 1.4;
		margin-top: 10px;
	}
	.home .cont04 .inner .pickup_voice_box .cont .h_box .date{
		font-size: 16px;
		font-weight: bold;
		line-height: 1.5;
	}
	.home .cont04 .inner .pickup_voice_box .cont .text02{
		width: 280px;
		background: url("img/home_line02.png")left top repeat-x;
		padding: 20px 0 0;
		color: #9f0e15;
		font-size: 20px;
		font-weight: bold;
		line-height: 1.5;
		margin-top: 25px;
	}
	.home .cont04 .inner .pickup_voice_box .cont .text03{
		font-size: 16px;
		line-height: 1.875;
		margin: 10px 45px 0 0;
	}


	/* cont05 */
	.home .cont05{
		background: #f9f4e0;
		padding: 80px 20px;
	}
	.home .cont05 h2{
		background: url("img/home_text29.svg")center top no-repeat;
		background-size: 138px;
		padding: 54px 0 0;
		box-sizing: border-box;
		line-height: 1.6;
		text-align: center;
	}
	.home .cont05 .scene_box{
		display: flex;
		justify-content: center;
		flex-wrap: wrap;
		gap: 30px 0;
		margin-top: 45px;
	}
	.home .cont05 .scene_box .cont a{
		display: flex;
		flex-direction: column;
		justify-content: center;
		width: 400px;
		height: 194px;
		background: #fff url("img/home_img12.png")right -15px center no-repeat;
		background-size: 200px;
		border-radius: 10px 120px 10px 10px;
		padding: 0 0 0 20px;
		box-sizing: border-box;
		filter: drop-shadow(0 0 10px rgba(0,0,0,0.1));
		position: relative;
	}
	.home .cont05 .scene_box .cont:nth-of-type(2) a{
		background: #fff url("img/home_img13.png")right -15px center no-repeat;
		background-size: 200px;
	}
	.home .cont05 .scene_box .cont:nth-of-type(3) a{
		background: #fff url("img/home_img14.png")right -15px center no-repeat;
		background-size: 200px;
	}
	.home .cont05 .scene_box .cont:nth-of-type(4) a{
		background: #fff url("img/home_img15.png")right -15px center no-repeat;
		background-size: 200px;
	}
	.home .cont05 .scene_box .cont:nth-of-type(5) a{
		background: #fff url("img/home_img16.png")right -15px center no-repeat;
		background-size: 200px;
	}
	.home .cont05 .scene_box .cont:nth-of-type(6) a{
		background: #fff url("img/home_img17.png")right -15px center no-repeat;
		background-size: 200px;
	}
	.home .cont05 .scene_box .cont a::after{
		position: absolute;
		top: 6px;
		right: 3px;
		content: "";
		background: url("img/home_text30.svg")no-repeat;
		background-size: 100%;
		width: 40px;
		height: 40px;
	}
	.home .cont05 .scene_box .cont:nth-of-type(2) a::after{
		background: url("img/home_text31.svg")no-repeat;
		background-size: 100%;
		width: 40px;
		height: 41px;
	}
	.home .cont05 .scene_box .cont:nth-of-type(3) a::after{
		background: url("img/home_text32.svg")no-repeat;
		background-size: 100%;
		width: 40px;
		height: 40px;
	}
	.home .cont05 .scene_box .cont:nth-of-type(4) a::after{
		background: url("img/home_text33.svg")no-repeat;
		background-size: 100%;
		width: 42px;
		height: 41px;
	}
	.home .cont05 .scene_box .cont:nth-of-type(5) a::after{
		background: url("img/home_text34.svg")no-repeat;
		background-size: 100%;
		width: 41px;
		height: 40px;
	}
	.home .cont05 .scene_box .cont:nth-of-type(6) a::after{
		background: url("img/home_text35.svg")no-repeat;
		background-size: 100%;
		width: 41px;
		height: 41px;
	}
	.home .cont05 .scene_box .cont a h3{
		font-size: 16px;
		line-height: 1.5;
	}
	.home .cont05 .scene_box .cont a .text01{
		font-size: 14px;
		line-height: 1.6;
		margin-top: 10px;
	}
	.home .cont05 .scene_box .cont a .button{
		display: block;
		width: 150px;
		height: 25px;
		background: #e7920a;
		border-radius: 13px;
		box-sizing: border-box;
		color: #fff;
		font-size: 12px;
		font-weight: bold;
		line-height: 25px;
		text-align: center;
		margin-top: 14px;
		transition: all .4s;
	}


	/* cont06 */
	.home .cont06{
		background: url("img/home_bg06.png");
		padding: 70px 0 80px;
		position: relative;
	}
	.home .cont06 .inner{
		padding: 0 20px;
		z-index: 111;
		position: relative;
	}
	.home .cont06 .inner .h_box h2{
		min-width: 242px;
		background: url("img/home_text36.svg")center top no-repeat;
		background-size: 242px;
		padding: 54px 0 8px;
		line-height: 1.6;
		text-align: center;
	}
	.home .cont06 .inner .h_box .text01{
		text-align: center;
		margin-top: 20px;
	}
	.home .cont06 .inner .flow_box{
		display: flex;
		flex-direction: column;
		align-content: center;
		gap: 30px 0;
		background: url("img/home_line03.png")left 60px top repeat-y;
		margin-top: 40px;
		position: relative;
	}
	.home .cont06 .flow_box .cont{
		width: 400px;
		background: #fff url("img/home_icon01.svg")left 30px center no-repeat;
		background-size: 60px;
		border-radius: 5px;
		padding: 20px 20px 20px 120px;
		box-sizing: border-box;
		position: relative;
	}
	.home .cont06 .flow_box .cont:nth-of-type(2){
		background: #fff url("img/home_icon02.svg")left 43px center no-repeat;
		background-size: 38px;
	}
	.home .cont06 .flow_box .cont:nth-of-type(3){
		background: #fff url("img/home_icon03.svg")left 39px center no-repeat;
		background-size: 49px;
	}
	.home .cont06 .flow_box .cont:nth-of-type(4){
		background: #fff url("img/home_icon04.svg")left 45px center no-repeat;
		background-size: 48px;
	}
	.home .cont06 .flow_box .cont:nth-of-type(5){
		background: #fff url("img/home_icon05.svg")left 40px center no-repeat;
		background-size: 48px;
	}
	.home .cont06 .flow_box .cont:nth-of-type(6){
		background: #fff url("img/home_icon06.svg")left 41px center no-repeat;
		background-size: 46px;
	}
	.home .cont06 .flow_box .cont:nth-of-type(6)::after{
		position: absolute;
		top: 162px;
		right: 20px;
		content: "";
		background: url("img/home_text43.svg")no-repeat;
		background-size: 100%;
		width: 97px;
		height: 97px;
	}
	.home.place .cont06 .flow_box .cont:nth-of-type(6)::after {
		top: 190px;
	}
	.home .cont06 .flow_box .cont h3{
		padding-left: 35px;
		font-size: 20px;
		line-height: 1;
	}
	.home .cont06 .flow_box .cont:nth-of-type(1) h3{
		background: url("img/home_text37.svg")left center no-repeat;
		background-size: 19px;
	}
	.home .cont06 .flow_box .cont:nth-of-type(2) h3{
		background: url("img/home_text38.svg")left center no-repeat;
		background-size: 21px;
	}
	.home .cont06 .flow_box .cont:nth-of-type(3) h3{
		background: url("img/home_text39.svg")left center no-repeat;
		background-size: 21px;
	}
	.home .cont06 .flow_box .cont:nth-of-type(4) h3{
		background: url("img/home_text40.svg")left center no-repeat;
		background-size: 21px;
	}
	.home .cont06 .flow_box .cont:nth-of-type(5) h3{
		background: url("img/home_text41.svg")left center no-repeat;
		background-size: 21px;
	}
	.home .cont06 .flow_box .cont:nth-of-type(6) h3{
		background: url("img/home_text42.svg")left center no-repeat;
		background-size: 21px;
	}
	.home .cont06 .flow_box .cont .text02{
		line-height: 1.875;
		margin: 11px 0 0 0;
	}
	.home .cont06 .flow_box .cont .text03{
		font-size: 12px;
		line-height: 1.75;
		text-indent: -1em;
		padding-left: 1em;
		margin: 4px 0 0 0;
	}
	.home .cont06 .flow_box .cont .text03::before{
		content: "※";
	}


	/* cont07 */
	.home .cont07{
		background: url("img/home_bg06.png");
		z-index: 11;
		position: relative;
	}
	.home .cont07::before{
		position: absolute;
		top: 470px;
		left: 50%;
		transform: translateX(-1030px);
		content: "";
		background: url("img/home_map.svg")center bottom no-repeat;
		background-size: 3000px;
		width: 3000px;
		height: 1100px;
		-webkit-mask-image: linear-gradient(to top, transparent, black 1.5em, black calc(100% - 10em), transparent);
		mask-image: linear-gradient(to top, transparent, black 1.5em, black calc(100% - 10em), transparent);
		z-index: 9;
	}
	.home .cont07::after{
		position: absolute;
		top: 790px;
		left: 210px;
		content: "";
		background: #9f0e15;
		width: 10px;
		height: 10px;
		border-radius: 50%;
		z-index: 11;
	}
	.home .cont07 .inner{
		padding: 0 20px 520px;
		box-sizing: border-box;
		text-align: center;
		z-index: 11;
		position: relative;
	}
	.home .cont07 .inner::before{
		position: absolute;
		top: 746px;
		left: 165px;
		content: "";
		background: #9f0e15;
		width: 100px;
		height: 100px;
		border-radius: 50%;
		opacity: 0.5;
		animation: 3s circleMap ease-out infinite forwards;
	}
	.home.place  .cont07::before {
		top: 500px;
	}
	.home.place .cont07::after {
		top: 820px
	}
	.home.place .cont07 .inner::before {
		top: 776px;
	}
	.home .cont07 .inner::after{
		position: absolute;
		top: 746px;
		left: 165px;
		content: "";
		background: #9f0e15;
		width: 100px;
		height: 100px;
		border-radius: 50%;
		opacity: 0.5;
		animation: 3s circleMap ease-out 0.7s infinite forwards;
	}
	.home.place .cont07 .inner::after {
		top: 776px;
	}
		/*波形が広がるアニメーション*/
	@keyframes circleMap {
		0% {
			transform: scale(0.01);
		}
		100% {
			transform: scale(3.5);
			opacity: 0;
		}
	}
	.home .cont07 .inner h2{
		background: url("img/home_text44.svg")center top no-repeat;
		background-size: 98px;
		padding: 54px 0 0;
		line-height: 1;
		position: relative;
	}
	.home.place .cont07 .inner h2 {
		line-height: 1.6;
	}
	.home .cont07 .inner h2::after{
		position: absolute;
		top: 746px;
		left: 145px;
		content: "";
		background: #9f0e15;
		width: 100px;
		height: 100px;
		border-radius: 50%;
		opacity: 0.5;
		animation: 3s circleMap ease-out 1.4s infinite forwards;
		z-index: -1;
	}
	.home.place .cont07 .inner h2::after {
		top: 776px;
	}
	.home .cont07 .inner .text01{
		font-size: 20px;
		font-weight: bold;
		line-height: 1;
		margin-top: 45px;
	}
	.home .cont07 .inner .text02{
		background: url("img/home_line04.png")left top repeat-x , url("img/home_line04.png")left bottom repeat-x;
		padding: 30px 0 24px;
		font-size: 24px;
		font-weight: bold;
		line-height: 1;
		margin-top: 30px;
	}
	.home .cont07 .inner .text02 .span01{
		color: #9f0e15;
		font-weight: bold;
	}
	.home .cont07 .inner .text02 .span02{
		display: block;
		color: #9f0e15;
		font-size: 16px;
		font-weight: bold;
		line-height: 1.4;
		margin-top: 13px;
	}
	.home .cont07 .inner .text03{
		font-size: 18px;
		font-weight: bold;
		line-height: 1.8;
		margin-top: 26px;
	}
	.home .cont07 .inner .text04{
		margin-top: 12px;
	}
	.home .cont07 .inner .button a{
		display: block;
		width: 360px;
		height: 40px;
		background: #9f0e15;
		border-radius: 20px;
		box-sizing: border-box;
		color: #fff;
		font-size: 14px;
		font-weight: bold;
		line-height: 40px;
		text-align: center;
		margin: 35px auto 0;
	}


	/* cont08 */
	.home .cont08{
		background: #f9f4e0;
		position: relative;
		z-index: 99;
	}
	.home .cont08 .inner{
		padding: 70px 20px
	}
	.home .cont08 .inner .h_box h2{
		background: url("img/home_text45.svg")center top no-repeat;
		background-size: 88px;
		padding: 54px 0 0;
		line-height: 1;
		text-align: center;
	}
	.home.place .cont08 .inner .h_box h2 {
		line-height: 1.6;
	}
	.home .cont08 .inner .h_box .text01{
		margin-top: 30px;
	}
	.home .cont08 .inner .faq_box{
		background: #fff;
		border-radius: 10px;
		padding: 20px;
		margin-top: 35px;
	}

	/* .home .cont08 .inner .faq_box dl{
		max-height: 350px;
		overflow-y: scroll;
		-webkit-overflow-scrolling: touch;
	}
	.home .cont08 .inner .faq_box dl::-webkit-scrollbar {
		width: 3px;
	}
	.home .cont08 .inner .faq_box dl::-webkit-scrollbar-track {
		background-color: transparent;
	}
	.home .cont08 .inner .faq_box dl::-webkit-scrollbar-thumb {
		background-color: #ccc;
	} */
	.home .cont08 .inner .faq_box dl .qes{
		width: 350px;
		background: url("img/home_line01.png")left top repeat-x;
		padding: 21px 28px 19px;
		box-sizing: border-box;
		font-size: 16px;
		font-weight: bold;
		line-height: 1.4;
		cursor: pointer;
		position: relative;
	}
	.home .cont08 .inner .faq_box dl .qes:first-of-type{
		background: none;
	}
	.home .cont08 .inner .faq_box dl .qes::before{
		position: absolute;
		top: 24px;
		left: 0;
		content: "";
		background: url("img/home_text46.svg")no-repeat;
		background-size: 100%;
		width: 15px;
		height: 15px;
	}
	.home .cont08 .inner .faq_box dl .qes::after{
		position: absolute;
		top: 50%;
		right: 0;
		transform: translateY(-50%) rotate(180deg);
		content: "";
		background: url("img/home_arrow05.svg")no-repeat;
		background-size: 100%;
		transition: all .5s ease;
		width: 20px;
		height: 20px;
	}
	.home .cont08 .inner .faq_box dl .qes.close::after{
		position: absolute;
		top: 50%;
		right: 0;
		transform: translateY(-50%);
		content: "";
		background: url("img/home_arrow05.svg")no-repeat;
		background-size: 100%;
		transition: all .5s ease;
		width: 20px;
		height: 20px;
	}
	.home .cont08 .inner .faq_box dl .ans{
		display: none;
		padding: 0 20px 0 0;
		box-sizing: border-box;
		font-size: 14px;
		line-height: 2;
		margin-bottom: 19px;
		position: relative;
	}
	.home .cont08 .inner .faq_box dl .ans span{
		font-weight: bold;
	}
	.home .cont08 .inner .button a{
		display: block;
		width: 360px;
		height: 40px;
		background: #e7920a;
		border-radius: 20px;
		box-sizing: border-box;
		color: #fff;
		font-size: 14px;
		font-weight: bold;
		line-height: 40px;
		text-align: center;
		margin: 45px auto 0;
	}


	/* cont09 */
	.home .cont09{
		background: url("img/home_bg03.png");
		overflow: hidden;
		position: relative;
	}
	.home .cont09 .inner{
		padding: 250px 0;
		color: #fff;
		text-align: center;
		position: relative;
	}
	.home .cont09 .inner::before{
		position: absolute;
		top: 20px;
		left: 50%;
		transform: translateX(-50%);
		content: "";
		background: url("img/home_bg04_sp.png")center center repeat-x;
		width: 100%;
		height: 180px;
		animation: greetingMove 40s linear infinite;
	}
	@keyframes greetingMove{
		0% {background-position: 0 0;}
		50% {background-position: 236.5px 0;}
		100% {background-position: 473px 0;}
	}
	.home .cont09 .inner::after{
		position: absolute;
		bottom: 20px;
		left: 50%;
		transform: translateX(-50%);
		content: "";
		background: url("img/home_bg05_sp.png")center center repeat-x;
		width: 100%;
		height: 180px;
		animation: greetingRMove 40s linear infinite;
	}
	@keyframes greetingRMove{
		0% {background-position: 473px 0;}
		50% {background-position: 236.5px 0;}
		100% {background-position: 0 0;}
	}
	.home .cont09 .inner h2{
		background: url("img/home_text47.svg")center top no-repeat;
		background-size: 188px;
		padding: 54px 0 0;
		line-height: 1;
	}
	.home.place .cont09 .inner h2 {
		line-height: 1.6;
	}
	.home .cont09 .inner .text01{
		font-size: 14px;
		line-height: 2;
		margin-top: 40px;
	}.home .cont09 .inner .text01 span{
		font-weight: bold;
	}
	.home .cont09 .inner .text01 + .text01{
		margin-top: 22px;
	}
	.home .cont09 .inner .button a{
		display: block;
		width: 360px;
		height: 40px;
		border: 1px solid #fff;
		border-radius: 20px;
		box-sizing: border-box;
		color: #fff;
		font-size: 14px;
		font-weight: bold;
		line-height: 38px;
		margin: 35px auto 0;
	}


	/* cont10 */
	.home .cont10{
		background: #f9f4e0;
		padding: 60px 20px;
	}
	.home .cont10 .inner{
		padding: 70px 20px 45px;
		position: relative;
	}
	.home .cont10 .inner::before{
		position: absolute;
		top: 0;
		left: 50%;
		transform: translateX(-50%);
		content: "";
		background: #fff;
		width: 100%;
		height: 100%;
		border-radius: 5px;
		z-index: -1;
	}
	.home .cont10 .inner h2{
		background: url("img/home_text48.svg")center top no-repeat;
		background-size: 166px;
		padding: 50px 0 0;
		box-sizing: border-box;
		line-height: 1.65;
		text-align: center;
	}
	.home .cont10 .inner .column_box{
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 30px 0;
		margin-top: 45px;
	}
	.home .cont10 .inner .column_box .cont{
		width: 340px;
		background: #f9f4e0;
		border-radius: 5px;
		padding: 30px 30px 25px;
		box-sizing: border-box;
	}
	.home .cont10 .inner .column_box .cont h3{
		font-size: 18px;
		font-feature-settings: "palt" 1;
		line-height: 1;
		letter-spacing: 0.6px;
		position: relative;
	}
	.home .cont10 .inner .column_box .cont h3::before{
		position: absolute;
		top: 50%;
		left: -30px;
		transform: translateY(-50%);
		content: "";
		background: #e7920a;
		width: 4px;
		height: 35px;
	}
	.home .cont10 .inner .column_box .cont .text01{
		background: url("img/home_line01.png")left top repeat-x;
		padding-top: 16px;
		font-size: 14px;
		line-height: 1.875;
		margin-top: 20px;
	}
	.home .cont10 .inner .column_box .cont .button a{
		display: block;
		width: 280px;
		height: 40px;
		background: #e7920a;
		border-radius: 20px;
		box-sizing: border-box;
		color: #fff;
		font-size: 16px;
		font-weight: bold;
		line-height: 40px;
		text-align: center;
		margin-top: 20px;
	}
	.home .cont10 .inner .column_box .cont:nth-of-type(1) .button a{
		font-size: 14px;
	}


	/* cont11 */
	.home .cont11{
		padding: 60px 0 100px;
		position: relative;
	}
	.home .cont11::before{
		position: absolute;
		top: 0;
		left: 0;
		content: "";
		background: url("img/home_bg06.png");
		width: 340px;
		height: 400px;
		border-radius: 0 10px 10px 0;
		z-index: -1;
	}
	.home .cont11 .h_box{
		padding: 0 40px;
	}
	.home .cont11 .h_box h2{
		background: url("img/home_text49.svg")left top no-repeat;
		background-size: 89px;
		padding: 44px 0 0;
		box-sizing: border-box;
		line-height: 1;
	}
	.home .cont11 .h_box .button a{
		position: absolute;
		bottom: -480px;
		left: 50%;
		transform: translateX(-50%);
		display: block;
		width: 290px;
		height: 40px;
		background: #e7920a;
		border: 1.5px solid #e7920a;
		border-radius: 20px;
		box-sizing: border-box;
		color: #fff;
		font-size: 16px;
		font-weight: bold;
		line-height: 37px;
		text-align: center;
	}
	.home .cont11 .swiper02{
		margin-top: 40px;
		z-index: 1111;
		position: relative;
	}
	.home .cont11 .swiper-slide{
		width: 330px;
		background: #fff;
		border-radius: 5px;
		filter: drop-shadow(15px 15px 10px rgba(0,0,0,0.1));
	}
	.home .cont11 .swiper-slide a{
		display: flex;
		justify-content: flex-start;
		flex-wrap: wrap;
		gap: 0 5px;
		padding: 20px 20px 18px;
		box-sizing: border-box;
	}
	.home .cont11 .swiper-slide a h3{
		width: 100%;
		font-size: 16px;
		line-height: 1.5;
		flex-shrink: 1;
		overflow: hidden;
		display: -webkit-box;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 1;
		margin-top: 16px;
		order: 2;
	}
	.home .cont11 .swiper-slide a .date{
		color: #f29600;
		font-size: 14px;
		font-weight: bold;
		line-height: 1;
		margin: 12px 0 0;
		order: 3;
	}
	.home .cont11 .swiper-slide a .text01{
		font-size: 14px;
		line-height: 1.857;
		flex-shrink: 1;
		overflow: hidden;
		display: -webkit-box;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 2;
		margin-top: 12px;
		order: 5;
	}
	.home .cont11 .swiper-slide a figure{
		width: 290px;
		height: 194px;
		border-radius: 5px;
		overflow: hidden;
		order: 1;
	}
	.home .cont11 .swiper-slide a figure img{
		width: 330px;
		height: 220px;
		object-fit: cover;
	}
	.home .cont11 .swiper-button-prev{
		top: -70px;
		left: 200px;
		width: 40px;
		height: 40px;
		background: url("img/home_arrow06.svg")no-repeat;
		background-size: 100%;
	}
	.home .cont11 .swiper-button-next{
		top: -70px;
		right: 140px;
		width: 40px;
		height: 40px;
		background: url("img/home_arrow07.svg")no-repeat;
		background-size: 100%;
	}
	.home .cont11 .swiper-button-prev::after,
	.home .cont11 .swiper-button-next::after{
		content: "";
		width: 40px;
		height: 40px;
		margin: auto;
	}

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

/* key */
.common .key{
	display: flex;
	flex-direction: column;
	justify-content: center;
	height: 150px;
	background: var(--main-light-color);
	box-sizing: border-box;
	position: relative;
}
.common .key::before{
	content: "";
	background: url(img/common_key_img_sp.png)no-repeat;
	width: 440px;
	height: 150px;
	position: absolute;
	top: 0;
	right: 0;
}
.common .key .inner{
	width: 440px;
	position: relative;
	z-index: 1;
}
.common .key .inner .ttl_en{
	color: var(--main-color);
	font-size: 12px;
	line-height: 1;
	font-weight: bold;
	letter-spacing: 1px;
	text-transform: uppercase;
}
.common .key .inner .ttl_jp{
	padding-top: 10px;
	font-size: 18px;
	line-height: 1;
	font-weight: 500;
}

/* contact_box
------------------------------------------------------------------------*/
	.contact_box{
		display: flex;
		flex-direction: column;
		align-items: center;
		width: 400px;
		background: url("img/common_bg01_sp.png")center center no-repeat;
		padding: 40px 0;
		border-radius: 5px;
		box-sizing: border-box;
		color: #fff;
		margin: 60px auto 70px;
	}
	.contact_box .h_box h2{
		background: url("img/common_text01.svg")center top no-repeat;
		background-size: 150px;
		padding: 43px 0 0;
		line-height: 1;
		text-align: center;
		filter: drop-shadow(0 0 10px rgba(0,0,0,0.4));
	}
	.contact_box .h_box .text01{
		font-size: 14px;
		line-height: 1.75;
		text-align: center;
		margin-top: 24px;
		filter: drop-shadow(0 0 10px rgba(0,0,0,0.4));
	}
	.contact_box .btn_box{
		display: flex;
		flex-direction: column;
		align-items: center;
		margin-top: 25px;
	}
	.contact_box .btn_box .tel{
		filter: drop-shadow(0 0 10px rgba(0,0,0,0.4));
	}
	.contact_box .btn_box .tel a{
		display: block;
		width: 254px;
		height: 27px;
		background: url("img/common_tel.svg")no-repeat;
		background-size: 100%;
		padding: 27px 0 0;
		box-sizing: border-box;
		overflow: hidden;
	}
	.contact_box .btn_box .tel_info{
		font-size: 12px;
		line-height: 1;
		text-align: center;
		margin-top: 7px;
	}
	.contact_box .btn_box .button a{
		display: block;
		width: 300px;
		height: 40px;
		background: #9f0e15 url("img/common_icon01.svg")left 55px center no-repeat;
		background-size: 16px;
		border-radius: 20px;
		padding: 0 0 0 80px;
		box-sizing: border-box;
		color: #fff;
		font-size: 14px;
		font-weight: bold;
		line-height: 40px;
		margin-top: 24px;
	}



/* footer　※下記はTOPページのフッターのみCSSが当たっているので、下層ページの修正の場合はstyle.cssも一緒に変更※
--------------------------------------------------------------------------------------------------------*/
	footer{
		font-family: "游ゴシック体", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
		border-top: 1px solid #f29600;
		position: relative;
	}
	footer .inner{
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 35px 0;
		padding: 70px 40px;
	}
	
	footer .inner .h_box{
		order: 1;
	}
	footer .inner .h_box .logo a{
		display: block;
		width: 315px;
		height: 55px;
		background: url("img/footer_logo.svg")no-repeat;
		background-size: 100%;
		padding: 55px 0 0;
		box-sizing: border-box;
		overflow: hidden;
	}
	footer .inner .h_box .text01{
		font-size: 14px;
		line-height: 1;
		margin-top: 26px;
	}
	footer .inner .h_box .place{
		font-size: 14px;
		line-height: 1.857;
		margin: 12px 0 5px;
	}
	footer .inner .h_box .tel{
		font-size: 14px;
		line-height: 1;
	}
	
	footer .inner .h_under_box{
		order: 7;
		display: flex;
		flex-direction: column;
		justify-content: flex-end;
		align-items: flex-start;
		width: 360px;
		padding-bottom: 12px;
		margin-top: 20px;
	}
	footer .inner .h_under_box .bana a{
		display: block;
		width: 320px;
		height: 110px;
		background: url("img/footer_bana01.svg")center top 19px no-repeat , linear-gradient(#fff 80px, #c30d23 80px);
		background-size: 290px , 100%;
		border: 2px solid #c30d23;
		padding: 87px 0 0;
		border-radius: 5px;
		box-sizing: border-box;
		color: #fff;
		font-size: 15px;
		font-weight: bold;
		line-height: 1;
		text-align: center;
	}
	footer .inner .h_under_box .copy{
		color: #999;
		font-size: 12px;
		line-height: 1;
		margin-top: 29px;
	}

	footer .inner .box_ttl{
		padding-bottom: 9px;
		border-bottom: 1px solid #f29600;
		color: #f29600;
		font-size: 16px;
		font-weight: bold;
		line-height: 1;
	}
	footer .inner ul{
		margin-top: 15px;
	}
	footer .inner ul li.main::before{
		content: "･";
		padding-right: 4px;
	}
	footer .inner ul li.main a{
		font-size: 16px;
		font-weight: bold;
		line-height: 3;
	}
	footer .inner ul li.main a:hover{
		text-decoration: underline;
	}
	footer .inner ul li.sub{
		font-size: 14px;
		line-height: 1;
		padding-left: 1em;
		margin-bottom: 14px;
	}
	footer .inner ul li.sub a:hover{
		text-decoration: underline;
	}

	footer .inner .sitemap_box{
		width: 360px;
		order: 5;
	}

	footer .inner .plan_box{
		width: 360px;
		margin-top: 15px;
		order: 2;
	}

	footer .inner .area_box{
		width: 360px;
		order: 6;
	}
	footer .inner .area_box ul{
		height: 220px;
		overflow-y: auto;
	}
	footer .inner .area_box ul::-webkit-scrollbar {
		width: 3px;
	}
	footer .inner .area_box ul::-webkit-scrollbar-track {
		background-color: transparent;
	}
	footer .inner .area_box ul::-webkit-scrollbar-thumb {
		background-color: #ccc;
	}

	footer .inner .search_box{
		width: 360px;
		order: 3;
	}

	footer .inner .price_box{
		width: 360px;
		order: 4;
	}
	footer .inner .price_box ul{
		display: flex;
		flex-wrap: wrap;
		gap: 0 60px;
	}

	/*　お問合わせ・見積りボタン　*/
	footer .side_box{
		position: fixed;
		bottom: -401px;
		left: 0;
		display: block;
		z-index: 11112;
		transition: all .4s;
	}
	footer .side_box.active{
		bottom: 0;
		transition: all .4s;
	}
	footer .side_box .side_btn01{
		position: absolute;
		top: -40px;
		left: 0;
		width: 220px;
		height: 40px;
		background: #9f0e15 url("img/side_icon01.svg")left 17px center no-repeat;
		background-size: 20px;
		padding: 0 0 0 47px;
		box-sizing: border-box;
		color: #fff;
		font-size: 14px;
		font-weight: bold;
		line-height: 40px;
	}
	footer .side_box .side_in_box{
		width: 440px;
		height: 400px;
		background: #fff;
		padding: 20px 10px 20px 20px;
		box-sizing: border-box;
	}
	footer .side_box .side_in_box .side_scroll_box{
		height: 360px;
		overflow-y: auto;
	}
	footer .side_box .side_in_box .side_scroll_box::-webkit-scrollbar {
		width: 3px;
	}
	footer .side_box .side_in_box .side_scroll_box::-webkit-scrollbar-track {
		background-color: transparent;
	}
	footer .side_box .side_in_box .side_scroll_box::-webkit-scrollbar-thumb {
		background-color: #ccc;
	}
	footer .side_box .side_in_box .side_scroll_box .side_text01{
		line-height: 1.75;
	}
	footer .side_box .side_in_box .side_scroll_box table{
		width: 400px;
		border-collapse: separate;
		border-spacing: 0 15px;
		margin-top: 8px;
	}
	footer .side_box .side_in_box .side_scroll_box table th{
		display: block;
		width: 100%;
		padding: 0;
		font-size: 14px;
		font-weight: bold;
		text-align: left;
		vertical-align: middle;
		position: relative;
	}
	footer .side_box .side_in_box .side_scroll_box table tr:nth-of-type(6) th{
		padding-top: 10px;
		vertical-align: top;
	}
	footer .side_box .side_in_box .side_scroll_box table th span{
		position: absolute;
		top: 50%;
		right: 0;
		transform: translateY(-50%);
		color: #e7920a;
		font-size: 12px;
		font-weight: bold;
		line-height: 1;
	}
	footer .side_box .side_in_box .side_scroll_box table td{
		display: block;
		width: 100%;
	}
	footer .side_box .side_in_box .side_scroll_box table td input[type="text"],
	footer .side_box .side_in_box .side_scroll_box table td input[type="tel"],
	footer .side_box .side_in_box .side_scroll_box table td input[type="email"] {
		width: 100%;
		height: 40px;
		padding: 0 0 0 10px;
		font-size: 14px;
		line-height: 1.5;
		background: #efe3c8;
		box-sizing: border-box;
		border-radius: 5px;
		border: none;
	}
	footer .side_box .side_in_box .side_scroll_box table td select {
		width: 100%;
		height: 40px;
		padding: 0 0 0 10px;
		font-size: 14px;
		line-height: 1.5;
		background: #efe3c8;
		box-sizing: border-box;
		border-radius: 5px;
		margin-bottom: 7px;
		border: none;
	}
	footer .side_box .side_in_box .side_scroll_box table tr:nth-of-type(5) td{
		display: flex;
		justify-content: space-between;
	}
	footer .side_box .side_in_box .side_scroll_box table tr:nth-of-type(5) td select{
		width: 32%;
	}
	footer .side_box .side_in_box .side_scroll_box table tr:nth-of-type(5) td select,
	footer .side_box .side_in_box .side_scroll_box table tr:nth-of-type(n+9) td select:last-of-type{
		margin-bottom: 0;
	}
	footer .side_box .side_in_box .side_scroll_box table td textarea{
		display: block;
		width: 100% !important;
		height: 180px !important;
		background: #efe3c8;
		border-radius: 5px;
		border: none;
		box-sizing: border-box;
		padding: 20px 15px;
		font-size: 14px;
		line-height: 1.5;
	}
	footer .side_box .side_in_box .side_scroll_box .privacy_check{
		text-align: center;
		margin-top: 14px;
	}
	footer .side_box .side_in_box .side_scroll_box .privacy_check input{
		-webkit-appearance: checkbox;
		margin-right: 8px;
	}
	footer .side_box .side_in_box .side_scroll_box .privacy_check label{
		font-weight: bold;
	}
	footer .side_box .side_in_box .side_scroll_box .privacy_check a{
		text-decoration: underline;
	}
	footer .side_box .side_in_box .side_scroll_box .button input{
		display: block;
		width: 360px;
		height: 40px;
		background: #9f0e15 url("img/side_icon03.svg")left 85px center no-repeat;
		background-size: 20px;
		border-radius: 20px;
		padding-left: 115px;
		border: 0;
		box-sizing: border-box;
		color: #fff;
		font-size: 14px;
		font-weight: bold;
		text-align: left;
		cursor: pointer;
		margin: 20px auto 0;
		transition: all .4s;
		position: relative;
	}
	footer .side_box .side_in_box .side_scroll_box .privacy {
		border: 1px solid #e7920a;
		border-radius: 5px;
		margin: 40px auto 0;
	}
	footer .side_box .side_in_box .side_scroll_box .privacy h2 {
		height: 30px;
		color: #333;
		background: #efe3c8;
		border-radius: 5px 5px 0 0;
		font-size: 14px;
		line-height: 32px;
		text-align: center;
	}
	footer .side_box .side_in_box .side_scroll_box .privacy .text_box {
		height: 150px;
		padding: 16px 28px;
		font-size: 12px;
		box-sizing: border-box;
		overflow-y: auto;
	}
	footer .side_box .side_in_box .side_scroll_box .privacy .text_box::-webkit-scrollbar {
		width: 3px;
	}
	footer .side_box .side_in_box .side_scroll_box .privacy .text_box::-webkit-scrollbar-track {
		background-color: transparent;
	}
	footer .side_box .side_in_box .side_scroll_box .privacy .text_box::-webkit-scrollbar-thumb {
		background-color: #ccc;
		border-radius: 2px;
	}
	footer .side_box .side_in_box .side_scroll_box .privacy .text_box p {
		font-size: 12px;
	}
	footer .side_box .side_in_box .side_scroll_box .privacy .text_box .lead {
		padding-bottom: 10px;
	}
	footer .side_box .side_in_box .side_scroll_box .privacy .text_box .text01 {
		padding-bottom: 10px;
	}

	/*　全メニューPDFボタン　*/
	footer .side_btn02 a{
		position: fixed;
		top: 10px;
		right: 50px;
		display: block;
		width: 130px;
		height: 30px;
		background: #efe3c8 url("img/side_icon02_sp.svg")left 12px center no-repeat;
		background-size: 14px;
		border-radius: 3px;
		padding: 0 0 0 33px;
		box-sizing: border-box;
		font-size: 12px;
		line-height: 30px;
		z-index: 11111;
	}

	/*　空き状況確認ボタン　*/
	footer .availability_btn a{
		position: fixed;
		bottom: -1px;
		right: 0;
		width: 220px;
		height: 40px;
		background: #e7920a url("img/availability_icon_sp.svg")left 54px center no-repeat;
		background-size: 19px;
		padding: 0 0 0 82px;
		box-sizing: border-box;
		color: #fff;
		font-size: 14px;
		line-height: 40px;
		z-index: 11111;
	}
	footer .availability_btn a span .span01{
		font-weight: bold;
	}
	footer .availability_btn a span .span02{
		display: none;
	}

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


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

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

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

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


