<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";
@import "common.css";

body{
	font-size: 16px;
	color: #333;
	overflow-x: hidden;
}

a{
	color: #333;
}

hr{
	margin: 4px 0
}

/* ヘッダ */
header{
	height: 120px;
}

div.drawer{
	display: none;
}

header &gt; div#headinfo{
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	width: 100%;
}

header h1 {
	max-width: 1000px;
	height:100%;
	text-indent: -9999px;
}

header h1 a {
	display: block;
	width: 700px;
	height: 90px;
	background: url('../images/logo.png') no-repeat;
	background-size: contain;
	margin-top: 17px;
	margin-left: 30px;
	position: relative;
	overflow: hidden;
}

header h1 a::before{
	content: '';
	display: block;
	position: absolute;
	width: 	700px;
	height: 90px;
	top: 0;
	left: -100%;
	background-image: linear-gradient(130deg, rgba(255, 255, 255, 0) 25%, rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 0) 75%);
}

header h1 a:hover::before{
	-webkit-animation: shine 1s;
	animation: shine 1s;
}

header &gt; div#headinfo &gt; div{
	margin-top: 20px;
	margin-right: 50px;
}

header &gt; div#headinfo &gt; div &gt; a &gt; p{
	text-align: right;
	font-size: 36px;
	letter-spacing: 2px;
	line-height: 135%;
	color: #333;
	text-indent: 70px;
	background-image: url(../images/telicon.png);
	background-repeat: no-repeat;
	background-size: 30px;
	background-position-x: 60px;
	background-position-y: center;
}

header &gt; div#headinfo &gt; div &gt; a span{
	color: #333;
	display: block;
	text-align: right;
	transition: all .3s;
	position: relative;
}

header &gt; div#headinfo &gt; div &gt; a:hover span{
	color: var(--green);
}

header &gt; div#headinfo &gt; div &gt; a + p{
	font-size: 25px;
	font-family:'Noto Sans JP', sans-serif;
	color: #333;
	text-indent: 70px;
	letter-spacing: 2px;
}

@media(max-width: 1300px){
	header h1 a {
		width: 600px;
		margin-top: 20px;
	}	
	header &gt; div#headinfo &gt; div {
		margin-right: 30px;
	}
	
}

@media(max-width: 1100px){
	header {
		height: 100px;
	}
	header h1 a {
		width: 550px;
		margin-top: 15px;
	}	
	header &gt; div#headinfo &gt; div {
		margin-top: 15px;
		margin-right: 30px;
	}
	header &gt; div#headinfo &gt; div &gt; a &gt; p {
		font-size: 30px;
		background-size: 28px;
		background-position-x: 70px;
	}

	header &gt; div#headinfo &gt; div &gt; a + p {
		font-size: 22px;
		font-family: 'Noto Sans JP', sans-serif;
		color: #333;
		text-indent: 70px;
		letter-spacing: 2px;
	}
}

/*　グローバルナビ　*/
#glnav{
	width: 100%;
	position: sticky;
	position: -webkit-sticky;
	z-index:100;
	top: 0;
	opacity: 0.95;
	box-shadow: 0 5px 10px 0 rgba(100, 100, 100, 0.3);
}

#glnav .menu{
	width: 100%;
	height: 80px;
	display: flex;
	flex-direction: row;
	background-color: var(--lightbrown);
}

#glnav .menu &gt; li{
	width:calc( 100% / 6 );
	position: relative;
	text-align: center;
	display: block;
	font-size: 22px;
	font-weight: 400;
	line-height: 1.2;
	color: var(--darkbrown);
}

#glnav .menu &gt; li.has-child &gt; span:nth-of-type(1) &gt; span,
#glnav .menu &gt; li a &gt; span:nth-of-type(1) &gt; span{
	font-size: 18px;
	color: var(--textgreen);
	letter-spacing: 2px;
}

#glnav .menu &gt; li.has-child &gt; span:nth-of-type(2) &gt; span,
#glnav .menu &gt; li a &gt; span:nth-of-type(2) &gt; span{
	font-size: 18px;
	color: #fff;
	letter-spacing: 2px;
}

#glnav .menu &gt; li &gt; span{
	padding-top: 18px;
}

#glnav .menu &gt; li &gt; a{
	position: relative;
	display: block;
	width: 100%;
	height: 100%;
	text-align: center;
	font-size: 22px;
	font-weight: 400;
	color: var(--darkbrown);
	transition:  .3s;
}

#glnav .menu &gt; li &gt; a &gt; span,
#glnav .menu &gt; li:nth-of-type(2) &gt; span,
#glnav .menu &gt; li:nth-of-type(3) &gt; span,
#glnav .menu &gt; li:nth-of-type(4) &gt; span{
	position: absolute;
	padding-top: 12px;
	display: block;
	width: 100%;
	height: 100%;
	transform-style: preserve-3d;
	transition: .3s;
}

.rotateback &gt; span:nth-of-type(1){
	transform: rotateX(0deg);
	transform-origin: 0 50%  -45px;
}

.rotateback:hover &gt; span:nth-of-type(1){
    transform: rotateX(90deg);
}

.rotateback &gt; span:nth-of-type(2){
    background: var(--green);
    color: #fff;
    transform: rotateX(-90deg);
    transform-origin: 0 50%  -45px;
}

.rotateback:hover &gt; span:nth-of-type(2){
    transform: rotateX(0deg);
}


#glnav .menu &gt; li.has-child ul{
	position: absolute;
	left: 0;
	top: 80px;
	z-index: 4;
	width: 100%;
	visibility: hidden;
	opacity: 0;
	transition: .3s;
}

#glnav .menu &gt; li.has-child ul li{
	width: 100%;
	text-align: center;
	height: 69px;
	background-color: rgba(239, 235, 232, 0.98);
	line-height: 1.3;
}

#glnav .menu &gt; li.has-child ul li a{
	display: block;
	position: relative;
	width: 100%;
	height: 100%;
	font-size: 18px;
	font-weight: 400;
	color: var(--rightbrown);
	transition: .3s;
	z-index: 10;
	overflow: hidden;
}

#glnav .menu &gt; li.has-child:hover &gt; ul,
#glnav .menu &gt; li.has-child ul li:hover &gt; ul{
	visibility: visible;
	opacity: 1;
}

#glnav .menu &gt; li.has-child &gt; ul li a:hover{
	color: #fff;
}

#glnav .menu &gt; li.has-child &gt; ul li a span{
	display: block;
	width: 100%;
	height: 100%;
	padding-top: 25px;
}

#glnav .menu &gt; li.has-child ul li a.wbr span{
	padding-top: 13px;
}

@media(max-width: 1300px){
	#glnav .menu{
		height: 65px;
	}
	#glnav .menu &gt; li &gt; a &gt; span, #glnav .menu &gt; li:nth-of-type(2) &gt; span, #glnav .menu &gt; li:nth-of-type(3) &gt; span, #glnav .menu &gt; li:nth-of-type(4) &gt; span {
		padding-top: 10px;
	}
	#glnav .menu &gt; li.has-child ul li a{
		font-size: 16px;
	}
	#glnav .menu &gt; li.has-child ul li {
		height: 65px;
	}
	#glnav .menu &gt; li &gt; a,
	#glnav .menu &gt; li{
		font-size: 18px;
	}
	#glnav .menu &gt; li.has-child &gt; span:nth-of-type(1) &gt; span,
	#glnav .menu &gt; li a &gt; span:nth-of-type(1) &gt; span{
		font-size: 15px;
	}
	#glnav .menu &gt; li.has-child ul{
		top: 65px;
	}
	/*子メニューの高さ調整*/
	#glnav .menu &gt; li.has-child &gt; ul li a span {
		padding-top: 20px;
	}
	#glnav .menu &gt; li.has-child ul li a.wbr span {
		padding-top: 10px;
	}
}	
@media(max-width: 1100px){
	#glnav .menu &gt; li &gt; a &gt; span, #glnav .menu &gt; li:nth-of-type(2) &gt; span, #glnav .menu &gt; li:nth-of-type(3) &gt; span, #glnav .menu &gt; li:nth-of-type(4) &gt; span {
		padding-top: 10px;
	}
	#glnav .menu{
		height: 65px;
	}
	#glnav .menu &gt; li.has-child ul li a{
		font-size: 15px;
	}
	#glnav .menu &gt; li.has-child ul li {
		height: 65px;
	}
	#glnav .menu &gt; li &gt; a,
	#glnav .menu &gt; li{
		font-size: 18px;
	}
	#glnav .menu &gt; li.has-child &gt; span:nth-of-type(1) &gt; span,
	#glnav .menu &gt; li a &gt; span:nth-of-type(1) &gt; span{
		font-size: 15px;
	}

	#glnav .menu &gt; li.has-child ul{
		top: 65px;
	}

	.rotateback &gt; span:nth-of-type(2) {
		font-size: 18px;
	}

	.rotateback &gt; span:nth-of-type(2) &gt; span{
		font-size: 16px!important;
	}

	/*子メニューの高さ調整*/
	#glnav .menu &gt; li.has-child &gt; ul li a span {
		padding-top: 20px;
	}
	#glnav .menu &gt; li.has-child ul li a.wbr span {
		padding-top: 12px;
	}
}	





#glnav .menu &gt; li.has-child &gt; ul li a span:before{
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	width: 0;
	height: 100%;
	display: block;
	background: var(--green);
	z-index: -2;
	transition: .3s;
}

#glnav .menu &gt; li.has-child &gt; ul li a span:after{
	content: "";
	position: absolute;
	top: 0;
	left: -100%;
	bottom: 0;
	width: 100%;
	height: 100%;
	display: block;
	background: linear-gradient(130deg, rgba(255, 255, 255, 0) 25%, rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 0) 75%);
	z-index: 0;
}

#glnav .menu &gt; li.has-child &gt; ul li a span:hover:before{
	width: 100%;
}

#glnav .menu &gt; li.has-child &gt; ul li a span:hover:after{
	-webkit-animation: shine 0.5s;
	animation: shine 0.5s;
	animation-delay: .2s;
}

@-webkit-keyframes shine {
	100%{
		left: 100%;
	}
}
  
@keyframes shine{
	100%{
	  	left: 100%;
	}
}

/* フッタ */
footer{
	width: 100%;
	margin-top: 80px;
	color: #fff;
	font-size: 15px;
	text-align: center;
}

footer #footermenu{
	background: var(--darkbrown);
	padding: 30px;
	text-align: left;
}

footer #footermenu + div{
	color: #333;
	padding: 30px;
	text-align: left;
}

footer &gt; p{
	background: var(--darkbrown);
	margin-bottom: 0;
}

/*　フッター：サイトマップ　*/
#footermenu .menu,
#footermenu .menu &gt; li{
	display: flex;
	justify-content: space-evenly;
	flex-direction: row;
	flex-wrap: wrap;
}

@media(max-width: 1400px){
	#footermenu .menu &gt; li{
		justify-content: start;
		align-content: flex-start;
		flex-direction: column;
	}	
}

#footermenu .menu &gt; li &gt; span{
	display: inline-block;
	width: 120px;
	padding-bottom: 16px;
	font-size: 16px;
	font-weight: 700;
	letter-spacing: 1px;
}



#footermenu .menu &gt; li &gt; ul li{
	margin-bottom: 2px;
}

#footermenu .menu &gt; li &gt; ul li a{
	color: #fff;
	display: inline-block;
	transition: all .3s;
	width: 100%;
}

#footermenu .menu &gt; li &gt; ul li a span{
	display: inline-block;
	margin-left: 10px;
	padding-top: 5px;
	padding-bottom: 5px;
	position: relative;
}

#footermenu .menu &gt; li &gt; ul li a span::before,
#footermenu .menu &gt; li &gt; ul li a span::after{
	position: absolute;
	content: '';
	width: 0;
	height: 1px;
	background-color: #ffffff;
	transition: .3s;
}

#footermenu .menu &gt; li &gt; ul li a span::before{
	top: 0;
	left: 0;
}

#footermenu .menu &gt; li &gt; ul li a span::after{
	bottom: 0;
	right: 0;
}

#footermenu .menu &gt; li &gt; ul li a:hover span::before,
#footermenu .menu &gt; li &gt; ul li a:hover span::after{
	width: 100%;
}

#footermenu .menu &gt; li &gt; ul li a:hover i{
	animation: arrowrotate .5s;
}

/*　フッター：会社情報部分　*/
#comAndCalendar{
	display: flex;
	width: 100%;
	max-width: 1000px;
	margin: 0 auto;
	justify-content: space-between;
	align-items: center;
}

footer dl{
	width: 47%;
}

footer dl dt a{
	display: block;
	width: 400px;
	height: 60px;
	background-image: url(../images/logo.png);
	background-repeat: no-repeat;
	background-size: contain;
	text-indent: -9999px;
	position: relative;
	overflow: hidden;
}
footer dl dt a::before{
	content: '';
	display: block;
	position: absolute;
	width: 	400px;
	height: 60px;
	top: 0;
	left: -100%;
	background-image: linear-gradient(130deg, rgba(255, 255, 255, 0) 25%, rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 0) 75%);
}

footer dl dt a:hover::before{
	-webkit-animation: shine 1s;
	animation: shine 1s;
}

footer dl dd{
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	justify-content: left;
	color: #333;
	font-size: 15px;
}

footer dl dd p{
	line-height: 1.8;
}

footer dl dd &gt; div:first-of-type &gt; p:last-of-type &gt; span{
	color: var(--textorange);
	display: block;
	padding-left: 1em;
	margin-bottom: 1em;
}

footer dl dd p.telnum a{
	color: #333;
	display: inline-block;
	transition: all .3s;
	position: relative;
}

footer dl dd p.telnum a::after{
	position: absolute;
	content: '';
	width: 0;
	height: 1px;
	background-color: var(--orange);
	transition: .3s;
}

footer dl dd p.telnum a::after{
	bottom: 0;
	right: 0;
}

footer dl dd p.telnum a:hover::after{
	width: 100%;
}

footer dl dd p.telnum a:hover{
	color: var(--textorange);
}

/* フッター：カレンダー */
#calendar {
	width: 49%;
	padding: 0 10px;
}
#calendar table {
	width: 100%;
	margin-bottom: 20px;
	background: #fff;
	border: solid 1px var(--darkbrown);
}

#calendar table caption {
	caption-side: top;
	padding: 10px;
	background: var(--darkbrown);
	color: #fff;
	font-weight: 400;
	letter-spacing: 2px;
	font-size: 16px;
	text-align: center;
	border-radius: 5px 5px 0 0;
}

#calendar table caption button{
	color: #fff;
	background-color: var(--darkbrown);
	border: none;
	padding: 3px 5px;
	margin: 0 10px;
	cursor: pointer;
	border-radius: 5px;
	transition: all .3s;
}

#calendar table caption button:hover,
#calendar table caption button:active{
	color: #000;
	background: rgba( 255, 255, 255, 0.60 );
	box-shadow: 0 3px 20px 0 rgb(135 31 38 / 37%);
	transition: all .3s;
	animation: animScale 0.3s ease-out;
	transform-origin: 50% 50%;
	-webkit-animation: animScale 0.3s ease-out;
	-webkit-transform-origin: 50% 50%;
	-moz-animation: animScale 0.3s ease-out;
	-moz-transform-origin: 50% 50%;
}


#calendar table th,
#calendar table td {
	width: 14.285%;
	padding: 5px 0;
	font-size: 12px;
	text-align: center;
}

#calendar table th {
	background: #eee;
	border-bottom: solid 1px #ccc;
}

#calendar table th:not(:last-child),
#calendar table td:not(:last-child) {
	border-right: solid 1px #ccc;
}

#calendar table th:last-child,
#calendar table td:last-child {
	border-right: solid 1px var(--darkbrown);
}

#calendar table th:nth-child(1) {
	color: #c00;
}

#calendar table th:nth-child(7) {
	color: #00c;
}

#calendar table td {
	height: 34px;
	vertical-align: top;
}

#calendar table tr:not(:last-child) td {
	border-bottom: solid 1px #ccc;
}

#calendar table tr:last-child td {
	border-bottom: solid 1px var(--darkbrown);
}

#calendar table td:nth-child(7) {
	background: #eef;
}

#calendar table td:nth-child(1),
#calendar table td.cal_holiday {
	background: #fee;
}

#calendar table td p {
	line-height: 1.5;
}

#calendar table td i {
	font-size: 12px;
	color: #c00;
}

#calendar table td span {
	display: none;
}


/*　フッター：コピーライト　*/
footer &gt; p{
	padding-top: 15px;
	padding-bottom: 15px;
	font-size: 16px;
}

/* 共通要素:各領域構成 */
#container{
	width: 1000px;
	margin: 0 auto;
	background: #fff;
}

#container aside,
#container article {
	display: block;
}

#container aside{
	flex-grow: 1;
	padding: 10px 0 50px;
	background: #f8e8c9;
}

#container article{
	width: 100%;
}

#container article#meisai_article{
	width: 100%;
}

/* 共通要素:メイン領域 */
article p{
	margin-bottom: 1em;
	line-height: 135%;
}

article h1{
	display: inline-block;
	width: 100%;
	height: 34px;
	margin-top: 10px;
    margin-bottom: 30px;
    border: none;
	border-radius: 0px;
	font-size: 26px;
	line-height: 34px;
	letter-spacing: 1px;
	text-indent: 10px;
    font-weight: 400;
    color: var(--textbrown); 
    background-image: none;
	position: relative;
	padding-left: 25px;

}

article h1:before {
	position: absolute;
	content: '';
	bottom: -7px;
	left: 0;
	width: 0;
	height: 0;
	border: none;
	border-left: solid 15px transparent;
	border-bottom: solid 15px var(--green);
}

article h1:after {
  position: absolute;
  content: '';
  bottom: -7px;
  left: 10px;
  width: 98%;
  border-bottom: solid 3px var(--green);
}

article h2{
	width: 100%;
	height: 40px;
	margin-bottom: 10px;
	border-bottom: dashed 1px #005a16;
	font-size: 16px;
	line-height: 40px;
	text-indent: 5px;
}

/*　一番上の画像　*/
#indextop{
	width: 100vw;
	height: 560px;
	background-image: url(../images/indexpage/mainbackie.jpg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	text-align: center;
}

#indextop &gt; img{
	max-width: 1000px;
	height: 100%;
	margin: 0 auto;
	user-drag: none;
	-webkit-user-drag: none;
	-moz-user-select: none;
}

/*　新着情報　*/
#index_information{
	margin-top: 50px;
	padding: 20px 22px 28px;
	background: var(--backbrown);
}

#index_information a{
	color: var(--textorange);
	border-bottom: 1px solid var(--orange);
}

#index_information a:hover,
#index_information a:active{
	opacity: 0.7;
}

#index_information h2{
	margin-bottom: 16px;
	border: none;
	font-weight: bold;
	color: var(--textbrown);
}

#index_information h2 span.en{
	font-size: 36px;
	margin-right: 18px;
	letter-spacing: 2px;
}

#index_information h2 span{
	font-size: 18px;
	letter-spacing: 3px;
}

#index_information div{
	width: 100%;
	height: 250px;
	padding: 16px;
	background: #fff;
	overflow-y: scroll;
}

#index_information div p.info_date{
	margin-bottom: 5px;
	font-size: 18px;
	color: var(--textgreen);
	font-weight: bold;
}

#index_information div p.info_body{
	padding-left: 21px;
	padding-right: 16px;
	margin-bottom: 16px;
	padding-bottom: 16px;
	border-bottom: dotted 5px var(--backbrown);
	line-height: 150%;
}

/*　インデックスのテナントバナー画像　*/
#index_tenant{
	position: relative;
	z-index: 0;
	margin-top: 100px;
}

#index_tenant figure{
	height: 560px;
	background: #000;
	box-shadow:2px 2px 4px rgba(138, 138, 138, 0.5);
	padding: 0;
	overflow: hidden;
}

#index_tenant figure a{
	width: 100%;
	height: 100%;
}

#index_tenant figure img{
	transition: all 0.3s;
	user-drag: none;
	-webkit-user-drag: none;
	-moz-user-select: none;
}

#index_tenant figcaption,
#index_manman figcaption{
	position: absolute;
	bottom:40px;
	right: 40px;
	width: 250px;
	height: 100px;
	border-radius: 3px;
	background: -moz-linear-gradient(top left, #ff6a72, #940008); 
	background: -webkit-linear-gradient(top left, #ff6a72, #940008); 
	background: linear-gradient(to bottom right, #ff6a72, #940008); 
	text-align: center;
	box-shadow:2px 2px 4px rgba(80, 80, 80, 0.7);
	transition: all 0.3s;
}
#index_tenant figcaption &gt; span,
#index_manman figcaption &gt; span{
	color:#ffffff;
	display: block;
	font-size: 25px;
	letter-spacing: 3px;
	width: 100%;
	height:100%;
	transition: all 0.3s;
	position: relative;
}
#index_tenant figcaption &gt; span span,
#index_manman figcaption &gt; span span{
	display: block;
	width: 100%;
	height: 100%;
	padding-top: 28px;
	overflow: hidden;
	position: relative;
}
#index_tenant figcaption &gt; span span::before,
#index_manman figcaption &gt; span span::before{
	content: '';
	display: block;
	position: absolute;
	width: 	100%;
	height: 100%;
	top: 0;
	left: -100%;
	background-image: linear-gradient(130deg, rgba(255, 255, 255, 0) 25%, rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 0) 75%);
}
#index_tenant figcaption &gt; span:hover span::before,
#index_manman figcaption &gt; span:hover span::before{
	-webkit-animation: shine .5s;
	animation: shine .5s;
}
#index_tenant figure:hover figcaption,
#index_manman figure:hover figcaption{
	box-shadow:0 0 30px #ff6a72;
}
#index_tenant figure:hover img,
#index_manman figure:hover img{
	opacity: 0.5;
	transform: scale(1.05, 1.05);
	transition: 0.3s;
}

/* ボタンの波紋 */
#index_tenant figure:hover .pulse-btn::before,
#index_tenant figure:hover .pulse-btn::after,
#index_manman figure:hover .pulse-btn::before,
#index_manman figure:hover .pulse-btn::after{
	content: "";
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	width: 100%;
	height: 100%;
	border: 2px solid #ff6a72;
	border-radius: 3px;
	box-sizing: border-box;
	pointer-events: none;
	animation: pulsate 2s linear infinite;
}
#index_tenant figure:hover .pulse-btn::after,
#index_manman figure:hover .pulse-btn::after{
	animation-delay: 1s;
}
/* ボタンの波紋が広がっていくアニメーション */
@keyframes pulsate{
	0% {
		transform: scale(1);
		opacity: 1;
	}
  
	100% {
		transform: scale(1.2);
		opacity: 0;
	}
}

/*　バナー画像　*/
#index_linkbanner figure{
	margin-top: 50px;
	box-shadow:2px 2px 4px rgba(138, 138, 138, 0.5);
}

#index_linkbanner figure:first-of-type,
#index_linkbanner figure:last-of-type{
	background: #000;
	padding: 0;
	overflow: hidden;
}

#index_linkbanner figure:first-of-type{
	height: 300px;
	position: relative;
	z-index: 0;
}

#index_linkbanner figure:last-of-type{
	height: 200px;
	position: relative;
	z-index: 0;
	border: 1px solid #ccc;
}

#index_linkbanner figure img{
	transition: all 0.3s;
	user-drag: none;
	-webkit-user-drag: none;
	-moz-user-select: none;
}

/* まんまんバナー */
#index_manman{
	position: relative;
	z-index: 0;
	margin-top: 50px;
}
#index_manman figure{
	background: #fff;
	box-shadow:2px 2px 4px rgba(138, 138, 138, 0.5);
	padding: 0;
	overflow: hidden;
}
#index_manman figure a{
	width: 100%;
	height: 100%;
}
#index_manman figure img{
	transition: all 0.3s;
	user-drag: none;
	-webkit-user-drag: none;
	-moz-user-select: none;
}











/*　査定バナー画像　*/
#index_linkbanner figure:first-of-type a &gt; span{
	font-size: 45px;
	color:#fff;
	position: absolute;
	top: 110px;
	right: 8px;
}

#index_linkbanner figure:first-of-type a &gt; span &gt; span.pulse-btn{
	display: block;
	position: relative;
	width: 45px;
	height: 45px;
	border-radius: 50%;
	transition: all .3s;
}

#index_linkbanner figure:first-of-type:hover img{
	opacity: 0.5;
	transform: scale(1.05, 1.05);
	transition: 0.3s;
}

#index_linkbanner figure:first-of-type:hover a &gt; span &gt; span &gt; i{
	border-radius: 50%;
	box-shadow:0 0 10px #fff;
}

#index_linkbanner figure:first-of-type:hover a &gt; span &gt; span &gt; i{
	animation: arrowrotate .5s;
}
  
@keyframes arrowrotate{
	100%{
		transform: rotate(360deg);
	}
}

#index_linkbanner figure:first-of-type:hover .pulse-btn::before,
#index_linkbanner figure:first-of-type:hover .pulse-btn::after {
	content: "";
	display: block;
	position: absolute;
	top: 25px;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	border: 2px solid #fff;
	box-sizing: border-box;
	pointer-events: none;
	animation: pulsate-2 2s linear infinite;
}

@keyframes pulsate-2{
	0%{
		transform: scale(1);
		opacity: 1;
	}
  
	100%{
		transform: scale(1.5);
		opacity: 0;
	}
}
  
#index_linkbanner figure:first-of-type:hover .pulse-btn::after{
	animation-delay: 1s;
}

/*　ローンシミュレーションバナー画像　*/
#index_linkbanner figure:last-of-type:hover img{
	opacity: 0.5;
	transform: scale(1.05, 1.05);
	transition: 0.3s;
}

#index_linkbanner figure:last-of-type:hover a{
	transition: all 0.3s;
}

#index_linkbanner figure:last-of-type:hover a:after{
	font-size: 1.6rem;
	font-weight: 400;
	text-indent: 25px;
	letter-spacing: 3px;
  	position: absolute;
	top: 2.3rem;
	right: -4.2rem;
  	padding: 0.5rem 3.7rem;
  	content: "詳細を見る";
	-webkit-transform: rotate(40deg);
	transform: rotate(40deg);
	-webkit-transform-origin: top;
	transform-origin: top;
  	color: #fff;
	background: var(--green);
	-webkit-box-shadow: 0 3px 3px #127c2c;
	box-shadow: 0 3px 3px #127c2c;
	transition: all 0.3s;
}

#index_linkbanner figure:last-of-type:hover .pulse-btn::before{
	content: "";
	display: block;
	position: absolute;
	top: 27px;
	right: 27px;
	margin: auto;
	width: 100px;
	height: 100px;
	border-radius: 50%;
	border: 2px solid rgb(98, 224, 73);
	box-sizing: border-box;
	pointer-events: none;
	animation: pulsate-2 1.5s linear infinite;
}

/*　おすすめ物件紹介：共通部分　*/
#index_osusume{
	margin-top: 70px;
}

input.tab-switch{
	display: none;
}

#index_osusume h2{
	width: 100%;
	height: 80px;
	margin-bottom: 16px;
	padding-top: 20px;
	border:none;
	font-weight: bold;
	color:#fff;
	background-color: var(--orange);
	background-image: url(../images/osusume.png);
	background-repeat: no-repeat;
	background-position: 15px center;
	background-size: 70px;
}

#index_osusume h2 span.en{
	font-size: 30px;
	margin-right:0.5em;
	margin-left: 100px;
}

#index_osusume h2 span:last-of-type{
	font-size: 18px;
	font-weight: 400;
}

#index_osusume #osusume_flex{
	display: grid; 
	grid-auto-flow: row dense; 
	grid-auto-columns: 1fr; 
	grid-template-columns: 350px auto auto 350px; 
	grid-template-rows: 70px 1fr; 
	gap: 0px 0px; 
	grid-template-areas: 
		"chead . . bhead"
		"carea carea barea barea"; 
	justify-content: center; 
	justify-items: stretch; 
	align-items: start;
	width: 100%;
}

.chead,.bhead{
	display: inline-block;
	font-size: 20px;
	letter-spacing: 2px;
	text-align: center;
	font-weight: 400;
	padding-top: 25px;
	padding-left: 10px;
	width: 100%;
	height: 100%;
	background-repeat: no-repeat;
	background-position: 40px center;
	background-size: 40px;
	border-radius: 5px 5px 0 0;
}

.chead{
	grid-area: chead;
	background-color: var(--darkbrown);
	color:#ffffff;
	background-image: url(../images/indexpage/osusume_cicon.png);
}

.bhead{ 
	grid-area: bhead;
	background-color: var(--lightbrown);
	color: var(--textbrown);
	background-image: url(../images/indexpage/osusume_bicon.png);
}

.carea {
	grid-area: carea;
	background-color: var(--darkbrown); 
}

.barea {
	grid-area: barea;
	background-color: var(--lightbrown);
}



#index_osusume #osusume_flex &gt; div:last-of-type{
	position: relative;
}

#index_osusume .osusume_inner{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-evenly;
	width: 100%;
	margin: 0 auto;
	padding-top: 20px;
}

#index_osusume .osusume_inner &gt; div,
#index_osusume .osusume_inner &gt; a{
	display: block;
	width: 230px;
	height: 420px;
	margin-bottom: 20px;
	padding: 10px 15px;
	color: #333;
	background: #fff;
	line-height: 135%;
	overflow-y: hidden;
}
	  
#index_osusume .osusume_inner &gt; a{
	position: relative;
	box-shadow:2px 2px 4px rgba(131, 131, 131, 0.5);
	transition: all .2s;
    transition-delay: .3s;
}

#index_osusume .osusume_inner &gt; a &gt; span{
	display: block;
	box-sizing: content-box;
}

#index_osusume .osusume_inner &gt; a::before,
#index_osusume .osusume_inner &gt; a::after{
	content:""; 
    position: absolute;   
    width: 0;
    height: 2px;
    background: var(--orange);
    transition: all 0.2s linear;
}

#index_osusume .osusume_inner &gt; a &gt; span::before,
#index_osusume .osusume_inner &gt; a &gt; span::after{
	content:"";
    position: absolute;
    width:2px;
    height:0;
    background: var(--orange);
    transition: all 0.2s linear;
}

#index_osusume .osusume_inner &gt; a:hover::before,
#index_osusume .osusume_inner &gt; a:hover::after{
	width: 100%;
}

#index_osusume .osusume_inner &gt; a:hover &gt; span::before,
#index_osusume .osusume_inner &gt; a:hover &gt; span::after{
	height: 100%;
}

#index_osusume .osusume_inner &gt; a::after{
	right:0;
    bottom: 0;
    transition-duration: 0.3s;
}

#index_osusume .osusume_inner &gt; a &gt; span::after{
	right:0;
    bottom: 0;
    transition-duration: 0.3s;
}

#index_osusume .osusume_inner &gt; a::before{
	left:0;
    top: 0;
    transition-duration: 0.3s;
}

#index_osusume .osusume_inner &gt; a &gt; span::before{
	left:0;
    top: 0;
    transition-duration: 0.3s;
}

#index_osusume .osusume_inner &gt; a:hover img{
	transform: scale(1.05, 1.05);
	transition: 0.3s;
}

#index_osusume .osusume_c,
#index_osusume .osusume_b{
	border: none!important;
}

.osusume_datum{
	position: relative;
}

.osusume_datum &gt; p{
	margin:16px 0 0 0;
}

.osusume_datum &gt; span{
	position: absolute;
	display: inline-block;
	top: 110px;
	right: 0;
	z-index: 5;
	color: #fff;
	background-color: var(--green);
	text-align: center;
    width: 5em;
    height: 45px;
    padding: 10px;
    font-size: 14px;
    text-align: center;
    background: rgba(59, 180, 28, 0.685);
    box-shadow: 0 3px 20px 0 rgb(31 135 38 / 37%);
    backdrop-filter: blur( 4.0px );
    -webkit-backdrop-filter: blur( 4.0px );
    border-radius: 10px;
    border: 1px solid rgba( 255, 255, 255, 0.18 );
}

#index_osusume .osusume_inner &gt; a:hover .osusume_datum &gt; span{
	background: rgba( 237, 109, 41, 0.60 );
	border: 1px solid rgba(247, 229, 169, 0.19);
	box-shadow: 0 3px 20px 0 rgb(135 31 38 / 37%);
	color: #fff;
	transition: all .3s;
}

#index_osusume .osusume_addr{
	position: relative;
}

#index_osusume .h4_text{
	color:var(--textgreen);
	display: inline-block;
	font-weight: 400;
	font-size: 16px;
}

#index_osusume .osusume_addr .h4_text{
	position: absolute;
}

#index_osusume .h4_setumei{
	display: inline-block;
	margin-left: 4em;
	width: 8em;
	height: 2.5em;
	margin-bottom: 10px;
}

#index_osusume .osusume_inner &gt; div &gt; p,
#index_osusume .osusume_inner &gt; a &gt; p{
	width: 100%;
	height: 25px;
	margin: 0 auto 7px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	font-size: 15px;
	line-height: 25px;
	text-align: center;
}


#index_osusume .osusume_c &gt; p{
	border: solid 1px #edb868;
	background: #fff1db;
}

#index_osusume .osusume_b &gt; p{
	border: solid 1px #b3d465;
	background: #ecfcc6;
}

#index_osusume .osusume_photo img{
	width: 100%;
	box-shadow:2px 2px 4px rgba(138, 138, 138, 0.5);
}

#index_osusume .osusume_addr,
#index_osusume .osusume_cost{
	font-size: 16px;
}

#index_osusume .osusume_c .osusume_addr,
#index_osusume .osusume_b .osusume_addr{
	border-bottom: dashed 1px var(--darkbrown);
}

#index_osusume .osusume_catch{
	font-size: 14px;
	text-align: left;
	margin-top: 16px;
}

/* company */
#company_info{
	margin-top: 60px;
}

#company_message{
	margin-top: 10px;
	margin-bottom: 30px;
	font-family: 'Noto Serif JP', serif;
}

#company_message &gt; div{
	width: 90%;
	margin: 0 auto 10px;
	background-image: url(../images/companypage/textback.png);
	background-size: 100% auto;
	background-position-y: bottom;
	background-repeat: no-repeat;
}

#company_message &gt; div h3{
	font-size: 28px;
	color: var(--darkbrown);
	text-align: center;
	margin-bottom: 1em;
}

.eachTextAnime span{
	opacity: 0;
}

.eachTextAnime.appeartext span{
	animation:text_anime_on 1s ease-out forwards;
}

@keyframes text_anime_on{
	0%{
		opacity:0;
	}
	100%{
		opacity:1;
	}
}

#company_message &gt; div p{
	font-size: 17px;
	color: var(--textbrown);
	line-height: 1.7;
}

#company_message &gt; div p:not(:first-of-type){
	text-align: right;
	margin: 0;
}

#company_message &gt; div p:nth-of-type(2){
	padding-right: 2em;
}

#company_message:before,
#company_message::after{
	content: "";
	display: block;
	width: 100%;
	height: 70px;
	background-repeat: no-repeat;
	background-size: contain;
}

#company_message:before{
	background-image: url(../images/companypage/top_hr.svg);
}

#company_message:after{
	background-image: url(../images/companypage/bottom_hr.svg);
}

#company_photo{
	display: flex;
	width: 100%; 
	height: 300px;	
	flex-direction: row;
	justify-content: space-evenly;
	margin-bottom: 30px;
}

#company_photo &gt; div{
	display: flex;
	width: 30%;
	height: 100%;
	text-align: left;
	flex-direction: column;
	flex-wrap: wrap;
	justify-content: space-between;
}

#company_photo img{
	object-fit: contain;
	box-shadow: var(--shadow);
	transition: all .3s;
}

#company_photo &gt; img{
	width: 400px;
	height: 100%;
}

#company_photo &gt; div img:first-of-type,
#company_photo &gt; div img:last-of-type{
	width: 200px;
	height: 45%;
	object-fit: cover;
}

#company_text,
#companymap{
	width: 100%;
}

#company_text{
	color: var(--textbrown);
	margin-bottom: 20px;
	line-height: 1.8;
}

#company_text dl{
	display: table;
	width: 100%;
}

#company_text dl dt,
#company_text dl dd{
	display: table-cell;
	vertical-align: middle;
	padding: 10px 0;
	border-bottom: dashed 1px var(--green);
}

#company_text dl dt{
	width: 15%;
	font-weight: 700;
	text-align: center;
}

#company_text dl dd &gt; span:not(.nowrap){
	color: var(--textorange);
}

#company_text dl dd{
	width: 85%;
}

#companymap{
	height: 500px;
}

/* contact */
#contact{
	margin-top: 60px;
}

#form_table dl{
	display: table;
	width: 100%;
	border-collapse: separate;
	border-spacing: 0px 7px;
}

#form_table dt,
#form_table dd{
	display: table-cell;
	padding: 10px;
	vertical-align: middle;
}

#form_table dt{
	width: 25%;
	font-size: 18px;
	color: #333;
	padding-left: 1em;
	
}

.kakunin_message + div#form_table dt{
	background-color: var(--backbrown);
	position: relative;
	padding: 1.2em;
	letter-spacing: 1px;
}

.kakunin_message + div#form_table dt:after{
    display: block;
    content: "";
    width: 0px;
    height: 0px;
    position: absolute;
    top: calc(50% - 10px);
    right: -10px;
    border-left: 10px solid var(--backbrown);
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    transition: all .3s;
}

.kakunin_message + div#form_table dd{
	padding-left: 2em;
	background-color: #fff;
}


#form_table dd{
	width: 75%;
}

#form_table dd &gt; span{
	font-size: 14px;
	color: var(--orange);
}

#form_table dl:last-of-type dd &gt; p:last-of-type a,
#form_table dl:last-of-type dd &gt; div:first-of-type a{
	color: var(--darkbrown);
	font-weight: 700;
}

#form_table dl:last-of-type dd &gt; p:last-of-type a:hover,
#form_table dl:last-of-type dd &gt; div:first-of-type a:hover{
	color: var(--orange);
	border-bottom: solid 1px var(--orange);
}


#form_table dd input[type='text'],
#form_table dd input[type='tel'],
#form_table dd input[type='email'],
#form_table dd textarea{
	width: 100%;
	padding: 5px;
	line-height: 20px;
	font-size: 16px;
}

#form_table dd textarea{
	height: 8em;
}

#form_table dd button{
	margin: 10px 0;
	padding: 10px;
	font-size: 1.1em;
}

#form_table dd button[type='reset']{
	color: #c50f18;
}

#form_table dd button{
	margin-top: 30px;
	margin-bottom: 30px;
	font-size: 16px;
  	position:relative;
  	color:#333;
  	border:2px solid var(--textbrown);
    padding: 15px 30px; 
	background-color: #fff;
  	display:inline-block;
    text-decoration: none;
    outline: none;
	cursor: pointer;
  	transition:all 0.3s ease-in-out;
}

/*hoverした際の背景の形状*/
#form_table dd button:hover,
#form_table dd button:active{
	background:var(--textbrown);
	color: #fff;
	border-color:transparent;
}

/*線の設定*/
#form_table dd button::before,
#form_table dd button::after{
	content:'';
	position:absolute;
	border:solid var(--darkbrown);
	width:10px;
	height:10px;
	transition:all 0.3s ease-in-out;
}

/*線の位置と形状*/
#form_table dd button::before{
	top:-6px;
	left:-6px;
	border-width:1px 0 0 1px;
}

/*線の位置と形状*/
#form_table dd button::after{
	bottom:-6px;
	right:-6px;
	border-width:0 1px 1px 0;
}

/*hoverした際の線の形状*/
#form_table dd button:hover::before,
#form_table dd button:hover::after,
#form_table dd button:active::before,
#form_table dd button:active::after{
	width:calc(100% + 11px);
	height:calc(100% + 11px);
	border-color:#666;
}

/* privacy */
#privacy{
	margin-top: 60px;
	color: var(--textbrown);
}

#privacy h1 + p{
	margin-top: 1em;
	font-size: 18px;
}

#privacy &gt; ol{
	margin-bottom: 1em;
	letter-spacing: 1px;
	font-size: 16px;
}

#privacy &gt; ol &gt; li &gt; ol,
#privacy &gt; ol &gt; li &gt; ol &gt; li &gt; ol,
#privacy &gt; ol &gt; li &gt; ul{
	margin: 1em 0;
}

#privacy ol &gt; li{
	margin-left: 2em;
	margin-bottom: 20px;
	line-height: 150%;
	list-style-type:var(--orange);
}

#privacy ol &gt; li &gt; ol &gt; li{
	list-style-type: lower-roman;
}

#privacy ol &gt; li &gt; ol &gt; li &gt; ol{
	padding: 1em;
}

#privacy &gt; ol &gt; li &gt; ul{
	margin-left: 2em;
	list-style-type: disc;
}

#privacy ol &gt; li &gt; ol &gt; li &gt; ol &gt; li{
	list-style-type: lower-alpha;
}

/* link */
#link{
	margin-top: 60px;
}

#link table{
	width: 100%;
	border-collapse: collapse;
	margin-bottom: 30px;
}

article #link h2{
	font-size: 20px;
	margin-top: 10px;
	color: var(--textbrown);
	border: none;
}

article #link h2 i{
	display: inline-block;
	margin-right: 0.5em;
	color: var(--green);
}
  
#link table tr{
	border-bottom: solid 2px white;
}
  
#link table tr:last-child{
	border-bottom: none;
}
  
#link table th{
	position: relative;
	text-align: left;
	width: 35%;
	height: 90px;
	background-color: var(--backbrown);
	color: var(--textbrown);
	text-align: center;
	padding: 10px 0;
	transition: all .3s;
}

#link table th a{
	display: inline-block;
	color: var(--textbrown);
	height: 100%;
	width: 100%;
	padding-top: 20px;
	vertical-align: middle;
	font-weight: 400;
	transition: all .3s;
}

#link table th a i{
	margin-left: 14px;
	font-size: 14px;
	color: var(--orange);
	transition: all .3s;
}
  
#link table th:after{
	display: block;
	content: "";
	width: 0px;
	height: 0px;
	position: absolute;
	top:calc(50% - 10px);
	right:-10px;
	border-left: 10px solid var(--backbrown);
	border-top: 10px solid transparent;
	border-bottom: 10px solid transparent;
	transition: all .3s;
}

#link table th:hover{
	background-color: var(--orange);
	transition: .3s;
}

#link table th:hover a{
	color: white;
	transition: .3s;
}

#link table th:hover a i{
	color: #fff;
	transition: .3s;
}

#link table th:hover:after{
	border-left: 10px solid var(--orange);
	transition: .3s;
}
  
#link table td{
	text-align: left;
	width: 65%;
	text-align: center;
	background-color: #fff;
	padding: 10px 30px;
}

/*　kaitori　*/
#kaitori{
	margin-top: 60px;
}

#kaitori span.nowrap{
	display: inline-block;
	margin: 0;
	padding: 0;
}

#kaitori #topimg{
	width: 100%;
	height: auto;
	margin-top: 20px;
}

#kaitori_catch p{
	width: 95%;
	font-size: 20px;
	margin: 20px auto;
	letter-spacing: 2px;
}

#kaitori_catch + div{
	margin: 40px auto;
}

#kaitori_catch + div a{
	font-size: 18px;
	font-weight: 700;
	color: var(--textbrown);
	letter-spacing: 2px;
	padding: 0.5em 1em;
	border: 1px solid var(--textbrown);
	transition: all .2s;
}

#kaitori_catch + div a:hover{
	color: var(--orange);
	border-color: var(--orange);
	transition: all .2s;
}

#kaitori_catch + div a:hover i{
	animation: arrowrotate .5s;
}

#kaitori_bottomlink{
	margin: 80px auto;
}

#kaitori_bottomlink a{
	font-size: 24px;
	font-weight: 700;
	color: var(--textbrown);
	letter-spacing: 2px;
	padding: 0.5em 1em;
	border: 1px solid var(--textbrown);
	transition: all .2s;
}

#kaitori_bottomlink a:hover{
	color: var(--orange);
	border-color: var(--orange);
	transition: all .2s;
}

#kaitori_bottomlink a:hover i{
	animation: arrowrotate .5s;
}

#kaitori h2{
	text-align: center;
	font-size: 36px;
	font-weight: 700;
	letter-spacing: 3px;
	margin: 50px auto;
	border: none;
	color: #444;	
	line-height: 1.3;
}

#kaitori h2 span.nowrap span{
	color: var(--orange);
	margin: 0 0.2em;
}

#kaitori h2 span.nowrap span:last-of-type{
	color: var(--green);
}

#kaitori_point h3{
	font-size: 30px;
	font-weight: 700;
	text-align: center;
	margin: 80px auto 20px;
	padding: 20px 0;
	position: relative;
	background-image: url(../images/kaitoripage/h3back.svg);
	background-repeat: no-repeat;
}

#kaitori .point{
	background-color: #eee;
	margin: 40px auto;
	padding: 10px 10px 20px;
}

#kaitori .point h4{
	font-size: 24px;
	font-weight: 700;
	position: relative;
	letter-spacing: 3px;
	padding: .6em 2em 1em 4em;
	line-height: 1.25;
}

#kaitori .point h4::first-letter{
	font-size: 38px;
	color: var(--green);
	padding-right: 3px;
}

#kaitori .point h4::before,
#kaitori .point h4::after{
	position: absolute;
	content: '';
	border-radius: 100%
}

#kaitori .point h4::before{
	top: -1em;
	left: .2em;
	width: 52px;
	height: 52px;
	background-color: rgba(100, 219, 31, 0.4);
	z-index: 2;
}

#kaitori .point h4::after{
	top: 0em;
	left: 1.2em;
	width: 40px;
	height: 40px;
	background-color: rgba(255, 178, 90, 0.3);
}

#kaitori .point p{
	width: 90%;
	font-size: 18px;
	padding: 1.2em;
	margin: 0 auto;
	background-color: #fff;
	line-height: 1.5;
	letter-spacing: 2px;
}

#kaitori_flow{
	position: relative;
	z-index: 1;
	margin-bottom: 50px;
}

#kaitori_flow h3{
	font-size: 30px;
	font-weight: 700;
	text-align: center;
	margin: 50px auto 20px;
	padding: 20px 0;
	position: relative;
	margin-bottom: 1em;
}

#kaitori_flow h3::before{
	position: absolute;
	display: inline-block;
	content: '';
	bottom: -10px;
	width: 100px;
	height: 5px;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	background-color: var(--green);
	border-radius: 10px;
}

#kaitori_flow &gt; div &gt; div{
	width: 95%;
	display: flex;
	flex-direction: row;
	justify-content: space-around;
	margin: 90px auto 0;
	position: relative;
}

#kaitori_flow &gt; div &gt; div:not(:last-of-type)::after{
	content: ' ';
	position: absolute;
	bottom: -60px;
	left: 130px;
	width: 0;
	height: 0;
	border: none;
	border-top: 35px solid var(--green);
	border-right: 40px solid transparent;
	border-left: 40px solid transparent;
}

.flowtitle{
	width: 30%;
	height: 120px;
	text-align: center;
    border: 1px solid var(--green);
    position: relative;
	padding-top: 28px;
    background-color: #fff;
	z-index: auto;
}

.flowtitle::before{
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	top: 11px;
	left: 11px;
	z-index: -1;
	background-image: linear-gradient(-45deg, #fff 37%, #777 37%, #777 50%, #fff 50%, #fff 87%, #777 87%, #777);
	background-size: 8px 8px;
}

.flowtitle p.en{
	font-size: 18px;
	font-weight: 700;
	margin: 0;
	letter-spacing: 1px;
	font-family: 'Ubuntu', sans-serif;
}

.flowtitle p.en + p{
	font-size: 24px;
	margin: 0;
}

.flowtitle + p{
	width: 60%;
	letter-spacing: 0.08em;
	line-height: 1.5;
}

span.markup{
	background:linear-gradient(transparent 75%, #ffe0c1 75%);
	font-weight:bold; 
}

/*　買取のフォーム　*/
#kaitori_form .ddcase,
#kaitori_form span.white{
	font-size: 16px;
	color: var(--textbrown);
}

#kaitori_form #form_table dl:first-of-type .ddcase &gt; label:nth-of-type(3){
	margin-left: 1em;
}

#kaitori_form h2, #contact h2 {
    font-size: 1.5em;
    margin-bottom: 2em;
    line-height: 30px;
    margin-top: 1em;
    letter-spacing: 2px;
    text-indent: 1em;
}

.kakunin_message{
	text-align: center;
}

/* clist, blist */
#cblist{
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-top: 60px;
}

#total_num{
	width: 100%;
	color: #333;
	margin-bottom: 20px;
	font-size: 16px;
	font-weight: bold;
	letter-spacing: 1px;
}

#total_num &gt; span{
	color: #4a7e19;
	font-weight: 400;
	letter-spacing: 1px;
}

#order_button{
	width: 100%;
	margin-bottom: 10px;
}

#order_button label,
#order_button input{
	display: none;
}

#order_button ul {
	list-style-type: none;
	display: flex;
	justify-content: space-around;
	width: 100%;
}

#order_button ul li {
	display: inline-block;
	padding-right: 5px;
}

#order_button button{
	font-size: 15px;
	position:relative;
	color:#333;
	border:2px solid var(--textbrown);
    padding: 10px 30px; 
	background-color: #fff;
	display:inline-block;
    text-decoration: none;
	cursor: pointer;
    outline: none;
	transition:all 0.3s ease-in-out;
}

/*hoverした際の背景の形状*/
#order_button button:hover,
#order_button button:active{
	background:var(--textbrown);
	color: #fff;
	border-color:transparent;
}

/*線の設定*/
#order_button button::before,
#order_button button::after{
	content:'';
	position:absolute;
	border:solid var(--darkbrown);
	width:10px;
	height:10px;
	transition:all 0.3s ease-in-out;
}

/*線の位置と形状*/
#order_button button::before{
	top:-6px;
	left:-6px;
	border-width:1px 0 0 1px;
}

/*線の位置と形状*/
#order_button button::after{
	bottom:-6px;
	right:-6px;
	border-width:0 1px 1px 0;
}

/*hoverした際の線の形状*/
#order_button button:hover::before,
#order_button button:hover::after,
#order_button button:active::before,
#order_button button:active::after{
	width:calc(100% + 11px);
	height:calc(100% + 11px);
	border-color:#666;
}

div.navi{
	display: flex;
	width: 100%;
	margin-top: 20px;
	margin-bottom: 40px;
	font-size: 15px;
	line-height: 100%;
}

div.navi_prev,
div.navi_next,
div.navi_number{
	display: block;
	padding: 5px 0;
}

div.navi_next{
	text-align: right;
}

div.navi_number{
	flex-grow: 1;
	text-align: center;
}

div.navi_prev a,
div.navi_next a,
div.navi_number span,
div.navi_number a{
	display: inline-block;
	vertical-align: middle;
	border-radius: 10px;
	margin: 0 2px;
	transition: all .3s;
}

div.navi_prev a,
div.navi_next a{
	padding: 20px 10px;
}

div.navi_number span,
div.navi_number a{
	padding: 20px 20px;
}

div.navi_number span{
	color: #fff;
	background: rgba(59, 180, 28, 0.685);
    box-shadow: 0 3px 20px 0 rgb(31 135 38 / 37%);
    backdrop-filter: blur( 4.0px );
    -webkit-backdrop-filter: blur( 4.0px );
}

div.navi_prev a:hover,
div.navi_next a:hover,
div.navi_prev a:active,
div.navi_next a:active,
div.navi_number a:hover,
div.navi_number a:active{
	color: #fff;
	background: rgba( 237, 109, 41, 0.60 );
	box-shadow: 0 3px 20px 0 rgb(135 31 38 / 37%);
	transition: all .3s;
	animation: animScale 0.3s ease-out;
	transform-origin: 50% 50%;
	-webkit-animation: animScale 0.3s ease-out;
	-webkit-transform-origin: 50% 50%;
	-moz-animation: animScale 0.3s ease-out;
	-moz-transform-origin: 50% 50%;
}

@keyframes animScale{
	0%	{ transform: scale(0.8, 0.8); }
	40% { transform: scale(1.1, 1.1); }
	60% { transform: scale(1, 1); }
	80% { transform: scale(1.05, 1.05); }
	100% { transform: scale(1, 1); }
}
@-webkit-keyframes animScale{
	0% 	{ -webkit-transform: scale(0.8, 0.8); }
	40% { -webkit-transform: scale(1.1, 1.1); }
	60% { -webkit-transform: scale(1, 1); }
	80% { -webkit-transform: scale(1.05, 1.05); }
	100% { -webkit-transform: scale(1, 1); }
}
@-moz-keyframes animScale{
	0% 	{ -moz-transform: scale(0.8, 0.8); }
	40% { -moz-transform: scale(1.1, 1.1); }
	60% { -moz-transform: scale(1, 1); }
	80% { -moz-transform: scale(1.05, 1.05); }
	100% { -moz-transform: scale(1, 1); }
}

#cblist a.cblist_link{
	display: inline-block;
	width: calc(100% / 2 - 30px);
	margin-bottom: 70px;
	background: #fff;
	padding-bottom: 20px;
	box-shadow: 1px 1px 10px rgba(155, 155, 155, 0.45);
	color: #333;
  	position:relative;
    outline: none;
  	transition:all 0.3s ease-in-out;
}

/*hoverした際の背景の形状*/
#cblist a.cblist_link:hover,
#cblist a.cblist_link:active{
	border-color:transparent;
}
  
/*線の設定*/
#cblist a.cblist_link::before,
#cblist a.cblist_link::after {
	content:'';
	position:absolute;
	border:solid var(--green);
	width:30px;
	height:20px;
	transition:all 0.3s ease-in-out;
}
  
/*線の位置と形状*/
#cblist a.cblist_link::before{
	top:-10px;
	left:-10px;
	border-width:2px 0 0 2px;
}
  
/*線の位置と形状*/
#cblist a.cblist_link::after{
	bottom:-10px;
	right:-10px;
	border-width:0 2px 2px 0;
}
  
/*hoverした際の線の形状*/
#cblist a.cblist_link:hover::before,
#cblist a.cblist_link:hover::after,
#cblist a.cblist_link:active::before,
#cblist a.cblist_link:active::after{
	width:calc(100% + 18px);
	height:calc(100% + 18px);
	border-color:var(--orange);
}

/*コメント部分*/
#cblist a.cblist_link &gt; p{
	width: 100%;
	background: var(--lightbrown);
	color: var(--textbrown);
	font-size: 15px;
	line-height: 24px;
	position: relative;
	padding: 0.25em 0.5em;
	border-left: solid 2em var(--green);
	font-weight: bold;
	
}
  
#cblist a.cblist_link &gt; p:before{
	font-family: "Font Awesome 5 Free";
	content: "\f303";
  	position: absolute;
  	padding: 0em;
  	color: #fff;
  	font-weight: 700;
  	left: -1.4em;
  	top: 50%;
  	-webkit-transform: translateY(-50%);
  	transform: translateY(-50%);
}

#cblist a.cblist_link div.cblist_tbl{
	display: flex;
	flex-direction: column;
	width: 100%;
}

#cblist a.cblist_link div.cblist_tbl &gt; div{
	display: block;
}

#cblist a.cblist_link div.cblist_tbl div.cblist_photo{
	width: 70%;
	margin: 0 auto;
	position: relative;
}

#cblist a.cblist_link div.cblist_tbl div.cblist_photo img{
	display: block;
	width: 100%;
	height: auto;
	transition: all .3s;
}

#cblist a.cblist_link:hover div.cblist_tbl div.cblist_photo img,
#cblist a.cblist_link:active div.cblist_tbl div.cblist_photo img{
	transform: scale(1.07, 1.07);
	transition: 0.3s;
}

#cblist a.cblist_link div.cblist_tbl div.cblist_photo span{
	position: absolute;
	display: inline-block;
	top: 0px;
	left: 0;
	z-index: 5;
	color: #fff;
	background-color: var(--green);
	text-align: center;
	letter-spacing: 1px;
    width: 6em;
    height: 45px;
    padding: 10px;
    font-size: 15px;
    text-align: center;
    background: rgba(59, 180, 28, 0.685);
    box-shadow: 0 3px 20px 0 rgb(31 135 38 / 37%);
    backdrop-filter: blur( 4.0px );
    -webkit-backdrop-filter: blur( 4.0px );
    border-radius: 5px;
    border: 1px solid rgba( 255, 255, 255, 0.18 );
}

#cblist a.cblist_link:hover div.cblist_tbl div.cblist_photo span,
#cblist a.cblist_link:active div.cblist_tbl div.cblist_photo span{
	background: rgba( 237, 109, 41, 0.60 );
	border: 1px solid rgba(247, 229, 169, 0.19);
	box-shadow: 0 3px 20px 0 rgb(135 31 38 / 37%);
	color: #fff;
	transition: all .3s;
}

#cblist a.cblist_link div.cblist_tbl div.cblist_list{
	flex-grow: 1;
	padding-left: 1em;
	padding-right: 1em;
	margin-top: 10px;
}

#cblist a.cblist_link div.cblist_tbl dl {
	display: table;
	width: 100%;
}

#cblist a.cblist_link div.cblist_tbl dl.st_cost dd span{
	color: #c50f18;
	font-size: 20px;
	font-weight: 700;
	padding-left: 3px;
	padding-right: 3px;
	background-image: -webkit-linear-gradient(left, #ffce9e 50%, transparent 50%);
	background-image: linear-gradient(to right, #ffce9e 50%, transparent 50%);
	background-position: 100% 0%;
	background-size: 200% auto;
	background-repeat: no-repeat;
	-webkit-transition: background-position .5s ease-out;
	transition: background-position .3s ease-out;
}

#cblist a.cblist_link:hover div.cblist_tbl dl.st_cost dd span,
#cblist a.cblist_link:active div.cblist_tbl dl.st_cost dd span{
	background-position: 0% 0%;
}

#cblist a.cblist_link div.cblist_tbl dt,
#cblist a.cblist_link div.cblist_tbl dd{
	display: table-cell;
	vertical-align: middle;
	padding: 5px 0;
	border-bottom: dashed 1px var(--darkbrown);
}

#cblist a.cblist_link div.cblist_tbl dl:last-of-type dt,
#cblist a.cblist_link div.cblist_tbl dl:last-of-type dd{
	border-bottom: none;
}

#cblist a.cblist_link div.cblist_tbl dt{
	width: 35%;
	font-weight: 700;
	letter-spacing: 2px;
}

#cblist h1 span{
	padding-left: 1em;
	font-size: 20px;
}

/* meisai */
#meisai{
	margin-top: 60px;
}

#meisai h1{
	position: relative;
}

#meisai h1 span{
	display: inline-block;
	color: var(--textbrown);
	font-size: 26px;
	padding-bottom: 10px;
}

#meisai h1 button{
	position: absolute;
	top: 4px;
	right: 10px;
	padding: 4px 10px;
	font-size: 14px;
	color: var(--textbrown);
	border:1px solid var(--textbrown);
	background-color: #fff;
	transition: all .3s;
}

#meisai h1 button:hover,
#meisai h1 button:active{
	color: #fff;
	border-color: #fff;
	background-color: var(--darkbrown);
	transition: all .3s;
	cursor: pointer;
	animation: animScale 0.5s ease-out;
	transform-origin: 50% 50%;
	-webkit-animation: animScale2 0.5s ease-out;
	-webkit-transform-origin: 50% 50%;
	-moz-animation: animScale2 0.5s ease-out;
	-moz-transform-origin: 50% 50%;
}

@keyframes animScale2{
	0% 	{ transform: scale(0.9, 0.9); }
	40% { transform: scale(1.05, 1.05); }
	60% { transform: scale(1, 1); }
	80% { transform: scale(1.025, 1.025); }
	100% { transform: scale(1, 1); }
}
@-webkit-keyframes animScale2{
	0%	{ -webkit-transform: scale(0.9, 0.9); }
	40% { -webkit-transform: scale(1.05, 1.05); }
	60% { -webkit-transform: scale(1, 1); }
	80% { -webkit-transform: scale(1.025, 1.025); }
	100% { -webkit-transform: scale(1, 1); }
}
@-moz-keyframes animScale2{
	0% 	{ -moz-transform: scale(0.9, 0.9); }
	40% { -moz-transform: scale(1.05, 1.05); }
	60% { -moz-transform: scale(1, 1); }
	80% { -moz-transform: scale(1.25, 1.25); }
	100% { -moz-transform: scale(1, 1); }
}

#meisai p{
	margin-bottom: 20px;
}

#meisai p.meisai_catch{
	width: 100%;
	font-family:'メイリオ', 'Meiryo','Noto Sans JP','Hiragino Kaku Gothic ProN','ヒラギノ角ゴ ProN W3',sans-serif;
	background: var(--lightbrown);
	font-weight: 500;
	color: var(--textbrown);
	font-size: 22px;
	line-height: 30px;
	position: relative;
	padding: 0.75em 0.5em;
	border-left: solid 2em var(--green);
}
  
#meisai p.meisai_catch:before{
	font-family: "Font Awesome 5 Free";
	content: "\f303";
  	position: absolute;
  	padding: 0em;
  	color: #fff;
  	font-weight: 700;
  	left: -1.4em;
  	top: 50%;
  	-webkit-transform: translateY(-50%);
  	transform: translateY(-50%);
}

#goback{
	margin-bottom: 10px;
}

#goback button{
	padding: 5px 10px;
	color: var(--textbrown);
	font-size: 16px;
	border: none;
	background-color: rgba( 255, 255, 255, 0 );
	transition: all .3s;
	position: relative;
	cursor: pointer;
}

#goback button i{
	display: inline-block;
	color: var(--orange);
	margin-right: 1em;
}

#goback button:hover i,
#goback button:active i{
	animation: arrowrotate .3s;
}

#goback button::after{
	position: absolute;
	content: '';
	width: 0;
	height: 1px;
	background-color: var(--orange);
	transition: .3s;
	bottom: 0;
	right: 0;
}

#goback button:hover::after,
#goback button:active::after{
	width: 100%;
}

#goback button:hover,
#goback button:active{
	color: var(--orange);
}

#meisai_head,
#meisai_body{
	width: 100%;
	margin-bottom: 30px;
	background: #fff;
	border: solid 1px var(--darkbrown);
	font-size: 15px;
}

#meisai_head th,
#meisai_head td{
	border-left: solid 1px var(--darkbrown);
	border-right: solid 1px var(--darkbrown);
	text-align: center;
}

#meisai_head th{
	padding: 10px 6px;
	font-weight: 500;
	color: var(--textbrown);
	background: var(--lightbrown);
}

#meisai_head td{
	padding: 15px 6px;
}

#meisai_body th,
#meisai_body td{
	border-top: solid 1px var(--darkbrown);
	border-bottom: solid 1px var(--darkbrown);
}

#meisai_body th{
	padding: 15px 6px;
}

#meisai_body td{
	padding: 15px 15px;
}

#meisai_body th{
	font-weight: 500;
	color: var(--textbrown);
	background: var(--lightbrown);
}

#meisai_body td button{
	width: 100%;
	padding: 25px 15px;
	font-size: 18px;
	font-weight: 700;
	letter-spacing: 1px;
	color: var(--textbrown);
	background-color: #fff;
	border-radius: 5px;
	border-left: 1px solid var(--darkbrown);
	border-right: 1px solid var(--darkbrown);
	border-top: 1px solid var(--darkbrown);
	border-bottom: 5px solid #473c31;
	transition: all .2s;
	-webkit-box-shadow: 0 3px 5px rgba(0, 0, 0, .3);
	box-shadow: 0 3px 5px rgba(0, 0, 0, .3);
	cursor: pointer;
	position: relative;
	overflow-x: hidden;
}

#meisai_body td button:hover,
#meisai_body td button:active{
	margin-top: 3px;
	color: #fff;
	font-weight: 400;
	background: var(--darkbrown);
	border-left: 1px solid var(--darkbrown);
	border-right: 1px solid var(--darkbrown);
	border-top: 1px solid var(--darkbrown);
	border-bottom: 0px solid var(--darkbrown);
	transition: all .2s;
}

#meisai_head td span.cost{
	color: #c50f18;
	font-size: 1.65em;
	font-weight: bold;
	margin-right: 5px;
}

#meisai_photo,
#meisai_moviebox,
#meisai_vrbox,
#meisai_photo_thumb{
	width: 100%;
	margin-bottom: 30px;
}

#meisai_moviebox,
#meisai_vrbox{
	text-align: center;
}

#meisai_photo{
	display: table;
}

#meisai_photo p{
	display: table-cell;
	width: 50%;
	text-align: center;
}

#meisai_photo p img{
	width: 320px;
	height: 240px;
	box-shadow: var(--shadow);
	transition: all .3s;
}

#meisai_photo_thumb img{
	width: 132px;
	height: 99px;
	margin: 0 3px 3px 3px;
}

#meisai_photo p img:hover{
	transform: scale(1.07, 1.07);
}

#meisai_moviebox iframe,
#meisai_vrbox iframe{
	width: 920px;
	height: 400px;
	border: 0 none;
}

#map{
	width: 100%;
	height: 360px;
}

/* admin */
#goHome a{
	font-size: 15px;
	border-bottom: 1px solid #333;	
}

#goHome a:hover{
	color: var(--orange);
	border-bottom: 1px solid var(--orange);
}

section#admin_block{
	width: 1000px;
	margin: 0 auto;
	padding: 10px 15px;
}

section#admin_block table{
	width: 100%;
	margin-bottom: 15px;
	border: solid 1px #999;
}

section#admin_block table th{
	background: #A4C6FF;
}

section#admin_block table td{
	background: #fff;
}

section#admin_block table th,
section#admin_block table td{
	padding: 5px;
	border: solid 1px #999;
	text-align: center;
	font-size: 0.9em;
}

section#admin_block table td input[type='text'],
section#admin_block table td input[type='file'],
section#admin_block table td textarea{
	width: 100%;
	margin-bottom: 5px;
	padding: 3px;
	border: solid 1px #ccc;
	font-size: 1em;
}

section#admin_block table td button{
	padding: 3px 6px;
	font-size: 1em;
}

section#admin_block table#holiday_calendar caption{
	padding: 5px 0;
	font-size: 1em;
	text-align: center;
}

section#admin_block table#holiday_calendar caption button,
section#admin_block table#holiday_calendar caption span{
	font-size: 1.2em;
}

section#admin_block table#holiday_calendar th{
	width: 14.285%;
}

section#admin_block table#holiday_calendar tr &gt; td:nth-child(7){
	background: #eef;
	color: #33f;
}

section#admin_block table#holiday_calendar tr &gt; td:nth-child(1),
section#admin_block table#holiday_calendar tr &gt; td.cal_holiday{
	background: #fee;
	color: #f33;
}

section#admin_block table#holiday_calendar td p{
	line-height: 1.3em;
	text-align: left;
}

section#admin_block table#holiday_calendar td p label{
	display: block;
	color: #000;
}

section#admin_block table td.slideimg img{
	width: 100%;
}

section#admin_block a:hover{
	color: var(--orange);
}

/* その他 */
.breadcrumb{
	margin-top: 20px;
	margin-left: 30px;
	margin-bottom: 20px;
}

.breadcrumb ul{
	float: left;
}

.breadcrumb ul li{
	display: inline;
}

.breadcrumb ul li:not(:last-of-type) a{
	color: var(--green);
}

.breadcrumb ul li:not(:last-of-type) a:hover{
	border-bottom: 1px solid var(--green);
}

#pagetop{
	z-index: 11;
	position: fixed;
	top: 80%;
	right: 0;
}

#pagetop a{
	display: block;
	position: relative;
	width: 90px;
	height: 90px;
	border-style: solid;
	border-width: 0 0 90px 90px;
	border-color: transparent transparent rgba(240, 145, 2, 0.85) transparent;
 	filter: drop-shadow(-1px 5px 3px rgba(0,0,0,0.2));
	transition: all .3s;
}

#pagetop a:hover{
	border-color: transparent transparent var(--green) transparent;
}

#pagetop a span{
	display: block;
	position: absolute;	
	color: #fff;
	transition: all .3s;
}

#pagetop a span:first-of-type{
	right: 18px;
	top: 44px;
	font-size: 20px;
}

#pagetop a span:last-of-type{
	right: 4px;
	top: 70px;
	font-size: 20px;
	letter-spacing: 1px;
}

#pagetop a span:first-of-type i{
	border-top: 3px solid #fff;
	transition: all .3s;
}

#pagetop a:hover span:first-of-type{
	top:35px;
} 

#pagetop a:hover span:first-of-type i{
	border: none;
}



.left{
	text-align: left;
}

.center{
	text-align: center;
}

.right{
	text-align: right;
}

.bold{
	font-weight: bold;
}

.normal{
	font-weight: normal;
}

.red{
	color: #c50f18;
	/*f00*/
}

.pink{
	color: #eb6877;
}

.ai {
	color: #039;
}

.green {
	color: #01844B;
}

.gray {
	color: #666;
}

.black {
	color: #000;
}

.imeon {
	ime-mode: active;
}

.imeoff {
	ime-mode: inactive;
}

.imenone {
	ime-mode: disabled;
}

/*ipad*/
@media screen and (max-width: 1024px){
	#indextop{
		width: 100vw;
		height: auto;
		background-image:none;
		background-position: center;
		background-repeat: no-repeat;
		background-size: cover;
		text-align: center;
	}
	
	#indextop &gt; img{
		max-width: 1000px;
		width: 100%;
		height: auto;
	}

	#container {
		width: 100%;
	}

	#glnav,header #headinfo div{
		display: none;
	}

	.drawer {
		display: block!important;
		z-index: 201;
	}
	aside.drawer {
		z-index: 200;
	}

	.drawer-hidden {
		display: none;
	}

	.drawer-open {
		position: fixed;
		width: 90px;
		top: 20px;
		right: 10px;
		z-index: 205;
		display: inline-block;
		height: 88px;
		justify-content: center;
		align-items: center;
		backdrop-filter: blur(5px);
		background-color: rgba(9, 47, 153, 0.603);
		box-shadow: rgba(0, 0, 0, 0.3) 2px 6px 6px;
		border: 2px rgba(255,255,255,0.4) solid;
		border-bottom: 2px rgba(40,40,40,0.35) solid;
		border-right: 2px rgba(40,40,40,0.35) solid;
		-webkit-border-radius: 5px 5px 5px 5px;
		-moz-border-radius: 5px 5px 5px 5px;
		border-radius: 5px 5px 5px 5px;
		cursor: pointer;
	}

	.drawer-open span,
	.drawer-open span:before,
	.drawer-open span:after {
		content: '';
		display: block;
		height: 6px;
		width: 65px;
		border-radius: 3px;
		background: #fff;
		transition: 0.5s;
		position: absolute;
		top: 17px;
		left: 10px;
	}

	/* 三本線のうち一番上の棒の位置調整 */
	.drawer-open span:before {
		top: 21px;
		left: 0px;
	}
	/* 三本線のうち一番下の棒の位置調整 */
	.drawer-open span:after {
		top: 42px;
		left: 0px;
	}
	
	/* アイコンがクリックされたら真ん中の線を透明にする */
	#drawer-check:checked ~ .drawer-open {
		backdrop-filter: blur(5px);
		background-color: rgba(240, 145, 2, 0.76);
		box-shadow: rgba(0, 0, 0, 0.3) 2px 6px 6px;
		border: 2px rgba(255,255,255,0.4) solid;
		border-bottom: 2px rgba(40,40,40,0.35) solid;
		border-right: 2px rgba(40,40,40,0.35) solid;
	}

	#drawer-check:checked ~ .drawer-open span {
		background: rgba(255, 255, 255, 0);
	}

	/* アイコンがクリックされたらアイコンが×印になように上下の線を回転 */
	#drawer-check:checked ~ .drawer-open span::before {
		bottom: 0;
		transform: rotate(45deg);
		background-color: #fff;
	}

	.drawer-content {
		padding: 125px 0px 0 0;
	}

	#drawer-check:checked ~ .drawer-open span::after {
		top: 21px;
		transform: rotate(-45deg);
		background-color: #fff;
	}

	/* メニューのデザイン*/
	.drawer-content {
		z-index: 201;
		width: 100%;
		height: 100%;
		position: fixed;
		top: 0;
		left: 100%;/* メニューを画面の外に飛ばす */
		background-color: rgba(255,255,255,0.3);
		transition: .5s;
		overflow-scrolling: touch;
		overflow-y: auto;
	}

	.drawer-content div.drawer-content_cover {
		width: 100%;
		height: auto;
		padding: 20px 0 70px;
		background-color: #fff;
	}

	/* アイコンがクリックされたらメニューを表示 */
	#drawer-check:checked ~ .drawer-content {
		left: 0;/* メニューを画面に入れる */
	}

	/* メニュー本体のcss */
	.drawer-content ul {
		width: 90%;
		margin: 0 auto 1em;
	}

	.drawer-content ul li {
		margin: 0 0 0.5em 0;
	}

	.drawer-content ul li.ttl {
		margin: 0px 0px 3px 0px;
		display: flex;
		flex-grow: 1;
		align-items: center;
		height: 30px;
		margin-bottom: 10px;
		padding-left : 0.5em;
		line-height: 30px;
		letter-spacing: 1px;
		text-align: left;
		font-size: 1.3em;
		color: #fff;
		background-color: var(--orange);
		border-radius: 3px;
	}

	.drawer-content ul li.ttl:after {
		content: "";
		display: block;
		flex-grow: 1;
		margin-left: 8px;
		border-top: solid 2px #fff;
	}

	.drawer-content ul li.btm {
		margin: 0 0 15px 0;
	}

	.drawer-content ul li.bttm {
		margin: 0 0 30px 0;
	}

	.drawer-content &gt; div &gt; ul &gt; li &gt; a {
		display: block;
		padding: 1em 1em 1.55em 65px;
		letter-spacing: 4px;
		font-size: 1.25em;
		color: #333;
		border-bottom: solid 1px #ddd;
	}

	.humb-menu label {
		display: flex;
		justify-content: space-between;
		padding: 1.25em 1em 1em 65px;
		cursor: pointer;
		font-size: 1.25em;
		letter-spacing: 4px;
		color: #333;
	}

	.humb-menu label p + p{
		margin-right: 2em;
	}

	.humb-menu input {
		display: none;
	}

	.humb-menu .accshow {
		height: 0;
		overflow: hidden;
		transition: all 3s;
		display: flex;
		flex-direction: row;
		flex-wrap: wrap;
		justify-content: space-between;
	}

	.humb-menu .accshow li{
		margin: 0.5% auto;
		padding: 0;
		text-align: center;
		font-size: 15px;
		width: 24%;
		height: 130px;
	}

	.humb-menu .accshow li a{
		display: block;
		width: 100%;
		height: 100%;
		padding: 10px;
		border: 1px solid var(--green);
		border-radius: 10px;
	}

	.humb-menu .accshow li a span{
		display: block;
		padding-top: 70px;
		color: var(--green);
	}

	.humb-menu .cssacc:checked + .accshow {
		height: auto;
		transition: all 3s;
	}

	.humb-menu li.has-child{
		border-bottom: solid 1px #ddd;
	}

	/*子メニューのアイコン表示*/
	.humb-menu li .accshow li a span{
		background-size: 50px;
		background-position: center 10px;
		background-repeat: no-repeat;
	}

	.humb-menu li:nth-of-type(2) .accshow li:nth-of-type(1) a span{
		background-image: url(../images/spmenu_icon/cmenu1.svg);
	}

	.humb-menu li:nth-of-type(2) .accshow li:nth-of-type(2) a span{
		background-image: url(../images/spmenu_icon/cmenu2.svg);
	}

	.humb-menu li:nth-of-type(2) .accshow li:nth-of-type(3) a span{
		background-image: url(../images/spmenu_icon/cmenu3.svg);
	}

	.humb-menu li:nth-of-type(2) .accshow li:nth-of-type(4) a span{
		background-image: url(../images/spmenu_icon/cmenu4.svg);
	}

	.humb-menu li:nth-of-type(2) .accshow li:nth-of-type(5) a span{
		background-image: url(../images/spmenu_icon/cmenu5.svg);
	}

	.humb-menu li:nth-of-type(2) .accshow li:nth-of-type(6) a span{
		background-image: url(../images/spmenu_icon/cmenu6.svg);
	}

	.humb-menu li:nth-of-type(2) .accshow li:nth-of-type(7) a span{
		background-image: url(../images/spmenu_icon/cmenu7.svg);
	}

	.humb-menu li:nth-of-type(2) .accshow li:nth-of-type(8) a span{
		background-image: url(../images/spmenu_icon/cmenu8.svg);
	}

	.humb-menu li:nth-of-type(3) .accshow li:nth-of-type(1) a span{
		background-image: url(../images/spmenu_icon/bmenu1.svg);
	}

	.humb-menu li:nth-of-type(3) .accshow li:nth-of-type(2) a span{
		background-image: url(../images/spmenu_icon/bmenu2.svg);
	}

	.humb-menu li:nth-of-type(3) .accshow li:nth-of-type(3) a span{
		background-image: url(../images/spmenu_icon/bmenu3.svg);
	}

	.humb-menu li:nth-of-type(3) .accshow li:nth-of-type(4) a span{
		background-image: url(../images/spmenu_icon/bmenu4.svg);
	}

	.humb-menu li:nth-of-type(4) .accshow li:nth-of-type(1) a span{
		background-image: url(../images/spmenu_icon/smenu1.svg);
	}

	.humb-menu li:nth-of-type(4) .accshow li:nth-of-type(2) a span{
		background-image: url(../images/spmenu_icon/smenu2.svg);
	}

	/*　インデックスのテナントバナー画像　*/

	#index_tenant{
		margin-top: 50px;
	}

	#index_tenant figure{
		width: 100%;
		height: auto;
		background: none;
	}

	#index_tenant figcaption &gt; span span::before {
		-webkit-animation: shine .5s;
		animation: shine .5s;
	}

	#index_tenant figure figcaption{
		box-shadow:0 0 30px #ff6a72;
	}

	#index_tenant figure:hover img{
		opacity: 1;
		transform: scale(1, 1);
	}
	
	#index_tenant figure:active img{
		opacity: 0.9;
		transform: scale(1.05, 1.05);
		transition: 0.3s;
	}

	/* ボタンの波紋 */
	#index_tenant figure .pulse-btn::before,
	#index_tenant figure .pulse-btn::after {
		content: "";
		display: block;
		position: absolute;
		top: 0;
		bottom: 0;
		left: 0;
		right: 0;
		margin: auto;
		width: 100%;
		height: 100%;
		border: 2px solid #ff6a72;
		border-radius: 3px;
		box-sizing: border-box;
		pointer-events: none;
		animation: pulsate 2s linear infinite;
	}
	
	#index_tenant figure .pulse-btn::after {
		animation-delay: 1s;
	}
	
	/*　バナー画像　*/
	#index_linkbanner figure{
		margin-top: 30px;
	}

	#index_linkbanner figure:first-of-type,
	#index_linkbanner figure:last-of-type{
		background: none;
	}

	#index_linkbanner figure:first-of-type{
		width: 100%;
		height: auto;
	}

	#index_linkbanner figure:last-of-type{
		width: 100%;
		height: auto;
	}

	/*　査定バナー画像　*/
	#index_linkbanner figure:first-of-type:hover img{
		opacity: 1;
		transform: scale(1, 1);
	}
	
	#index_linkbanner figure:first-of-type a &gt; span{
		font-size: 40px;
		bottom: 45%;
		right: 6px;
	}

	#index_linkbanner figure:first-of-type a &gt; span &gt; span &gt; i{
		border-radius: 50%;
		box-shadow:0 0 10px #fff;
	}

	#index_linkbanner figure:first-of-type:hover a::before{
		content: none;
		display: hidden;
	}

	#index_linkbanner figure:first-of-type:hover a::after{
		content: none;
		display: hidden;
	}

	#index_linkbanner figure:first-of-type .pulse-btn::before,
	#index_linkbanner figure:first-of-type .pulse-btn::after,
	#index_linkbanner figure:first-of-type:hover .pulse-btn::before,
	#index_linkbanner figure:first-of-type:hover .pulse-btn::after {
		content: "";
		display: block;
		position: absolute;
		top: 18px;
		bottom: 0;
		right: 3px;
		margin: auto;
		width: 100%;
		height: 100%;
		border-radius: 50%;
		border: 2px solid #fff;
		box-sizing: border-box;
		pointer-events: none;
		animation: pulsate-2 2s linear infinite;
	}

	@media(max-width: 880px){
		#index_linkbanner figure:first-of-type a &gt; span{
			font-size: 35px;
			top: 36%;
			right: 6px;
		}

		#index_linkbanner figure:first-of-type a &gt; span &gt; span.pulse-btn{
			display: block;
			position: relative;
			width: 35px;
			height: 35px;
			border-radius: 50%;
			transition: all .3s;
		}

		#index_linkbanner figure:first-of-type .pulse-btn::before,
		#index_linkbanner figure:first-of-type .pulse-btn::after {
			top: 23px;
			right: 0;
		}
	}

	/*　ローンシミュレーションバナー画像　*/
	#index_linkbanner figure:last-of-type:hover img{
		opacity: 1;
		transform: scale(1, 1);
	}

	#index_linkbanner figure:last-of-type a:after {
		font-size: 21px;
		text-indent: 0px;
		letter-spacing: 3px;
		position: absolute;
		top: 1.9rem;
		right: -5.3rem;
		padding: 0.5rem 3.7rem;
		content: "詳細を見る";
		-webkit-transform: rotate(40deg);
		transform: rotate(40deg);
		-webkit-transform-origin: top;
		transform-origin: top;
		color: #fff;
		background: var(--green);
		-webkit-box-shadow: 0 3px 3px #127c2c;
		box-shadow: 0 3px 3px #127c2c;
		transition: all 0.3s;
	}

	#index_linkbanner figure:last-of-type .pulse-btn::before {
		content: "";
		display: block;
		position: absolute;
		top: 15px;
		right: 18px;
		margin: auto;
		width: 70px;
		height: 70px;
		border-radius: 50%;
		border: 2px solid rgb(98, 224, 73);
		box-sizing: border-box;
		pointer-events: none;
		animation: pulsate-2 1.5s linear infinite;
	}

	@media(max-width: 880px){
		#index_linkbanner figure:last-of-type a:after {
			font-size: 16px;
			top: 1.5rem;
			right: -5rem;
		}
	
		#index_linkbanner figure:last-of-type .pulse-btn::before {
			top: 18px;
			right: 18px;
			width: 50px;
			height: 50px;
		}
	}
		
	/*　新着情報　*/
	#index_information{
		margin-top: 30px;
	}

	#index_information h2{
		margin-bottom: 16px;
		border:none;
		font-weight: bold;
		color: var(--textbrown);
	}

	#index_information h2 span{
		font-size: 16px;
	}

	#index_information h2 span.en{
		font-size: 28px;
		margin-right: 14px;
	}

	#index_information div {
		height: 200px;
	}

	#index_information div p.info_date {
		font-size: 16px;
	}

	#index_information div p.info_body {
		font-size: 15px;
	}

	/*おすすめ物件タブ切り替え*/
	#index_osusume #osusume_flex {
		background: White;
		box-shadow: 0 0 5px rgba(0,0,0,.1);
		display: flex;
		flex-wrap: wrap;
		overflow: hidden;
	}

	.barea{
		background-color: var(--darkbrown);
	}
	
	.tab-label {
		cursor: pointer;
		flex: 1;
		font-weight: bold;
		order: -1;
		padding: 12px 24px;
		position: relative;
		text-align: center;
		transition: cubic-bezier(0.4, 0, 0.2, 1) .2s;
		user-select: none;
		white-space: nowrap;
		-webkit-tap-highlight-color: transparent;
	}

	.tab-label.chead{
		background-color: var(--lightbrown);
		background-image: url(../images/indexpage/osusume_cicon_sp.png);
		color: var(--textbrown);
	}

	.tab-label.bhead{
		color: var(--textbrown);
	}

	
	.tab-label:hover {
		background: rgba(0, 255, 13, 0.1);
	}

	.tab-label.chead:hover{
		color: var(--textbrown);
	}
	
	.tab-switch:checked + .tab-label {
		color: #fff;
		background: var(--darkbrown);
	}
	
	.tab-switch:not(:checked) + .tab-label.chead {
		box-shadow:-5px 0px 2px -2px rgba(155, 155, 155, 0.45) inset;
	}
	
	.tab-switch:not(:checked) + .tab-label.bhead {
		box-shadow:5px 0 2px -2px rgba(155, 155, 155, 0.45) inset;
	}
	
	.tab-label::after {
		background: var(--lightbrown);
		bottom: 0;
		content: '';
		display: block;
		height: 3px;
		left: 0;
		opacity: 0;
		pointer-events: none;
		position: absolute;
		transform: translateX(100%);
		transition: cubic-bezier(0.4, 0, 0.2, 1) .2s 80ms;
		width: 100%;
		z-index: 1;
	}
	
	.tab-switch:checked ~ .tab-label::after {
		transform: translateX(-100%);
	}
	
	.tab-switch:checked + .tab-label::after {
		opacity: 1;
		transform: translateX(0);
		width: 90%;
		margin-left: 5%;
	}
	
	.tab-content {
		height:0;
		opacity:0;
		padding: 0 20px;
		pointer-events:none;
		transform: translateX(-30%);
		transition: transform .3s 80ms, opacity .3s 80ms;
		width: 100%;
	}
	
	.tab-switch:checked ~ .tab-content {
		transform: translateX(30%);
	}
	
	.tab-switch:checked + .tab-label + .tab-content {
		height: auto;
		opacity: 1;
		order: 1;
		pointer-events:auto;
		transform: translateX(0);
	}
	
	.tab-wrap::after {
		content: '';
		order: -1;
		width: 100%;
	}
	
	.tab-switch {
		display: none;
	}

	#index_osusume &gt; div &gt; div:last-of-type &gt; label &gt; h3 {
		position: static;
	}

	#index_osusume &gt; div &gt; div:last-of-type &gt; div {
		position: static;
	}
	#index_osusume #osusume_flex &gt; div {
		width: 100%;
	}

	#index_osusume .osusume_inner {
		margin: 0 auto 0;
		padding-top: 0;
	}

	#index_osusume .osusume_inner &gt; div, #index_osusume .osusume_inner &gt; a {
		display: block;
		width: 48%;
		height: auto;
		margin-bottom: 20px;
		padding: 20px 30px 30px;
		color: #333;
		background: #fff;
		line-height: 135%;
		overflow: hidden;
	}

	#index_osusume .osusume_inner &gt; div, #index_osusume .osusume_inner &gt; a:first-of-type,
	#index_osusume .osusume_inner &gt; div, #index_osusume .osusume_inner &gt; a:nth-of-type(2){
		margin-top: 20px;
	}

	.osusume_photo{
		width: 100%;
		margin: 0 auto;
	}

	#index_osusume .h4_setumei {
		display: inline-block;
		margin-left: 4em;
		width: 100%;
		height: 1.5em;
		margin-bottom: 10px;
	}

	.osusume_datum &gt; span {
		position: absolute;
		display: inline-block;
		top: 10px;
		right: 0;
		z-index: 5;
		color: #fff;
		background-color: var(--green);
		text-align: center;
		width: 5em;
		height: 45px;
		padding: 10px;
		font-size: 14px;
		text-align: center;
		background: rgba(59, 180, 28, 0.685);
		box-shadow: 0 3px 20px 0 rgb(31 135 38 / 37%);
		backdrop-filter: blur( 4.0px );
		-webkit-backdrop-filter: blur( 4.0px );
		border-radius: 10px;
		border: 1px solid rgba( 255, 255, 255, 0.18 );
	}

	/*　フッターナビ　*/
	#footermenu .menu &gt; li{
		width: 50%;
	}
	
	#footermenu .menu &gt; li:nth-of-type(3),
	#footermenu .menu &gt; li:nth-of-type(4){
		margin-top: 30px;
	}

	#pagetop {
		top: 85%;
	}

	/*物件一覧ページ*/
	#cblist {
		width: 90%;
		margin: 0 auto;
	}

	#order_button button {
		padding: 10px 15px;
	}

	/*　物件詳細ページ　*/
	#meisai {
		width: 95%;
		margin: 0 auto;
	}

	#company_info{
		width: 95%;
		margin: 0 auto;
	}

	#contact{
		width: 95%;
		margin: 0 auto;
	}

	#privacy {
		width: 95%;
		margin: 0 auto;
	}

	#link{
		width: 95%;
		margin: 0 auto;
	}

	article #link h2{
		font-size: 18px;
	}


	#link table tr{
		display: flex;
		flex-direction: column;
		border-bottom: solid 2px white;
		margin-bottom: 30px;
	}
	
	#link table tr:last-child{
		border-bottom: none;
	}
	
	#link table th{
		position: relative;
		text-align: left;
		width: 100%;
		height: 2.5em;
		padding: 0;
		background-color: var(--backbrown);
		border-radius: 5px 5px 0px 0px;
		color: var(--textbrown);
		text-align: center;
		transition: all .3s;
	}

	#link table th a{
		display: inline-block;
		color: var(--textbrown);
		height: 100%;
		width: 100%;
		vertical-align: middle;
		padding: 0.4em;
		font-weight: 400;
		transition: all .3s;
	}

	#link table th a i{
		margin-left: 14px;
		font-size: 14px;
		color: var(--orange);
		transition: all .3s;
	}
	
	#link table th:after{
		display: block;
		content: "";
		width: 0px;
		height: 0px;
		position: absolute;
		top:calc(100% - 0.2em);
		left:10px;
		border-width: 17px 10px 0 10px;
		border-style: solid;
		border-color: var(--backbrown) transparent transparent transparent;
		transition: all .3s;
	}

	#link table th:hover,
	#link table th:active{
		background-color: var(--orange);
		transition: .3s;
	}

	#link table th:hover a,
	#link table th:active a{
		color: white;
		transition: .3s;
	}

	#link table th:hover a i,
	#link table th:active a i{
		color: #fff;
		transition: .3s;
	}

	#link table th:hover:after,
	#link table th:active:after{
		border-color: var(--orange) transparent transparent transparent;
		transition: .3s;
	}
	
	#link table td{
		font-size: 15px;
		width: 100%;
		text-align: center;
		background-color: #fff;
		padding: 10px 30px;
	}

	#kaitori{
		margin: 0 auto;
		width: 95%;
	}

	#kaitori_catch p{
		font-size: 18px;
	}

	#kaitori h2{
		margin: 50px 0 80px;
		font-size: 32px;
	}

	.flowtitle p.en{
		font-size: 16px;
	}

	.flowtitle p.en + p{
		font-size: 18px;
		letter-spacing: 2px;
	}

	#kaitori_flow &gt; div &gt; div:not(:last-of-type)::after {
		left: 13%;
	}

	.flowtitle + p{
		font-size: 15px;
		line-height: 1.5;
	}

	#kaitori_catch + div a:active{
		color: var(--orange);
		border-color: var(--orange);
		transition: all .2s;
	}
	
	
	#kaitori_catch + div a:active i{
		animation: arrowrotate .5s;
	}

	#kaitori_bottomlink a:active{
		color: var(--orange);
		border-color: var(--orange);
		transition: all .2s;
	}
	
	#kaitori_bottomlink a:active i{
		animation: arrowrotate .5s;
	}

	#kaitori_point h3{
		font-size: 24px;
		
	}

	#kaitori .point p{
		width: 90%;
		font-size: 16px;
		padding: 1.2em;
		margin: 0 auto;
		background-color: #fff;
		line-height: 1.5;
		letter-spacing: 2px;
	}

	#kaitori_flow &gt; div &gt; div:first-of-type {
		margin: 60px auto 0;
	}

		
	/* フッタ */
	
	/*　フッター：会社情報部分　*/
	#comAndCalendar{
		flex-direction: column;
	}

	footer dl{
		width: 95%;
		order: 2;
	}

	footer dl dt a{
		margin: 0 auto 10px;
	}

	footer dl dd{
		flex-direction: row;
		justify-content: center;
	}

	footer dl dd &gt; div:first-of-type &gt; p:last-of-type &gt; span{
		padding-left: 0;
	}

	/* フッター：カレンダー */
	#calendar {
		width: 80%;
		padding: 0;
		order: 1;
		margin: 10px 0;
	}

}
</pre></body></html>