@charset "utf-8";
@import "common.css";

html, body {
/*  overflow-x: hidden;*/
}

hr {
	margin: 4px 0;
}
#hbgmenu{
	display: none;
}

/* ===========================
	共通要素ここから
============================*/
.container {
	width: 100%;
	margin: 0 auto;
	background:var(--white);
}

@media (min-width:1366px){
	body:is(#indexbody) .container{
		position: relative;
		top: -90px;
	}
}

.container main{
	overflow-x: hidden;
}
.container section {
	display: block;
	width: 100%;
	max-width: 1300px;
	padding: 0 30px;
	margin: 20px auto 60px;
	position: relative;
}

/* ページタイトル */
.pagetitle-wrap{
	position: relative;
	width: 100%;
	display: block;
	/*overflow: hidden; ::after装飾のためコメントアウト*/
	background-image: url('../images/skyhigh_large.jpg');
	background-repeat: no-repeat;
	background-position: right bottom;
	background-size: cover;
}
.pagetitle{
	width: 95%;
	max-width: 1260px;
	padding-top: clamp(40px,7.6923vw,80px);
	padding-bottom: clamp(40px,7.6923vw,80px);
	padding-left: 20px;
	padding-right: 20px;
	margin:0 auto;
	line-height: 1.5;
	position: relative;
	z-index: 1;
}
.pagetitle span.page_subtitle{
	display:block;
	position:relative;
	left:-5px;
	margin-bottom:10px;
	padding:8px 10px;
	line-height:clamp(15px, 11.571px + 0.335vw, 18px);
	letter-spacing:3px;
	font-weight:400;
	font-size:clamp(15px, 11.571px + 0.335vw, 18px);
	color: var(--white);
	background:rgba(84,137,240,.6);
}
.pagetitle h1{
	margin-bottom: clamp(5px,0.9615vw,20px);
	line-height: 1.25;
}
.pagetitle h1 > span:not(.page_subtitle){
	display: block;
	font-size:clamp(18px, 16.571px + 0.595vw, 28px);
	letter-spacing: 4px;
	font-weight: bold;
	color: var(--black);
}
.pagetitle h1 span::first-letter{
	color: var(--maindark);
}
.pagetitle > span{
	font-size: clamp(15px,2.8846vw,20px);
	/*推奨値 14px ÷ 520px * 100 vw */
	font-weight: bold;
	font-family: var(--en);
	letter-spacing: 1px;
	color: var(--maincolor);
}
.pagetitle-back{/* 背景の縁取り英語 */
	text-decoration:none;
	font-size: clamp(100px,19.23vw,140px);
	color: rgba(255,255,255,.75);
	font-weight: bold;
	font-family: var(--en);
	letter-spacing: 1px;
	font-style:normal;
	text-shadow:
		.4px .4px 0 var(--sublight),
		-.4px .4px 0 var(--sublight),
		.4px -.4px 0 var(--sublight),
		-.4px -.4px 0 var(--sublight);
	/* text-strokeはgooglefontだとアウトラインが雑でカッコ悪いのでtextshadow */
	position: absolute;
	white-space: nowrap;
	top: 85%;
	left: 0%;
	transform: translateY(-50%);
	z-index: 0;
}


h2.def{
	position: relative;
	margin-bottom: 80px;
	padding: 50px 0 40px;
	line-height: 1.5;
	letter-spacing: 1px;
	text-align: center;
	font-weight: bold;
	font-size: clamp(18px,3.4615vw,26px);
	color: var(--black);
	background: linear-gradient(90deg, var(--maindark) 0% 50%, var(--mainlight) 50%);
	background-repeat: no-repeat;
	background-size: clamp(35px,6.73vw,50px) clamp(4px,0.7692vw,7px);
	background-position: bottom;
}
#meisai h2.def{
	margin-bottom: 30px;
}

/* ページタイトル下の装飾、いらなければ削除 */
.pagetitle-wrap::after{
	content: "";
	display: block;
	position: absolute;
	width: 50%;
	height: 20px;
	background:rgba(255,255,255,.5);
	right: 0;
	bottom:30px;
}
/* レイアウトが合わないページで非表示 */
body:is(#clistbody,#blistbody) .pagetitle-wrap::after{
	content:none;
}
/* ===========================
	ヘッダーここから
============================*/
/* ===========================
	ヘッダー大外
*/
header {
	z-index: 999;
	position: sticky;
	top: 0;
	width: 100%;
	height: 90px;
	background-color:rgba(255,255,255,.7);
	box-shadow:  0 3px 10px rgba(0, 0, 0, 0);
	transition: background-color 0.3s ease;
}
header > div{
	position: relative;/* ナビ子メニューの起点にするため */
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: space-between;
	padding-left:clamp(2px, -1.840px + 1.6vw, 20px);/*240-1024*/
}
@media (min-width: 1366px){
	header > div{
		padding-left:clamp(20px, -47.125px + 4.914vw, 60px);
	}
}

header.scrolled {
	background-color: rgba(255,255,255,.9); /* スクロール後の背景色 */
	border-bottom:solid 1px #e5e5e5;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}


/* ===========================
	ヘッダーロゴ
*/
header > div > a.headlogo h1,
#footerabout div.company a.footlogo h1{
	transition: all .3s;
}
header > div > a.headlogo:hover h1,
#footerabout div.company a.footlogo:hover h1{
	opacity: .65;
}
header > div > a h1{
	position: relative;
	top: 0px;
	width:clamp(190px, 60.000px + 54.167vw, 320px);
	height: 80px;
	margin: 5px auto;
	background-image: url('../images/common/logo_sp.svg');
	background-repeat: no-repeat;	
	background-position: center;
	background-size: contain;
	text-indent: -9999px;
}
@media (min-width: 481px){
	header > div > a h1{
		width:320px;
	}
}
@media (min-width: 1025px){
	header > div > a h1{
		position: relative;
		top: 0px;
		width:clamp(320px, 228.380px + 8.939vw, 400px);
		height: 80px;
		margin: 5px auto;
		background-image: url('../images/common/logo.svg');
		background-repeat: no-repeat;	
		background-position: center;
		background-size: contain;
		text-indent: -9999px;
	}
}

/* ===========================
	ヘッダーメインメニュー
*/

header nav {
    display: flex;
    width: 100%;
    height: 100%;
    justify-content: flex-end;
    align-items: center;
}
/*
.menu-wrap{
	text-align: center;
}
*/
.menu-wrap#menu-contact_btn{
	width: 140px;
	height: 100%;
	text-align: center;
}
.menu-category{
	height: 100%;
	padding-top: 10px;
}
.menu-catwrap{
	display: flex;
	height:100%;
}
.menu-catname{
	display: block;
	color: var(--maindark);
	width: 100%;
	text-align: center;
/*	border-bottom: 1px solid var(--maindark);*/
	font-size: 14px;
	padding-bottom: 7px;
	line-height: 1;
}
.has-child{
	height: 100%;
/*	background:rgba(255,255,255,0);*/
	transition:all .25s;
	padding-inline:clamp(15px, 9.286px + 0.558vw, 20px);/*1024-1920*/
}
.has-child .menuttl::after{
    content: '\f107'; /* 追記したコード */
    font-family: 'Font Awesome 6 Free'; /* 追記したコード */
    font-weight:600; /* 追記したコード */
    color: #ABABAB;
	font-size: 18px;
    display: inline-block;
	transition: all .25s;
	margin-left: 7px;
}
header:not(.fixed) .has-child:hover{
/*	background:rgba(255,255,255,0.93);*/
}
.menuttl{
	display: flex;
	justify-content: center;
	align-items: center;
	letter-spacing: 1px;
	font-size: 15px;
	color: var(--black);
	transition: all .25s;
}
.has-child:hover .menuttl,
.has-child:hover .menuttl::after{
	color: var(--maincolor);
}
.has-child .menuttl{
	pointer-events: none;
	height: 100%;
/*border:solid 1px #f00;*/
}
.menu-wrap:not(.has-child) .menuttl{
	display: flex;
	align-items: center;
	width: 100%;
	height: 100%;
	font-weight: 700;
}
.menu-dropdown {
	min-width: 100%;
	position: absolute;
	top:90px;/*ヘッダーの高さ*/
	left:0;
	background: rgba(246,246,246,0.95);
	/*background-color: rgba( 255, 255, 255, 0.98);*/
	box-shadow: 0px 5px 10px 0 rgba(0, 0, 0, 0.02);
	transition: all .25s;
}
.menu-dropdown > * {/* hoverした時のプロパティ */
	display: flex;
	justify-content: space-between;
	width:100%;
	max-width: 900px;
	margin:0 auto;
	gap:30px;
	/*overflow: hidden;*/
	/*height: 345px;*/
	font-size: 15px;
	padding-top:50px;
	padding-bottom: 50px;
	opacity: 1;
	transition: all .25s;
}
.menu-wrap:not(:hover) > .menu-dropdown > * {
	visibility: hidden;
	height: 0;
	padding-top: 0;
	padding-bottom: 0;
	margin: 0 auto;
	border-bottom: 0px solid rgba(0, 0, 0, 0);
	opacity: 0;
	pointer-events: none;
	transition: all 0.15s;
}
.menu-cat-name{
	width: 30%;
	text-align:left;
	font-weight: 400;
	background:var(--maindark);
}
.menu-cat-name span{
	position: relative;
	top: 11px;
	padding:20px 15px;
	font-size:17px;
	color: var(--white);
}
.menu-content-wrap{
	width:70%;
}
.menu-content-wrap ul{
	display: flex;
	flex-direction: column;
}
.menuchild{
	display: flex;
	align-items: baseline;
}
.menuchild:not(:last-of-type){
	border-bottom:solid 5px rgba(0,0,0,.1);
}
ul.menu_other .menuchild a {
    position: relative; /* 必要であれば残す */
    display: inline-block; /* text-align:left; との兼ね合いで必要なら */
    padding: 20px 0 20px 15px;
    letter-spacing: 0.5px;
    font-weight: 400;
    text-align: left;
    font-size: 16px;
    /* --- ここから追加・変更 --- */
    background-clip: text;
    -webkit-background-clip: text; /* Safari対応 */
    color: transparent; /* 文字色を透明にする */
    background-image: linear-gradient(to right, #3f71b4 50%, var(--black) 50%); /* 色と黒のグラデーション */
    background-size: 200% 100%;
    background-position: 100% 0; /* 初期位置を右端にする（黒が見える状態） */
    transition: background-position 0.3s; /* ホバー時の動きを滑らかに */
    /* --- ここまで追加・変更 --- */
}

ul.menu_other .menuchild a:hover {
    background-position: 0 0; /* ホバー時に左端に移動させる（色が見える状態） */
}

ul.menu_other .menuchild a.header_nyuukyo {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
}

ul.menu_other .menuchild a.header_nyuukyo img {
    position: relative;
    left: 20px;
    max-width: 190px;
    background-color: #77ccff;
    border-radius: 10px;
}

ul.menu_other .menuchild a:hover.header_nyuukyo img {
    background-color: var(--maindark);
}

.menuchild a {
	position: relative;
	display: inline-block;
	padding: 5px 0.5em;
	text-decoration: none;
	font-size: 16px;
	background-clip: text;
	-webkit-background-clip: text; /* Safari対応 */
	color: transparent;
	background-image: linear-gradient(to right, #3f71b4 50%, #000 50%);
	background-size: 200% 100%;
	background-position: 100% 0; /* 初期位置を右端にする */
	transition: background-position 0.3s;
}
.menuchild a:hover {
	background-position: 0 0; /* ホバー時に左端に移動させる */
}


.menuchild a i{
	display:inline-block;
	width:20px;
	height:20px;
	margin-right:5px;
	font-weight:600;
	text-align:center;
}
.menuchild a i.fa-location-dot{
	font-size:16px;
	color:var(--mainsub);
}
.menuchild a i.fa-rectangle-list{
	font-size:14px;
	color:var(--maincolor);
}
.menuchild a i.fa-circle-info{
	padding-top:3px;
	font-size:16px;
	color:var(--maincolor);
}
.menuchild a i.fa-building-flag{
	font-size:14px;
	color:var(--maincolor);
}

/*
.menuchild a::before{
	content: '';
	display: block;
	width: 0.8em;
	height: 2px;
	background: var(--maincolor);
	margin-right: 0.5em;
	flex-shrink: 0;
	transform: translateY(-0.25em);
}
*/
.menuchild span{
	width:40%;
	padding-left: 15px;
	letter-spacing: 0.5px;
	font-weight: 400;
	text-align:left;
	color: var(--black);
}
/*
.menuchild a span{
	color: var(--black);
	letter-spacing: 0.5px;
	transition: all .25s;
	word-break: break-all;
	text-align: left;
	font-weight: 400;
}
.menuchild a:hover span{
	color: var(--maincolor);
}
*/


.singlemenu{
	display: flex;
	align-items: flex-end;
	height: 100%;
}
.singlemenu a{
	display: block;
	height: calc(100% - 32px);
	padding-inline: 1em;
	transition: all .25s;
}
.singlemenu a:hover span{
	color: var(--maincolor);
}
#menu-contact_btn{	
	transition: all .25s;
}
#menu-contact_btn a{
	color: #fff;
	position: relative;
}
/*ここからグラデーション背景のhover用記述*/
#menu-contact_btn a:before{
	content:"";
	width:100%;
	height:100%;
	position:absolute;
	z-index:-1;
	left:0;
	transition:0.4s;
	background:#63a7ff;
	background: linear-gradient(0deg,rgba(99, 167, 255, 1) 25%, rgba(148, 194, 255, 0.75) 100%);
}
#menu-contact_btn a:after{
	content:"";
	width:100%;
	height:100%;
	position:absolute;
	z-index:-2;
	left:0;
background: #2c73d1;
background: linear-gradient(0deg,rgba(44, 115, 209, 1) 25%, rgba(77, 154, 255, 0.75) 100%);
}
#menu-contact_btn a:hover:before{
	opacity:0;
}
/*ここまでグラデーション背景のhover用記述*/
#menu-contact_btn a span{
	display: flex;
	flex-direction: column;
	gap: 5px;
	font-size: 14px;
	font-weight: 700;
}
#menu-contact_btn a span::before{
    content: '\f0e0'; /* 追記したコード */
    font-family: 'Font Awesome 6 Free'; /* 追記したコード */
    font-weight: 700; /* 追記したコード */
    color: #ffffff;
	font-size: 20px;
    display: inline-block;
	transition: all .25s;
}
#menu-contact_btn a:hover span::before{
	content: '\f2b6';
}

/* ===========================
	ヘッダーここまで
============================*/
/* ===========================
	フッターここから
============================*/
footer {
	width: 100%;
	font-size: 15px;
}
#copyright{
	background: var(--maindark);
	color: #fff;
	text-align: center;
	padding: 16px 0;
}
#footerabout{
	display:flex;
	justify-content:space-evenly;
	align-items:stretch;
	background:#74a2e1;
/*	background:var(--maincolor);*/
}
#footerabout div{
	padding:0;
}

/* ﾌｯﾀｰ 会社案内 */
 @media (max-width:559px){
	#footerabout .footer_coabout{
		margin:20px auto;
		padding:clamp(5px, -6.285px + 4.702vw, 20px);
		background:rgba(255,255,255,.85);
	}
}

/* PC・SP共通以外 */
@media (min-width: 560px) and (max-width: 1024px) {
	#footerabout .footer_coabout{
		display:flex;
		justify-content: space-evenly;
		align-items: center;
		margin:20px auto;
		padding:clamp(20px, -76.552px + 17.241vw, 100px);
		min-width:90%;
		background:rgba(255,255,255,.85);
		gap:20px;
	}
	#footerabout div{
		width:96%;
	}
}

@media (min-width: 1025px){
	#footerabout .footer_coabout{
		padding:20px;
		max-width: 360px;
		background:rgba(255,255,255,.85);
	}
}

#footerabout .footer_coabout .footer_co h1{
	position: relative;
	top: 0px;
	width: clamp(210px, 200.000px + 4.167vw, 280px);
	height: 60px;
	margin: 0 auto clamp(10px, 5.446px + 1.898vw, 20px);
	background-image: url('../images/common/logo.svg');
	background-repeat: no-repeat;
	background-position: 0 center;
	background-size: contain;
	text-indent: -9999px;
	transition: all .25s;
}
@media (min-width: 768px){
	#footerabout .footer_coabout .footer_co h1{
		margin: 0 0 20px;
	}
}
@media (min-width: 1024px){
	#footerabout .footer_coabout{
		padding:clamp(20px, -14.286px + 3.348vw, 50px);
		max-width:clamp(360px, 234.286px + 12.277vw, 470px);
	}
	#footerabout .footer_coabout .footer_co h1{
		width:clamp(240px, 148.571px + 8.929vw, 320px);
		height: 70px;
	}
}



#footerabout .footer_coabout .footer_co p{
	font-size:14px;
}
#footerabout .footer_coabout .footer_co p.footertel a:first-child{
	display:inline-block;
	margin:5px 0;
	padding:2px 10px;
	letter-spacing: 2px;
	font-family: var(--en);
	font-weight: 600;
	font-size:18px;
	color:var(--mainsub);
	background:#fff;
	border:solid 2px #fff;
	border-radius:5px;
	transition: all .25s;
}

#footerabout .footer_coabout .footer_co p.footertel a:hover:first-child{
	color:#fff;
	background:var(--mainsub);
	border:solid 2px var(--mainsub);
}


#footerabout{
	display: flex;
	flex-direction: column;
	align-items:center;
}
@media (min-width: 1024px) {
	#footerabout{
		display: flex;
		flex-direction: row;
		align-items:stretch;
	}
}

/* ﾌｯﾀｰﾒﾆｭｰ */
@media (max-width: 1024px) {
	#footerabout{
		flex-direction: column-reverse;
	}
	#footerabout .footer_nav{
		display:none !important;
	}
}
@media (min-width: 1025px) {
	#footerabout .footer_nav{
		width:100%;
		max-width:400px;
		padding:10px;
	}
	#footerabout .footer_nav .footermenu ul li:first-of-type{
		display:inline-block;
		width:100%;
		margin:10px 0;
		padding:10px 5px;
		font-size: 16px;
		color: #FFF;
		letter-spacing:2px;
		border-top:solid 1px rgba(255,255,255,.5);
		border-bottom:solid 1px rgba(255,255,255,.5);
	}
	#footerabout .footer_nav .footermenu ul li a{
		display:block;
		margin:10px 0;
		padding:10px 15px;
		line-height:20px;
		font-weight:500;
		font-size: 15px;
		color: var(--black);
	transition: .3s cubic-bezier(0.5, 1, 0.89, 1);
	}
	#footerabout .footer_nav .footermenu ul li a:hover {
		color: #2b919c;
		background: #fff;
		border-radius:60px;
		transform: scale(1.1);
	}
}
@media (min-width: 1300px) {
	#footerabout .footer_nav{
		display:flex;
		align-items:center;
		width:100%;
		max-width:720px;
		padding:0px;
	}
	#footerabout .footer_nav .footermenu {
		display: flex;
		align-items: flex-start;
	}
	#footerabout .footer_nav .footermenu div{
		display: flex;
		flex-direction: column;
	}
	#footerabout .footer_nav .footermenu div:nth-of-type(2){
		padding:0 clamp(20px, -46.667px + 5.556vw, 60px);/*1200-1920*/
	}
}

/* ﾌｯﾀｰ ｿﾉ他 */
@media (max-width: 559px) {
	#footerabout .footer_other{
		display:flex;
		flex-direction:column;
		justify-content:flex-start;
		align-items:center;
		width:100%;
		padding:30px;
		background:rgba(0,0,0,0.1);
		gap:10px;
	}
}
@media (min-width: 1024px) {
	#footerabout .footer_other{
		display:flex;
		flex-direction:column;
		justify-content:flex-start;
		align-items:center;
		padding:50px 30px 30px 30px;
		background:rgba(0,0,0,0.1);
		gap:10px;
	}
}
@media (min-width: 1300px) {
	#footerabout .footer_other{
		display:flex;
		flex-direction:column;
		justify-content:center;
		align-items:center;
		padding:30px;
		background:rgba(0,0,0,0.1);
		gap:10px;
	}
}


/* PC・SP共通 */
@media (max-width: 559px), (min-width: 1025px) {
	#footerabout .footer_other a:not(ul.sns_container li a){
		display:block;
		width:100%;
		max-width: 180px;
		min-width: 180px;
		line-height:1;
		transition: all .25s;
	}
	#footerabout .footer_other a:not(:last-of-type){
		margin-bottom:15px;
	}
	#footerabout .footer_other a.border{
		padding:20px 5px;
		letter-spacing:1px;
		text-align:center;
		font-size:16px;
		color:var(--white);
		border:solid 1px var(--white);
	}
	#footerabout .footer_other a:hover.border{
		background-color:rgba(0,0,0,0.2);
	}
	#footerabout .footer_other a.footer_nyuukyo{
		width:100%;
		height:90px;
		padding: 0;
		text-indent:-99999px;
		background-image:url(../images/footer_nyuukyo.svg);
		background-position: 0 0;
		background-repeat:no-repeat;
		background-color:#77ccff;
		background-size:contain;
	}
	#footerabout .footer_other a:hover.footer_nyuukyo{
		background-image:url(../images/footer_nyuukyo.svg);
		background-color:rgba(0,0,0,0.2);
	}
	#footerabout .footer_other a:not(.sns_container) img{
		width:80%;
		margin:0 10%;
	}

	#footerabout .sns_container{
		margin: 10px 0 20px;
		padding: 0; 
		display: -webkit-flex;
		display: -moz-flex;
		display: flex;
		gap:26px;
	}
	#footerabout .sns_container li:last-child{
		margin: 0 0 0 0;
	}
	#footerabout .sns_container li a{
		text-decoration: none;
		display: inline-block;
		transition: all .25s;
	}
	#footerabout .sns_container li a i{
		display: flex;
		justify-content: center;
		align-items: center;	
		display: inline-block;
		width: 26px;
		height: 26px;
		font-size: 26px;
		color:var(--white);
	}
	#footerabout .sns_container li a:hover i{
		color:#fff06d;
		filter: drop-shadow(0px 0px 2px rgba(0,0,0,0.3));
	}
}
/* PC・SP共通以外 */
@media (min-width: 560px) and (max-width: 1024px) {
	#footerabout .footer_other{
		width:100%;
		margin:0;
		padding:20px;
		display:grid;
		justify-content: space-evenly;
		align-items: center;
		grid-template-columns: auto auto auto;
		grid-template-rows: 1fr;
		grid-column-gap: 10px;
		grid-row-gap: 0px;
		background:rgba(0,0,0,0.1);
	}
	.otherlink01 { grid-area: 1 / 1 / 2 / 2; }
	.sns_container { grid-area: 1 / 2 / 2 / 3; }
	.otherlink02 { grid-area: 1 / 3 / 2 / 4; }


	#footerabout .footer_other a:not(ul.sns_container li a),
	#footerabout .footer_other a:not(.sns_container) img{
		display:block;
		width:100%;
		width: 170px;
		line-height:1;
		transition: all .25s;
	}
	#footerabout .footer_other a:not(:last-of-type){
		margin-bottom:15px;
	}
	#footerabout .footer_other a.border{
		padding:20px 5px;
		letter-spacing:1px;
		text-align:center;
		font-size:16px;
		color:var(--white);
		border:solid 1px var(--white);
	}
	#footerabout .footer_other a:hover.border{
		background-color:rgba(0,0,0,0.2);
	}
	#footerabout .footer_other a.footer_nyuukyo{
		width:100%;
		height:90px;
		padding: 0;
		text-indent:-99999px;
		background-image:url(../images/footer_nyuukyo.svg);
		background-position: 0 0;
		background-repeat:no-repeat;
		background-color:#77ccff;
		background-size:contain;
	}
	#footerabout .footer_other a:hover.footer_nyuukyo{
		background-image:url(../images/footer_nyuukyo.svg);
		background-color:rgba(0,0,0,0.2);
	}
/*
	#footerabout .footer_other a:not(.sns_container) img{
		width:80%;
		margin:0 10%;
	}
*/
	#footerabout .sns_container{
		margin: 10px 0 20px;
		padding: 0; 
		display: -webkit-flex;
		display: -moz-flex;
		display: flex;
		justify-content: center;
		gap:26px;
	}
	#footerabout .sns_container li:last-child{
		margin: 0 0 0 0;
	}



	#footerabout .sns_container li a{
		text-decoration: none;
		display: inline-block;
		transition: all .25s;
	}
	#footerabout .sns_container li a i{
		display: flex;
		justify-content: center;
		align-items: center;	
		display: inline-block;
		width: 26px;
		height: 26px;
		font-size: 26px;
		color:var(--white);
	}
	#footerabout .sns_container li a:hover i{
		color:#fff06d;
		filter: drop-shadow(0px 0px 2px rgba(0,0,0,0.3));
	}
}
/* snsｱｲｺﾝに色をつける場合
#footerabout .sns_ container li a i.fa-x-twitter{ color: #0f1419; }
#footerabout .sns_container li a i.fa-facebook-square{ color: #0866ff; }
#footerabout .sns_container li a i.fa-youtube{ color: #ff0033; }
*/


/* 営業カレンダー */
.footer-calendar-wrap {
	margin: 10px 0 0;
}
@media (min-width: 1025px) {
	.footer-calendar-wrap {
		margin: 40px 0 0;
	}
}
.footer-company {
	margin: 20px 0 0;
}
.calendar table{
	width: 100%;
background:rgba(255,255,255,.75);
}
.cal_holiday span{
	display: none;
}
.calendar caption{
	width: 100%;
	text-align:center;
	font-size:clamp(15px, 14.545px + 0.19vw, 16px);
	letter-spacing: 1px;
	margin-bottom: 5px;
}
@media (min-width: 768px){
	.calendar caption{
		font-size: 16px;
	}
}

.calendar caption > span{
	margin: 0 clamp(10px, 8.720px + 0.533vw, 16px);/*240-1365*/
}
@media (min-width: 1366px){
	.calendar caption > span{
		margin: 0 16px;
	}
}
.strongmonth{
	padding: 0 2px;
	font-family:var(--en);
	font-weight:600;
	font-size: 26px;
	color:var(--maindark);
}
.calendar caption button{
	padding:0;
	line-height:1;
	font-weight:700;
	font-size:18px;
	color:var(--white);
	background:var(--maindark);
	border:solid 1px var(--maindark);
	border-radius:5px;
	cursor: pointer;
	transition: all .25s;
}
.calendar caption button:hover{
	color:var(--maindark);
	background:transparent;
	border:solid 1px var(--maindark);
}
.calendar table tr{
	display: flex;
	border-top: 1px solid #e1e1e1;
}
.calendar table thead tr{
	border-top: none;
	padding-top: 1px;
	padding-bottom: 2px;
}
.calendar table tr > *{
	width: calc(100% / 7);
	font-weight: 400;
	font-size: 13px;
}
:is(.calendar table th,.calendar table td):first-of-type,
.cal_holiday p{
	color: #EB544B;
}
:is(.calendar table th,.calendar table td):last-of-type{
	color: #4072B3;
}
.calendar td{
	position: relative;
	min-height:40px;
}
.calendar td:not(:first-of-type){
	border-left: 1px solid #e1e1e1;
}
.calendar td p{
	text-align:center;
	padding:0;
}


.calendar td i{
	display: block;
	margin:0px 2px 2px 2px;
	padding: 0 0 2px;
	text-indent: 0;
	text-align: center;
	font-style: normal;
	font-weight:400;
	font-size:10px;
	color: var(--white);
	background:var(--maincolor);
	border-radius: 5px;
}
.calendar td br{
	display: none;
}
/* ===========================
	フッターここまで
============================*/
/* ===========================
	indexここから
============================*/

/* ヒーロー画像 */
#index_hero img{
	width:100%;
	vertical-align: bottom;
}
@media (min-width:481px){
	#index_hero img{
		width:100%;
		vertical-align: bottom;
	}
}



/*
#index_hero{
	position:relative;
	top:-90px;
	margin-bottom:-95px;/*謎の5px追加*/
/*
}

@media (max-width: 480px){
	#index_hero img{
		vertical-align:top;
		height:clamp(240px, 80.000px + 66.667vw, 400px);
	}
}
@media (min-width: 481px){
	#index_hero img{
		height:clamp(400px, 198.182px + 41.958vw, 520px);
	}
}
@media (min-width: 768px){
	#index_hero img{
		height:calc(100vh + 90px);
		max-height:clamp(520px, -224.000px + 96.875vw, 768px);
	}
}
@media (min-width: 1025px){
	#index_hero img{
		height:calc(100vh + 90px);
		max-height:clamp(768px, 685.542px + 8.045vw, 840px);
	}
/* headerの高さ分、上げた高さをプラス */
/*
}
*/

/* =========================== */
/* おすすめ物件 */
/*おすすめ大枠*/
section#index_osusume {
	max-width: initial;/* sectionのmax-width打ち消し */
	margin: initial;/* sectionのmax-width打ち消し */
	padding: initial;/* sectionのmax-width打ち消し */
}
/*おすすめ中枠*/
#index_osusume > div{
	position: relative;
}
/*おすすめ物件枠*/
.osusume_datum > span{ /* 「詳細を見る」動画・VRを入れる時は表示 */
	display: none;
}

/*おすすめ内枠*/
#index_osusume > div div.osusume_inner{
	position: relative;
	top:-20px;
	width:92%;
	margin:0 auto;
	display: flex;
	flex-direction: column;
	gap: 20px 0;
overflow: hidden;
}
a.osusume_cell,
div.osusume_cell {
  display: block;
}

@media (max-width: 679px) {
	.osusume_cell {
		display: block;
		width:100%;
		max-width:300px;/*ヨコ長時以外*/
		margin:0 auto;
		padding: 10px;
		line-height: 1.5;
		color:var(--black);
		background:var(--white);
		transition: all .25s;
		border: solid 1px #e5e5e5;
		border-radius:5px;
		box-shadow: 0 3px 15px rgba(0, 0, 0, 0.03);
	}
}
/* 680px～2列 */
@media (min-width: 680px) {
	#index_osusume > div div.osusume_inner {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		flex-direction: row;
		gap: 30px;
		width: auto; /* ← これで92%を打ち消す！ */
		max-width: calc(300px * 2 + 30px);
		margin-inline: auto;
	}
	.osusume_cell {
		display: block;
		width:100%;
		max-width:300px;
		margin:0;
		padding: 10px;
		line-height: 1.5;
		color:var(--black);
		background:var(--white);
		transition: all .25s;
		border: solid 1px #e5e5e5;
		border-radius:5px;
		box-shadow: 0 3px 15px rgba(0, 0, 0, 0.03);
	}
	/* 奇数個のとき、最後の1つだけ左寄せ */
	.osusume_cell:nth-last-child(1):nth-child(odd) {
		margin-left: 0;
		margin-right: auto;
	}
}
/* 1024px～3列 */
@media (min-width: 1024px) {
	#index_osusume > div div.osusume_inner {
		gap: 20px;
		width: calc(clamp(300px, 270.058px + 2.924vw, 310px) * 3 + 40px);
		max-width: calc(clamp(300px, 270.058px + 2.924vw, 310px) * 3 + 40px);
	}
	#index_osusume > div div.osusume_inner .osusume_cell {
		display: block;
		width:clamp(300px, 270.058px + 2.924vw, 310px);
		max-width:clamp(300px, 270.058px + 2.924vw, 310px);
		margin:0;
	}
}
@media (min-width: 1366px) {
	#index_osusume > div div.osusume_inner{
		gap: 20px;
		width: calc(clamp(310px, 285.343px + 1.805vw, 320px) * 3 + 40px);
		max-width: calc(clamp(310px, 285.343px + 1.805vw, 320px) * 3 + 40px);
	}
	#index_osusume > div div.osusume_inner .osusume_cell {
		display: block;
		width:clamp(310px, 285.343px + 1.805vw, 320px);
		max-width:clamp(310px, 285.343px + 1.805vw, 320px);
		margin:0;
	}
}

.osusume_cell:hover {
	border: solid 1px var(--mainlight);
}

/*おすすめcell内装飾*/
/*おすすめ物件写真*/
.osusume_photo{
	width:100%;
	height: auto;
	border-radius: 5px;
	overflow: hidden;
	transition: all .25s;
	position: relative;
}
.osusume_photo img {
	width: 100%;
	height: auto;
	border-radius: 5px;
	object-fit: cover;
	transition: all .25s;
}
.osusume_inner > a:hover .osusume_photo img{
	transform: scale(1.1);
}
.osusume_inner > a .osusume_photo::before{
	content:'';
	position: absolute;
	width: 100%;
	height:100%;
	background:rgba(0, 0, 0, 0);
	z-index:1;
	transition: all .25s;
}
.osusume_inner > a .osusume_photo::after{
	content:'\f00e  詳細を見る';
	font-family: 'Noto Sans JP','Font Awesome 6 Free', sans-serif;
	position: absolute;
	display: block;
	width: 100%;
	height:1em;
	font-size:24px;
	font-weight:700;
	letter-spacing: 3px;
	text-align: center;
	top: 50%;
	left: 0%;
	transform: translateY(-50%);
	color:transparent;
	z-index:2;
	transition: all .25s;
}
.osusume_inner > a:hover .osusume_photo::before{
	background:rgba(0, 0, 0, 0.4);
}
.osusume_inner > a:hover .osusume_photo::after{
	color:#fff;
}

/*おすすめcell文字装飾など*/
.osusume_name {
	display:inline-block;
	margin-bottom: 10px;
	padding: 1px 5px;
	letter-spacing:0.5px;
	font-size:15px;
	color: var(--pincolor);
	border: solid 1px var(--pincolor);
	border-radius:5px;
}
:is(.osusume_syubetu-madori,.osusume_cost,.osusume_addr)::before{
	font-family: 'Font Awesome 6 Free';
	font-weight: 700;
	display: inline-block;
	margin-right:5px;
	min-width: 18px;
	text-align: center;
}
.osusume_syubetu-madori::before{
	content: '\f015';
	color: var(--texgray);
}
.osusume_cost::before{
	content: '\f157';
	color: var(--costred);
}
.osusume_addr::before{
	content: '\f3c5';
	color: var(--texgray);
}
.osusume_cost span{
	font-size: 18px;
	color:var(--costred);
	font-weight:bold;
	line-height:1.75;
}
.osusume_syubetu-madori,
.osusume_addr,
.osusume_cost{
	font-size:15px;
	line-height:1.5;
}
.osusume_catch{
	padding:8px;
	font-size:14px;
	line-height:1.5;
	color:var(--black);
}
.osusume_info{
	margin-top:5px;
	padding: 5px;
}
.osusume_words{
	margin-top:8px;
	letter-spacing: 1px;
	border-top: solid 5px rgba(0, 0, 0, .1);
}
.osusume_name {
	display:inline-block;
	margin-bottom: 10px;
	padding: 1px 5px;
	letter-spacing:0.5px;
	font-size:14px;
	color: var(--pincolor);
	border: solid 1px var(--pincolor);
	border-radius:5px;
}

/*おすすめタイトル*/
#index_osusume h2{
	position:relative;
	display:flex;
	flex-direction:column;
	align-items:center;
	gap:10px;
	margin:50px 10px;
	line-height:1.15;
	color:var(--texgray);
}
#index_osusume h2:after{
	content:"";
	display: inline-block;
	position:absolute;
	width:clamp(205px, 84.082px + 50.383vw, 600px);
	height:clamp(205px, 84.082px + 50.383vw, 600px);
	background-image: url('../images/skyhigh_a.jpg');
	background-repeat: no-repeat;
	background-position: top center;
	background-size: contain;
	z-index:0;
}
#index_osusume h2 span.en{
	padding-top: 50px;
	color:var(--white);
	font-size:40px;
	font-weight: 500;
	letter-spacing: 2px;
	z-index:1;
}
#index_osusume h2 span:not(.en){
	padding:20px 5px;
	letter-spacing: 1px;
	color:var(--white);
	font-size:16px;
	border-top:solid 5px rgba(255,255,255,.5);
	z-index:1;
}

/* NEWマーク */
.osusume_isnew{
	position: absolute;
	top: 20px;
	left: 5px;
	padding: 0 5px 0 0;
	letter-spacing: 1px;
	font-size: 16px;
	font-weight: 700;
	color: var(--costred);
	text-shadow: 0 0 2px #fff, 1px 0 2px #fff, 1px 1px 2px #fff, 0 1px 2px #fff, -1px 1px 2px #fff, -1px 0 2px #fff, -1px -1px 2px #fff, 0 -1px 2px #fff, 1px -1px 2px #fff;
	background: var(--white);
	border-radius: 5px;
	animation: blink 0.75s infinite alternate;
}
@keyframes blink{
	0% { opacity: 0; }
	100% { opacity: 1; }
}


/* =========================== */
/* news */
#index_news-container{
	background:var(--maincolor);
	width:100%;
	max-width: initial;/* sectionのmax-width打ち消し */
	padding: 70px 0 100px;
	margin:0 auto;
}
#index_news-wrap{
	width: 92%;
	max-width: 1240px;
	margin:0 auto;
}
#index_news-wrap h2{
	display: flex;
	align-items: baseline;
	flex-direction: column;
	gap:10px;
	margin-bottom:20px;
	line-height:1.25;
	color:#fcfcfc;
}
@media (min-width: 481px){
	#index_news-wrap h2{
		display: flex;
		align-items: baseline;
		gap:20px;
	}
}
#index_news-wrap h2 span.en{
	font-size:clamp(32px,6.1538vw,36px);
	font-weight: 500;
	letter-spacing: 2px;
}
#index_news-wrap h2 span:not(.en){
	font-size:clamp(16px,3.0769vw,22px);
	letter-spacing: 1px;
}
#index_news{
	background:#fcfcfc;
	padding-top:clamp(20px,3.846vw,35px);
	padding-left:clamp(25px,4.807vw,105px);
	padding-right:clamp(25px,4.807vw,105px);
	padding-bottom:clamp(20px,3.846vw,35px);
	max-height:280px;
	min-height:120px;
	border: solid 10px #fcfcfc;
	border-radius:10px;
	overflow-y: auto;
}
#index_news::-webkit-scrollbar {/* 横幅 */
	width: 20px;
}
#index_news::-webkit-scrollbar-thumb{/* つまみの部分 */
	border-top: solid 7px #fff; 
	border-right: solid 10px #fff;/* 疑似的な余白 */
	border-bottom: solid 7px #fff;
	background:var(--pincolor);
}
.infotr{
	display: flex;
	align-items: flex-start;
	column-gap: 40px;
	padding-bottom: 18.5px;
	border-bottom: solid 5px rgba(0, 0, 0, .1);
}
.infotr:not(:first-of-type){
	margin-top: 16.5px;
}
.infotr .info_date{
	padding:0px 15px;
	letter-spacing:1px;
	font-family: var(--en);
	font-size:14px;
	font-weight:600;
	color:var(--pincolor);
	border:solid 1px var(--pincolor);
}
.infotr .info_body{
	width:calc(100% - 200px);
	font-size: 15px;
	line-height:1.5;
}
.infotr .info_body a {
	position: relative;
	color: var(--black);
}
.infotr .info_body a:after {
	display: inline-block;
	position: absolute;
	right: -24px;
	bottom: 4px;
	content: "\f14c";
	width: 18px;
	height: 18px;
	font-family: "Font Awesome 5 Free";
	font-weight: 700;
	font-size: 18px;
	color: var(--pincolor);
}
.infotr .info_body a:hover,
.infotr .info_body a:hover::after {
	color: var(--maincolor);
}
.infotr .info_body a:hover{
	text-decoration: underline;
}

/* ===========================
	indexここまで
============================*/
/* ===========================
	会社概要ここから
============================*/
#companybody .container section{
	padding: 0 clamp(20px,3.8461vw,30px);
}
#company_text,
#companymap {
	width: 95%;
}
#company_text {
	margin: 0 auto 120px;
	padding: 0;
	position:relative;
	z-index:0;
	box-shadow: 0px 5px 10px rgba( 0, 0, 0, 0.1);
}
#company_text:after{
	content:'';
	display:block;
	position:absolute;
	top:10%;
	left:20%;
	width:100vw;
	height:calc(90% + 50px);
	background:#eef5ff;
	z-index:-1;
}
#company_text dl {
	display: table;
	width: 100%;
	margin: 0 auto ;
	border-collapse: collapse;
}
#company_text dl dt,
#company_text dl dd {
	display: table-cell;
	vertical-align: middle;
	padding: 5px 0;
	border-top: 1px solid #eee;
}
#company_text dl:first-of-type dt,
#company_text dl:first-of-type dd{
	border-top:none;
}
#company_text dl dt {
	width: 30%;
	padding:20px 0 20px 40px ;
	font-weight: 500;
	font-size:clamp(15px, 14.857px + 0.06vw, 16px);
	letter-spacing:4px;
	color:var(--white);
	background-color: var(--texgray);
}
#company_text dl dd {
	width: 70%;
	padding:25px 20px 25px 30px ;
	line-height: 1.5;
	font-size:clamp(14px,2.6923vw,16px);
	letter-spacing: 1px;
	background:#ffffff;
}
#companymap {
	max-width: initial;/* sectionのmax-width打ち消し */
	width:100%;
	height: clamp(300px,57.692vw,500px);
	margin: 0 auto 120px;
	box-shadow: 0px 3px 10px rgba( 0, 0, 0, 0.15);
}
#companymap_wrap{
	position: relative;
	max-width: initial;/* sectionのmax-width打ち消し */
	width:100%;
	z-index:0;
}
#companymap_wrap:after{
	content:'';
	display:block;
	position:absolute;
	top:10%;
	right:20%;
	width:100vw;
	height:calc(90% + 50px);
	background:#b3c0d2;
	z-index:-1;
}
.domain::before{
	content:'@';
}
/* ===========================
	会社概要ここまで
============================*/
/* ===========================
	ご入居者の皆様へ
============================*/
.container section#residents{
	padding:0 clamp(20px,3.8461vw,30px);
}
#residentsbody main{
	background: linear-gradient(90deg,  #fff 0% 20%, var(--gray) 20%);
	padding-bottom:60px;
}
#residents > div > p{
	font-size:clamp(18px,3.461vw,24px);
	margin-bottom:10px;
	line-height: 1.5;
}
#residents_list > div{
	display: flex;
	flex-direction: column;
	position: relative;
	margin-top:clamp(5px, -5.714px + 4.464vw, 40px);
	gap:clamp(1px, -1.755px + 1.148vw, 10px);
}
#residents_list div h3{
	margin-bottom:clamp(10px, 5.408px + 1.913vw, 25px);
	padding:8px clamp(10px, 5.408px + 1.913vw, 25px);
	letter-spacing:clamp(1px, 0.714px + 0.119vw, 3px);
	font-weight:bold;
	font-size:clamp(15px, 14.286px + 0.298vw, 20px);
	color:var(--maindark);
	background:rgba(255,255,255,.8);
	border:1px solid var(--mainlight);
}
@media (min-width:1025px){
	#residents_list > div{
		margin-top:40px;
		gap:10px;
	}
	#residents_list div h3{
		margin-bottom:20px;
		padding:8px 25px;
	}
}
#residents_list div div {
	display: flex;
	flex-direction: column;
	margin-bottom:clamp(1px, -14.000px + 6.25vw, 50px);
	padding:0px;
}
@media (min-width:1025px){
	#residents_list div div {
		margin-bottom:50px;
		padding:0 50px;
	}
}


#residents_list div div h4{
	width:100%;
	margin-bottom:clamp(10px, 8.469px + 0.638vw, 15px);
	padding:5px clamp(10px, 5.408px + 1.913vw, 25px);
	letter-spacing:clamp(1px, 0.714px + 0.119vw, 3px);
	font-weight:500;
	font-size:clamp(15px, 14.571px + 0.179vw, 18px);
	color:var(--maindark);
	background:rgba(255,255,255,.8);
	border:1px solid var(--mainlight);
}
@media (min-width:1025px){
	#residents_list div div h4{
		margin-bottom:15px;
		padding:5px 25px;
	}
}
#residents_list div div div.sashie{
	display:flex;
	flex-direction:column;
	align-items: flex-start;
	gap: 0px;
	margin-top:clamp(5px, -2.653px + 3.189vw, 30px);
	padding: 0;
}
@media (min-width:1025px){
	#residents_list div div div.sashie{
		margin-top: 30px;
	}
}
#residents_list div div div.sashie p{
	width:100%;
	padding:0px 5px 10px;
}
@media (min-width:768px){
	#residents_list div div div.sashie p{
		padding:0px 20px 10px;
	}
}
#residents_list div div div.sashie img{
	width:100%;
	max-width:clamp(200px, 131.689px + 28.463vw, 350px);
	margin:0 auto 35px;
}

@media (min-width:768px){
	#residents_list div div div.sashie{
		display:flex;
		flex-direction: row;
		align-items: flex-start;
		gap: 20px;
		margin-top: 30px;
		padding: 0;
	}
	#residents_list div div div.sashie p{
		width:65%;
		padding:0px 20px 50px;
	}
	#residents_list div div div.sashie img{
		width:35%;
	}
}

#residents_list div div div.imgbox{
	margin:0;
	padding:0;
}
#residents_list div div div.imgbox img.attention_img01{
	width:100%;
	margin: 0;
}
@media (min-width:768px){
	#residents_list div div div.imgbox img.attention_img01{
		width:80%;
		margin: 0 10%;
	}
}
#residents_list div div p{
	margin-bottom:10px;
	padding:10px 5px clamp(20px, 6.338px + 5.693vw, 50px);
	line-height:24px;
	letter-spacing:1px;
	font-size:15px;
}
@media (min-width:768px){
	#residents_list div div p{
		margin-bottom:10px;
		padding:10px 20px 50px;
		line-height:30px;
		letter-spacing:1px;
		font-size:15px;
	}
}
#residents_list div div p.under30{
	margin-bottom:30px;
}

#residents_list > div > p,
#residents_list > ol{
	font-size:clamp(14px,2.6923vw,16px);
	line-height:1.5;
	letter-spacing: .5px;
}
#residents_list > div > p{
	padding:0 15px;
}
#residents_list > ol{
	margin: 15px 0;
	padding:0 20px;
}
#residents_list > ol > li{
	margin-bottom:10px;
}

#residents_list ul{
	display:flex;
	flex-direction: column;
	margin-left:0px;
	padding-left:0px;
	list-style-type:none;
}
#residents_list ul li,
#residents_list ul li a{
	display:inline-block;
	margin-bottom:.5em;
	line-height:1.25em;
	letter-spacing: .1px;
	font-weight:500;
	font-size:14px;
	color:var(--maindark);
}

@media (min-width:768px){
	#residents_list ul{
		display:flex;
		flex-direction: column;
		margin-left:20px;
		padding-left:20px;
		list-style-type:none;
	}
#residents_list ul li,
#residents_list ul li a{
	display:inline-block;
	line-height:25px;
	letter-spacing: .5px;
	font-weight:600;
	font-size:15.5px;
	color:var(--maindark);
}

}
#residents_list div div p a.link{
	font-weight:600;
	font-size:1.1em;
	color:var(--maindark);
}

#residents_list div div p a.link::after{
	display:inline-block;
	padding:5px 0;
	color:var(--maincolor)
}
#residents_list div div p a.link::after,
#residents_list div div ul.link a::after {
	content: "\f2f5";
	font-family:"Font Awesome 6 Free";
	font-weight: 900;
	margin-left: 8px;
	font-size:12px;
	color:var(--maincolor)
}
#residents_list div div p a.link:hover::after,
#residents_list div div p a.link:hover,
#residents_list ul li:hover::after,
#residents_list ul li a:hover{
	color:var(--pinred)
}

#residents_list > ul{
	margin-left:37px;
}
#residents_list div div p.attent{
	width:98%;
	margin:clamp(5px, 2.857px + 0.893vw, 20px) 1%;
	padding:10px clamp(10px, 8.571px + 0.595vw, 20px);
	font-weight:600;
	font-size:17px;
	color:var(--maindark);
	border:solid 2px var(--mainlight);
}


/* ===========================
	ご入居者の皆様へ
============================*/
/* ===========================
	お問い合わせここから
============================*/
.container section#contact{
	padding:0 clamp(20px,3.8461vw,30px);
}
#contactbody main{
	background: linear-gradient(90deg,  #fff 0% 30%, var(--gray) 30%);
	padding-bottom:60px;
}
#contact p,
#form_table {
	width: 95%;
}
#contact p {
	margin: 0 auto 5px;
	line-height: 1.5;
}
#form_table {
	margin: 20px auto 30px;
}
#form_table dl {
	display: table;
	width: 100%;
	border-collapse: separate;
	border-spacing: 0px 0px;
	padding:20px 80px;
}
#form_table dl:not(:last-of-type){
	border-bottom: solid 5px rgba(0, 0, 0, .1);
}

#form_table dt,
#form_table dd {
	display: table-cell;
	vertical-align: middle;
}
#form_table dt {
	width: 30%;
	padding: 8px 15px 8px 40px;
	font-size:clamp(15.5px,2.9807vw,17.5px);
}
#form_table dd {
	width: 70%;
	padding: 8px 30px;
	position: relative;
}
#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 5px 5px 10px;
	line-height: 30px;
	color: var(--black);
	font-size:clamp(14px,2.6923vw,16px);
	border: 1px solid #e3e8ed;
	border-radius: 2px;
}
#form_table dd textarea {
	height: 8em;
}
#form_table dd button {
	margin: 10px 0;
	padding: 0 20px;
	font-size: 16px;
	border:none;
	background-color: transparent;
}
#form_table dd button.stop,
#form_table dd button.okgo {
	margin-bottom: 20px;
}
#form_table dd button[type='reset'] {
	color: #f00;
}

#contact div.form39 p {
	margin-bottom:1em;
	padding: 0;
	line-height: 1.5;
	letter-spacing: 1px;
	font-size: clamp(15.5px,2.9807vw,17px);
}
/* 説明文の中央よせ */
.intrtext{
	width:90%;
	margin:0 auto;
	font-size:clamp(15.5px,2.9807vw,17px);
	line-height: 1.5;
}
.intrtext a span{
	color:var(--linkcolor);
}
#contact .intrtext p{
	margin-bottom:10px;
	line-height: 1.5;
}
.intrtext:last-of-type{
	margin-top: 30px;
}
/*必須項目*/
.hissu{
	display: inline-block;
	padding: 2px 8px;
    background: var(--costred);
    color: #fff;
    border-radius: 0;
    font-size: clamp(10.5px,2.0192vw,13px);
    position: relative;
	margin: 0 15px;
}
p .hissu{
	margin:0 10px 0 0;
}

.send-button-wrapper span{
	display:inline-block;
	transition: all 0.3s;
	position: relative;
	text-align: center;
	padding:1rem 2rem;
	cursor: pointer;
}
.send-button-wrapper.okgo span{
	color:var(--maincolor);
}
.send-button-wrapper.stop span{
	color:var(--textred);
}
.send-button-wrapper span::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	background-color: rgba(34, 85, 170, 0.2);
	transition: all 0.3s;
}
  
.send-button-wrapper span:hover::before {
	opacity: 0;
	transform: scale(0.4, 0.4);
}
  
.send-button-wrapper span::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	opacity: 0;
	transition: all 0.3s;
	border: 1px solid var(--linkcolor);
	transform: scale(1.2, 1.2);
}
  
.send-button-wrapper span:hover::after {
	opacity: 1;
	transform: scale(1, 1);
}

.send-button-wrapper.stop span::before{
	background-color: rgba(170, 34, 52, 0.15);
}
.send-button-wrapper.stop span::after {
	border: 1px solid rgba(170, 34, 52, 0.4);
}
.formlast a{
	display:inline-block;
	padding:0 5px;
	color:var(--linkcolor);
}
@media(max-width:600px){
	#form_table .formlast > dd{
		padding:0;
	}
	.formlast > dd > div{
		display: flex;
		flex-direction: column;
		margin-top: 20px;
		margin-bottom:20px;
	}
	#form_table dd button.stop, #form_table dd button.okgo{
		margin-bottom:0;
		padding:0;
	}
	#form_table dd button.stop, #form_table dd button.okgo,
	#form_table dd button.stop span, #form_table dd button.okgo span{
		width:100%;
	}
}
#form_table.chkform dl.chklist{
	display:flex;
	flex-direction:column;
	padding:0 10px;
}
#form_table.chkform dl.chklist dt,
#form_table.chkform dl.chklist dd{
	width:100%;
}
#form_table.chkform dl.chklist dt{
	font-weight:700;
	padding:0 5px 5px;
	color:var(--subcolor);
	border-bottom:1px solid;
	line-height:1.5;
	margin-top:25px;
}
#form_table.chkform dl.chklist dd{
	padding:5px 15px;
	line-height:1.5;
}
.backhomelink{
    display: flex;
	justify-content: center;
    width: fit-content;
    margin: 30px auto 0;
	color: var(--linkcolor);
	border-bottom: 1px solid;
	transition: all .25s;
}
.backhomelink:hover{
	color:var(--pincolor);
}
/* ステップバー */
.progressbar {
    position: relative;
    margin: clamp(20px,3.8461vw,30px) auto 40px;
    padding: 5px 0 10px;
	background:#fff;
	border-radius:50px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
	box-shadow:var(--shadow);
}
@media(max-width:290px){
	.progressbar {
		display: none;
	}
}
.progressbar li {
    position: relative;
    list-style-type: none;
    text-align: center;
    text-transform: uppercase;
    width: 33.333%;
    color: #999999;
	font-size:14px;
    letter-spacing: 1px;
    counter-increment: steps;
	
}
.progressbar li:before {
    display: block;
    width: 26px;
    height: 26px;
    margin: 7px auto 2px auto;
    content: '';
    line-height: 26px;
    font-size: 12px;
    text-align: center;
    border-radius: 50%;
    background-color: #e5e5e5;
    content: counter(steps);
	z-index: 2;
	position: inherit;
}
.progressbar li:after {
    position: absolute;
    z-index: 1;
    top: 19px;
    left: -50%;
    width: 100%;
    height: 2px;
    content: '';
    background-color: #e5e5e5;
}
.progressbar li:first-child:after {
    content: none;
}
.progressbar li.active,
.progressbar li.complete{
    color: var(--pincolor);
}
.progressbar li.active:before,
.progressbar li.complete:before {
    background-color: var(--pincolor);
    color: #FFF;
}
.progressbar li.active:after,
.progressbar li.complete:after {
    background-color: var(--pincolor);
}
/* 入力ヒント「半角数字で入力」等 */
.form_hint {
    color: var(--costred);
	font-size:14px;
    display: block;
	opacity: 0;
	position: absolute;
	top: -1.25em;
	transition: all .2s;
}
#form_table input:focus + .form_hint {
	opacity: 1;
}
@media(max-width:1024px){/* dtとddを横並びから縦並びにするポイント */
	#form_table dd {
		display: flex;
		flex-direction: column-reverse;
		gap: 5px;
	}
	.form_hint {
		font-size:13px;
		position: initial;
		top: initial;
		display: none;
	}
	#form_table input:focus + .form_hint {
		display: block;
	}
}
/* ===========================
	お問い合わせここまで
============================*/
/* ===========================
	プライバシーポリシーここから
============================*/
.container section#privacy{
	padding:0 clamp(20px,3.8461vw,30px);
}
#privacybody main{
	background: linear-gradient(90deg,  #fff 0% 20%, var(--gray) 20%);
	padding-bottom:60px;
}
#privacy > div > p{
	font-size:clamp(18px,3.461vw,24px);
	margin-bottom:10px;
	line-height: 1.5;
}
#privacy_list > div{
	display: flex;
	flex-direction: column;
	position: relative;
	margin-top:50px;
	gap:10px;
}
#privacy_list > div > span{
	padding:6px 15px;
	font-weight:bold;
	font-size:clamp(21px, 20.286px + 0.298vw, 26px);
	color:var(--maincolor);
	letter-spacing: 1px;
	border:1px solid var(--mainlight);
}
#privacy_list > div > p,
#privacy_list > ol{
	font-size:clamp(14px,2.6923vw,16px);
	line-height:1.5;
	letter-spacing: .5px;
}
#privacy_list > div > p{
	padding:0 15px;
}
#privacy_list > ol{
	margin: 15px 0;
	padding:0 20px;
}
#privacy_list > ol > li{
	margin-bottom:10px;
}
#privacy_list ul{
	margin-top:10px;
	margin-left:20px;
	list-style-type:none;
	color:var(--maindark);
	font-size:14.5px;
	line-height: 1.5;
	letter-spacing: .5px;
}

#privacy_list ul li a{
	display:inline-block;
	padding:5px 0;
	color:var(--maincolor)
}
#privacy_list ul li::after {
	content: "\f2f5";
	font-family:"Font Awesome 6 Free";
	font-weight: 900;
	margin-left: 8px;
	font-size:12px;
	color:var(--maincolor)
}
#privacy_list ul li:hover::after,
#privacy_list ul li a:hover{
	color:var(--pinred)
}

#privacy_list > ul{
	margin-left:37px;
}
/* ===========================
	プライバシーポリシーここまで
============================*/
/* ===========================
	物件一覧ここから
============================*/
span.cb_subttl{
	display: inline-block;
	font-size:40px;
}
.total_num {
	display: flex;
	justify-content: right;
	align-items: center;
	position: relative;
	width: 100%;
	margin-bottom: 30px;
	font-size: 15px;
	color: var(--black);
	text-align: right;
}
.total_num > span{
	display: inline-block;
	position: relative;
	padding-left: 2em;
	padding-right: 1.5em;
	text-align: center;
	line-height: 1.5;
}
.total_num > span::before{
    font-family: 'Font Awesome 6 Free';
    font-weight: 700;
    display: inline-block;
	margin-right:10px;
	min-width: 18px;
    text-align: center;
	content: '\f03a';
	color: var(--maincolor);
}
.total_num > span >span{
	display: inline-block;
}
.navi_pages{
	display: none;
}
/* ===========================
	並び替えボタン
*/
.order_button {
	width: 100%;
	margin-bottom: 20px;
}
.order_button label,
.order_button input {
	display: none;
}
.order_button ul {
	list-style-type: none;
	width: 100%;
	display:flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 15px;
}
.order_button ul li {
	display: inline-block;
}
.order_button button {
	width: 100%;
	letter-spacing: 1px;
	font-size: 16px;
	color: #fff;
	background-color: transparent;
	border: none;
}

.order_button button span{
	position: relative;
	display:inline-block;
	padding:8px 20px;
	text-align: center;
	font-family: var(--ja);
	font-size:14px;
	font-weight: 400;
	color: var(--texgray);
	transition: all 0.25s;
	cursor: pointer;
	z-index: 2;
}
.order_button button span::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
	background-color: var(--gray);
	box-shadow: var(--shadow);
	border: solid 1px #e5e5e5;
	border-radius: 5px;
	transition: all .25s;
}
.order_button button span:hover{
	color:#fff;
}
.order_button button span:hover::before {
	background-color:var(--pincolor);
}

/* 物件情報ページネーション */
div.navi {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	max-width:600px;
	margin:0 auto;
	background:var(--gray);
	padding:5px;
	border-radius:25px;
	box-shadow: var(--shadow);
}
div.navi_prev,
div.navi_next,
div.navi_number {
	display: block;
}
div.navi_prev,
div.navi_next {
	font-size: 15px;
	font-weight:bold;
}
div.navi_next {
	text-align: right;
}
div.navi_prev a,
div.navi_next a {
	display: inline-block;
	margin: 0 5px;
	padding: 6px 10px;
	font-weight: bold;
	color: var(--maincolor);
	background:transparent;
	border:1px solid transparent;
	border-radius: 50%;
	line-height:1;
	transition: all .25s;
}
div.navi_number {
	flex-grow: 1;
	text-align: center;
	font-size: 14px;
	font-family: var(--en);
	line-height: 1;
}
div.navi_number span,
div.navi_number a {
	display: inline-block;
	margin: 0 5px;
	padding:10px;
	color: var(--darkblue);
	border-radius: 50%;
	border:1px solid var(--gray);
	transition: all .25s;
	border-radius:50%;
	line-height:1;
}
div.navi_number span {
	color: var(--pincolor);
	font-weight:700;
	background-color: var(--gray);
	border-left: 1px solid var(--gray);
	border-right: 1px solid var(--gray);
	border-top: 1px solid var(--gray);
	border-bottom: 1px solid var(--pincolor);
	border-radius:0;
	padding:0 6px 6px;
}

/*
ページネーションの表示数を制限するCSSここから
 （:has()が使えるようになったので試験運用）
※レスポンシブのブレイクポイント箇所は768pxと420pxの2箇所に有り。
520pxでdiv.navi_prev a, div.navi_next aをいったん非表示にしてます。
*/
div.navi_number a{
	display:none;
}
div.navi_number a:first-child,
div.navi_number a:last-child,
div.navi_number span +a,
div.navi_number span +a+a,
div.navi_number a:has(+span),
div.navi_number a:has(+a+span){
	display:inline-block;
}
div.navi_number a:first-child{
	margin-right:20px;
	position:relative;
}
div.navi_number a:first-child::after{
	content: '...';
	display: inline-block;
	pointer-events: none;
	position: absolute;
	right: -17px;
}
div.navi_number a:first-child:hover::after{
	color:initial;
}
div.navi_number a:first-child:has(+span),
div.navi_number a:first-child:has(+a+span){
	margin-right:5px;
}
div.navi_number a:first-child:has(+span)::after,
div.navi_number a:first-child:has(+a+span)::after{
	content: none;
}
div.navi_number a:last-child{
	margin-left:20px;
	position:relative;
}
div.navi_number a:last-child::before{
	content: '...';
	display: inline-block;
	pointer-events: none;
	position: absolute;
	left: -17px;
}
div.navi_number a:last-child:hover::before{
	color: initial;
}
div.navi_number span +a:last-child,
div.navi_number span +a+a:last-child{
	margin-left:5px;
}
div.navi_number span +a:last-child::before,
div.navi_number span +a+a:last-child::before{
	content: none;
}
/*ページネーションの表示数を制限するCSSここまで*/

div.navi_prev a:hover,
div.navi_next a:hover,
div.navi_number a:hover {
	background-color: var(--pincolor);
	border:1px solid var(--pincolor);
	color:white;
	box-shadow: var(--shadow);
}
/* 下側のページネーション */
.footnavi-wrap{
	display: block;
	width:100%;
}
div.navi.footnavi{
	margin:0  auto 40px;
}
/* 登録なしの１文 */
.no-num {
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	width: 100%;
	min-height: 200px;/* フッターの下に虚無が生まれるの防止 */
	margin-bottom: 30px;
	font-size: clamp(15px,2.8846vw,17.5px);
	color: var(--costred);
}
.no-num > span{
	display: inline-block;
	position: relative;
	text-align: center;
	line-height:1.5;
}
.no-num::before,
.no-num::after{
	display: inline-block;
	width: 80px;
	height:30px;
}

/* 物件一覧部分 */
.container section.cblist{
	margin:0 auto;
	width: 85%;/* 左右のあしらい帯を常に見せるため */
}
.cblist_inner{
	position: relative;
	padding-top: 60px;
	padding-bottom: 60px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
	column-gap: 30px;
	width: 100%;
}
.cblist_inner::before,
.cblist_inner::after{
	content:'';
	position: absolute;
	display: block;
	width:calc(100vw - 100%);
	height:48%;
}
.cblist_inner::before{
	background:var(--mainlight);
	left:calc(100% + 30px);
	top:0;
}
.cblist_inner::after{
	background:var(--sublight);
	right:calc(100% + 30px);
	bottom:0;
}
.cblist_link{
	display: block;
	width: 94%;
	max-width:calc(94% / 3);
	margin-bottom: 40px;
	padding: 10px;
	line-height: 1.5;
	color:var(--black);
	background:var(--white);
	transition: all .25s;
	border: solid 1px #e5e5e5;
	border-radius:5px;
	box-shadow: 0 3px 15px rgba(0, 0, 0, 0.03);
}
.cblist_link:hover {
	border: solid 1px var(--mainlight);
	box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}


.uxicon{ /* 「詳細を見る」動画・VRを入れる時は表示 */
	display: none;
}
.cblist_photo{
	width:100%;
	height: auto;
	border-radius:5px;
	overflow: hidden;
	transition: all .25s;
	position: relative;
}
.cblist_photo img {
	width: 100%;
	height: auto;
	border-radius:5px;
	object-fit: contain;
	transition: all .25s;
}
.cblist_link:hover .cblist_photo img{
	transform: scale(1.1);
}
.cblist_link .cblist_photo::before{
	content:'';
	position: absolute;
	width: 100%;
	height:100%;
	background:rgba(0, 0, 0, 0);
	z-index:1;
	transition: all .25s;
}
.cblist_link .cblist_photo::after{
	content:'\f00e  詳細を見る';
	font-family: 'Noto Sans JP','Font Awesome 6 Free', sans-serif;
	position: absolute;
	display: block;
	width: 100%;
	height:1em;
	font-size:24px;
	font-weight:700;
	letter-spacing: 3px;
	text-align: center;
	top: 50%;
    left: 0%;
    transform: translateY(-50%);
	color:transparent;
	z-index:2;
	transition: all .25s;
}
.cblist_link:hover .cblist_photo::before{
	background:rgba(0, 0, 0, 0.4);
}
.cblist_link:hover .cblist_photo::after{
	color:#fff;
}
:is(.bukken_syubetu-madori,.bukken_cost,.bukken_addr)::before{
    font-family: 'Font Awesome 6 Free';
    font-weight: 700;
    display: inline-block;
	margin-right:10px;
	min-width: 18px;
    text-align: center;
}
.bukken_syubetu-madori::before{
	content: '\f015';
	color: var(--texgray);
}
.bukken_cost::before{
	content: '\f157';
	color: var(--costred);
}
.bukken_addr::before{
	content: '\f3c5';
	color: var(--texgray);
}
.bukken_cost span{
	font-size: 18px;
	color:var(--costred);
	font-weight:bold;
	line-height:1.5;
}
.bukken_syubetu-madori,
.bukken_addr,
.bukken_cost,
.bukken_catch{
	font-size:15px;
	line-height:1.5;
}
.cblist_list{
	margin-top:10px;
	padding: 10px;
}
.bukken_catch{
	margin-top:14px;
	padding:10px;
	line-height:1.5;
	letter-spacing: 1px;
	font-size:14px;
	color:var(--black);
	border-top: solid 5px rgba(0, 0, 0, .1);
}
.cblist_link .bukken_name {
	display:inline-block;
	margin-bottom: 10px;
	padding: 1px 5px;
	letter-spacing:0.5px;
	font-size:14px;
	color: var(--pincolor);
	border: solid 1px var(--pincolor);
	border-radius:5px;
}

/* 最後の一列が3個より少ない時に左寄せするための細かいレスポンシブ
	表示が崩れたらここを削除すれば中央寄せにはなるが治る
*/
@media(min-width:1500px){
	.cblist_inner::before{
		left:calc(100% + 80px);
	}
	.cblist_inner::after{
		right:calc(100% + 80px);
	}
}

@media(min-width:1288px){
	.cblist_inner {
		justify-content: flex-start;
		gap: 40px 3%;
		width: 1300px;
		padding-left:40px;
		padding-right:40px;
		margin:0 auto;
	}
	.container section.cblist{
		width:95%;
	}
}
/* 3→2列になったときに余った1を疑似的に左寄せにするための細かいレスポンシブ
	無理やりなのでいいやり方が見つかったらやり直したい
*/
@media(max-width:1287px){
	.cblist_inner {
		justify-content: flex-start;
		padding-left:8%;
		column-gap:33px;
	}
	.cblist_link:nth-of-type(even) {
		margin-left:auto;
		margin-right:8%;
	}
}
@media(max-width:1023px){
	.container section.cblist{
		width: 90%;
		
	}
	.cblist_inner{
		padding-left:2%;
	}
	.cblist_link:nth-of-type(even) {
		margin-right:2%;
	}
}
@media(max-width:862px){
	.container section.cblist{
		width: 95%;
		padding:0 26px;
	}
	.cblist_inner{
		padding-left:0%;
		column-gap:21px;
	}
	.cblist_link:nth-of-type(even) {
		margin-right:0%;
	}
}
@media(max-width:767px){
	.container section.cblist{
		width: 90%;
		padding:0 30px;
	}
	.cblist_inner {
		justify-content: center;
	}
	.cblist_link:nth-of-type(even) {
		margin-left:initial;
	}
	.cblist_link{
		max-width:initial;
	}
	.cblist_tbl{
		display:flex;
		justify-content:space-between;
		width:100%;
	}
	.cblist_photo,.cblist_list{
		width:48%;
	}
}
@media(max-width:630px){
	.container section.cblist{
		width: 90%;
		padding:0 25px;
	}
	.cblist_link{
		max-width:320px;
	}
	.cblist_tbl{
		display:block;
	}
	.cblist_photo,.cblist_list{
		width:100%;
	}
}
@media(max-width:480px){
	.container section.cblist{
		width: 95%;
		padding:0 1px;
	}
}
/* vr *//* ※使用するサイトに適用　※テンプレートはこの辺カスタマイズされてないかも
#cblist div.cblist_inner a.cblist_link span.list_movievr,
#cblist div.cblist_inner a.cblist_link span.list_movie,
#cblist div.cblist_inner a.cblist_link span.list_vr,
#cblist div.cblist_inner a.cblist_link span.list_normal {
	z-index: 99;
	display: block;
	position: absolute;
	top: -5px;
	left: 0px;
	width: 80px;
	height: 80px;
	padding: 53px 7px 10px 7.5px;
	line-height: 18px;
	text-align: center;
	font-size: 13px;
	color: var(--darkblue);
	box-shadow: 0 5px 10px 0 rgb(100 100 100 / 50%);
	backdrop-filter: blur( 4.0px );
	-webkit-backdrop-filter: blur( 4.0px );
	background-position: center 8px;
	background-repeat: no-repeat;
	background-color: rgba( 246, 250, 255, 0.9);
	opacity:0.85;
	backdrop-filter: blur( 4.0px );
	-webkit-backdrop-filter: blur( 4.0px );
	transition: all 0.2s;
	border-radius: 5px;
}

#cblist div.cblist_inner a.cblist_link span.list_movievr {
	background-image: url(../images/icon-movie-vr.svg);
	background-size: 30px;
    background-position: center 13px;
}
#cblist div.cblist_inner a.cblist_link span.list_movie {
	background-image: url(../images/icon-movie.svg);
	background-size: 30px;
    background-position: center 13px;
}
#cblist div.cblist_inner a.cblist_link span.list_vr {
	background-image: url(../images/icon-vr.svg);
	background-size: 30px;
    background-position: center 13px;
}
#cblist div.cblist_inner a.cblist_link span.list_normal {
	background-image: url(../images/icon-syousai.svg);
	background-size: 30px;
    background-position: center 13px;
}
#cblist div.cblist_inner a.cblist_link:hover span.list_movievr,
#cblist div.cblist_inner a.cblist_link:hover span.list_movie,
#cblist div.cblist_inner a.cblist_link:hover span.list_vr,
#cblist div.cblist_inner a.cblist_link:hover span.list_normal {
	position: absolute;
	top: 0px;
	left: 0px;
	background-color: var(--mainlight);
	opacity:1;
	border-radius: 0px;
	box-shadow: initial;
}*/
/* 動画ありVRあり詳細の非表示　使うサイトの時はコメントアウト */
.list_movievr,
.list_movie,
.list_vr,
.list_normal{
	display: none;
}

/* ===========================
	物件一覧ここまで
============================*/
/* ===========================
	cmapここから
============================*/
#baloon_explanation {
	margin-bottom: 20px;
	padding-left: 0px;
	font-size:clamp(15px, 13.735px + 0.527vw, 18px);
	font-weight: bold;
}
@media (min-width: 810px) {
	#baloon_explanation {
		padding-left: 10px;
		font-size:clamp(18px, 16.541px + 0.18vw, 20px);
	}
}
/* 吹き出し */
.gm-ui-hover-effect>span {
	position: absolute;
	top: 2px;
	right: -5px;
	background-color: #c33 !important;
	width: 30px !important;
	height: 30px !important;
	opacity: 1 !important;
}
.gm-ui-hover-effect {
	opacity: 1;
}
div.balloon span.btn {
	display: block;
	width: 100%;
	color: #fff;
	background: var(--mainlight);
	border-radius: 15px;
}
div.balloon span.btn:hover {
	background: var(--maincolor);
}

#search_map {
	height: 600px;
	width: 100%;
}
div.balloon {
	width: 220px;
	max-height: 350px;
	overflow-x: hidden;
}
div.balloon table {
	width: 200px;
}
div.balloon table:not(:last-child) {
	margin-bottom: 15px;
	border-bottom: dotted 2px #666;
}
div.balloon table tr:last-child td {
	padding-bottom: 15px;
}
div.balloon img {
	width: 160px;
	height: 120px;
}
.map_cost{
	font-size: 16px;
	font-weight: bold;
	color: #CC3333;
}
.main_inner{
	width: 100%;
	padding: 30px 0 0;
}

.inline{
	display:inline-block;
	margin-right:0.5rem;
}
/*20221005追加アイコンソート用*/

#baloon_explanation{
	width:95%;
	margin: 0 calc(5% / 2);
	display: flex;
	flex-wrap: wrap;
	flex-direction:row;
	align-items: center;
	justify-content: center;
	gap:1px;
	margin-bottom:clamp(10px, 7.891px + 0.879vw, 15px);
}

@media (min-width: 810px) {
	#baloon_explanation{
		width:85%;
		margin: 0 calc(15% / 2);
		display: flex;
		flex-wrap: wrap;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		gap:10px;
		margin-bottom:15px;
	}
}
.mapcheck-pc,
.mapcheck-sp{
	display: block;
	width: 100%;
	margin-bottom: 20px;
	padding: 0 10px;
	text-align:center;
	font-size:15px;
	color:#c50000;
}
.mapcheck-pc span,
.mapcheck-sp span{
	margin: 0 5px;
	padding:2px 5px;
	color:var(--white);
	border-radius:5px;
}
.mapcheck-pc span i,
.mapcheck-sp span i{
	margin-right:5px;
}

#baloon_explanation img{
	width:auto;
	height:clamp(30px, 27.891px + 0.879vw, 35px);
}
#baloon_explanation img:not(:first-of-type){
	margin-left: 10px;
}


@media (max-width: 809px) {
	.mapcheck-pc{
		display:none;
	}
	.mapcheck-sp{
		line-height:26px;
	}
	.mapcheck-sp span{
		background:var(--mainsub);
	}
}
@media (min-width: 810px) {
	.mapcheck-sp{
		display:none;
	}
	.mapcheck-pc{
		display: block;
		width: 100%;
		margin-bottom: 20px;
		line-height:28px;
		text-align: center;
		font-size:17px;
		color:rgb(197, 0, 0);
	}
	.mapcheck-pc span{
		background:var(--pincolor);
	}
	#baloon_explanation{
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		justify-content: center;
		flex-direction: row;
		gap:10px;
		margin-bottom:5px;
	}
}
.mapcheck-input{
	display: none;
}
.mapcheck-label{
	width: 170px;
	height:40px;
	transition: all .3s;
	display: flex;
	align-items: center;
	margin-bottom:5px;
	padding: 5px 10px;
	border-radius: 10px;
	cursor: pointer;
	border:1px solid rgba(222,222,222,1);
}
.mapcheck-label img {
	width: 25px;
	margin-right: 10px;
}


@media (min-width: 810px) {
	.mapcheck-label{
		width: auto;
		height:40px;
		transition: all .3s;
/*		display: inline-table;*/
		padding: 5px;
		border-radius: 10px;
		cursor: pointer;
	border:1px solid rgba(222,222,222,1);
	}
	.mapcheck-label img {
		width: 25px;
		margin-right: 5px;
	}
}
input[type="checkbox"]:checked + #mapcheck-label_c1,
input[type="checkbox"]:checked + #mapcheck-label_c2,
input[type="checkbox"]:checked + #mapcheck-label_c3,
input[type="checkbox"]:checked + #mapcheck-label_c4,
input[type="checkbox"]:checked + #mapcheck-label_c5,
input[type="checkbox"]:checked + #mapcheck-label_c6,
input[type="checkbox"]:checked + #mapcheck-label_c7,
		input[type="checkbox"]:checked + #mapcheck-label_b1,
input[type="checkbox"]:checked + #mapcheck-label_b2,
input[type="checkbox"]:checked + #mapcheck-label_b3,
input[type="checkbox"]:checked + #mapcheck-label_b4 {
	border:2px solid #e3e3e3;
}
#mapcheck-label_c1:hover,input[type="checkbox"]:checked + #mapcheck-label_c1,
#mapcheck-label_c2:hover,input[type="checkbox"]:checked + #mapcheck-label_c2,
#mapcheck-label_c3:hover,input[type="checkbox"]:checked + #mapcheck-label_c3,
#mapcheck-label_c4:hover,input[type="checkbox"]:checked + #mapcheck-label_c4,
#mapcheck-label_c5:hover,input[type="checkbox"]:checked + #mapcheck-label_c5,
#mapcheck-label_c6:hover,input[type="checkbox"]:checked + #mapcheck-label_c6,
#mapcheck-label_c7:hover,input[type="checkbox"]:checked + #mapcheck-label_c7,
#mapcheck-label_b1:hover,input[type="checkbox"]:checked + #mapcheck-label_b1,
#mapcheck-label_b2:hover,input[type="checkbox"]:checked + #mapcheck-label_b2,
#mapcheck-label_b3:hover,input[type="checkbox"]:checked + #mapcheck-label_b3,
#mapcheck-label_b4:hover,input[type="checkbox"]:checked + #mapcheck-label_b4 {
	background:#f3f3f3;
}
.mapcheck-submit{
	position: relative;
	top:-3px;
	display: inline-flex;
	align-items: center;
	width: 180px;
	height: 45px;
	margin: 15px 0 0 10px;
	text-align: left;
	font-size: 22px;
	font-weight:bold;
	color: #202020;
	background-color: #fff;
	border: none;
	box-shadow:0 3px 10px rgba(0,0,0,0.15);
	border-radius: 10px;
	cursor: pointer;
	opacity: 0;
	transition: all .3s ease-in-out;
	pointer-events: none;
}
@media (min-width: 810px) {
	.mapcheck-submit{
		margin:0 0 0 40px;
	}
}
.mapcheck-submit:hover{
	background:#b0d9ff;
}
input[type="checkbox"]:checked ~ .mapcheck-submit{
	opacity: 1;	
	pointer-events: visible;
}
/* ===========================
	cmapここまで
============================*/
/* ===========================
	物件詳細ここから　※詳細ページはsp-cssもあるので注意！！！
============================*/
#meisaibody main{
	background: linear-gradient(90deg,  #fff 0% 20%, var(--gray) 20%);
	padding-bottom:60px;
}
.container main#meisai_article h1 {
	position: relative;
	/* ???
	height: 55px;
	line-height: 60px;*/
}
.container section#meisai{
	margin:0 auto 60px;
}
.kousinbi{
	font-size:clamp(13px,2.3076vw,15px);
}

#meisai p {
	margin-bottom: 10px;
}
#meisai p.meisai_catch {
	position: relative;
	padding: 20px;
	margin-top: 1.5em;
	margin-bottom: 40px;
	line-height:1.5;
	letter-spacing: 1px;
	font-size: clamp(15px,2.8846vw,17.5px);
	color: var(--black);
	background: #fff;
	border:solid 1px var(--mainlight);
	box-shadow: var(--shadow);
}
#meisai p.meisai_catch i{
	color:var(--mainlight);
	font-size:1.25em;
	margin-right:5px;
}
#goback {
	margin-bottom: 10px;
}
#goback button {
	margin-top: 20px;
	margin-left: 10px;
	padding: 5px 15px;
	font-weight: 500;
	font-size: clamp(15px,2.8846vw,16px);
	background-color: var(--maincolor);
	color:#fff;
	border: none;
	border-radius: 5px;
	box-shadow: var(--shadow);
	cursor: pointer;
	transition: all .25s;
}
.goback button i{
	margin-right:5px;
}
#goback button:hover {
	background: var(--maindark);
	border: none;
}
.toiawasebtn{
	display: flex;
	width:100%;
	margin-right: 0;
	margin-bottom: 20px;
	justify-content: flex-end;
	gap:10px;
}
.toiawasebtn button{
	padding: 10px 20px;
	font-weight: 500;
	font-size: clamp(15px,2.8846vw,16px);
	background-color: var(--maincolor);
	color:#fff;
	border: none;
	border-radius: 5px;
	box-shadow: var(--shadow);
	cursor: pointer;
	transition: all .25s;
}
.toiawasebtn button i{
	margin-right:5px;
}
.toiawasebtn button:hover{
	background: var(--maindark);
	border: none;
}
.meisai-top-container{
	display: flex;
	flex-direction: row-reverse;
	flex-wrap: wrap;
	justify-content: space-between;
	column-gap:2%;
	margin-bottom:40px;
}
.meisai-topinfo-container{
	width:61%;
	flex-grow: 1;
}
.meisai_topinfo_photo{
	width:37%;
}
.meisai-topinfo-wrap{
	padding:20px 20px 15px;
	border-bottom:2px solid var(--sublight);
}
.meisai-topinfo-wrap dl{
	display: flex;
	column-gap: 20px;
	margin-bottom:10px;
	align-items: baseline;
}
.meisai-topinfo-wrap dl dt{
	font-size:15px;
	letter-spacing: 1px;
	white-space: nowrap;
}
.meisai-topinfo-wrap dl dt::before{
	font-family: 'Font Awesome 6 Free'; /* 追記したコード */
	font-weight: 700; /* 追記したコード */
	 color:var(--texgray);
	font-size:20px;
	display: inline-block;
	width:24px;
	text-align: center;
	transition:all .25s;
	margin-right: 10px;
}
.topinfo-syozai dt::before{
	content: '\f3c5';
}
.topinfo-madori dt::before{
	content: '\f015';
}
.meisai-topinfo-wrap .topinfo-tinryou dt::before{
	content: '\f157';
	color:var(--costred);
}
.meisai-topinfo-wrap dl dd{
	font-size:clamp(15px,2.8846vw,17px);
	letter-spacing: 1px;
}
.meisai-topinfo-wrap dl dd span.cost{
	color:var(--costred);
	font-size: clamp(20px,3.8461vw,32px);
	font-weight:700;
	margin-right:5px;
}
.meisai-subinfo-wrap{
	display: flex;
	width:95%;
	max-width:700px;
	margin:30px auto;
	flex-wrap: wrap;
	justify-content: flex-start;
	column-gap:4%;
}
.meisai-subinfo-wrap dl{
	width:48%;
	margin-bottom:25px;
	padding:10px;
	border-radius:10px;
	background:#f2f2f2;
	color:#afafaf;
	text-align: center;
}
.meisai-subinfo-wrap dl.hasinfo{
	background:var(--maincolor);
	color:var(--white);
}
.meisai-subinfo-wrap dl dt{
	font-size:clamp(13px,2.5vw,14px);
	letter-spacing: 1px;
}
.meisai-subinfo-wrap dl dd{
	font-size:clamp(15px,2.8846vw,17px);
}
.meisai_body {
	width: 100%;
	margin-bottom: 60px;
	background: #fff;
	border: 1px solid #f3f3f3;
	font-size: 15px;
	border-collapse: collapse;
	box-shadow: 0 0 15px rgba(180,180,180,.10) ;
}
.meisai_body th{
	padding: 15px;
	border-bottom: solid 1px #efefef;
	font-weight: 400;
	background: var(--mainlightlight);
}
.meisai_body td {
	padding:15px;
	border-bottom: solid 1px #efefef;
}

.meisai_body td button {
	display: inline-block;
	padding: 10px 20px;
	font-size: 16px;
	border: none;
	border-radius: 3px;
	letter-spacing: 1px;
	color:#fff;
	background-color: var(--maincolor);
	transition: all .25s;
	cursor: pointer;
}
.meisai_body td button:hover{
	background-color: var(--pincolor);
}
p.genkyou{
	line-height:1.5;
	font-size:clamp(14px,2.6923vw,15px);
}
#meisai_photo,
#meisai_moviebox,
#meisai_vrbox,
#meisai_photo_thumb {
	width: 100%;
	margin: 0 auto;
}
#meisai_moviebox,
#meisai_vrbox {
	text-align: center;
}
#meisai_photo {
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	justify-content: space-between;
}
#meisai_photo p {
	display: block;
	width: 95%;
	text-align: center;
}
@media(max-width:786px){
	#meisai_photo {
		justify-content: center;
		gap:20px;
	}
	#meisai_photo p {
		display: block;
		width: 100%;
		text-align: center;
	}
}

#meisai_photo p.displaynone{
	display: none;/* 登録写真がない時の空要素のレイアウト崩し予防 */
}
#meisai_photo p a:hover img{
	transform: scale(1.05);
}
#meisai_photo p:first-of-type{
	margin-bottom:20px;
}
#meisai_photo p img {
	width: 100%;
	max-width: 320px;
	object-fit: cover;
	margin: 0 auto;
	transition: all .25s;
	box-shadow:var(--shadow);
}
#meisai_photo_thumb{
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	column-gap:2%;
	row-gap:10px;
	overflow: hidden;
	max-width: 900px;/* なんとなくの数値です */
	padding:20px;
	margin-bottom:40px;
	background:var(--gray);
}
#meisai_photo_thumb a:hover img{
	transform: scale(1.1);
}
#meisai_photo_thumb a{
	width:15%;
	height:auto;
	box-shadow:var(--shadow);
}
#meisai_photo_thumb img {
	width: 100%;
	display: block;
	object-fit: cover;
	transition: all .25s;
}
#meisai_moviebox iframe,
#meisai_vrbox iframe {
	width: 100%;
	height: 400px;
	border: 0 none;
}
#map {
	width: 100%;
	height: clamp(350px,67.307vw,450px);
}
/* VRとか用の記述
#meisai_moviebox h2,
#meisai_vrbox h2 {
	width: 920px;
	height: 40px ;
	margin: 0 auto;
	line-height: 40px ;
	letter-spacing: 7px;
	text-indent: 35px;
	text-align: center;
	font-family: 'M PLUS 1p', sans-serif;
	font-size: 20px;
	font-weight: 300;
	color: #fff;
	border: 0;
}
#meisai_moviebox h2 {
	background-image: url(../images/osusume_movie_icon.png);
	background-position: 350px center;
	background-repeat: no-repeat;
	background-color: #091641;
	background-size: 33px;
}
#meisai_vrbox h2 {
	background-image: url(../images/osusume_vr_icon.png);
	background-position: 330px center;
	background-repeat: no-repeat;
	background-color: #091641;
	background-size: 32px;
}*/

/* ======================================================== 
	物件詳細ここまで
=================================================================*/
/* =================================================================
	adminここから
========================================================*/
#adminbody p{
	line-height: 1.5;
}
#adminbody .backhomelink a{
	color:var(--linkcolor);
	transition: all .25s;
	padding-bottom: 5px;
}
#admin-kanrikoumoku{
	width:95%;
	max-width: 400px;
	margin:0 auto 3em;
	padding-left: 2em;
}
#admin-kanrikoumoku li{
	list-style-type: circle;
	margin-bottom:.5em;
}
#admin-kanrikoumoku li a{
	display: block;
	color:var(--linkcolor);
	transition: all .25s;
	font-size: clamp(15.5px,2.9807vw,17.5px);
	letter-spacing: .5px;
}
#admin-kanrikoumoku li::marker{
	color:var(--linkcolor);
}
#admin-kanrikoumoku li a:hover,
#adminbody .backhomelink a:hover{
	color: var(--pincolor);
}
section#admin_block {
	width: 100%;
	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: var(--gray);
}
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;
}
.linkcolor a{
	color:var(--linkcolor);
	transition: all .25s;
}
.linkcolor a:hover{
	color:var(--pincolor);
}
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;
	margin-bottom:2em;
}
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 caption button{
	padding:7px 15px;
	background: var(--gray);
	box-shadow: var(--shadow);
	border-radius: 10px;
	border:1px solid #ddd;
	cursor: pointer;
	transition: all .25s;
}
section#admin_block table#holiday_calendar caption button:hover{
	background:var(--pincolor);
	border:1px solid var(--pincolor);
	color:#fff;
}
section#admin_block table input{
	cursor: pointer;
}
section#admin_block table#holiday_calendar th {
	width: 14.285%;
}
section#admin_block table#holiday_calendar tr > td:nth-child(7) {
	background: #eef;
	color: #33f;
}
section#admin_block table#holiday_calendar tr > td:nth-child(1),
section#admin_block table#holiday_calendar tr > 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%;
}
/* ===========================
	レスポンシブここから
============================*/
/* ===========================
	レスポンシブ用記述
*/
#menuwrapper-sticky_wrap{
	display:none;
}
.overlay {
	display:none;
}
@media(max-width:1024px){
/* ===========================
		ハンバーガーメニューここから
============================*/
	/* 
		ハンバーガーボタンクリックで画面を暗く
		.overlayクリックでメニュー以外の領域クリックしたときにハンバーガーメニューを閉じる
		.overlayの設定はcommon.jsにもあるのでid名等注意
	*/
	.overlay {
		background-color: #000;
		cursor: pointer;
		height: 100vh;
		left: 0;
		opacity: 0;
		position: fixed;
		top: 0;
		transition: all 0.5s;
		visibility: hidden;
		width: 100vw;
		z-index: 999;/* ハンバーガーボタンより下になるように注意 */
		display: block;
	}
	.nav-open .overlay {
		opacity: 0.5;
		visibility: visible;
		cursor:default;
		-webkit-tap-highlight-color:rgba(0,0,0,0);
	}
	header nav{
		display: none;
	}
	#menuwrapper-sticky_wrap{
		display: block;
		right: 0;
		position: fixed;
		top:10px;
		z-index: 1001;/* ページトップボタンより上になるように注意 */
	}
	input#hamburger {
		display: none;
	}
	/*
	 * ハンバーガーボタン用
	 * */
	 .menu_button {
		width: 50px;
		height: 50px;
		display: flex;
		position: absolute;
		top: 5px;
		right: 0px;
		background: 0 0;
		z-index: 1002;
		justify-content: center;
		flex-direction: column;
		align-items: center;
		cursor: pointer;
	}
	.menu_button span,
	.menu_button span::before,
	.menu_button span::after {
		content: '';
		display: block;
		height: 3px;
		width: 35px;
		border-radius: 5px;
		background: var(--maincolor);
		transition: all .3s;
		position: absolute;
		top: 10px;
	}
	.menu_button span:before {
		top: 10px;
		left: 0;
		background: var(--maincolor);
	}
	.menu_button span:after {
		top: 20px;
		left: 0;
		background: var(--maincolor);
	}
	.menu_button:after {
		content: 'MENU';
		display: inline-block;
		position: absolute;
		bottom: -5px;
		font-weight:700;
		font-family: 'Montserrat',sans-serif;
		font-size: 10px;
		color: var(--maincolor);
		transition: all .3s;
	}
	.menu_button.active span {
		background: rgba(255,255,255,0);
	}
	.menu_button.active span:before {
		bottom: 0;
		transform: rotate(45deg);
		background:var(--mainlightlight);
	}
	.menu_button.active span:after {
		top: 10px;
		transform: rotate(-45deg);
		background:var(--mainlightlight);
	}
	.menu_button.active:after {
		content: 'CLOSE';
		color: var(--mainlightlight);
	}
	/*
	 * レスポンシブメニュー用
	 * */	
	 #responsive-menuwrap{
		position:fixed;
		z-index: 99;
		top:0;
		right: -150%;
		width:clamp(250px,83.3333vw,300px);
		/* clampの変更点横幅300px 250/300*100 */
		height: 100vh!important;
		color:#fff;
		background:rgba(7,22,47,.9);
		transition: all 0.5s;
	}
	#responsive-menuwrap.open{
		right: 0;
	}
	#responsive-menuwrap > div{/*スクロールバーなしでスクロールさせる記述*/
		position: fixed;
		z-index: 999999; 
		width:clamp(250px,83.3333vw,300px);
		/* clampの変更点横幅300px 250/300*100 */
		height: 100%;
		margin-top:0;
		padding-top:10vh;/*フッターと共通のcssを打ち消し*/
		padding-bottom:5vh;/*フッターと共通のcssを打ち消し*/
		overflow: auto;
	}
	#responsive-menuwrap > div >ul{
		margin: 0;
		padding: 0;
	}
	#responsive-menuwrap > div >ul >li {
		border-bottom: 1px solid #fff;
		padding-left:1.5em;
		font-size:14px;
	}
	#responsive-menuwrap > div >ul h2{
		width: 100%;
		margin:20px 0 5px -1.5em;
		padding:5px 15px;
		letter-spacing:2px;
		font-size:16px;
		background:var(--maindark);
		border:solid 1px var(--maindark);
}
	#responsive-menuwrap > div >ul >li a{
		display:inline-block;
		width:clamp(220px,73.3333vw,240px);
		/* clampの変更点横幅300px 220/300*100 */
		padding-top:20px;
		padding-bottom:20px;
		position:relative;
		color:#fff;
		transition:all .25s;
		cursor:pointer;
		letter-spacing: 1px;
	}
	#responsive-menuwrap > div >ul >li a.home{
		font-size:18px;
	}

	#responsive-menuwrap > div >ul >li a.close{
		color:var(--pincolor);
	}

	#responsive-menuwrap > div >ul >li a:hover{
		color:var(--pincolor);
	}
	#responsive-menuwrap > div >ul >li:not(.menu-item-has-children) >a:hover{
		text-indent:10px;
	}
	#responsive-menuwrap > div >ul >li >ul >li{
		font-size:14px;
		display: flex;
    	align-items: center;
	}

	#responsive-menuwrap > div >ul >li >ul >li:hover{
		color:var(--pincolor);
	}
	#responsive-menuwrap > div >ul >li.menu-item-has-children ul li a{
		display: flex;
		align-items: center;
		padding-top: 10px;
		padding-bottom:10px;
	}
	#responsive-menuwrap > div >ul >li.menu-item-has-children ul li:last-of-type a{
		padding-bottom:20px;
	}
	#responsive-menuwrap > div >ul >li.menu-item-has-children ul li a::before{
		content:'';
		display:inline-block;
		margin-right:15px;
		width:10px;
		height:1.5px;
		background:#fff;
		transition:all .25s;
	}
	#responsive-menuwrap > div >ul >li >ul >li a:hover{
		text-indent:10px;
	}
	#responsive-menuwrap > div >ul >li >ul >li a:hover::before{
		background:var(--pincolor);
	}
	/* 
		アコーディオン開閉 */
	#responsive-menuwrap > div >ul >li >ul.sub-menu{
		display:none;
	}
	#responsive-menuwrap > div >ul >li.menu-item-has-children >a::before,
	#responsive-menuwrap > div >ul >li.menu-item-has-children >a::after{
		position: absolute;
		content:'';
		width: 15px;
		height: 2px;
		background-color: #fff;
		transition:all .25s;
	}
	#responsive-menuwrap > div >ul >li.menu-item-has-children >a::before{
		top:48%;
		right: 15px;
		transform: rotate(0deg);
	}
	#responsive-menuwrap > div >ul >li.menu-item-has-children >a::after{    
		top:48%;
		right: 15px;
		transform: rotate(90deg);
	}
	#responsive-menuwrap > div >ul >li.menu-item-has-children >a.close::before{
		transform: rotate(45deg);
	}
	#responsive-menuwrap > div >ul >li.menu-item-has-children >a.close::after{
		transform: rotate(-45deg);
	}
	#responsive-menuwrap > div >ul >li.menu-item-has-children >a:hover::before,
	#responsive-menuwrap > div >ul >li.menu-item-has-children >a:hover::after,
	#responsive-menuwrap > div >ul >li.menu-item-has-children >a.close::before,
	#responsive-menuwrap > div >ul >li.menu-item-has-children >a.close::after{
		background-color:var(--pincolor);
	}
	/*
		ここまでハンバーガーメニュー
	============================*/

	/* お問い合わせ */
	#form_table dl {
		display: flex;
		flex-direction: column;
		padding:0;
	}
	#form_table dt,
	#form_table dd {
		width:100%;
		padding: 8px 5px;
	}
}
@media(max-width:768px){
	.infotr{
		flex-direction: column;
		column-gap: 0;
		row-gap:10px;
	}
	.infotr .info_body{
		width:100%;
		font-size:14.5px;
	}
	#index_news{
		max-height:200px;
	}
	/* ===========================
		会社案内ページここから
	============================*/
	#company_text dl{
		display: flex;
		flex-direction: column;
	}
	#company_text dl dt,#company_text dl dd{
		width:100%;
	}
	#company_text dl dt{
		padding:10px 20px 10px 30px;
	}
	#company_text dl dd{
		border-top:none;
	}
	/* ===========================
		物件一覧ページここから
	============================*/
	.order_button label {
		display: block;
		margin-bottom: 10px;
		padding:10px;
		letter-spacing: 1px;
		text-align: center;
		font-size: 15px;
		color: #fff;
		background-color: var(--maindark);
		border-radius: 25px;
		box-shadow: var(--shadow);
		cursor: pointer;
	}
	.order_button input {
		display: none;
	}
	.order_button ul {
		list-style-type: none;
		display: block;
		width: 100%;
		-webkit-transition: all 0.5s;
		-moz-transition: all 0.5s;
		-ms-transition: all 0.5s;
		-o-transition: all 0.5s;
		transition: all 0.5s;
	}
	.order_button input + ul {
		height: 0;
		overflow: hidden;
		opacity: 0;
		transition:all .3s;
	}
	.order_button input:checked{
		color:red;
	}
	.order_button input:checked + ul {
		height: auto;
		opacity: 1;
		overflow: visible;
	}
	.order_button ul li{
		display: block;
		width:80%;
		height:36px;
		letter-spacing: 1px;
		text-align: center;
		font-size: 15px;
		margin:0 auto 10px;
	}
	.order_button button{
		height:100%;
	}
	.order_button button span{
		display: flex;
		width: 100%;
		height: 100%;
		margin-bottom: 5px;
		font-size: 15px;
		justify-content: center;
		align-items: center;
		background:#fff;/* 背景色と合わせる、これが無いと謎の黒枠が生まれる */
	}
	.order_button button span::before{
		border-radius: 25px;
	}
	.order_button button:hover{
		background-color: var(--black);
	}
	.order_button button:hover span {
		color: #fff;
	}
	.order_button .button-wrapper span{
		color: var(--maincolor);
		padding:0!important;
	}
	/* ===========================
		物件詳細ページここから
	============================*/
	.meisai-top-container{
		flex-direction: column-reverse;
	}
	.meisai_topinfo_photo,
	.meisai-topinfo-container{
		width: 100%;
	}
	#meisai_photo{
		flex-direction: row;
		flex-wrap: nowrap;
	}
	#meisai_photo p{
		width: 48%;
	}
	#meisai_photo_thumb{
		column-gap: 4%;
		padding:0;
		border-radius: 0;
	}
	#meisai_photo_thumb a{
		width: 22%;
	}
	.meisai_body tr{
		display: flex;
		flex-direction: column;
	}
	.meisai_body tr th,
	.meisai_body tr td{
		width:100%;
		text-align: center;
		min-height: 51px;
	}
	/* lightbox */
	#jquery-lightbox{
		width: 90%!important;
		left:5%!important;
	}
	#jquery-lightbox div{
		width: 100%!important;
	}
	#lightbox-container-image{
		padding:0!important;
	}
	#lightbox-image{
		width:90%!important;
		margin-top:20px;
	}
	#lightbox-container-image-data-box{
		padding:0!important;
	}
	#lightbox-container-image-data{
		padding:0!important;
	}
	#lightbox-image-details-currentNumber{
		padding-left: 1em;
	}
	#lightbox-secNav-btnClose{
		margin-right:1em;
	}
}
@media(max-width:520px){
	/* ===========================
		物件一覧ページここから
	============================*/
	div.navi{
		align-items:center;
	}
	div.navi_number{
		display: none;
	}
	div.navi_number > a:last-of-type{
		display: none;
	}
	div.navi_prev a, div.navi_next a{
		line-height:1;
	}
	div.navi_number span, div.navi_number a{
		font-size:13px;
		padding:8px 8px;
		line-height:1;
	}
	.navi_pages{
		display: block;
		color:var(--maincolor);
		font-size:14px;
		font-family: var(--en);
		font-weight:500;
	}
	/**/
	#meisai_photo{
		flex-direction: column;
	}
	#meisai_photo p{
		width: 100%;
	}
	.meisai-topinfo-wrap dl{
		flex-direction: column;
	}
	.meisai-topinfo-wrap dl dd{
		padding-left: 2em;
	}
}
/* ===========================
	レスポンシブここまで
============================*/


