@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Ropa+Sans&display=swap');

/*//////////////////////////////////////////////////

	カスタムプロパティ

//////////////////////////////////////////////////*/
:root{
	--c-enjoy : #56C0F8;
	--txt-enjoy : #56C0F8;
	--bg-enjoy : #DDF3FF;
	
	--c-shopping : #FF9ECB;
	--txt-shopping : #CC7185;
	--bg-shopping : #FFEDF1;
	
	--c-odekake : #75BE55;
	--txt-odekake : #6E902E;
	--bg-odekake : #EDF8D4;
	
	--c-gourmet : #F8A94C;
	--txt-gourmet : #D98B48;
	--bg-gourmet : #FFF0DB;
}

/*//////////////////////////////////////////////////

	ベース設定

//////////////////////////////////////////////////*/
html{
	font-size: min(12px, calc((10 / 375 * 100) * 1vw));
}

body{
    font-family: 'FOT-筑紫A丸ゴシック Std B','TsukuARdGothicStd-B', 'ヒラギノ明朝 Pro W3','Hiragino Mincho Pro','HGS明朝E','ＭＳ Ｐ明朝', serif;
    font-weight: 500;
    font-style: normal;
	/* font-size: calc(13px + (17 - 13 ) * ( 100vw - 375px ) / (1180 - 375 )); */
	font-size: 1em;
	word-wrap: break-word;
	text-align: left;
	text-justify: inter-character; /* Firefoxで必要 */
	letter-spacing: 0;
}

main{
	display: block;
	overflow: hidden;
}

img{
	display: block;
	width: 100%;
	height: auto;
}
a:link, a:visited{
	color: #000;
}

a:hover{
	text-decoration: none;	
}

.gothic{
    font-family: 'FOT-筑紫A丸ゴシック Std B','TsukuARdGothicStd-B', sans-serif;
    font-weight: 400;
    font-style: normal;
}
.en{
    font-family: Helvetica, sans-serif;
    font-weight: 400;
    font-style: normal;
    letter-spacing: 0;
}

.num{
	 font-family:'Smooch', cursive;
}

.s-txt{
	font-size: .7rem;
}

.l-txt{
	font-size: 1.2rem;
}

.pc{
	display: none;
}

.sp{
	display: block;
}

.r-img{
	overflow: hidden;
	border-radius: 30px;
}

.inner{
	margin: 0 auto;
	padding: 0 4%;
    max-width: 1180px;
}

.m-inner{
	margin: 0 auto;
	padding: 0 4%;
    max-width: 980px;
}

.l-inner{
	margin: 0 auto;
	padding: 0 4%;
    max-width: 1240px;
}

.sp-inner{
	padding: 0 4%;
}

.flex-wrap{
    display: flex;
    flex-flow: row wrap;
    align-items: stretch;
    align-content: flex-start;
    justify-content: space-between;
}

figure{
	position: relative;
}

figure .cap{
	position: absolute;
	right: 20px;
	bottom: 10px;
	font-size: 1.1rem;
	color: #fff;
}

.attention {
	display: block;
	margin: 5px 0;
	font-size: 1.2rem;
	color: #666;
}

@media screen and (min-width: 769px) {
	html{
		font-size: min(10px, calc((10 / 1366 * 100) * 1vw));
	}
	.inner,
	.m-inner,
	.l-inner{
		padding: 0 8%;
	}
	
	.sp-inner{
		display: contents;
	}

	.pc{
		display: block;
	}
	.sp{
		display: none;
	}
}


/*//////////////////////////////////////////////////

	ヘッダー

//////////////////////////////////////////////////*/
header{
	padding: 10px;
	background: #7f6f68;
}

header .header__ttl{
    display: flex;
	align-items: center;
	color: #fff;
	font-size: 	1.6rem;
	text-align: left;
}

header .header__ttl-sub{
	padding: 2px 5px;
	font-size: 1.2rem;
	color: #7f6f68;
	background: #fff;
}


@media screen and (min-width: 769px) {
	header{
		padding: 10px 30px;
	}
}


@media screen and (min-width: 1180px) {
	
	header .header__ttl{
		font-size: 40px;
	}
	
	header .header__ttl-sub{
		font-size: 18px;
		line-height: 1.8;
	}

}

/*//////////////////////////////////////////////////

	メインイメージ

//////////////////////////////////////////////////*/
#mainimg{
	margin-bottom: 4.2rem;
}

#mainimg .breadcrumbs{
	font-size: 1.1rem;
}

.breadcrumbs ol{
	-webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.breadcrumbs li{
	margin-right: .5rem;
}

.breadcrumbs li:not(:last-child):after{
	content: '>';
	margin-right: .5rem;
}

.breadcrumbs a{
	color: #000;
}


@media screen and (min-width: 769px) {
	#mainimg{
		position: relative;
		margin-bottom: 5.0rem;
	}

	#mainimg .breadcrumbs{
		position: absolute;
		left: 3.0rem;
		top: 1.0rem;
		z-index: 1;
	}
}

/*//////////////////////////////////////////////////

	about

//////////////////////////////////////////////////*/
#about{
	margin-bottom: 6.8rem;
	text-align: center;
}

#about p{
	font-size: 1.4rem;	
	line-height: 2.5em;
	letter-spacing: .02em;
}

.border_wrap{
	padding-bottom: .5em;
	background-image: linear-gradient(90deg, #AAA492 .7rem, transparent .6rem);
	background-size: 1.3rem 1px;
	background-repeat: repeat-x;
	background-position: 0 bottom;
}

@media screen and (min-width: 769px) {
	#about{
		margin-bottom: 12.0rem;
	}
	#about p{
		font-size: 1.6rem;	
	}
}

/*//////////////////////////////////////////////////

	ナビ

//////////////////////////////////////////////////*/
.pagenav{
	margin-bottom: 3.4rem;
}

.pagenav ul{
    display: grid;
	grid-template-columns: repeat(2, 1fr);
    justify-content: center;
	gap: 8.2rem .8rem;
}

.pagenav li{
	height: 6.2rem;
	text-align: center;
}

.pagenav li a{
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	height: 100%;
	color: #fff;
	font-size: 1.6rem;
	line-height: 1.2;
	border-radius: 100vw;
}

.pagenav li a:after{
	content: '';
	display: block;
	position: absolute;
	top: 100%;
	left: 50%;
	width: 1.8rem;
	height: 1.1rem;
	clip-path: polygon(0 0, 100% 0, 50% 100%);
	transform: translate(-50%, -1px);
}

.pagenav li a img{
	position: absolute;
	top: 0;
	left: 50%;
	width: 5.8rem;
	transform: translate(-50%, -65%);
}

.pagenav li:last-child a img{
	transform: translate(-50%, -84%);
}

@media screen and (min-width: 769px) {
	.pagenav{
		margin-bottom: 5.4rem;
	}
	.pagenav ul{
		grid-template-columns: repeat(4, 1fr);
		gap: 1.2rem;
		margin: auto;
	}

	.pagenav li{
		height: 7.7rem;
		text-align: left;
	}
	.pagenav li:last-child{
		grid-column: span 1;
	}
	.pagenav li a{
		justify-content: flex-start;
		font-size: 1.8rem;
		line-height: 1;
		transition: transform .3s;
	}

	.pagenav li a span{
		width: auto;
	}

	.pagenav li a:after{
		width: 2.0rem;
		height: 1.4rem;
	}

	.pagenav li a:hover{
		transform: translateY(-15%);
	}

	.pagenav li a img{
		width: 8.6rem;
		transform: translate(-50%, -70%);
	}	
}

@media screen and (min-width: 1280px) {
	
}

/*//////////////////////////////////////////////////

	共通

//////////////////////////////////////////////////*/
article{
	position: relative;
}

.area__box .area__box-cate{
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
	column-gap: .4rem;
	margin-bottom: 3.0rem;
	font-size: 11px;
	font-weight: bold;
	text-align: left;
	line-height: 1;
	white-space: nowrap;
	transform: translateX(-4vw);
}

.area__box .area__box-cate:before{
	content:'';
	display: block;
	width: 1.1rem;
	height: 1px;
	background: #333;
}

.area__box-ttlbox{
	display: flex;
	flex-flow: row wrap;
	row-gap: 2.2rem;
	margin-bottom: 4.0rem;
}

.area__box-ttlbox .area__box-icon{
	margin-bottom: 1.4rem;
	text-align: center;
}

.area__box-ttlbox .area__box-icon img{
	display: revert;
	width: 8.8rem;
}

.area__box-ttlbox .area__box-img{
	flex: 0 0 100%;
}

.area__box-ttlbox .area__box-ttl{
	margin-bottom: 2.0rem;
	text-align: center;
}
/*
.area__box-ttlbox .area__box-icon + .area__box-ttl{
	margin-bottom: .8rem;
}
*/

.area__box-ttlbox .area__box-ttl svg{
	width: auto;
	height: 2.2rem;
}

.area__box-ttlbox .area__box-txt{
	flex: 0 0 100%;
}

.spot + .area__box-ttlbox{
	margin-top: 5.2rem;
}

.area__box-subttl{
	margin-bottom: 2.4rem;
	text-align: center;
	font-size: 2.0rem;
	text-decoration: underline wavy #333;
	text-underline-offset: .3rem;
}

.area__box-subcopy{
	margin: 2.4rem 0;
	text-align: center;
	font-size: 2.0rem;
}

.l-flex{
	display: flex;
	align-items: center;
	justify-content: center;
	gap: .8em;
}

.area__box-subcopy .icon{
	width: 1.5em;
}

.area__box-read{
	font-size: 1.6rem;
}

.spot-list .spot-list-item{
	display:flex;
	flex-flow: row wrap;
	padding-bottom: 1.5rem;
}

.spot-list .spot-list-item + .spot-list-item{
	margin-top: 6.0rem;
}

.spot-list .spot-list-item .spot-img{
	flex: 0 0 100%;
	margin-bottom: 1.6rem;
}

.spot-list .spot-list-item .spot-txt{
	flex: 0 0 100%;
}

.spot-list .spot-list-item .spot-ttl{
	display:flex;
	flex-flow: row wrap;
	align-items: flex-end;
	justify-content: space-between;
	padding-bottom: .6rem;
	font-size: 2.0rem;
	line-height: 1.2;
	border-bottom: 1px solid #333;
}

.spot-list .spot-list-item .spot-ttl a{
    display: flex;
	flex-flow: row wrap;
	align-items: center;
	justify-content: center;
	flex: 0 0 9.0rem;
	width: 9.0rem;
	height: 2.4rem;
    color: #fff;
    font-size: 1.0rem;
    border-radius: 100vw;
}

.spot-list .spot-list-item .spot-ttl a.sanpai{
    display: flex;
	flex-flow: row wrap;
	align-items: center;
	justify-content: center;
	flex: 0 0 11.0rem;
	width: 9.0rem;
	height: 2.4rem;
    color: #fff;
    font-size: 1.0rem;
    border-radius: 100vw;
}

.spot-list .spot-list-item .spot-ttl span{
	flex: 0 0 9.0rem;
	width: 9.0rem;
}

.spot-list .spot-list-item .spot-ttl a + a, .spot-list .spot-list-item .spot-ttl a.sanpai + a{
	margin-top: .8rem;
}

.spot-list .spot-list-item .spot-ttl a:after, .spot-list .spot-list-item .spot-ttl a.sanpai:after{
	display: inline-block;
	margin-left: 5px;
	font-family: 'Font awesome 5 Free';
	font-weight: bold;
	content:'\f35d';
}

.spot-list .spot-list-item .spot-addr{
	margin-bottom: 1.4rem;
    font-size: 1.2rem;
	color: #6b6b6b;
}

.spot-list .spot-list-item .spot-read{
	margin-bottom: 2.0rem;
    font-size: 1.3rem;
}

.spot-list .spot-list-item .spot-info{
	flex: 0 0 100%;
	padding: .5rem 0;
	border-top: 1px solid #fff;
	border-bottom: 1px solid #fff;
}
.spot-list .spot-list-item .image-box + .spot-info{
	margin-top: 2.8rem;
}

.spot-list .spot-list-item .spot-info p{
	padding: 1.5rem 1.0rem;
	word-break: keep-all;
    font-size: 1.2rem;
	background: #fff;
}

.spot-list .spot-list-item .image-box{
	display: grid;
	grid-template-columns: repeat(8, 1fr);
	gap: .7rem;
	margin-top: 1.5rem;
}

.spot-list .spot-list-item .image-box .item{
	grid-column: span 4;
}

.spot-list .spot-list-item .image-box .item:nth-child(odd):last-child{
	grid-column: 3 / 7;
}

.spot-list .spot-list-item .image-box .item .p_wrap{
	position: relative;
}

.spot-list .spot-list-item .image-box .item .add{
	position: absolute;
	top: 100%;
	left: 100%;
	width: 42%;
	transform: translate(-75%, -62%);
}

.spot-list .spot-list-item .image-box .item .cap{
	text-align: center;
	font-size: .9rem;
}

.spot-list .spot-list-item .pc_wrap{
	display: contents;
}

#shopping{
	padding-top: 3.0rem;
}

 .u-caption{
	margin: .5rem 0;
	font-size: 1.0rem;
 }

 .u-caption.u-center{
	text-align: center;
 }

 .u-caption.u-right{
	text-align: right;
 }

@media screen and (min-width: 769px) {
	.area__box{
		position: relative;
		z-index: 1;
	}
	.area__box:before{
		content: '';
		display: block;
		position: absolute;
		z-index: 1;
		top: 0;
		left: 0;
		width: 2vw;
		height: 100%;
		background: #fff;
	}
	
	.area__box .area__box-cate{
		position: absolute;
		top: 0;
		left: 100%;
		column-gap: 1.0rem;
		margin-bottom: 0;
		font-size: 20px;
		transform: rotate(90deg) translate(3.0rem, 100%);
        transform-origin: top left;
	}

	.area__box .area__box-cate:before{
		width: 4.0rem;
	}

	.area__box-ttlbox{
		justify-content: center;
		align-items: center;
		margin-bottom: 6.0rem;
		column-gap: calc(100% - 56.0rem - 57.0rem);
	}

	.area__box-ttlbox .area__box-icon{
		margin-bottom: 2.6rem;
	}

	.area__box-ttlbox .area__box-icon img{
		width: 12.0rem;
	}

	.area__box-ttlbox .area__box-img{
		flex: 0 0 56.0rem;
		width: 56.0rem;
	}

	.area__box-ttlbox .area__box-ttl,
	.area__box-ttlbox .area__box-icon + .area__box-ttl{
		margin-bottom: 2.6rem;
	}

	.area__box-ttlbox .area__box-ttl svg{
		height: 3.2rem;
	}

	.area__box-ttlbox .area__box-img + .area__box-txt{
		flex: 0 0 57.0rem;
		width: 57.0rem;
	}

	.spot + .area__box-ttlbox{
		margin-top: 5.2rem;
	}

	.area__box-subttl{
		margin-bottom: 1.8rem;
		font-size: 2.4rem;
		text-underline-offset: .8rem;
	}

	.area__box-subcopy{
		margin: 4.2rem 0;
		font-size: 2.4rem;
	}

	.area__box-read{
		font-size: 1.8rem;
		text-align: center;
	}
	
	.spot-list .spot-list-item{
		justify-content: space-between;
		row-gap: 2.0rem;
		padding-bottom: 3.0rem;
	}

	.spot-list .spot-list-item + .spot-list-item{
		margin-top: 10.0rem;
	}

	article:not(#shopping) .spot-list .spot-list-item .spot-img{
		margin-top: 4.0rem;
	}

	article .spot-list .spot-list-item .spot-img{
		flex: 0 0 47.0rem;
		width: 47.0rem;
		margin-bottom: 0;
	}

	article .spot-list .spot-list-item .spot-txt{
		flex: 0 0 64.0rem;
		width: 64.0rem;
	}

	.spot-list .spot-list-item .spot-ttl{
		font-size: 2.4rem;
	}

	.spot-list .spot-list-item .spot-ttl a{
		flex: 0 0 10.2rem;
		width: 10.2rem;
		height: 2.6rem;
		font-size: 1.2rem;
	}

	.spot-list .spot-list-item .spot-ttl a.sanpai{
		flex: 0 0 12.2rem;
		width: 10.2rem;
		height: 2.6rem;
		font-size: 1.2rem;
	}
 
	.spot-list .spot-list-item .spot-ttl .exc{
		margin: 0 .8rem 0 auto;
	}

	.spot-list .spot-list-item .spot-ttl span{
		display: contents;
	}

	.spot-list .spot-list-item .spot-addr{
		margin-bottom: 2.0rem;
		font-size: 1.3rem;
	}

	.spot-list .spot-list-item .spot-read{
		margin-bottom: 2.0rem;
		font-size: 1.7rem;
	}

	.spot-list .spot-list-item .spot-info p{
		padding: 2.4rem;
		font-size: 1.4rem;
	}

	.spot-list .spot-list-item .image-box{
		grid-template-columns: repeat(12, 1fr);
		flex: 0 0 100%;
		gap: 4.0rem;
		margin-top: 1.5rem;
	}

	.spot-list .spot-list-item .image-box .item,
	.spot-list .spot-list-item .image-box .item:nth-child(odd):last-child{
		grid-column: span 4;
	}

	.spot-list .spot-list-item .image-box .item.wide{
		grid-column: span 6;
	}

	.spot-list .spot-list-item .image-box .item .cap{
		margin-top: 1.0rem;
		text-align: left;
		font-size: 1.1rem;
	}

	.spot-list .spot-list-item .pc_wrap{
		display: revert;
	}
	
	.spot-list .spot-list-item.u-half-unit{
		margin-top: 0;
		width: calc((100% - 5.4rem) /2);
	}
	
	.spot-list .spot-list-item.u-half-unit .spot-img,
	.spot-list .spot-list-item.u-half-unit .spot-txt{
		flex: 1;
		width: 100%;
	}

	.spot-list .spot-list-item.u-half-unit .spot-ttl{
		border: none;
	}
	
	/* 逆配置 */
	.area__box-ttlbox.reverse .area__box-img,
	.spot-list-item.reverse .spot-img{
		order: 2;
	}
	.area__box-ttlbox.reverse .area__box-txt,
	.spot-list-item.reverse .spot-txt{
		order: 1;
	}
	.spot-list-item.reverse .spot-info{
		order: 3;
	}
	.spot-list-item.reverse .image-box{
		order: 3;
	}
	
	#shopping{
		padding-top: 8.5rem;
	}
	
	.area__box #shopping .area__box-cate{
		transform: rotate(90deg) translate(-2.0rem, 100%);
	}
	/*
	#shopping .area__box-ttlbox .area__box-ttl,
	#shopping .area__box-subttl,
	#shopping .area__box-read{
		text-align: left;
	}
	*/

	#gourmet .spot-list{
		display: flex;
		flex-flow: row wrap;
		justify-content: space-between;
		row-gap: 6.0rem;
	}
	/*
	#gourmet .spot-list .spot-list-item{
		align-content: flex-start;
		flex: 0 0 56.2rem;
		width: 56.2rem;
		margin: 0;
	}
	*/
	article#gourmet .spot-list .spot-list-item .spot-img{
		margin-top: 0;
	}

	.u-caption{
		font-size: 1.1rem;
	}
}

@media screen and (min-width: 1337px) {
	.area__box:before{
		width: calc((100vw - 1366px) / 4);
	}
}

/*//////////////////////////////////////////////////

	物件

//////////////////////////////////////////////////*/

#property{
	padding: 40px 0;
}

.property__ttl{
	margin-bottom: 20px;
	text-align: center;
	font-size: 2.0rem
}

.property__list li{
	margin-bottom: 30px;
	padding: 6% 4%;
	background: #eceae4;
}

.property__list-img{
	width: 70%;
	margin: 0 auto 10px;
}

.property__list-ttl{
	text-align: center;
	font-size: 2.2rem;
}

.property__list-read{
	margin-bottom: 20px;
	text-align: left;
}
	
.property__list-txt{
	font-size: 1.7rem;
}

.property__list-btn{
	width: 80%;
	max-width: 400px;
	margin: auto;
}

.property__list-btn a,
.property__list-btn span{
	display: block;
	position: relative;
	padding: 10px 0;
	border: 2px solid #b2975a;
	border-radius:30px;
	background: #b2975a;
	color: #fff;
	font-size: calc(14px + (16 - 14) * ( 100vw - 375px ) / (1180 - 375 ));	
	text-align: center;
}

.property__list-btn a:after,
.property__list-btn span:after{
	display: block;
	position: absolute;
	top: calc(50% - 1px);
	right: 15px;
	height: 5px;
	width: 5px;
	transform: rotate(45deg) translateY(-50%);
	border-top: 1px solid #fff;
	border-right: 1px solid #fff;
	content: '';
}


@media screen and (min-width: 769px) {
	.property__ttl{
		font-size: 2.4rem;
	}
	
	.property__list-ttl{
		margin-bottom: 20px;
		font-size: 3.0rem;
		text-align: left;
	}
	
	.property__list li{
		display: flex;
		flex-flow: row wrap;
		align-items: center;
		align-content: flex-start;
		justify-content: space-between;
	}
	
	.property__list-img{
		width: 30%;
		margin: 0;
	}
	
	.property__list-txt{
		width: 66%;
	}
	
	.property__list-btn a{
		transition: .3s;
	}
	
	.property__list-btn a:hover{
		background: #fff;
		color: #b2975a;
		text-decoration: none;
	}
}

/*//////////////////////////////////////////////////

	フッター

//////////////////////////////////////////////////*/
footer{
	background: #f2f2f2;
	padding: 4% 0 10px;
	color: #5C5C5C;
}

.footer__logo{
	width: 40%;
	max-width: 200px;
	margin: 0 auto 4%;
}
#gotop{
	display: none;
	position: fixed;
	right: 20px;
	bottom: 20px;
	z-index: 1000;
	text-align: center;
}

#gotop a{
	display: block;
	height: 70px;
	width: 70px;
	line-height: 70px;
	border-radius: 50%;
	background:#7f6f68;
	border:1px solid #7f6f68;
	color: #fff;
	cursor: pointer;
	transition: .3s;
}

#gotop a:hover{
	background:#fff;
	color: #7f6f68;
	text-decoration: none;
}



/*//////////////////////////////////////////////////

	カテゴリごとの色設定

//////////////////////////////////////////////////*/
.pagenav li .shopping,
.pagenav li .shopping:after{
	background: var(--c-shopping);
}

#shopping{
	background: var(--bg-shopping);
}

#shopping .area__box-subttl{
	text-decoration-color: var(--txt-shopping);
}

#shopping .spot-list .spot-list-item .spot-ttl{
	color: var(--txt-shopping);
	border-bottom-color: var(--txt-shopping);
}

#shopping .spot-list .spot-list-item .spot-ttl a{
	background: var(--txt-shopping);
}

#shopping .spot-list .spot-list-item .image-box .item .cap{
	color: var(--txt-shopping);
}

/*--------------------------------------------------*/
.pagenav li .enjoy,
.pagenav li .enjoy:after{
	background: var(--c-enjoy);
}

#enjoy{
	background: var(--bg-enjoy);
}

#enjoy .area__box-subttl{
	text-decoration-color: var(--txt-enjoy);
}

#enjoy .spot-list .spot-list-item .spot-ttl{
	color: var(--txt-enjoy);
	border-bottom-color: var(--txt-enjoy);
}

#enjoy .spot-list .spot-list-item .spot-ttl a{
	background: var(--txt-enjoy);
}

#enjoy .spot-list .spot-list-item .image-box .item .cap{
	color: var(--txt-enjoy);
}

/*--------------------------------------------------*/

.pagenav li .odekake,
.pagenav li .odekake:after{
	background: var(--c-odekake);
}

#odekake{
	background: var(--bg-odekake);
}

#odekake .area__box-subttl{
	text-decoration-color: var(--txt-odekake);
}

#odekake .spot-list .spot-list-item .spot-ttl{
	color: var(--txt-odekake);
	border-bottom-color: var(--txt-odekake);
}

#odekake .spot-list .spot-list-item .spot-ttl a, #odekake .spot-list .spot-list-item .spot-ttl a.sanpai{
	background: var(--txt-odekake);
}

#odekake .spot-list .spot-list-item .image-box .item .cap{
	color: var(--txt-odekake);
}

#odekake .u-caption{
	color: var(--txt-odekake);
}

.area__box-subcopy{
	color: var(--txt-odekake);
}

/*--------------------------------------------------*/

.pagenav li .gourmet,
.pagenav li .gourmet:after{
	background: var(--c-gourmet);
}

#gourmet{
	background: var(--bg-gourmet);
}

#gourmet .area__box-subttl{
	text-decoration-color: var(--txt-gourmet);
}

#gourmet .spot-list .spot-list-item .spot-ttl{
	color: var(--txt-gourmet);
	border-bottom-color: var(--txt-gourmet);
}

#gourmet .spot-list .spot-list-item .spot-ttl a{
	background: var(--txt-gourmet);
}

#gourmet .spot-list .spot-list-item .image-box .item .cap{
	color: var(--txt-gourmet);
}

/*//////////////////////////////////////////////////

	岡町／中桜塚 調整

//////////////////////////////////////////////////*/

header,
#gotop a{
	background: #807068;
	border-color: #807068;
}

header .header__ttl-sub{
	color: #807068;
}

#gotop a:hover{
	color: #807068;
}

#about{
	margin-bottom: 7.5rem;
}

#about p{
	font-size: 1.5rem;
	font-weight: bold;
	line-height: 2.45;
}

.pagenav{
	margin-bottom: 0;
	padding-bottom: 5.0rem;
}

.pagenav li a{
	font-weight: bold;
	letter-spacing: .08em;
}

.pagenav li a img{
	width: 6.8rem;
}

.pagenav li .shopping,
.pagenav li .shopping:after{
	background: #ee89b4;
}

.pagenav li .gourmet,
.pagenav li .gourmet:after{
	background: #f5a83d;
}

.pagenav li .odekake,
.pagenav li .odekake:after{
	background: #76bd55;
}

.pagenav li .enjoy,
.pagenav li .enjoy:after{
	background: #55bce8;
}

.area__box #shopping .area__box-cate{
	transform: translateX(-4vw);
}

.area__box .area__box-cate{
	font-weight: bold;
}

.area__box-ttlbox{
	margin-bottom: 3.0rem;
}

.area__box-ttlbox .area__box-ttl img{
	display: inline-block;
	width: auto;
	max-width: min(78vw, 42rem);
	height: auto;
}

.area__box-ttlbox .area__box-icon img{
	width: 7.2rem;
}

.area__box-subttl{
	font-weight: bold;
}

.area__box-read{
	font-weight: bold;
	line-height: 2.1;
}

.section_border img{
	display: block;
	width: 100%;
}

#shopping,
#gourmet,
#odekake,
#childcare{
	padding: 0 0 7.0rem;
}

#shopping{
	padding-top: 7.0rem;
}

#childcare{
	background: var(--bg-enjoy);
}

#childcare .area__box-subttl{
	text-decoration-color: var(--txt-enjoy);
}

.intro-photo{
	gap: .7rem;
	justify-content: center;
	row-gap: 1.4rem;
	margin: 0 auto 5.2rem;
}

.intro-photo li{
	flex: 0 0 calc((100% - .7rem) / 2);
	width: calc((100% - .7rem) / 2);
	border-radius: 1.5rem;
}

.spot-list .spot-list-item .spot-ttl{
	align-items: center;
	font-weight: bold;
}

.spot-list .spot-list-item .spot-ttl a{
	margin-left: auto;
	font-weight: bold;
}

.spot-list .spot-list-item .spot-read{
	line-height: 2.0;
}

#gourmet .spot-list .spot-list-item.wide .spot-ttl{
	border-bottom: 1px solid var(--txt-gourmet);
}

#gourmet .spot-list .spot-list-item.wide .image-box{
	margin-top: 2.0rem;
}

#childcare .area__box-ttlbox{
	margin-bottom: 3.5rem;
}

#childcare .area__box-ttlbox .area__box-ttl img{
	width: 28.0rem;
}

.interview{
	align-items: center;
	row-gap: 2.4rem;
	margin-bottom: 5.0rem;
}

.interview figure,
.interview p{
	flex: 0 0 100%;
}

.interview figure{
	overflow: hidden;
	border-radius: 1.5rem;
}

.interview .note{
	font-size: 1.5rem;
	line-height: 2.0;
}

.project-list{
	display: grid;
	gap: 8.0rem;
}

.project-card{
	position: relative;
	border-radius: 1.5rem;
	background: #fff;
}

.project-card-icon{
	position: absolute;
	z-index: 1;
	top: 0;
	left: 50%;
	width: 6.2rem;
	transform: translate(-50%, -60%);
}

.project-card:nth-child(1) .project-card-icon{
	width: 11.6rem;
}

.project-card:nth-child(2) .project-card-icon{
	width: 7.2rem;
}

.project-card:nth-child(3) .project-card-icon{
	width: 14.2rem;
}

.project-card h3{
	padding: 3.0rem 1.5rem 2.0rem;
	color: #fff;
	font-size: 1.8rem;
	line-height: 1.7;
	border-radius: 1.5rem 1.5rem 0 0;
	text-align: center;
	background: #55bce8;
}

.project-card h3 span{
	display: block;
	font-size: 1.5rem;
	color: #FFEEB4;
}

.project-card > p:not(.project-card-icon){
	padding: 2.4rem 1.8rem;
	font-size: 1.4rem;
	font-weight: bold;
	line-height: 2.0;
}

.project-note{
	margin: 0 1.8rem 2.4rem;
	padding: 2.0rem 0;
	background: #FDFDF0;
	border-radius: 1.0rem;
}

.project-note h4{
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.2rem;
	color: #56C0F8;
	font-size: 1.5rem;
	text-align: center;
}
.project-note h4::before, 
.project-note h4::after{
	content: '';
	display: block;
	width: 3em;
	height: 1px;
	background: #56C0F8;
}
.project-note h4::before{
	transform: rotate(60deg);
} 
.project-note h4::after{
	transform: rotate(-60deg);
}

.project-note ul{
	width: 90%;
	margin: auto;
}

.project-note li{
	position: relative;
	margin-bottom: .5em;
	padding-left: 1.2em;
	font-size: 1.3rem;
	line-height: 1.9;
}

.project-note li:before{
	content: '●';
	position: absolute;
	left: 0;
	color: #56C0F8;
}

.project-columns{
	display: grid;
	gap: 1.8rem;
	padding: 0 1.8rem 2.8rem;
}

.project-columns h4{
	margin-bottom: .8rem;
	padding-bottom: .6rem;
	color: #56C0F8;
	font-size: 1.4rem;
	border-bottom: 1px solid #56C0F8;
}

.project-columns p{
	font-size: 1.3rem;
	font-weight: bold;
	line-height: 1.9;
}

#property{
	padding: 6.0rem 0 7.5rem;
}

@media screen and (min-width: 769px) {
	#mainimg{
		margin-bottom: 7.0rem;
	}

	#about{
		margin-bottom: 9.0rem;
	}

	#about p{
		font-size: 1.8rem;
	}

	.pagenav{
		padding-bottom: 8.0rem;
	}

	.pagenav li a img{
		position: revert;
		width: 8.0rem;
		transform: none;
	}
	.pagenav li:last-child a img{
		transform: none;
	}

	.area__box #shopping .area__box-cate{
		transform: rotate(90deg) translate(-2.0rem, 100%);
	}

	.area__box-ttlbox .area__box-icon img{
		width: 9.0rem;
	}

	.area__box-ttlbox .area__box-ttl img{
		max-width: 62rem;
	}

	#shopping,
	#gourmet,
	#odekake,
	#childcare{
		padding: 0 0 11.0rem;
	}

	#shopping{
		padding-top: 9.0rem;
	}

	.intro-photo{
		column-gap: 2.0rem;
		margin-bottom: 7.0rem;
	}

	.intro-photo li{
		flex: 0 0 calc((100% - 4.0rem) / 3);
		border-radius: 2.2rem;
	}

	#gourmet .spot-list{
		row-gap: 7.0rem;
	}

	#childcare .area__box-ttlbox .area__box-ttl img{
		width: 65.0rem;
	}

	.interview{
		column-gap: 7%;
		margin-bottom: 7.0rem;
	}

	.interview figure{
		flex: 0 0 34%;
	}

	.interview .note{
		flex: 0 0 59%;
		font-size: 1.6rem;
	}

	.project-list{
		gap: 10.0rem;
	}

	.project-card h3{
		padding: 6.0rem 0 3.0rem;
		font-size: 2.4rem;
	}

	.project-card-icon{
		width: 7.6rem;
		margin-bottom: -1.8rem;
		padding-top: 1.5rem;
	}

	.project-card:nth-child(1) .project-card-icon{
		width: 15.6rem;
	}

	.project-card:nth-child(2) .project-card-icon{
		width: 9.8rem;
	}

	.project-card:nth-child(3) .project-card-icon{
		width: 19.2rem;
	}

	.project-card h3 span{
		font-size: 2.0rem;
	}

	.project-card > p:not(.project-card-icon){
		padding: 4.6rem 5.0rem;
		font-size: 1.8rem;
	}

	.project-note{
		margin: 0 5.0rem 4.5rem;
		padding: 3.0rem 4.0rem 4.0rem;
	}

	.project-note h4{
		margin-bottom: 3.4rem;
		font-size: 1.8rem;
	}
	
	.project-note h4::before,
	.project-note h4::after{
		width: 1.8em;
	}
	
	.project-note li{
		font-size: 1.4rem;
	}

	.project-columns{
		grid-template-columns: repeat(3, 1fr);
		padding: 0 5.0rem 4.0rem;
	}

	.project-columns h4{
		display: flex;
		align-items: center;
		height: 3em;
		font-size: 1.8rem;
	}

	.project-columns p{
		font-size: 1.4rem;
	}
	
}
