@charset "utf-8";
/* CSS Document */
/* ------------------------------------------------------------------------ */

/*	Reset

/* ------------------------------------------------------------------------ */

html {
	overflow-y	: scroll;
	height	: 100%;
	font-size	: 62.5%;
	-webkit-text-size-adjust: 100%;
}

body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,
pre,form,fieldset,p,blockquote {
	margin 	: 0;
	padding : 0;
}

fieldset {
	display	: inline;
}

address,caption,cite,code,dfn,em,strong,th,var {
	font-style : normal;
}

body/**/table {
	line-height	: 1.5;
}

q:before,
q:after {
	content : '';
}

object,embed {
	vertical-align : top;
}

hr,legend	{
	display : none;
}

h1,h2,h3,h4,h5,h6 {
	font-size : 100%;
}

img,abbr,acronym,fieldset {
	border : 0;
}

ul li {
	list-style-type : none;
}

img[usemap] {
	border	: none;
	height	: auto;
	max-width	: 100%;
	width	: auto;
}

img {
	border	: 0;
	max-width	: 100%;
}

i {
	padding	: 5px 5px 2px 0;
}

p {
	word-break	: break-all;
}

ol{
	padding-left: 20px;
}



/* Flexible Images */
img{
	max-width	: 100%;
	height	: auto;
	width /***/	: auto;
}

submit	{ -webkit-appearance : none;}


.style650{
	display: none;
}


@media screen and (max-width:650px){
	.style650{
	display: block;
	}
}

/* ------------------------------------------------------------------------ */

/* テーブルスクロール

/* ------------------------------------------------------------------------ */

.table-wrap {
	overflow-x: auto;	 /* 横スクロールを許可 */
	-webkit-overflow-scrolling: touch;
}


/* ------------------------------------------------------------------------ */

/*	Basic Style

/* ------------------------------------------------------------------------ */

body {
	margin	: 0;
	padding	: 0;
	height	: 100%;
	 font-family: "游ゴシック体", "Yu Gothic", "YuGothic",
				 "Hiragino Sans", "ヒラギノ角ゴシック",
				 "Meiryo", sans-serif;
	font-size	: 1.6rem;
	font-size	: 16px;
	font-weight	: 500;
	line-height	: 1.75;
	text-align	: left;
	color	: #111111;
	-webkit-text-size-adjust	: 100%;
	font-smoothing	: auto;
}
@media screen and (max-width: 480px) {
	body {
	font-size	: 1.5rem;
	font-size	: 15px;
	line-height	: 1.65;
	}
}

body *,
body *:before,
body *:after {
	box-sizing: border-box;
}

#wrap{
	margin	: 0 auto;
}

body > #wrap { height : auto;}


#subPage section:first-of-type{
	margin-top: 60px;
}
#subPage section + section{
	margin-top: 90px;
}
section .inner{
	max-width: 1240px;
	margin: 0 auto;
	padding: 0 20px;
	box-sizing: border-box;
}
section .inner .detailArea{
	padding: 0 40px;
	margin-top: 40px;
}
section .inner .detailArea h3.hd02:not(:first-of-type){
	margin-top: 40px;
}

section .txtArea p + p{
	margin-top: 24px;
}

@media screen and (max-width: 800px) {
	#subPage section:first-of-type{
	margin-top: 50px;
	}
	#subPage section + section{
	margin-top: 50px;
	}
	section .inner .detailArea{
	padding: 0 20px;
	margin-top: 20px;
	}

	section .txtArea p + p{
	margin-top: 20px;
	}
}
@media screen and (max-width: 480px) {
	#subPage section:first-of-type{
	margin-top: 40px;
	}
	#subPage section + section{
	margin-top: 40px;
	}
	section .inner .detailArea{
	padding: 0 20px;
	margin-top: 20px;
	}

	section .txtArea p + p{
	margin-top: 20px;
	}
}

/* Link
--------------------------------------------------------------------------- */

.opacity a:hover img{
	opacity: 0.85;
}

a:link,
a:visited	{
	text-decoration	: none;
	color		: #0080c0;
}

a:hover	{
	opacity: .8;
	text-decoration	: none;
}


/* ------------------------------------------------------------------------ */

/* Hedaer

/* ------------------------------------------------------------------------ */

header {
}

header .inner{
	max-width: 1520px;
	margin: 0 auto;
	padding: 20px 0 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

header .inner h1 a,
header .inner p a{
	display: block;
	max-width: 238px;
	height: auto;
}

header .inner .headerNav{
	display: flex;
	justify-content: flex-end;
	align-items: center;
	gap: 16px 24px;
}

header .inner .headerNav .item a{
	font-size: 14px;
	font-weight: 700;
	color: #111;
}



.hamburger {
	display: none;
	flex-direction: column;
	justify-content: space-around;
	width: 40px;
	height: 29px;
	background: none;
	border: none;
	cursor: pointer;
}

.hamburger span {
	display: block;
	height: 1px;
	background: #333;
	border-radius: 2px;
	transition: 0.3s;
}

@media screen and (max-width:1550px) {
	header .inner{
	padding: 20px;
	}
}


@media (max-width: 1300px) {
	header{
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 99;
	}

	header .inner{
	background-color: #fff;
	}

	header .inner h1 a,
	header .inner p a{
	max-width: 145px;
	}
	.hamburger {
	display: flex;
	}
	.headerNav {
	position: absolute;
	top: 75px;
	right: 0;
	background: #fff;
	width: 100%;
	padding: 1rem;
	border-bottom: 1px solid #ddd;
	row-gap: 20px;
	}
	.headerNav[hidden] {
	display: none !important;
	}

	header .inner .headerNav{
	z-index: -1;
	transition-duration: .3s;
	justify-content: center;
	flex-wrap: wrap;
	}

	header .inner .headerNav .item{
	width: calc(100% / 3);
	}
}




@media screen and (max-width: 1300px) {
	#contentsBlock{
	margin: 90px 0 0;
	}
}




/* ------------------------------------------------------------------------ */

/* breadcrumbs

/* ------------------------------------------------------------------------ */


.breadcrumbs {
	margin-top: 15px;
	margin-bottom: 80px;
}
.breadcrumbs a {
	 color: #000;
	 text-decoration: underline;
}
.breadcrumbs a:hover {
	 text-decoration: none;
}

.breadcrumbs .inner{
	max-width: 1200px;
	margin: 0 auto;
}

.breadcrumbs .list{
	display: block;
	text-align: left;
}

.breadcrumbs .list .item{
	display: inline-block;
	font-size: 14px;
}

.breadcrumbs .list .item + .item::before{
	margin: 0 4px;
	font: var(--fa-font-solid);
	content: "\f105";
	font-size: 12px;
	color: #808080;
}

section.list{
	margin-top: 92px;
	margin-inline: 20px;
}

section.list h2{
	font-size: 34px;
}

@media screen and (max-width: 1240px) {
	.breadcrumbs .inner{
	padding: 0 20px;
	}
}
@media screen and (max-width: 800px) {
	.breadcrumbs{
	margin-bottom: 40px;
	}
}


/* ------------------------------------------------------------------------ */

/* cardsの共通css

/* ------------------------------------------------------------------------ */

#contentsBlock .cards{
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-template-rows: 1fr;
	grid-column-gap: 30px;
	grid-row-gap: 80px;
	margin-top: 30px;
}

#contentsBlock .cards .card{
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	text-align: center;
}
#contentsBlock .cards .card .cat_label{
    position: absolute;
    top: 0;
    right: 0;
	font-weight: 600;
    color: #fff;
    padding: 5px 20px;
}
#contentsBlock #rentTab.cards .card .cat_label{
	background-color: #0080c0;
}
#contentsBlock #buyTab.cards .card .cat_label{
	background-color: #db8401
}
#contentsBlock #successionTab.cards .card .cat_label{
	background-color: #008549
}

#contentsBlock .cards .card .names{
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap: 10px;
	margin-top: 20px;
	margin-bottom: 20px;
	font-weight: 700;
}

#contentsBlock .cards .card .now{
	font-size: 14px;
	display: flex;
	justify-content: center;
	align-items: center;
	max-width: 60px;
	width: 100%;
	height: 60px;
	border-radius: 30px;
	background-color: #cfe7a1;
}

#contentsBlock .cards .card .finish{
	font-size: 14px;
	display: flex;
	justify-content: center;
	align-items: center;
	max-width: 60px;
	width: 100%;
	height: 60px;
	border-radius: 30px;
	background-color: #e7a2ac;
}

#contentsBlock .cards .card .name{
	font-size: 18px;
	text-align: left;
}

#contentsBlock .cards .card .location{
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap: 10px;
	font-size: 14px;
	font-weight: 700;
	text-align: left;
}
#contentsBlock .cards .card .location span{
	display: flex;
	justify-content: center;
	align-items: center;
	max-width: 100px;
	width: 100%;
	height: 24px;
	background-color: #d9d9d9;
}
#contentsBlock .cards .card .floor{
	margin-top: 10px;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap: 10px;
	font-size: 14px;
	font-weight: 700;
	text-align: left;
}
#contentsBlock .cards .card .floor span{
	display: flex;
	justify-content: center;
	align-items: center;
	max-width: 100px;
	width: 100%;
	height: 24px;
	background-color: #d9d9d9;
}
#contentsBlock .cards .card .rent{
	margin-top: 10px;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap: 10px;
	font-size: 14px;
	font-weight: 700;
	text-align: left;
}
#contentsBlock .cards .card .rent span{
	display: flex;
	justify-content: center;
	align-items: center;
	max-width: 100px;
	width: 100%;
	height: 24px;
	background-color: #d9d9d9;
}

#contentsBlock .cards .card .scheduled span{
	display: flex;
	justify-content: center;
	align-items: center;
	max-width: 160px;
	width: 100%;
	height: 24px;
	background-color: #fff9bf;
}

#contentsBlock .cards .card .details{
	position: relative;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	margin-top: 20px;
	max-width: 380px;
	width: 100%;
	height: 40px;
	font-size: 16px;
	font-weight: 700;
	background-color: #fff;
	border: 1px solid #0080c0;
	color: #0080c0;
}

#contentsBlock .cards .card .details::after{
	position: absolute;
	content: "";
	display: block;
	background: url('../img/icon/icon_blue.png') no-repeat center center/cover;
	width: 20px;
	height: 20px;
	right: 10px;
}

@media screen and (max-width:1255px) {
	#contentsBlock .about{
		margin-top: 170px;
		 margin-inline: 20px;
	}

}

@media screen and (max-width:1000px){
	#contentsBlock .cards{
		grid-template-columns: repeat(2, 1fr);
		grid-template-rows: 1fr;

	}
}

@media screen and (max-width:786px){

	#contentsBlock .about h2{
		font-size: 20px;
	}
	#contentsBlock .cards{
		display: block;
		max-width: 500px;
		width: 100%;
	}


	#contentsBlock .cards .card{
		margin-bottom: 70px;
	}

	 #contentsBlock .cards .card:last-child{
		margin-bottom: 0;
	 }

	 #contentsBlock .cards .card .names{
		margin-top: 10px;
		margin-bottom: 10px;
	 }

	 #contentsBlock .cards .card .name{
		font-size: 14px;
	 }
	 #contentsBlock .cards .card .now{
		font-size: 12px;
		max-width: 45px;
		height: 45px;
	 }

	 #contentsBlock .cards .card .floor{
		font-size: 12px;
	 }

	 #contentsBlock .cards .card .details{
		max-width: 500px;
		font-size: 14px;
	 }
}


section.contact{
	margin-top: 120px;
	margin-bottom: 192px;
}

section.contact h3{
	font-size: 26px;
	font-weight: 700;
	text-align: center;
}

section.contact h3::before{
	display: none;
}

section.contact .box{
	max-width: 720px;
	width: 100%;
	margin: 0 auto 0;
	border: 3px solid #008549;
	padding: 32px;
}

section.contact .box .green{
	color: #008549;
	font-size:20px;
	font-weight: 700;
	text-align: center;
	margin-bottom: 13px;
}

section.contact .box p{
	font-size: 18px;
	text-align: center;
}

@media screen and (max-width:786px){
	section.contact{
	margin-top: 60px;
	margin-bottom: 100px;
	}

	section.contact h3{
	font-size: 20px;
	line-height: 1.5;
	}

	section.contact .box{
	padding: 20px;
	}

	section.contact .box .green{
	font-size: 18px;
	}

	section.contact .box p{
	font-size: 16px;
	}
}

@media screen and (max-width:500px){
	section.contact{
	margin-top: 50px;
	margin-bottom: 50px;
	}

	section.contact h3{
	font-size: 18px;
	margin-top: 0;
	margin-left: 0;
	margin-bottom: 20px;
	}

	section.contact .box{
	padding: 10px;
	border: 2px solid #008549;
	}

	section.contact .box .green{
	font-size: 16px;
	margin-bottom: 10px;
	}

	section.contact .box p{
	font-size: 14px;
	}
}


/* ------------------------------------------------------------------------ */

/*　paginationの共通css

/* ------------------------------------------------------------------------ */

.pagination ul {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
	list-style: none;
	padding: 0;
	margin: 100px 0 0;
	font-family: "Noto Sans JP", sans-serif;
}
.pagination ul li {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	min-width: 40px;
	height: 40px;
	position: relative;
	font-size: 20px;
	color: #0080c0;
	padding: 0 4px;
	line-height: 1;
}
.pagination ul li:first-child a,.pagination ul li:last-child a{
	border: none;
}
.pagination ul li .current{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	min-width: 40px;
	height: 40px;
	border: 1px solid #0080c0;
	border-radius: 50%;
}
.pagination ul li a{
	color: #0080c0;
}

@media screen and (max-width: 800px){
	.pagination ul {
	margin: 60px 0 0;
	}
	.pagination ul li {
	width: 34px;
	min-width: 34px;
	height: 34px;
	font-size: 16px;
	padding: 0 4px;
	}
	.pagination ul li .current{
	width: 34px;
	min-width: 34px;
	height: 34px;
	}
}

/* ------------------------------------------------------------------------ */

/* 一覧へ戻るボタン

/* ------------------------------------------------------------------------ */

.single-bottom{
	margin-top: 100px;
	margin-bottom: 200px;
	padding-top: 60px;
	border-top: 1px solid #d1d1d1;
}

.single-bottom .btn-back{
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-inline: auto;
	max-width: 360px;
	width: 100%;
	height: 60px;
 border: 1px solid #0080c0;
 font-size: 18px;
 font-weight: 700;
 color: #0080c0;
}

.single-bottom .btn-back::after{
	position: absolute;
	content: "";
	background: url(../img/icon/icon_blue.png) no-repeat center center/cover;
	max-width: 20px;
	width: 100%;
	height: 20px;
	right: 20px;
}

@media screen and (max-width: 786px){
	.single-bottom{
	margin-top: 60px;
	margin-bottom: 100px;
	padding-top: 40px;

	}
}

@media screen and (max-width: 500px){
	.single-bottom{
	margin-top: 40px;
	margin-bottom: 50px;
	padding-top: 30px;
	}

	.single-bottom .btn-back{
	font-size: 16px;
	max-width: 300px;
	height: 40px;
	}
}


/* ------------------------------------------------------------------------ */

/* Footer

/* ------------------------------------------------------------------------ */

footer {
	clear : both;
	margin-top: 190px;
	text-align: center;
}

footer .links{
	background-color: #ebebeb;
	padding: 40px 0;
}

footer .links .list{
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 25px;

}


footer .siteBtn{
	display: inline-block;
	position: relative;
	font-size: 16px;
	color: #000000;
	margin-top: 40px;
	padding-right: 40px;
}

footer .siteBtn::after{
	position: absolute;
	content: "";
	display: block;
	background: url('../img/icon/icon_blue.png') no-repeat center center/cover;
	width: 20px;
	height: 20px;
	right: 10px;
	top: 3px;
}

footer .footerLogo{
	display: block;
	width: fit-content;
    margin: 36px auto 0;
}

footer .footerLogo img{
	max-width: 352px;
	width: 100%;
	height: auto;
}

footer .footerNav{
	margin-top: 57px;
	display: flex;
	justify-content: center;
	align-items: center;
}

footer .footerNav .item a{
	font-size: 16px;
	font-weight: 500;
	color: #000;
	border-right: 1px solid #000;
	padding-right: 20px;
	margin-right: 20px;
}

footer .footerNav .item:last-child a{
	border: none;
	padding: 0;
	margin: 0;
}
footer .copyright{
	margin-top: 90px;
	padding-bottom: 60px;
	font-size: 14px;
}


@media screen and (max-width:800px){
	footer .links .list{
	flex-wrap: wrap;
	}

	footer .links .list .item{
	max-width: 210px;
	}

	footer .siteBtn{
	font-size: 14px;
	}

	footer .siteBtn::after{
	width: 16px;
	height: 16px;
	right: 10px;
	top: 2px;
	}

	footer .footerLogo img{
	max-width: 220px;
	}

	footer .footerNav{
        flex-wrap: wrap;
        justify-content: flex-start;
        max-width: 95%;
        margin: 57px auto 0;
	}

	footer .footerNav .item{
	display: inline-block;
		width: 50%;
	margin-bottom: 20px;
	}

	footer .footerNav .item a{
	border: none;
	padding-right: 0;
	margin-right: 0;
	font-size: 14px;
	}

	footer .copyright{
	margin-top: 50px;
	padding-bottom: 50px;
	font-size: 12px;
	}
}

@media screen and (max-width: 800px) {
	footer{
	margin-top: 80px;
	}
}

@media screen and (max-width:500px){

	footer .links{
	padding: 20px 0;
	}

	footer .links .list{
	display: block;
	}
	footer .links .list .item{
	max-width: 210px;
	margin-bottom: 10px;
	margin-inline: auto;
	}
}