@charset "UTF-8";

/* CSS Document */

/*==============================
基本設定
==============================*/

html{
	width: 100%;
	overflow-x: clip;
	scroll-behavior: auto !important;
	-webkit-font-smoothing: antialiased;
}

body{
	width: 100%;
	color: #1a1a1a;
	font-size: 1.4rem;
	line-height: 2;
	font-family: "Shippori Mincho", serif;
	background: #FFF;
	overflow-x: clip;
	position: relative;
	-webkit-text-size-adjust: 100%;/*スマホで横持ちした時フォントサイズが変わらないように*/
}

/*リンク設定*/
a:link,
a:visited,
a:hover,
a:active{
	color: #1a1a1a;
	text-decoration: none;
}

/*イメージ設定*/
img{
	max-width: 100%;
	height: auto;
	object-fit: cover;
}

#wrapper{
	width: 100%;
	position: relative;
}

/* tel: で始まるリンクすべてに適用 */
@media screen and (min-width: 769px) {
    a[href^="tel:"] {
        pointer-events: none;
        cursor: default;
        color: inherit;
        text-decoration: none;
    }
}

/* 画面を覆う暗幕のスタイル */
#transition-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #000;
	z-index: 9999;
	pointer-events: none; /* クリックを邪魔しない */
	opacity: 1;
	transition: opacity 0.15s ease; /* アニメーション速度 */
}

/* フェードアウト用のクラス */
body.is-transitioning #transition-overlay {
	opacity: 1;
}

/* フェードイン（読み込み完了時）に付与するクラス */
body.is-loaded #transition-overlay {
	opacity: 0;
}

/*==============================
共通設定
==============================*/

/*------------------------------
section構造基礎設定
------------------------------*/

/*セクション*/
section{
	padding: 150px 0;
	width: 100%;
}

/*セクション インナー*/
section .inner{
	margin: 0 auto;
	width: 1100px;
}

/*h2見出し*/
section .inner h2{
	color: #1a1a1a;
	font-size: 3rem;
	font-weight: 400;
	text-align: center;
	letter-spacing: 3px;
	position: relative;
}

/*h2見出し 背景が濃い場合*/
section .inner h2.titleW{
	color: #fff;
}

/*見出し　英語*/
section .inner h2::after{
	display: block;
	font-size: 1.2rem;
	font-weight: 400;
	text-align: center;
	font-family: "Outfit", sans-serif;
	letter-spacing: 0;
}

/*------------------------------
WordPress ポスト引用設定
------------------------------*/

/*投稿枠*/
.postBox{
	margin: 60px auto 0;
	width: 1100px;
	display: flex;
	flex-wrap: wrap;
	gap: 60px 40px;
}

/*投稿*/
.postBox li{
	width: 340px;
	overflow: hidden;
	position: relative;
	z-index: 1;
}

/*投稿*/
.postBox li .photo{
	width: 100%;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	position: relative;
	z-index: 1;
	transition: 0.5s;
}

.postBox li .photo img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/*投稿 装飾*/
.postBox li .photo::before{
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	opacity: 0;
	background: #000;
	mix-blend-mode: multiply;
	position: absolute;
	z-index: 1;
	transition: 0.5s;
}

/* ホバー */
@media (any-hover: hover) {

	/*投稿 装飾 ホバー*/
	.postBox li .photo:hover::before{
		opacity: 0.3;
		transition: 0.5s;
	}

	/*投稿写真 ホバー*/
	.postBox li .photo:hover img{
		transform: scale(1.1);
		transition: 0.5s cubic-bezier(0.25, 1, 0.5, 1); /* AEのイージングに近い設定 */
	}


}



/*投稿写真*/
.postBox li .photo img{
	width: 100%;
	height: 100%;
	object-fit: cover; /* 比率を保ったまま枠を埋める */
	transition: 0.5s;
}



/*投稿 リンク*/
.postBox li a{
	display: block;
	width: 100%;
}

.postBox dl{
	margin: 20px 0 0 0;
}

/*NEWアイコン*/
.new::before{
	content: "NEW";
	display: block;
	padding: 2px 5px 4px;
	color: #fff;
	font-size: 1.6rem;
	line-height: 1;
	text-align: center;
	background: #1a1a1a;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
}

/*------------------------------
ボタン設定
------------------------------*/

/*詳しくはボタン*/
.btn{
	margin: 60px auto 0;
	width: 234px;
	height: 50px;
	font-size: 1.6rem;
	line-height: 50px;
	text-align: center;
}

/*詳しくはボタン リンク*/
.btn a,
.btn span{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	color: #1a1a1a;
	border: 1px solid #1a1a1a;
	border-radius: 25px;
	overflow: hidden;
	transition: 0.15s;
	position: relative;
	z-index: 1;
	cursor: pointer;
}

/* ホバー */
@media (any-hover: hover) {

	/*詳しくはボタン リンク ホバー用*/
	.btn a:hover,
	.btn span:hover{
		color: #fff;
		transition: 0.3s;
	}

	/*詳しくはボタン リンク 背景 ホバー用*/
	.btn a:hover::before,
	.btn span:hover::before{
		transform: scale(1,1);
		transition: 0.3s;
	}

	/*詳しくはボタン リンク　装飾*/
	.btn a:hover::after,
	.btn span:hover::after{
		background: url(../img/common/ico_arrow_white.svg) no-repeat center center / cover;
		right: 10px;
		transition: 0.3s;
	}


	/*詳しくはボタン リンク ホバー用 背景が濃い場合*/
	.btnW a:hover,
	.btnW span:hover{
		color: #1a1a1a;
	}

	/*詳しくはボタン リンク　装飾*/
	.btnW a:hover::after,
	.btnW span:hover::after{
		background: url(../img/common/ico_arrow.svg) no-repeat center center / cover;
	}

}

/*詳しくはボタン リンク 背景*/
.btn a::before,
.btn span::before{
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	background: #1a1a1a;
	transform: scale(0,1);
	transform-origin: left center;
	transition: 0.15s;
	position: absolute;
	z-index: -1;
	top: 0;
	left: 0;
}

/*詳しくはボタン リンク　装飾*/
.btn a::after,
.btn span::after{
	content: "";
	display: inline-block;
	width: 9px;
	height: 15px;
	background: url(../img/common/ico_arrow.svg) no-repeat center center / cover;
	transition: 0.15s;
	position: absolute;
	top: calc(50% - 15px / 2);
	right: 20px;
}



/*詳しくはボタン リンク 背景が濃い場合*/
.btnW a,
.btnW span{
	color: #fff;
	border: 1px solid #fff;
}


/*詳しくはボタン リンク 背景 ホバー用 背景が濃い場合*/
.btnW a::before,
.btnW span::before{
	content: "";
	background: #fff;
	z-index: -1;
}

/*詳しくはボタン リンク 装飾 背景が濃い場合*/
.btnW a::after,
.btnW span::after{
	background: url(../img/common/ico_arrow_white.svg) no-repeat center center / cover;
}



/*==============================
ヘッダー設定
==============================*/

/*ヘッダー全体*/
#headerWrap{
	width: 100%;
}

/*ヘッダー中身*/
.headerInner{
	width: 100%;
	height: 100%;
	position: relative;
}

/*ロゴ*/
.headerInner h1{
	width: 160px;
	position: absolute;
	top: 18px;
	left: 32px;
	z-index: 999;
}

/*==============================
メニューボタン設定
==============================*/

/*メニューボタン*/
.menu{
	width: 40px;
	position: fixed;
	top: 18px;
	right: 15px;
	filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.2));
	z-index: 1000;
	cursor: pointer;
	transition: 0.15s;
}

/* ホバー */
@media (any-hover: hover) {

	/*メニューボタン ホバー*/
	.menu:hover{
		transform: scale(1.2);
		filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.2));
		transition: 0.3s;
	}
}



/*==============================
グローバルナビゲーション設定
==============================*/

/*グローバルナビ全体*/
#globalNav{
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #fff;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 999;
	transform: scale(0);/*アニメーション用*/
	border-radius: 50%;/*アニメーション用*/
}

/*グローバルナビ全体 クリックした時*/
#globalNav.action{
	animation: menu 0.5s forwards ease;
}

/*グローバルナビ中身*/
.globalNavInner{
	margin: 0 auto;
	width: 960px;
	opacity: 0;
	filter: blur(30px);
}

/*グローバルナビ中身 クリックした時*/
.globalNavInner.action{
	animation: menu2 0.5s forwards ease-out 0.5s;
}

/*メニューアニメーション外側*/
@keyframes menu{
	0%{
		border-radius: 50%;
		background: #fff;
		transform: scale(0);
	}
	100%{
		border-radius: 0;
		background: #606060;
		transform: scale(1);
	}
}

/*メニューアニメーション中身*/
@keyframes menu2{
	0%{
		filter: blur(30px);
		opacity: 0;
	}
	100%{
		filter: blur(0);
		opacity: 1;
	}
}

/*ナビゲーションヘッダー*/
.navHeader{
	width: 100%;
	display: flex;
}

/*ナビゲーションヘッダー ロゴ*/
.navHeader .logo{
	width: 310px;
}

/*ナビゲーションヘッダー アイコンリスト*/
.navIcon{
	margin: 0 0 0 25px;
	display: inline-block;
	display: flex;
}

/*ナビゲーションヘッダー アイコン*/
.navIcon li{
	margin: 0 5px 0 0;
	width: 46px;
}

/*ナビゲーションヘッダー アイコン tel*/
#globalNav .navIcon li:first-of-type{
	display: none;
}

/*ナビゲーションヘッダー tel*/
.navHeader .tel{
	margin: 5px 0 0 80px;
}

/*ナビゲーションヘッダー tel リンク*/
.navHeader .tel a{
	color: #fff;
	font-size: 3rem;
	font-weight: 400;
	letter-spacing: 3px;
	position: relative;
}

/*ナビゲーションヘッダー tel リンク ハイフン位置*/
.navHeader .tel a span{
	display: inline-block;
	transform: translate(0,-3px);
}

/*ナビゲーションヘッダー tel リンク アイコン*/
.navHeader .tel a::before{
	content: "";
	display: block;
	width: 40px;
	height: 40px;
	background: url(../img/common/ico_tel_white.svg) no-repeat center center / cover;
	position: absolute;
	top: 6px;
	left: -40px;
}

/*ナビゲーションメニュー*/
.navMenu{
	margin: 50px auto 0;
	width: 100%;
	display: flex;
	flex-wrap: wrap;
}

/*ナビゲーションメニューリスト全体*/
.navMenu .navList{
	width: 240px;
}

/*ナビゲーションメニューリスト項目*/
.navMenu .navList > li{
	margin: 0 0 30px 0;
	font-size: 1.6rem;
	color: #fff;
	font-weight: 600;
	letter-spacing: 3px;
	line-height: 1.6;
}

/*ナビゲーションメニューリスト項目 リンク*/
.navMenu .navList > li > a{
	color: #fff;
}


/* ホバー */
@media (any-hover: hover) {

	/*ナビゲーションメニューリスト項目 リンク ホバー*/
	.navMenu .navList > li > a:hover{
		text-decoration: underline;
	}


	/*ナビゲーションメニュー ページ内メニュー リンク ホバー*/
	.navMenu .inPageNav li a:hover{
		text-decoration: underline;
	}

}

/*ナビゲーションメニューリスト項目 リンク*/
.navMenu .navList > li > a span{
	font-size: 1.2rem;
	font-weight: 600;
}

/*ナビゲーションメニュー ページ内メニュー*/
.navMenu .inPageNav{
	padding: 10px 0 0 20px;
}

/*ナビゲーションメニュー ページ内メニュー リンク*/
.navMenu .inPageNav li a{
	color: #fff;
	font-size: 1.2rem;
	font-weight: 400;
	line-height: 2.4;
	font-family:"ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro",Osaka, "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
	letter-spacing: normal;
}


/*==============================
サブナビゲーション設定
==============================*/

/*サブナビゲーション全体*/
#subNavWrap{
	width: 40px;
	position: fixed;
	top: calc(50% - 260px / 2);
	right: 15px;
	transition: 0.3s;
	z-index: 50;
}

/*サブナビゲーション中身*/
.subNavInner{
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
}

/*サブナビゲーション リスト項目*/
.subNavInner li{
	margin: 0 0 15px 0;
	width: 40px;
	height: 40px;
}

/*サブナビゲーション リスト項目 リンク*/
.subNavInner li a{
	display: block;
	width: 100%;
	height: 100%;
	transform: translate(0);
	mix-blend-mode: plus-lighter; /* 背景が暗いほど、自分の色が足されて明るくなる */
	filter: brightness(1.2); /* 全体的に少し持ち上げる */
	transition: 0.3s ease;
}

/* ホバー */
@media (any-hover: hover) {

	/*サブナビゲーション リスト項目 リンク ホバー*/
	.subNavInner li a:hover{
		transform: translate(-10px,0);
		transition: 0.3s ease;
	}
}



/*サブナビゲーション リスト項目 最後*/
.subNavInner li:last-of-type{
	margin: 0;
}

/*==============================
フッター設定
==============================*/

/*フッター全体*/
#footerWrap{
	width: 100%;
}

/*フッター中身*/
.footerInner{
	width: 100%;
}

/*------------------------------
トピックナビゲーション設定
------------------------------*/

/*トピックナビインフォ*/
#topicNavInfo{
	padding: 150px 0;
	width: 100%;
	background: #e5e5e5;
}

/*トピックナビインフォ 見出し*/
#topicNavInfo h2{
	color: #1a1a1a;
	font-size: 3rem;
	font-weight: 400;
	text-align: center;
}

/*トピックナビ全体*/
#topicNavWrap{
	width: 100%;
}

/*トピックナビ中身*/
.topicNavInner{
	margin: 60px auto 0;
	width: 1100px;
	height: 180px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

/*トピックナビ リスト*/
.topicNavInner > li{
	width: calc(100% / 4);
	height: 100%;
	font-size: 1.8rem;
	line-height: 1.8;
	text-align: center;
	letter-spacing: 2px;
	border-right: 1px #cbcbcb solid;
	position: relative;
	transition: 0.15s ease-in-out;
}

/*トピックナビ リスト 1つ目*/
.topicNavInner > li:first-of-type{
	border-left: 1px #cbcbcb solid;
}

/*トピックナビ リスト リンク*/
.topicNavInner > li a{
	display: block;
	padding: 100px 0 0 0;
	height: 100%;
}

/*トピックナビ リスト リンク アイコン共通*/
.topicNavInner > li a::before{
	content: "";
	display: block;
	width: 56px;
	height: 56px;
	position: absolute;
	top: 30px;
	left: calc(50% - 46px / 2);
	transition: 0.2s ease-in-out;
}

/* ホバー */
@media (any-hover: hover) {

	/*トピックナビ リスト リンク アイコン共通 ホバー*/
	.topicNavInner > li:hover a::before{
		top: 20px;
		transition: 0.3s ease-in-out;
	}
}

/*トピックナビ リスト リンク アイコン 1つ目*/
.topicNavInner > li:first-of-type a::before{
	background: url(../img/common/ico_sdgs.svg) no-repeat center center / cover;
}

/*トピックナビ リスト リンク アイコン 2つ目*/
.topicNavInner > li:nth-of-type(2) a::before{
	background: url(../img/common/ico_landserch.svg) no-repeat center center / cover;
}

/*トピックナビ リスト リンク アイコン 3つ目*/
.topicNavInner > li:nth-of-type(3) a::before{
	background: url(../img/common/ico_performance.svg) no-repeat center center / cover;
}

/*トピックナビ リスト リンク アイコン 4つ目*/
.topicNavInner > li:nth-of-type(4) a::before{
	background: url(../img/common/ico_showroom.svg) no-repeat center center / cover;
}

/*土地情報リスト*/
.topicNavInner .landList{
	margin: 0 auto 0;
	width: 160px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

/*土地情報リスト 項目*/
.topicNavInner .landList li{
	font-size: 1.4rem;
	font-weight: 400;
	text-align: center;
}

/*土地情報リスト 項目 装飾*/
.topicNavInner .landList li:after{
	content: "";
	display: inline-block;
	width: 1px;
	height: 14px;
	background: #1a1a1a;
	position: relative;
	top: 2px;
	right: -18px;
}

/*土地情報リスト 項目 装飾 最後*/
.topicNavInner .landList li:last-of-type:after{
	display: none;
}

/*------------------------------
コンタクト設定
------------------------------*/

/*コンタクト全体*/
#contact{
	padding: 100px 0;
	width: 100%;
	background: #333333;
}

/*コンタクト中身*/
#contact .inner{
	margin: 0 auto;
	width: 765px;
}

/*コンタクト 見出し　英語*/
#contact .inner h2::after{
	content: "CONTACT";
}

/*コンタクト 説明*/
#contact .inner p{
	margin: 30px 0 0 0;
	color: #fff;
	font-size: 1.4rem;
	line-height: 1.8;
	text-align: center;
	font-family:"ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro",Osaka, "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
}

/*コンタクト ボタンリスト*/
#contact .contactBtn{
	margin: 60px auto 0;
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

/*コンタクト ボタンリスト項目*/
#contact .contactBtn li{
	width: calc(50% - 22px);
	height: 90px;
}

/*コンタクト ボタンリスト リンク*/
#contact .contactBtn li a{
	display: block;
	padding: 0 10px 0 0;
	width: 100%;
	height: 100%;
	color: #1a1a1a;
	line-height: 90px;
	text-align: center;
	letter-spacing: 3px;
	background: #cbcbcb;
	white-space: nowrap; /* 横幅のMAXに達しても改行しない */
	overflow: hidden; /* 溢れた部分を隠す */
	text-overflow: ellipsis; /* 「…」と省略 */
	transition: background 0.3s,border-radius 0.3s;
}

/*コンタクト ボタンリスト リンク TEL*/
#contact .contactBtn li:first-of-type a{
	font-size: 3rem;
}

/*コンタクト ボタンリスト リンク TEL 線の位置*/
#contact .contactBtn li:first-of-type a span{
	display: inline-block;
	transform: translate(0,-4px);
}

/*コンタクト ボタンリスト リンク メール*/
#contact .contactBtn li:nth-of-type(2) a{
	font-size: 2.8rem;
}

/*コンタクト ボタンリスト リンク 装飾共通*/
#contact .contactBtn li a::before{
	content: "";
	display: inline-block;
	margin: 0 10px 0 0;
	width: 50px;
	height: 50px;
	position: relative;
	top: 12px;
	left: 10px;
}

/*コンタクト ボタンリスト リンク 装飾 TEL*/
#contact .contactBtn li:first-of-type a::before{
	background: url(../img/common/ico_tel_black.svg) no-repeat center center / cover;
}

/*コンタクト ボタンリスト リンク 装飾 メール*/
#contact .contactBtn li:nth-of-type(2) a::before{
	background: url(../img/common/ico_mail_black.svg) no-repeat center center / cover;
}

/* ホバー */
@media (any-hover: hover) {

	/*コンタクト ボタンリスト リンク ホバー*/
	#contact .contactBtn li a:hover{
		color: #fff;
		background: #4d4d4d;
		border-radius: 45px;
		transition: background 0.3s,border-radius 0.3s;
	}

	/*コンタクト ボタンリスト リンク 装飾 TEL ホバー*/
	#contact .contactBtn li:first-of-type a:hover::before{
		background: url(../img/common/ico_tel_white.svg) no-repeat center center / cover;
	}

	/*コンタクト ボタンリスト リンク 装飾 メール ホバー*/
	#contact .contactBtn li:nth-of-type(2) a:hover::before{
		background: url(../img/common/ico_mail_white.svg) no-repeat center center / cover;
	}
}

/*------------------------------
フッターナビゲーション設定
------------------------------*/

/*フッターナビ全体*/
#footerNav{
	padding: 150px 0 30px;
	width: 100%;
	background: #fff;
}

/*フッターナビ中身*/
.footerNavInner{
	margin: 0 auto 0;
	width: 960px;
}

/*フッター　ナビゲーションメニューリスト項目*/
#footerNav .navMenu .navList > li{
	color: #1a1a1a;
}

/*フッター　ナビゲーションメニューリスト項目 リンク*/
#footerNav .navMenu .navList > li > a{
	color: #1a1a1a;
}

/*フッター　ナビゲーションメニュー ページ内メニュー リンク*/
#footerNav .navMenu .inPageNav li a{
	color: #1a1a1a;
}

small{
	display: block;
	padding: 60px 0;
	width: 100%;
	color: #1a1a1a;
	font-size: 1.2rem;
	text-align: center;
}

/*==============================
コンテンツ設定
==============================*/

/*------------------------------
下層ページのビジュアル設定
------------------------------*/

#pageVisual{
	width: 100%;
	background: #000;
	aspect-ratio: 3 / 1;
	display: flex;
	align-items: flex-end;
	position: relative;
	overflow: hidden;
	/* z-index: 1; */
}

#pageVisual::after{
	content: "";
	display: inline-flex;
	width: 100%;
	height: 100%;
	background: #000;
	opacity: 0.4;
	mix-blend-mode: multiply;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 0;
}

/*------------------------------
パンクズリスト設定
------------------------------*/

/*ページナビ*/
#pageVisual .pageNav{
	padding: 0 80px;
	width: 100%;
	background: #e5e5e5;
	aspect-ratio: 12 / 1;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	z-index: 1;
}

/*ページナビ タイトル*/
#pageVisual .pageNav h2{
	font-size: 3rem;
	letter-spacing: 4px;
	display: flex;
	align-items: center;
}

/*ページナビ タイトル 小文字*/
#pageVisual .pageNav h2 span{
	font-size: 2rem;
}

/*ページナビ タイトル 英語*/
#pageVisual .pageNav h2::after{
	display: inline-flex;
	margin: 0 0 0 15px;
	font-family: "Outfit", sans-serif;
	font-size: 1.2rem;
	font-weight: 600;
	letter-spacing: 0;
}

/*パンくずリスト全体*/
#pageVisual .breadcrumb{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}

/*パンくずリスト中身*/
#pageVisual .pageNav ol{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

/*パンくずリスト中身 リスト*/
#pageVisual .pageNav ol li{
	margin: 0 10px 0 0;
	display: flex;
	font-size: 1.2rem;
	align-items: center;
	font-family:"ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro",Osaka, "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
}

/*パンくずリスト中身 リスト 装飾*/
#pageVisual .pageNav ol li::after{
	content: "";
	display: inline-flex;
	margin: 0 0 0 10px;
	width: 36px;
	height: 1px;
	background: #1a1a1a;
}

/*パンくずリスト中身 リスト 装飾 最後は消す*/
#pageVisual .pageNav ol li:last-of-type::after{
	display: none;
}

/*パンくずリスト中身 リスト リンク*/
#pageVisual .pageNav ol li a{
	font-size: 1.2rem;
	font-family:"ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro",Osaka, "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
}

/*------------------------------
ページナビゲーション設定
------------------------------*/

/* 親ナビゲーションの設定 */
nav[aria-label="pagination"] {
	margin: 150px auto 0;
	width: 260px;
}

/* リスト全体のスタイル */
.pagination {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 5px; /* アイテム同士の隙間 */
}

/* 各リスト項目のスタイル */
.paginationItem a, 
.paginationItem span {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 26px;
	color: #808080;
	font-size: 1.6rem;
	transition: all 0.3s ease;
}

/* ホバー */
@media (any-hover: hover) {

	/* 各リスト項目のスタイル */
	.paginationItem a:hover {
		color: #fff;
	}
}



/* 現在のページのスタイル（span） */
.paginationItem[aria-current="page"] span,
.paginationItem.is-current span {
	color: #fff;
}

/* prev/next ボタンの調整（文字が長い場合） */
.paginationItem a[aria-label*="ページへ"] {
	width: auto;
	padding: 0 10px;
}

/* 前のページボタンの前に記号を追加 */
.paginationItem a[aria-label="前のページへ"]::before {
	content: "\00AB"; /* « のUnicode */
	margin-right: 5px;
	display: inline-block;
	transform: translate(0,-2px);
}

/* 次のページボタンの後ろに記号を追加 */
.paginationItem a[aria-label="次のページへ"]::after {
	content: "\00BB"; /* » のUnicode */
	margin-left: 5px;
	display: inline-block;
	transform: translate(0,-2px);
}

/*==============================
レスポンシブ設定
==============================*/

/*1100px以下の場合*/
@media screen and (max-width:1100px){

	/*==============================
	共通設定
	==============================*/

	/*セクション*/
	section{
		padding: 120px 0;
	}

	/*セクション インナー*/
	section .inner{
		width: calc(100% - 80px);
	}

	/*h2見出し*/
	section .inner h2{
		font-size: 3rem;
	}

	/*h2見出し 装飾*/
	section .inner h2::after{
		top: 40px;
	}

	/*------------------------------
	WordPress ポスト引用設定
	------------------------------*/

	/*投稿枠*/
	.postBox{
		width: 720px;
		gap: 40px auto;
		justify-content: space-between;
	}

	/*投稿*/
	.postBox li{
		max-width: 100%;
		min-width: calc(50% - 20px);
	}

	/*==============================
	フッター設定
	==============================*/

	/*------------------------------
	トピックナビゲーション設定
	------------------------------*/

	/*トピックナビインフォ*/
	#topicNavInfo{
		padding: 120px 0;
	}

	/*トピックナビインフォ 見出し*/
	#topicNavInfo h2{
		font-size: 3rem;
	}

	/*トピックナビ中身*/
	.topicNavInner{
		margin: 40px auto 0;
		width: calc(100% - 80px);
	}

	/*トピックナビ リスト*/
	.topicNavInner > li{
		font-size: 1.8rem;
		line-height: 1.6;
	}

	/*土地情報リスト*/
	.topicNavInner .landList{
		width: 130px;
	}

	/*土地情報リスト 項目 装飾*/
	.topicNavInner .landList li:after{
		right: -10px;
	}


}

/*960px以下の場合*/
@media screen and (max-width:960px){

	/*==============================
	共通設定
	==============================*/

	/*セクション*/
	section{
		padding: 80px 0;
	}

	/*------------------------------
	WordPress ポスト引用設定
	------------------------------*/

	.postBox dl{
		margin: 10px 0 0 0;
	}

	/*==============================
	グローバルナビゲーション設定
	==============================*/

	/*グローバルナビ全体*/
	#globalNav{
		padding: 100px 0;
		display: block;
		overflow: scroll;
	}

	/*グローバルナビ中身*/
	.globalNavInner{
		width: 380px;
	}

	/*ナビゲーションヘッダー*/
	.navHeader{
		flex-direction: column;
	}

	/*ナビゲーションヘッダー アイコンリスト*/
	.navIcon{
		margin: 15px 0 0 -10px;
	}

	/*ナビゲーションヘッダー アイコン tel*/
	#globalNav .navIcon li:first-of-type{
		display: block;
	}

	/*ナビゲーションヘッダー tel*/
	.navHeader .tel{
		display: none;
	}

	/*ナビゲーションメニュー*/
	.navMenu{
		margin: 30px auto 0;
	}

	/*ナビゲーションメニューリスト全体*/
	.navMenu .navList{
		margin: 0 0 30px 0;
		width: 50%;
	}

	/*ナビゲーションメニューリスト全体 3と4番目*/
	.navMenu .navList:nth-of-type(3),
	.navMenu .navList:nth-of-type(4){
		margin: 0;
	}

	/*==============================
	フッター設定
	==============================*/

	/*------------------------------
	フッターナビゲーション設定
	------------------------------*/

	/*フッターナビ全体*/
	#footerNav{
		padding: 100px 0 0px;
	}

	/*フッターナビ中身*/
	.footerNavInner{
		width: 500px;
	}

	small{
		padding: 30px 0;
	}

	/*------------------------------
	ページビジュアル設定
	------------------------------*/
	
	/*ページナビ*/
	#pageVisual .pageNav{
		padding: 0 40px;
	}

	#pageVisual .pageNav h2{
		font-size: 2rem;
	}

	/*ページナビ タイトル 小文字*/
	#pageVisual .pageNav h2 span{
		font-size: 1.4rem;
	}


	/*------------------------------
	ページナビゲーション設定
	------------------------------*/

	/* 親ナビゲーションの設定 */
	nav[aria-label="pagination"] {
		margin: 100px auto 0;
	}

}

/*768px以下の場合*/
@media screen and (max-width:768px){

	/*==============================
	共通設定
	==============================*/

	/*セクション*/
	section{
		padding: 60px 0;
	}

	/*h2見出し*/
	section .inner h2{
		font-size: 2.6rem;
	}

	/*h2見出し 装飾*/
	section .inner h2::after{
		top: 35px;
	}

	/*------------------------------
	WordPress ポスト引用設定
	------------------------------*/

	/*投稿枠*/
	.postBox{
		margin: 40px auto 0;
		width: 340px;
		gap: 30px 0;
		flex-direction: column;
	}

	/*投稿*/
	.postBox li{
		width: 100%;
	}

	/*投稿 写真*/
	.postBox li .photo{
		width: 100%;
		height: auto;
	}

	/*投稿 最後*/
	.postBox li:last-of-type{
		margin: 0;
	}

	/*NEWアイコン*/
	.new::before{
		font-size: 1.4rem;
		line-height: 1;
	}

	/*==============================
	フッター設定
	==============================*/

	/*------------------------------
	トピックナビゲーション設定
	------------------------------*/

	/*トピックナビインフォ*/
	#topicNavInfo{
		padding: 100px 0;
	}

	/*トピックナビインフォ 見出し*/
	#topicNavInfo h2{
		margin: 0 auto;
		width: calc(100% - 80px);
		font-size: 2.4rem;
		line-height: 1.4;
	}

	/*トピックナビ中身*/
	.topicNavInner{
		width: calc(100% - 80px);
		height: auto;
	}

	/*トピックナビ リスト*/
	.topicNavInner > li{
		width: calc(100% / 2);
		height: 160px;
		border-right: none;
	}

	/*トピックナビ リスト 1つ目*/
	.topicNavInner > li:first-of-type{
		border-left: none;
		border-right: 1px #cbcbcb solid;
		border-bottom: 1px #cbcbcb solid;
	}

	/*トピックナビ リスト 2つ目*/
	.topicNavInner > li:nth-of-type(2){
		border-bottom: 1px #cbcbcb solid;
	}

	/*トピックナビ リスト 3つ目*/
	.topicNavInner > li:nth-of-type(3){
		border-right: 1px #cbcbcb solid;
	}

	/*------------------------------
	コンタクト設定
	------------------------------*/

	/*コンタクト全体*/
	#contact{
		padding: 100px 0;
	}

	/*コンタクト中身*/
	#contact .inner{
		width: calc(100% - 80px);
	}

	/*コンタクト 説明*/
	#contact .inner p{
		margin: 25px 0 0 0;
		font-size: 1.4rem;
		line-height: 1.8;
	}

	/*コンタクト ボタンリスト項目*/
	#contact .contactBtn li{
		width: calc(50% - 10px);
		height: 80px;
	}

	/*コンタクト ボタンリスト リンク*/
	#contact .contactBtn li a{
		padding: 0 10px 0 0;
		line-height: 80px;
	}

	/*コンタクト ボタンリスト リンク TEL*/
	#contact .contactBtn li:first-of-type a{
		font-size: 2.8rem;
	}

	/*コンタクト ボタンリスト リンク TEL 線の位置*/
	#contact .contactBtn li:first-of-type a span{
		transform: translate(0,-3px);
	}

	/*コンタクト ボタンリスト リンク メール*/
	#contact .contactBtn li:nth-of-type(2) a{
		font-size: 2.2rem;
	}

	/*コンタクト ボタンリスト リンク 装飾共通*/
	#contact .contactBtn li a::before{
		margin: 0 10px 0 0;
		width: 40px;
		height: 40px;
		top: 10px;
	}

	/*------------------------------
	ページビジュアル設定
	------------------------------*/
	
	/*ページナビ*/
	#pageVisual .pageNav{
		padding: 5px 40px;
	}

	/*------------------------------
	ページナビゲーション設定
	------------------------------*/

	/* 親ナビゲーションの設定 */
	nav[aria-label="pagination"] {
		margin: 60px auto 0;
	}


}

/*600px以下の場合*/
@media screen and (max-width:600px){

	/*==============================
	共通設定
	==============================*/

	/*==============================
	ヘッダー設定
	==============================*/

	/*ロゴ*/
	.headerInner h1{
		width: 120px;
		left: 20px;
	}

	/*==============================
	共通設定
	==============================*/

	/*------------------------------
	WordPress ポスト引用設定
	------------------------------*/

	/*投稿枠*/
	.postBox{
		margin: 40px auto 0;
		width: 320px;
		justify-content: center;
		gap: 40px 0;
	}

	/*投稿*/
	.postBox li{
		width: 100%;
	}

	/*投稿*/
	.postBox li:last-of-type{
		margin: 0;
	}

	/*==============================
	フッター設定
	==============================*/

	/*------------------------------
	コンタクト設定
	------------------------------*/

	/*コンタクト ボタンリスト*/
	#contact .contactBtn {
		flex-direction: column;
	}

	/*コンタクト ボタンリスト項目*/
	#contact .contactBtn li{
		margin: 0 auto 20px;
		width: 350px;
		height: 70px;
	}

	/*コンタクト ボタンリスト リンク*/
	#contact .contactBtn li a{
		padding: 0 10px 0 0;
		line-height: 70px;
	}

	/*コンタクト ボタンリスト リンク TEL*/
	#contact .contactBtn li:first-of-type a{
		font-size: 3.2rem;
	}

	/*コンタクト ボタンリスト リンク メール*/
	#contact .contactBtn li:nth-of-type(2) a{
		font-size: 2.6rem;
	}


}


/*430px以下の場合*/
@media screen and (max-width:430px){
	
	/*==============================
	共通設定
	==============================*/

	/*セクション*/
	section{
		padding: 60px 0;
	}

	/*セクション インナー*/
	section .inner{
		width: calc(100% - 40px);
	}

	/*h2見出し*/
	section .inner h2{
		font-size: 2.2rem;
	}

	/*------------------------------
	ボタン設定
	------------------------------*/

	/*詳しくはボタン*/
	.btn{
		margin: 40px auto 0;
	}

	/*==============================
	ヘッダー設定
	==============================*/
	/*ロゴ*/
	.headerInner h1{
		width: 120px;
	}

	/*==============================
	グローバルナビゲーション設定
	==============================*/

	/*グローバルナビ全体*/
	#globalNav{
		padding: 60px 0;
	}

	/*グローバルナビ全体 クリックした時*/
	#globalNav.action{
		animation: menu 0.3s forwards ease;
	}

	/*グローバルナビ中身*/
	.globalNavInner{
		width: calc(100% - 40px);
	}

	/*グローバルナビ中身 クリックした時*/
	.globalNavInner.action{
		animation: menu2 0.3s forwards ease-out 0.3s;
	}

	/*ナビゲーションメニュー*/
	.navMenu{
		justify-content: space-between;
	}

	/*ナビゲーションメニューリスト全体*/
	.navMenu .navList{
		margin: 0;
		width: 45%;
	}

	/*ナビゲーションメニューリスト全体 3番目*/
	.navMenu .navList:nth-of-type(3){
		margin: -60px 0 0 0;
	}

	/*ナビゲーションメニューリスト項目 リンク*/
	.navMenu .navList > li > a{
		font-size: 1.4rem;
		line-height: 1.8;
	}

	/*ナビゲーションメニュー ページ内メニュー*/
	.navMenu .inPageNav{
		padding: 0px 0 0 20px;
	}

	/*ナビゲーションメニュー ページ内メニュー リンク*/
	.navMenu .inPageNav li a{
		line-height: 24px;
	}

	/*==============================
	サブナビゲーション設定
	==============================*/

	/*サブナビゲーション全体*/
	#subNavWrap{
		width: 100%;
		mix-blend-mode: normal;
		position: fixed;
		top: auto;
		left: 0;
		bottom: 0;
	}

	/*サブナビゲーション中身*/
	.subNavInner{
		flex-direction: row;
		justify-content: space-between;
		background: #333333;
		filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.3));
		border-bottom: 1px solid #b2b2b2;
	}

	/*サブナビゲーション リスト項目*/
	.subNavInner li{
		margin: 0;
		width: calc(100% / 5);
		height: 80px;
		border-right: 1px solid #b2b2b2;
	}

	/*サブナビゲーション リスト項目 最後*/
	.subNavInner li:last-of-type{
		border-right: none;
	}

	/*サブナビゲーション リスト項目 リンク*/
	.subNavInner li a{
		padding: 15px;
		mix-blend-mode: normal;

	}

	/*サブナビゲーション リスト項目 1つ目*/
	.subNavInner li:first-of-type{
		display: block;
	}

	/*==============================
	フッター設定
	==============================*/

	/*------------------------------
	トピックナビゲーション設定
	------------------------------*/

	/*トピックナビインフォ*/
	#topicNavInfo{
		padding: 60px 0;
	}

	/*トピックナビインフォ 見出し*/
	#topicNavInfo h2{
		width: 300px;
	}

	/*トピックナビ中身*/
	.topicNavInner{
		width: calc(100% - 40px);
	}

	/*トピックナビ リスト*/
	.topicNavInner > li{
		height: 140px;
		font-size: 1.8rem;
		line-height: 1.6;
	}

	/*トピックナビ リスト リンク*/
	.topicNavInner > li a{
		padding: 85px 0 0 0;
	}

	/*トピックナビ リスト リンク アイコン共通*/
	.topicNavInner > li a::before{
		top: 20px;
	}

	/*------------------------------
	コンタクト設定
	------------------------------*/

	/*コンタクト全体*/
	#contact{
		padding: 60px 0;
	}

	/*コンタクト中身*/
	#contact .inner{
		width: calc(100% - 40px);
	}

	/*コンタクト ボタンリスト項目*/
	#contact .contactBtn li{
		width: 100%;
	}

	/*コンタクト 説明*/
	#contact .inner p{
		text-align: justify;
	}

	/*------------------------------
	フッターナビゲーション設定
	------------------------------*/

	/*フッターナビ全体*/
	#footerNav{
		padding: 80px 0 0;
	}

	/*フッターナビ中身*/
	.footerNavInner{
		width: calc(100% - 40px);
	}

	small{
		padding: 50px 0 120px;
	}

	/*==============================
	コンテンツ設定
	==============================*/

	/*------------------------------
	下層ページのビジュアル設定
	------------------------------*/

	#pageVisual{
		height: calc(100vh - 100px);
		aspect-ratio: auto;
	}

	/*ページナビ タイトル 小文字*/
	#pageVisual .pageNav h2 span{
		display: block;
	}


	/*------------------------------
	パンクズリスト設定
	------------------------------*/

	/*ページナビ*/
	#pageVisual .pageNav{
		height: 100%;
		padding: 0;
		aspect-ratio: auto;
		flex-direction: column;
		align-items: center;
		background: none;
	}

	#pageVisual .pageNav h2{
		margin: auto;
		height: 50px;
		line-height: 1.6;
		color: #fff;
		display: block;
		text-align: center;
		position: absolute;
		top: 0;
		bottom: 0;
		left: 0;
		right: 0;
	}

	#pageVisual .pageNav h2::after{
		margin: 0;
		font-size: 1rem;
		display: block;
		text-align: center;
	}

	/*パンくずリスト全体*/
	#pageVisual .breadcrumb{
		padding: 20px 0;
		width: 100%;
		background: #e5e5e5;
		justify-content: center;
		position: absolute;
		bottom: 0;
	}

	/*パンくずリスト中身 リスト*/
	#pageVisual .pageNav ol li{
		font-size: 1rem;
	}

	/*パンくずリスト中身 リスト 装飾*/
	#pageVisual .pageNav ol li::after{
		width: 26px;
	}

	/*パンくずリスト中身 リスト リンク*/
	#pageVisual .pageNav ol li a{
		font-size: 1rem;
	}


}

/*375px以下の場合*/
@media screen and (max-width:375px){
	
	/*==============================
	サブナビゲーション設定
	==============================*/

	/*サブナビゲーション リスト項目*/
	.subNavInner li{
		width: calc(100% / 5);
		height: 70px;
		border-right: 1px solid #b2b2b2;
	}

	/*==============================
	フッター設定
	==============================*/

	/*------------------------------
	トピックナビゲーション設定
	------------------------------*/

	/*トピックナビ中身*/
	.topicNavInner{
		width: calc(100% - 20px);
	}

	/*トピックナビ リスト*/
	.topicNavInner > li{
		font-size: 1.6rem;
		line-height: 1.6;
	}


}






/*==============================
404ページ設定
==============================*/

#pageVisual.error404{
	background: url(../img/error404/bg_main.webp) no-repeat center center / cover;
}
#pageVisual.error404 > *{
	position: relative;
	z-index: 1;
}
#pageVisual.error404 .pageNav h2 {
  font-size: 3rem;
  letter-spacing: 4px;
  display: flex;
  align-items: center;
}
#pageVisual.error404 .pageNav h2::after {
	content: "NOT FOUND";
  display: inline-flex;
  margin: 0 0 0 15px;
  font-family: "Outfit", sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0;
}
#page-404 {
	background: #333;
	color: #fff;
}
#page-404 .articleBox {
  padding: 0 60px 20px;
	text-align: center;
}
#page-404 .articleBox h3 {
	font-size: 4rem;
}
#page-404 .articleBox .txt-en {
  font-family: "Outfit", sans-serif;
	font-size: 1.4rem;
	margin-top: 0.3rem;
}
#page-404 .articleBox .txt-jp {
	font-size: 2.2rem;
	margin-top: 4.2rem;
}
#page-404 .articleBox .txt-jp span {
	display: block;
	font-size: 1.4rem;
  line-height: 2.1;
  font-family: "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro",Osaka, "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
	margin-top: 2.2rem;
}


/*430px以下の場合*/
@media screen and (max-width:430px){

	/*ページビジュアル*/
	#pageVisual.error404{
		background: url(../img/error404/bg_main_sp.webp) no-repeat center center / cover;
	}


}





