/*!
Theme Name: サンライフ住建 Theme
Theme URI:
Author: サンライフ住建
Author URI:
Description: Original Theme of サンライフ住建
Version: 1.0
License: Esolab
License URI:
Tags:
Text Domain: sunlife_prj
*/

/****************************************
① 土台（foundation）
****************************************/

/****************************************
色｜ブランド（v2＝ブラウン主色）
****************************************/

/****************************************
色｜テキスト
****************************************/

/****************************************
色｜背景・面
****************************************/

/****************************************
色｜罫線・状態
****************************************/

/****************************************
余白（8px基準スケール｜1rem = 10px）
****************************************/

/****************************************
タイポグラフィ
****************************************/

/****************************************
ブレークポイント・コンテナ幅（モバイルファースト）
****************************************/

/****************************************
z-index 管理（この値以外を書かない）
****************************************/

/****************************************
その他
****************************************/

/*!
Theme Name: サンライフ住建 Theme
Theme URI:
Author: サンライフ住建
Author URI:
Description: Original Theme of サンライフ住建
Version: 1.0
License: Esolab
License URI:
Tags:
Text Domain: sunlife_prj
*/

/****************************************
① 土台（foundation）
****************************************/

/****************************************
メディアクエリ（モバイルファースト / min-width）
基準はSP。@include mq(md) 以上で上書きする（docs/05_coding_rules.md §4-2）
@media の直書きは禁止。必ずこの mixin を経由する
****************************************/

*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

ul,
ol {
	list-style: none;
}

img,
picture,
video,
svg {
	display: block;
	max-width: 100%;
	height: auto;
}

input,
button,
textarea,
select {
	color: inherit;
	font: inherit;
}

button {
	border: none;
	background: none;
	cursor: pointer;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* アニメーションを減らす設定のユーザーには動きを止める */

/*!
Theme Name: サンライフ住建 Theme
Theme URI:
Author: サンライフ住建
Author URI:
Description: Original Theme of サンライフ住建
Version: 1.0
License: Esolab
License URI:
Tags:
Text Domain: sunlife_prj
*/

/****************************************
① 土台（foundation）
****************************************/

html {
	font-size: 62.5%;
}

body {
	font-feature-settings: "palt";
	-webkit-text-size-adjust: 100%;
	-moz-text-size-adjust: 100%;
	text-size-adjust: 100%;
	background: #F6F1E8;
	color: #3D2F22;
	font-size: 1.6rem;
	line-height: 1.9;
	font-family: "Zen Kaku Gothic New", "游ゴシック体", YuGothic, "Yu Gothic", sans-serif;
	letter-spacing: 0.05em;
}

a {
	color: #6B4A2B;
	text-decoration: none;
	transition: 0.3s;
}

:focus-visible {
	outline: 2px solid #6B4A2B;
	outline-offset: 2px;
}

/****************************************
② レイアウト（layout｜l-）
****************************************/

/*!
Theme Name: サンライフ住建 Theme
Theme URI:
Author: サンライフ住建
Author URI:
Description: Original Theme of サンライフ住建
Version: 1.0
License: Esolab
License URI:
Tags:
Text Domain: sunlife_prj
*/

/****************************************
① 土台（foundation）
****************************************/

.l-container {
	width: 100%;
	max-width: 1160px;
	margin: 0 auto;
	padding: 0 1.6rem;
}

.l-container--wide {
	max-width: 1440px;
}

/*!
Theme Name: サンライフ住建 Theme
Theme URI:
Author: サンライフ住建
Author URI:
Description: Original Theme of サンライフ住建
Version: 1.0
License: Esolab
License URI:
Tags:
Text Domain: sunlife_prj
*/

/****************************************
① 土台（foundation）
****************************************/

.l-header {
	z-index: 100;
	position: sticky;
	top: 0;
	border-bottom: 1px solid #DDD5C4;
	background: #F6F1E8;
}

.l-header__inner {
	display: flex;
	align-items: center;
	max-width: 1440px;
	min-height: 6.4rem;
	margin: 0 auto;
	padding: 0.8rem 1.6rem;
	gap: 1.6rem;
}

.l-header__logo {
	flex-shrink: 0;
}

.l-header__logo a {
	display: block;
}

.l-header__logo img {
	width: auto;
	height: 1.7rem;
}

.l-header__tagline {
	display: none;
}

.l-header__actions {
	display: flex;
	align-items: center;
	margin-left: auto;
	gap: 0.8rem;
}

.l-header__actions .c-btn {
	padding: 0.8rem 1.2rem;
	font-size: 1.2rem;
	white-space: nowrap;
}

.l-header__tel {
	display: none;
}

.l-header__contact {
	display: none;
}

.l-header__hamburger {
	display: flex;
	z-index: 300;
	position: relative;
	flex-shrink: 0;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 4.4rem;
	height: 4.4rem;
	gap: 0.4rem;
}

.l-header__hamburger-line {
	width: 2.4rem;
	height: 2px;
	background: #3D2F22;
	transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.3s;
}

.l-header__hamburger.is-active .l-header__hamburger-line:nth-child(1) {
	transform: translateY(0.6rem) rotate(45deg);
}

.l-header__hamburger.is-active .l-header__hamburger-line:nth-child(2) {
	opacity: 0;
}

.l-header__hamburger.is-active .l-header__hamburger-line:nth-child(3) {
	transform: translateY(-0.6rem) rotate(-45deg);
}

.is-drawer-open {
	overflow: hidden;
}

/*!
Theme Name: サンライフ住建 Theme
Theme URI:
Author: サンライフ住建
Author URI:
Description: Original Theme of サンライフ住建
Version: 1.0
License: Esolab
License URI:
Tags:
Text Domain: sunlife_prj
*/

/****************************************
① 土台（foundation）
****************************************/

.l-drawer {
	display: flex;
	visibility: hidden;
	z-index: 300;
	position: fixed;
	inset: 0;
	background: #5F4D3F;
	opacity: 0;
	transition: opacity 0.3s cubic-bezier(0.22, 1, 0.36, 1), visibility 0.3s; /* -----------------------------------
    左：写真ペイン（装飾。SPでは隠す）
  ----------------------------------- */ /* -----------------------------------
    右：ナビペイン
  ----------------------------------- */ /* -----------------------------------
    主要導線タイル（4枚・枠線で区切る）
  ----------------------------------- */ /* -----------------------------------
    グループ別サイトマップ
  ----------------------------------- */ /* -----------------------------------
    CTA（塗り／枠線の2種）
  ----------------------------------- */
}

.l-drawer.is-open {
	visibility: visible;
	opacity: 1;
}

.l-drawer__visual {
	display: none;
}

.l-drawer__visual-logo {
	color: #FFFFFF;
	font-weight: 300;
	font-size: 3.2rem;
	font-family: "Jost", sans-serif;
	letter-spacing: 0.06em;
}

.l-drawer__panel {
	position: relative;
	width: 100%;
	padding: 9.6rem 2.4rem 6.4rem;
	overflow-y: auto;
	color: #FFFFFF;
}

.l-drawer__panel a {
	color: #FFFFFF;
}

.l-drawer__close {
	position: absolute;
	top: 2.4rem;
	right: 2.4rem;
	width: 4.4rem;
	height: 4.4rem;
}

.l-drawer__close-line {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 2.4rem;
	height: 1px;
	background: #FFFFFF;
}

.l-drawer__close-line:nth-child(1) {
	transform: translate(-50%, -50%) rotate(45deg);
}

.l-drawer__close-line:nth-child(2) {
	transform: translate(-50%, -50%) rotate(-45deg);
}

.l-drawer__tiles {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	border: 1px solid rgba(255, 255, 255, 0.3);
}

.l-drawer__tile {
	border-right: 1px solid rgba(255, 255, 255, 0.3);
	border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.l-drawer__tile:nth-child(2n) {
	border-right: 0;
}

.l-drawer__tile a {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-height: 8rem;
	padding: 0.8rem;
	gap: 0.8rem;
	text-align: center;
	transition: background-color 0.3s;
}

.l-drawer__tile a:hover {
	background: rgba(255, 255, 255, 0.08);
}

.l-drawer__tile-icon {
	display: block;
	width: 2.4rem;
	height: 2.4rem;
}

.l-drawer__tile-icon svg {
	width: 100%;
	height: 100%;
}

.l-drawer__tile-label {
	font-size: 1.2rem;
}

.l-drawer__groups {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	margin-top: 6.4rem;
	gap: 2.4rem 1.6rem;
}

.l-drawer__group-title {
	padding-bottom: 0.8rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.3);
	font-weight: 700;
	font-size: 1.2rem;
	font-family: "Zen Kaku Gothic New", "游ゴシック体", YuGothic, "Yu Gothic", sans-serif;
}

.l-drawer__list {
	display: flex;
	flex-direction: column;
	margin-top: 1.2rem;
	gap: 0.8rem;
	font-size: 1.4rem;
}

.l-drawer__list a:hover {
	opacity: 0.7;
}

.l-drawer__cta {
	display: grid;
	margin-top: 6.4rem;
	gap: 1.6rem;
}

.l-drawer__cta-item {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 6.4rem;
	padding: 1.6rem;
	gap: 0.8rem;
	border: 1px solid #FFFFFF;
	font-weight: 700;
	font-size: 1.6rem;
	font-family: "Zen Kaku Gothic New", "游ゴシック体", YuGothic, "Yu Gothic", sans-serif;
	transition: background-color 0.3s, color 0.3s;
}

.l-drawer__cta-item:hover {
	background: rgba(255, 255, 255, 0.12);
}

.l-drawer__cta-item--fill {
	background: #FFFFFF;
	color: #3D2F22;
}

.l-drawer__panel .l-drawer__cta-item--fill {
	color: #3D2F22;
}

.l-drawer__cta-item--fill:hover {
	background: #EFE8DA;
	color: #3D2F22;
}

.l-drawer__cta-arrow {
	font-family: "Jost", sans-serif;
}

.l-drawer__policy {
	margin-top: 4rem;
	font-size: 1.2rem;
}

.l-drawer__policy a:hover {
	opacity: 0.7;
}

/*!
Theme Name: サンライフ住建 Theme
Theme URI:
Author: サンライフ住建
Author URI:
Description: Original Theme of サンライフ住建
Version: 1.0
License: Esolab
License URI:
Tags:
Text Domain: sunlife_prj
*/

/****************************************
① 土台（foundation）
****************************************/

.l-main {
	display: block;
}

/*!
Theme Name: サンライフ住建 Theme
Theme URI:
Author: サンライフ住建
Author URI:
Description: Original Theme of サンライフ住建
Version: 1.0
License: Esolab
License URI:
Tags:
Text Domain: sunlife_prj
*/

/****************************************
① 土台（foundation）
****************************************/

.l-footer {
	background: #5F4D3F;
	color: #FFFFFF; /* -----------------------------------
    上部：大型CTA（CONTACT / CONSULT）
  ----------------------------------- */ /* -----------------------------------
    本体：ロゴ・会社情報＋サイトマップ
  ----------------------------------- */ /* -----------------------------------
    下部：コピーライト＋プライバシー
  ----------------------------------- */
}

.l-footer a {
	color: #FFFFFF;
}

.l-footer__cta {
	display: grid;
	border-top: 1px solid rgba(255, 255, 255, 0.15);
	border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.l-footer__cta-item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 4rem 2.4rem;
	gap: 2.4rem;
	transition: background-color 0.3s;
}

.l-footer__cta-item + .l-footer__cta-item {
	border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.l-footer__cta-item:hover {
	background: rgba(255, 255, 255, 0.05);
}

.l-footer__cta-en {
	display: block;
	font-weight: 300;
	font-size: 4rem;
	line-height: 1;
	font-family: "Jost", sans-serif;
	letter-spacing: 0.06em;
}

.l-footer__cta-ja {
	display: block;
	margin-top: 0.8rem;
	font-size: 1.4rem;
}

.l-footer__cta-arrow {
	display: flex;
	flex-shrink: 0;
	align-items: center;
	justify-content: center;
	width: 5.6rem;
	height: 5.6rem;
	border: 1px solid rgba(255, 255, 255, 0.4);
	border-radius: 50%;
	font-family: "Jost", sans-serif;
	transition: background-color 0.3s, color 0.3s;
}

.l-footer__cta-item:hover .l-footer__cta-arrow {
	background: #FFFFFF;
	color: #5F4D3F;
}

.l-footer__body {
	display: flex;
	flex-direction: column;
	padding-top: 6.4rem;
	padding-bottom: 6.4rem;
	gap: 6.4rem;
}

.l-footer__brand img {
	width: auto;
	height: 3rem;
}

.l-footer__address {
	margin-top: 1.6rem;
	font-size: 1.4rem;
	line-height: 1.9;
}

.l-footer__tel {
	margin-top: 1.2rem;
	font-size: 2rem;
	font-family: "Jost", sans-serif;
	letter-spacing: 0.06em;
}

.l-footer__tel-label {
	margin-right: 0.4rem;
	font-size: 1.4rem;
}

.l-footer__fax {
	margin-top: 0.4rem;
	font-size: 1.4rem;
	font-family: "Jost", sans-serif;
}

.l-footer__sitemap {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 4rem 2.4rem;
}

.l-footer__col-title {
	font-weight: 700;
	font-size: 1.6rem;
	font-family: "Zen Kaku Gothic New", "游ゴシック体", YuGothic, "Yu Gothic", sans-serif;
}

.l-footer__list {
	display: flex;
	flex-direction: column;
	margin-top: 1.6rem;
	gap: 1.2rem;
	font-size: 1.4rem;
}

.l-footer__list a:hover {
	opacity: 0.7;
}

.l-footer__bottom {
	display: flex;
	flex-direction: column;
	padding-top: 2.4rem;
	padding-bottom: 2.4rem;
	gap: 0.8rem;
	border-top: 1px solid rgba(255, 255, 255, 0.15);
	font-size: 1.2rem;
}

.l-footer__copyright {
	opacity: 0.7;
}

.l-footer__policy a:hover {
	opacity: 0.7;
}

/****************************************
③ オブジェクト（object｜c- → p- → u- の順）
****************************************/

/*!
Theme Name: サンライフ住建 Theme
Theme URI:
Author: サンライフ住建
Author URI:
Description: Original Theme of サンライフ住建
Version: 1.0
License: Esolab
License URI:
Tags:
Text Domain: sunlife_prj
*/

/****************************************
① 土台（foundation）
****************************************/

.c-btn {
	display: inline-block;
	padding: 1.2rem 2.4rem;
	border-radius: 0.4rem;
	background: #8A5F38;
	color: #FFFFFF;
	font-weight: 500;
	font-size: 1.4rem;
	text-align: center;
	transition: background-color 0.3s;
}

.c-btn:hover {
	background: #6B4A2B;
	color: #FFFFFF;
}

.c-btn--secondary {
	background: #66620F;
}

.c-btn--secondary:hover {
	background: #6B4A2B;
}

.c-btn--ghost {
	border: 1px solid #B5A88F;
	background: #FFFFFF;
	color: #3D2F22;
}

.c-btn--ghost:hover {
	background: #EFE8DA;
	color: #3D2F22;
}

/*!
Theme Name: サンライフ住建 Theme
Theme URI:
Author: サンライフ住建
Author URI:
Description: Original Theme of サンライフ住建
Version: 1.0
License: Esolab
License URI:
Tags:
Text Domain: sunlife_prj
*/

/****************************************
① 土台（foundation）
****************************************/

.c-breadcrumb {
	padding: 1.2rem 0;
	color: #756652;
	font-size: 1.4rem;
}

.c-breadcrumb__list {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	max-width: 1160px;
	margin: 0 auto;
	padding: 0 1.6rem;
}

.c-breadcrumb__item {
	display: flex;
	align-items: center;
}

.c-breadcrumb__item:not(:last-child)::after {
	margin: 0 0.8rem;
	content: "/";
	color: #B5A88F;
}

.c-breadcrumb__item a {
	color: #756652;
}

.c-breadcrumb__item a:hover {
	color: #6B4A2B;
}

/*!
Theme Name: サンライフ住建 Theme
Theme URI:
Author: サンライフ住建
Author URI:
Description: Original Theme of サンライフ住建
Version: 1.0
License: Esolab
License URI:
Tags:
Text Domain: sunlife_prj
*/

/****************************************
① 土台（foundation）
****************************************/

.c-pagination {
	margin-top: 6.4rem;
}

.c-pagination .nav-links {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.8rem;
}

.c-pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 4rem;
	height: 4rem;
	padding: 0 1.2rem;
	border: 1px solid #DDD5C4;
	border-radius: 0.4rem;
	background: #FFFFFF;
	color: #3D2F22;
	font-size: 1.4rem;
	font-family: "Jost", sans-serif;
	transition: 0.3s;
}

.c-pagination .page-numbers:hover {
	border-color: #6B4A2B;
	color: #6B4A2B;
}

.c-pagination .page-numbers.current {
	border-color: #6B4A2B;
	background: #6B4A2B;
	color: #FFFFFF;
}

.c-pagination .page-numbers.dots {
	border: none;
	background: transparent;
}

.c-pagination .page-numbers.dots:hover {
	color: #3D2F22;
}

/*!
Theme Name: サンライフ住建 Theme
Theme URI:
Author: サンライフ住建
Author URI:
Description: Original Theme of サンライフ住建
Version: 1.0
License: Esolab
License URI:
Tags:
Text Domain: sunlife_prj
*/

/****************************************
① 土台（foundation）
****************************************/

.c-page-header {
	padding: 4rem 0;
	background: #EFE8DA;
	text-align: center;
}

.c-page-header__en {
	color: #3D2F22;
	font-weight: 300;
	font-size: 4rem;
	line-height: 1.1;
	font-family: "Jost", sans-serif;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.c-page-header__title {
	margin-top: 0.8rem;
	color: #6B4A2B;
	font-weight: 500;
	font-size: 2rem;
	line-height: 1.5;
	font-family: "Zen Kaku Gothic New", "游ゴシック体", YuGothic, "Yu Gothic", sans-serif;
	letter-spacing: 0.08em;
}

/*!
Theme Name: サンライフ住建 Theme
Theme URI:
Author: サンライフ住建
Author URI:
Description: Original Theme of サンライフ住建
Version: 1.0
License: Esolab
License URI:
Tags:
Text Domain: sunlife_prj
*/

/****************************************
① 土台（foundation）
****************************************/

.c-heading {
	padding-bottom: 1.2rem;
	border-bottom: 1px solid #DDD5C4;
	font-weight: 700;
	font-size: 2.4rem;
	line-height: 1.5;
	font-family: "Zen Kaku Gothic New", "游ゴシック体", YuGothic, "Yu Gothic", sans-serif;
	letter-spacing: 0.08em;
}

/*!
Theme Name: サンライフ住建 Theme
Theme URI:
Author: サンライフ住建
Author URI:
Description: Original Theme of サンライフ住建
Version: 1.0
License: Esolab
License URI:
Tags:
Text Domain: sunlife_prj
*/

/****************************************
① 土台（foundation）
****************************************/

.c-table {
	width: 100%;
	margin-top: 2.4rem;
	border-top: 1px solid #DDD5C4;
	font-size: 1.4rem;
}

.c-table th,
.c-table td {
	display: block;
	padding: 1.2rem 0.8rem;
	border-bottom: 1px solid #DDD5C4;
	line-height: 1.5;
	text-align: left;
}

.c-table th {
	border-bottom: none;
	background: #EFE8DA;
	font-weight: 500;
}

/*!
Theme Name: サンライフ住建 Theme
Theme URI:
Author: サンライフ住建
Author URI:
Description: Original Theme of サンライフ住建
Version: 1.0
License: Esolab
License URI:
Tags:
Text Domain: sunlife_prj
*/

/****************************************
① 土台（foundation）
****************************************/

.c-card-link {
	display: grid;
	margin-top: 4rem;
	gap: 1.6rem;
}

.c-card-link__item a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 2.4rem;
	border: 1px solid #DDD5C4;
	background: #FFFFFF;
	color: #3D2F22;
	transition: border-color 0.3s;
}

.c-card-link__item a:hover {
	border-color: #6B4A2B;
}

.c-card-link__item a::after {
	content: "→";
	color: #6B4A2B;
}

.c-card-link__title {
	font-weight: 500;
	font-size: 1.8rem;
	font-family: "Zen Kaku Gothic New", "游ゴシック体", YuGothic, "Yu Gothic", sans-serif;
}

/*!
Theme Name: サンライフ住建 Theme
Theme URI:
Author: サンライフ住建
Author URI:
Description: Original Theme of サンライフ住建
Version: 1.0
License: Esolab
License URI:
Tags:
Text Domain: sunlife_prj
*/

/****************************************
① 土台（foundation）
****************************************/

.c-placeholder-box {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 24rem;
	margin-top: 2.4rem;
	border: 1px dashed #B5A88F;
	background: #EFE8DA;
	color: #756652;
	font-size: 1.4rem;
}

/*!
Theme Name: サンライフ住建 Theme
Theme URI:
Author: サンライフ住建
Author URI:
Description: Original Theme of サンライフ住建
Version: 1.0
License: Esolab
License URI:
Tags:
Text Domain: sunlife_prj
*/

/****************************************
① 土台（foundation）
****************************************/

.c-section-heading {
	text-align: left;
}

.c-section-heading__en {
	color: #3D2F22;
	font-weight: 300;
	font-size: 4rem;
	line-height: 1.1;
	font-family: "Jost", sans-serif;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.c-section-heading__title {
	margin-top: 0.8rem;
	padding-left: 0.8rem;
	border-left: 2px solid #8A5F38;
	color: #6B4A2B;
	font-weight: 500;
	font-size: 1.4rem;
	line-height: 1.5;
	font-family: "Zen Kaku Gothic New", "游ゴシック体", YuGothic, "Yu Gothic", sans-serif;
	letter-spacing: 0.08em;
}

/*!
Theme Name: サンライフ住建 Theme
Theme URI:
Author: サンライフ住建
Author URI:
Description: Original Theme of サンライフ住建
Version: 1.0
License: Esolab
License URI:
Tags:
Text Domain: sunlife_prj
*/

/****************************************
① 土台（foundation）
****************************************/

.p-not-found {
	padding: 6.4rem 0 9.6rem;
	text-align: center;
}

.p-not-found__code {
	color: #6B4A2B;
	font-size: 5.6rem;
	line-height: 1.3;
	font-family: "Jost", sans-serif;
}

.p-not-found__title {
	margin-top: 1.6rem;
	font-weight: 700;
	font-size: 2.4rem;
	line-height: 1.5;
	font-family: "Zen Kaku Gothic New", "游ゴシック体", YuGothic, "Yu Gothic", sans-serif;
}

.p-not-found__desc {
	margin-top: 2.4rem;
}

.p-not-found__links {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-top: 4rem;
	gap: 1.6rem;
}

.p-not-found__home {
	margin-top: 4rem;
}

.p-not-found__home a {
	color: #756652;
	text-decoration: underline;
}

.p-not-found__home a:hover {
	color: #6B4A2B;
}

/*!
Theme Name: サンライフ住建 Theme
Theme URI:
Author: サンライフ住建
Author URI:
Description: Original Theme of サンライフ住建
Version: 1.0
License: Esolab
License URI:
Tags:
Text Domain: sunlife_prj
*/

/****************************************
① 土台（foundation）
****************************************/

.p-page {
	padding: 6.4rem 0 9.6rem;
}

.p-page__content > * + * {
	margin-top: 1.6rem;
}

.p-page__content h2 {
	margin-top: 4rem;
	padding-bottom: 1.2rem;
	border-bottom: 1px solid #DDD5C4;
	font-weight: 700;
	font-size: 2.4rem;
	line-height: 1.5;
	font-family: "Zen Kaku Gothic New", "游ゴシック体", YuGothic, "Yu Gothic", sans-serif;
}

.p-page__content h3 {
	margin-top: 2.4rem;
	font-weight: 700;
	font-size: 2rem;
	line-height: 1.5;
	font-family: "Zen Kaku Gothic New", "游ゴシック体", YuGothic, "Yu Gothic", sans-serif;
}

.p-page__content ul,
.p-page__content ol {
	padding-left: 2.4rem;
}

.p-page__content ul li,
.p-page__content ol li {
	list-style: inherit;
}

.p-page__content ul {
	list-style: disc;
}

.p-page__content ol {
	list-style: decimal;
}

.p-page__content a {
	text-decoration: underline;
}

.p-page__cta {
	margin-top: 4rem;
	text-align: center;
}

/*!
Theme Name: サンライフ住建 Theme
Theme URI:
Author: サンライフ住建
Author URI:
Description: Original Theme of サンライフ住建
Version: 1.0
License: Esolab
License URI:
Tags:
Text Domain: sunlife_prj
*/

/****************************************
① 土台（foundation）
****************************************/

.p-company {
	padding: 6.4rem 0 9.6rem;
}

.p-company__section + .p-company__section {
	margin-top: 6.4rem;
}

.p-company__logo {
	max-width: 40rem;
	margin: 2.4rem auto 0;
}

.p-company__history {
	margin-top: 2.4rem;
}

.p-company__history-row {
	display: flex;
	flex-direction: column;
	padding: 1.2rem 0;
	border-bottom: 1px solid #DDD5C4;
}

.p-company__history-row dt {
	flex-shrink: 0;
	width: 20rem;
	color: #756652;
	font-weight: 500;
}

.p-company__photos {
	display: grid;
	margin-top: 2.4rem;
	gap: 1.6rem;
}

.p-company__photos-item img {
	-o-object-fit: cover;
	aspect-ratio: 4/3;
	width: 100%;
	object-fit: cover;
}

.p-company__photos-item figcaption {
	margin-top: 0.8rem;
	color: #756652;
	font-size: 1.4rem;
	text-align: center;
}

.p-company__access-address {
	margin-top: 2.4rem;
}

.p-company__map {
	aspect-ratio: 4/3;
	margin-top: 2.4rem;
}

.p-company__map iframe {
	width: 100%;
	height: 100%;
}

/*!
Theme Name: サンライフ住建 Theme
Theme URI:
Author: サンライフ住建
Author URI:
Description: Original Theme of サンライフ住建
Version: 1.0
License: Esolab
License URI:
Tags:
Text Domain: sunlife_prj
*/

/****************************************
① 土台（foundation）
****************************************/

.p-contact {
	padding: 6.4rem 0 9.6rem;
}

.p-contact__tel {
	max-width: 56rem;
	margin: 0 auto;
	padding: 2.4rem;
	border: 1px solid #DDD5C4;
	background: #FFFFFF;
	text-align: center;
}

.p-contact__tel-label {
	font-weight: 700;
	font-size: 1.4rem;
}

.p-contact__tel-number {
	margin-top: 0.4rem;
}

.p-contact__tel-number a {
	color: #6B4A2B;
	font-weight: 500;
	font-size: 2.4rem;
	font-family: "Jost", sans-serif;
	letter-spacing: 0.06em;
}

.p-contact__form {
	margin-top: 4rem;
}

.p-contact__note {
	color: #756652;
	font-size: 1.4rem;
}

.p-contact__note a {
	color: #6B4A2B;
	text-decoration: underline;
}

/*!
Theme Name: サンライフ住建 Theme
Theme URI:
Author: サンライフ住建
Author URI:
Description: Original Theme of サンライフ住建
Version: 1.0
License: Esolab
License URI:
Tags:
Text Domain: sunlife_prj
*/

/****************************************
① 土台（foundation）
****************************************/

.p-logo {
	padding: 6.4rem 0 9.6rem;
}

.p-logo__lead {
	margin-bottom: 4rem;
	line-height: 1.9;
}

.p-logo__mark {
	max-width: 32rem;
	margin: 0 auto 4rem;
}

.p-logo__list {
	display: grid;
	margin-top: 2.4rem;
	gap: 1.6rem;
}

.p-logo__item {
	padding: 2.4rem;
	background: #EFE8DA;
}

.p-logo__item dt {
	color: #6B4A2B;
	font-weight: 700;
	font-size: 1.8rem;
	font-family: "Zen Kaku Gothic New", "游ゴシック体", YuGothic, "Yu Gothic", sans-serif;
}

.p-logo__item dd {
	margin-top: 0.4rem;
}

/*!
Theme Name: サンライフ住建 Theme
Theme URI:
Author: サンライフ住建
Author URI:
Description: Original Theme of サンライフ住建
Version: 1.0
License: Esolab
License URI:
Tags:
Text Domain: sunlife_prj
*/

/****************************************
① 土台（foundation）
****************************************/

.p-service {
	padding: 6.4rem 0 9.6rem;
}

.p-service__lead {
	margin-bottom: 4rem;
	line-height: 1.9;
}

/*!
Theme Name: サンライフ住建 Theme
Theme URI:
Author: サンライフ住建
Author URI:
Description: Original Theme of サンライフ住建
Version: 1.0
License: Esolab
License URI:
Tags:
Text Domain: sunlife_prj
*/

/****************************************
① 土台（foundation）
****************************************/

.p-shinchiku {
	padding: 6.4rem 0 9.6rem;
}

.p-shinchiku__section + .p-shinchiku__section {
	margin-top: 6.4rem;
}

.p-shinchiku__lead {
	margin-top: 2.4rem;
	line-height: 1.9;
	text-align: center;
}

.p-shinchiku__flow-lead {
	margin: 2.4rem 0 4rem;
	line-height: 1.9;
}

.p-shinchiku__flow-list {
	display: grid;
	gap: 1.6rem;
}

.p-shinchiku__flow-step {
	display: flex;
	align-items: baseline;
	padding: 2.4rem;
	gap: 1.6rem;
	border: 1px solid #DDD5C4;
	background: #FFFFFF;
}

.p-shinchiku__flow-num {
	flex-shrink: 0;
	color: #6B4A2B;
	font-size: 2.4rem;
	line-height: 1.3;
	font-family: "Jost", sans-serif;
}

.p-shinchiku__flow-body {
	flex: 1;
}

.p-shinchiku__flow-title {
	font-weight: 700;
	font-size: 1.8rem;
	line-height: 1.5;
	font-family: "Zen Kaku Gothic New", "游ゴシック体", YuGothic, "Yu Gothic", sans-serif;
}

.p-shinchiku__flow-desc {
	margin-top: 0.8rem;
	color: #756652;
	font-size: 1.4rem;
	line-height: 1.9;
}

.p-shinchiku__note {
	margin-top: 2.4rem;
	color: #756652;
	font-size: 1.4rem;
	line-height: 1.9;
}

.p-shinchiku__cta {
	text-align: center;
}

/*!
Theme Name: サンライフ住建 Theme
Theme URI:
Author: サンライフ住建
Author URI:
Description: Original Theme of サンライフ住建
Version: 1.0
License: Esolab
License URI:
Tags:
Text Domain: sunlife_prj
*/

/****************************************
① 土台（foundation）
****************************************/

.p-works-card {
	background: transparent;
}

.p-works-card__link {
	display: block;
	color: #3D2F22;
	transition: opacity 0.3s;
}

.p-works-card__link:hover {
	opacity: 0.85;
}

.p-works-card__img {
	aspect-ratio: 3/2;
	background: #EFE8DA;
}

.p-works-card__img img {
	-o-object-fit: cover;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.p-works-card__noimage {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	color: #756652;
	font-size: 1.4rem;
	font-family: "Jost", sans-serif;
	letter-spacing: 0.06em;
}

.p-works-card__body {
	padding: 1.6rem 0 0;
}

.p-works-card__cat {
	display: inline-block;
	padding: 0.4rem 0.8rem;
	border-radius: 0.4rem;
	background: #EFE3D3;
	color: #6B4A2B;
	font-weight: 500;
	font-size: 1.2rem;
}

.p-works-card__title {
	margin-top: 0.8rem;
	font-weight: 700;
	font-size: 1.8rem;
	line-height: 1.5;
	font-family: "Zen Kaku Gothic New", "游ゴシック体", YuGothic, "Yu Gothic", sans-serif;
}

.p-works-card__area {
	margin-top: 0.4rem;
	color: #756652;
	font-size: 1.4rem;
}

/*!
Theme Name: サンライフ住建 Theme
Theme URI:
Author: サンライフ住建
Author URI:
Description: Original Theme of サンライフ住建
Version: 1.0
License: Esolab
License URI:
Tags:
Text Domain: sunlife_prj
*/

/****************************************
① 土台（foundation）
****************************************/

.p-works-archive {
	padding: 6.4rem 0 9.6rem;
}

.p-works-archive__grid {
	display: grid;
	margin-top: 4rem;
	gap: 2.4rem;
}

.p-works-archive__empty {
	margin-top: 6.4rem;
	text-align: center;
}

.p-works-archive__empty a {
	text-decoration: underline;
}

.p-works-filter {
	display: grid;
	padding: 2.4rem;
	gap: 1.6rem;
	background: #EFE8DA;
}

.p-works-filter__field {
	display: block;
}

.p-works-filter__label {
	display: block;
	color: #756652;
	font-weight: 500;
	font-size: 1.4rem;
}

.p-works-filter__select {
	width: 100%;
	margin-top: 0.4rem;
	padding: 0.8rem 1.2rem;
	border: 1px solid #DDD5C4;
	border-radius: 0.4rem;
	background: #FFFFFF;
}

.p-works-filter__actions {
	display: flex;
	align-items: center;
	gap: 1.6rem;
}

.p-works-filter__reset {
	color: #756652;
	font-size: 1.4rem;
	text-decoration: underline;
}

.p-works-filter__reset:hover {
	color: #6B4A2B;
}

/*!
Theme Name: サンライフ住建 Theme
Theme URI:
Author: サンライフ住建
Author URI:
Description: Original Theme of サンライフ住建
Version: 1.0
License: Esolab
License URI:
Tags:
Text Domain: sunlife_prj
*/

/****************************************
① 土台（foundation）
****************************************/

.p-works-single {
	padding: 6.4rem 0 9.6rem;
}

.p-works-single__section {
	margin-top: 6.4rem;
}

.p-works-single__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 0.8rem;
}

.p-works-single__badge {
	display: inline-block;
	padding: 0.4rem 1.2rem;
	border-radius: 0.4rem;
	background: #EFE3D3;
	color: #6B4A2B;
	font-weight: 500;
	font-size: 1.4rem;
}

.p-works-single__badge:hover {
	background: #6B4A2B;
	color: #FFFFFF;
}

.p-works-single__mainimg {
	margin-top: 2.4rem;
}

.p-works-single__mainimg img {
	width: 100%;
	height: auto;
}

.p-works-single__ba {
	display: grid;
	margin-top: 2.4rem;
	gap: 1.6rem;
}

.p-works-single__ba-item figcaption {
	margin-top: 0.8rem;
	color: #756652;
	font-size: 1.4rem;
	text-align: center;
}

.p-works-single__content {
	margin-top: 6.4rem;
}

.p-works-single__content > * + * {
	margin-top: 1.6rem;
}

.p-works-single__content .gallery {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	margin-top: 2.4rem;
	gap: 0.8rem;
}

.p-works-single__content .gallery.gallery-columns-1 {
	grid-template-columns: 1fr;
}

.p-works-single__content .gallery-item {
	margin: 0;
}

.p-works-single__content .gallery-item img {
	width: 100%;
	height: auto;
}

.p-works-single__content .gallery-caption {
	margin-top: 0.4rem;
	color: #756652;
	font-size: 1.2rem;
	text-align: center;
}

.p-works-single__staff {
	display: flex;
	flex-wrap: wrap;
	margin-top: 2.4rem;
	gap: 1.6rem;
}

.p-works-single__staff-item {
	display: flex;
	align-items: baseline;
	padding: 1.2rem 1.6rem;
	gap: 0.8rem;
	border-radius: 0.4rem;
	background: #EFE8DA;
}

.p-works-single__staff-position {
	color: #756652;
	font-size: 1.2rem;
}

.p-works-single__staff-name {
	font-weight: 500;
}

.p-works-single__voices {
	margin-top: 2.4rem;
}

.p-works-single__voices li + li {
	margin-top: 0.8rem;
}

.p-works-single__voices a {
	text-decoration: underline;
}

.p-works-single__related {
	display: grid;
	margin-top: 2.4rem;
	gap: 2.4rem;
}

.p-works-single__back {
	margin-top: 6.4rem;
	text-align: center;
}

/*!
Theme Name: サンライフ住建 Theme
Theme URI:
Author: サンライフ住建
Author URI:
Description: Original Theme of サンライフ住建
Version: 1.0
License: Esolab
License URI:
Tags:
Text Domain: sunlife_prj
*/

/****************************************
① 土台（foundation）
****************************************/

.p-faq {
	padding: 6.4rem 0 9.6rem;
}

.p-faq__section + .p-faq__section {
	margin-top: 6.4rem;
}

.p-faq__list {
	display: grid;
	margin-top: 2.4rem;
	gap: 1.6rem;
}

.p-faq__item {
	border: 1px solid #DDD5C4;
	background: #FFFFFF;
}

.p-faq__q {
	display: flex;
	align-items: center;
	width: 100%;
	padding: 1.6rem 2.4rem;
	gap: 1.6rem;
	font-weight: 500;
	font-size: 1.6rem;
	line-height: 1.5;
	text-align: left;
}

.p-faq__q:hover {
	color: #6B4A2B;
}

.p-faq__q-mark {
	flex-shrink: 0;
	color: #6B4A2B;
	font-size: 2rem;
	font-family: "Jost", sans-serif;
}

.p-faq__q-text {
	flex-grow: 1;
}

.p-faq__q-icon {
	position: relative;
	flex-shrink: 0;
	width: 1.6rem;
	height: 1.6rem;
}

.p-faq__q-icon::before,
.p-faq__q-icon::after {
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
	height: 2px;
	transform: translateY(-50%);
	background: #6B4A2B;
	content: "";
}

.p-faq__q-icon::after {
	transform: translateY(-50%) rotate(90deg);
	transition: transform 0.3s;
}

.p-faq__q.is-open .p-faq__q-icon::after {
	transform: translateY(-50%) rotate(0deg);
}

.p-faq__a {
	display: grid;
	grid-template-rows: 1fr;
	transition: grid-template-rows 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.p-faq__a.is-closed {
	grid-template-rows: 0fr;
}

.p-faq__a-inner {
	display: flex;
	min-height: 0;
	overflow: hidden;
	gap: 1.6rem;
}

.p-faq__a-mark {
	flex-shrink: 0;
	margin-left: 2.4rem;
	color: #6B4A2B;
	font-size: 2rem;
	font-family: "Jost", sans-serif;
}

.p-faq__a-body {
	margin: 0 2.4rem 1.6rem 0;
}

.p-faq__a-body > * + * {
	margin-top: 0.8rem;
}

.p-faq__empty {
	text-align: center;
}

/*!
Theme Name: サンライフ住建 Theme
Theme URI:
Author: サンライフ住建
Author URI:
Description: Original Theme of サンライフ住建
Version: 1.0
License: Esolab
License URI:
Tags:
Text Domain: sunlife_prj
*/

/****************************************
① 土台（foundation）
****************************************/

.p-form__row {
	padding: 1.6rem 0;
	border-bottom: 1px solid #DDD5C4;
}

.p-form__label {
	display: flex;
	align-items: center;
	gap: 0.8rem;
}

.p-form__label label {
	font-weight: 500;
}

.p-form__required {
	padding: 0.2rem 0.8rem;
	border-radius: 0.4rem;
	background: #EFE3D3;
	color: #6B4A2B;
	font-weight: 700;
	font-size: 1.2rem;
}

.p-form__control {
	flex-grow: 1;
	margin-top: 0.8rem;
}

.p-form input[type=text],
.p-form input[type=email],
.p-form input[type=tel],
.p-form select,
.p-form textarea {
	width: 100%;
	min-height: 4.4rem;
	padding: 0.8rem 1.2rem;
	border: 1px solid #B5A88F;
	border-radius: 0.4rem;
	background: #FFFFFF;
	font-size: 1.6rem;
}

.p-form textarea {
	width: 100%;
	min-height: 16rem;
}

.p-form .wpcf7-not-valid {
	border-color: #B3261E;
}

.p-form .wpcf7-not-valid-tip {
	display: block;
	margin-top: 0.4rem;
	color: #B3261E;
	font-size: 1.4rem;
}

.p-form__actions {
	margin-top: 4rem;
	text-align: center;
}

.p-form__actions .c-btn {
	min-width: 20rem;
	min-height: 4.4rem;
	border: 0;
	cursor: pointer;
}

.p-form .wpcf7-spinner {
	display: block;
	margin: 0.8rem auto 0;
}

.p-form .wpcf7-response-output {
	margin: 2.4rem 0 0;
	padding: 1.6rem 2.4rem;
	border: 1px solid #B5A88F;
	border-radius: 0.4rem;
	background: #FFFFFF;
	font-size: 1.4rem;
}

.p-form .invalid .wpcf7-response-output,
.p-form .failed .wpcf7-response-output {
	border-color: #B3261E;
	color: #B3261E;
}

/*!
Theme Name: サンライフ住建 Theme
Theme URI:
Author: サンライフ住建
Author URI:
Description: Original Theme of サンライフ住建
Version: 1.0
License: Esolab
License URI:
Tags:
Text Domain: sunlife_prj
*/

/****************************************
① 土台（foundation）
****************************************/

.p-news-archive {
	padding: 6.4rem 0 9.6rem;
}

.p-news-archive__list {
	border-top: 1px solid #DDD5C4;
}

.p-news-archive__row {
	display: flex;
	flex-direction: column;
	padding: 1.6rem 0;
	border-bottom: 1px solid #DDD5C4;
}

.p-news-archive__time {
	flex-shrink: 0;
	color: #756652;
	font-size: 1.4rem;
	font-family: "Jost", sans-serif;
}

.p-news-archive__cat {
	flex-shrink: 0;
	align-self: flex-start;
	padding: 0.4rem 0.8rem;
	border-radius: 0.4rem;
	background: #EFE3D3;
	color: #6B4A2B;
	font-weight: 500;
	font-size: 1.2rem;
}

.p-news-archive__title a {
	color: #3D2F22;
}

.p-news-archive__title a:hover {
	color: #6B4A2B;
}

.p-news-archive__empty {
	text-align: center;
}

.p-news-single {
	padding: 6.4rem 0 9.6rem;
}

.p-news-single__meta {
	display: flex;
	align-items: center;
	gap: 1.6rem;
}

.p-news-single__time {
	color: #756652;
	font-size: 1.4rem;
	font-family: "Jost", sans-serif;
}

.p-news-single__cat {
	padding: 0.4rem 0.8rem;
	border-radius: 0.4rem;
	background: #EFE3D3;
	color: #6B4A2B;
	font-weight: 500;
	font-size: 1.2rem;
}

.p-news-single__content {
	margin-top: 2.4rem;
}

.p-news-single__content > * + * {
	margin-top: 1.6rem;
}

.p-news-single__content img {
	height: auto;
}

.p-news-single__back {
	margin-top: 4rem;
	text-align: center;
}

.p-news-single__back a {
	color: #756652;
	text-decoration: underline;
}

/*!
Theme Name: サンライフ住建 Theme
Theme URI:
Author: サンライフ住建
Author URI:
Description: Original Theme of サンライフ住建
Version: 1.0
License: Esolab
License URI:
Tags:
Text Domain: sunlife_prj
*/

/****************************************
① 土台（foundation）
****************************************/

.p-front-fv {
	position: relative;
	margin-bottom: 6.4rem;
}

.p-front-fv__media {
	position: relative;
	aspect-ratio: 3/4;
	margin-left: 8%;
	overflow: hidden;
}

.p-front-fv__bg {
	position: absolute;
	inset: 0;
}

.p-front-fv__bg img {
	-o-object-fit: cover;
	position: absolute;
	width: 100%;
	height: 100%;
	inset: 0;
	object-fit: cover;
}

.p-front-fv__bg::after {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, #F6F1E8 0%, rgba(246, 241, 232, 0) 55%);
	content: "";
}

.p-front-fv__slide {
	position: absolute;
	inset: 0;
	opacity: 0;
	transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.p-front-fv__slide.is-active {
	opacity: 1;
}

.p-front-fv__body {
	display: flex;
	z-index: 10;
	position: absolute;
	align-items: flex-end;
	inset: 0;
	padding: 2.4rem;
}

.p-front-fv__en {
	margin-bottom: 0.8rem;
	color: #6B4A2B;
	font-weight: 300;
	font-size: 1.6rem;
	font-family: "Jost", sans-serif;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.p-front-fv__catch {
	font-weight: 700;
	font-size: 2rem;
	line-height: 1.5;
	font-family: "Zen Kaku Gothic New", "游ゴシック体", YuGothic, "Yu Gothic", sans-serif;
	letter-spacing: 0.08em;
}

.p-front-fv__area {
	margin-top: 1.6rem;
	font-size: 1.4rem;
}

.p-front-fv__counter {
	display: flex;
	z-index: 10;
	position: absolute;
	top: 50%;
	left: 0;
	flex-direction: column;
	align-items: flex-end;
	width: 8%;
	gap: 0.4rem;
	transform: translateY(-50%);
	font-size: 1.4rem;
	line-height: 1;
	font-family: "Jost", sans-serif;
	letter-spacing: 0.06em;
}

.p-front-fv__counter-line {
	width: 100%;
	height: 1px;
	background: #B5A88F;
}

.p-front-fv__counter-current {
	padding-right: 0.8rem;
	color: #3D2F22;
}

.p-front-fv__counter-total {
	padding-right: 0.8rem;
	color: #756652;
}

.p-front-fv__scroll {
	display: flex;
	z-index: 10;
	position: absolute;
	bottom: 2.4rem;
	left: 0;
	justify-content: center;
	width: 8%;
	color: #756652;
	font-size: 1.2rem;
	font-family: "Jost", sans-serif;
	letter-spacing: 0.06em;
	writing-mode: vertical-rl;
}

/*!
Theme Name: サンライフ住建 Theme
Theme URI:
Author: サンライフ住建
Author URI:
Description: Original Theme of サンライフ住建
Version: 1.0
License: Esolab
License URI:
Tags:
Text Domain: sunlife_prj
*/

/****************************************
① 土台（foundation）
****************************************/

.p-front-entrances {
	padding: 6.4rem 0;
}

.p-front-entrances__list {
	display: grid;
	gap: 1.6rem;
}

.p-front-entrances__item a {
	display: block;
	border: 1px solid #DDD5C4;
	background: #FFFFFF;
	color: #3D2F22;
	transition: border-color 0.3s;
}

.p-front-entrances__item a:hover {
	border-color: #6B4A2B;
}

.p-front-entrances__img {
	aspect-ratio: 3/2;
}

.p-front-entrances__img img {
	-o-object-fit: cover;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.p-front-entrances__row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1.6rem 2.4rem;
	gap: 1.6rem;
}

.p-front-entrances__labels {
	display: flex;
	flex-direction: column;
	gap: 0.4rem;
}

.p-front-entrances__en {
	color: #6B4A2B;
	font-weight: 300;
	font-size: 1.4rem;
	font-family: "Jost", sans-serif;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.p-front-entrances__label {
	font-weight: 700;
	font-size: 1.8rem;
	font-family: "Zen Kaku Gothic New", "游ゴシック体", YuGothic, "Yu Gothic", sans-serif;
}

.p-front-entrances__arrow {
	color: #6B4A2B;
	font-family: "Jost", sans-serif;
}

/*!
Theme Name: サンライフ住建 Theme
Theme URI:
Author: サンライフ住建
Author URI:
Description: Original Theme of サンライフ住建
Version: 1.0
License: Esolab
License URI:
Tags:
Text Domain: sunlife_prj
*/

/****************************************
① 土台（foundation）
****************************************/

.p-front-works {
	padding: 6.4rem 0;
	background: #EFE8DA;
}

.p-front-works__tabs {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin-top: 2.4rem;
	gap: 0.8rem;
}

.p-front-works__tab {
	padding: 0.8rem 1.2rem;
	border-bottom: 2px solid transparent;
	font-size: 1.4rem;
	transition: color 0.3s, border-color 0.3s;
}

.p-front-works__tab:hover {
	color: #6B4A2B;
}

.p-front-works__tab.is-active {
	border-bottom-color: #8A5F38;
	color: #6B4A2B;
	font-weight: 700;
}

.p-front-works__grid {
	display: grid;
	margin-top: 2.4rem;
	gap: 1.2rem;
}

.p-front-works__more {
	margin-top: 4rem;
	text-align: center;
}

/*!
Theme Name: サンライフ住建 Theme
Theme URI:
Author: サンライフ住建
Author URI:
Description: Original Theme of サンライフ住建
Version: 1.0
License: Esolab
License URI:
Tags:
Text Domain: sunlife_prj
*/

/****************************************
① 土台（foundation）
****************************************/

.p-front-panjyon {
	padding: 6.4rem 0;
	background: #E7DCC8;
	text-align: center;
}

.p-front-panjyon__en {
	color: #8A5F38;
	font-weight: 300;
	font-size: 4.8rem;
	line-height: 1.15;
	font-family: "Jost", sans-serif;
	letter-spacing: 0.06em;
}

.p-front-panjyon__brand {
	margin-top: 0.8rem;
	color: #756652;
	font-size: 1.4rem;
}

.p-front-panjyon__lead {
	max-width: 60rem;
	margin: 1.6rem auto 0;
	color: #756652;
	line-height: 1.9;
}

.p-front-panjyon__img {
	max-width: 72rem;
	margin: 4rem auto 0;
}

.p-front-panjyon__btn {
	margin-top: 4rem;
}

/*!
Theme Name: サンライフ住建 Theme
Theme URI:
Author: サンライフ住建
Author URI:
Description: Original Theme of サンライフ住建
Version: 1.0
License: Esolab
License URI:
Tags:
Text Domain: sunlife_prj
*/

/****************************************
① 土台（foundation）
****************************************/

.p-front-fudosan {
	padding: 6.4rem 0;
	background: #EFE8DA;
	text-align: center;
}

.p-front-fudosan__en {
	color: #8A5F38;
	font-weight: 300;
	font-size: 4.8rem;
	line-height: 1.15;
	font-family: "Jost", sans-serif;
	letter-spacing: 0.06em;
}

.p-front-fudosan__brand {
	margin-top: 0.8rem;
	color: #756652;
	font-size: 1.4rem;
}

.p-front-fudosan__lead {
	max-width: 60rem;
	margin: 1.6rem auto 0;
	color: #756652;
	line-height: 1.9;
}

.p-front-fudosan__img {
	max-width: 72rem;
	margin: 4rem auto 0;
}

.p-front-fudosan__btns {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-top: 4rem;
	gap: 1.2rem;
}

/*!
Theme Name: サンライフ住建 Theme
Theme URI:
Author: サンライフ住建
Author URI:
Description: Original Theme of サンライフ住建
Version: 1.0
License: Esolab
License URI:
Tags:
Text Domain: sunlife_prj
*/

/****************************************
① 土台（foundation）
****************************************/

.p-front-reasons {
	padding: 6.4rem 0;
}

.p-front-reasons__list {
	display: grid;
	margin-top: 9.6rem;
	gap: 6.4rem;
}

.p-front-reasons__item {
	display: grid;
	gap: 1.6rem;
}

.p-front-reasons__img {
	aspect-ratio: 3/2;
}

.p-front-reasons__img img {
	-o-object-fit: cover;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.p-front-reasons__num {
	color: #8A5F38;
	font-weight: 300;
	font-size: 4rem;
	line-height: 1.3;
	font-family: "Jost", sans-serif;
}

.p-front-reasons__title {
	margin-top: 0.8rem;
	font-weight: 700;
	font-size: 2.4rem;
	line-height: 1.5;
	font-family: "Zen Kaku Gothic New", "游ゴシック体", YuGothic, "Yu Gothic", sans-serif;
}

.p-front-reasons__desc {
	margin-top: 1.6rem;
	font-size: 1.6rem;
	line-height: 1.9;
}

/*!
Theme Name: サンライフ住建 Theme
Theme URI:
Author: サンライフ住建
Author URI:
Description: Original Theme of サンライフ住建
Version: 1.0
License: Esolab
License URI:
Tags:
Text Domain: sunlife_prj
*/

/****************************************
① 土台（foundation）
****************************************/

.p-front-news {
	padding: 6.4rem 0;
}

.p-front-news__list {
	margin-top: 4rem;
	border-top: 1px solid #DDD5C4;
}

.p-front-news__row {
	display: flex;
	flex-direction: column;
	padding: 1.6rem 0;
	border-bottom: 1px solid #DDD5C4;
}

.p-front-news__time {
	flex-shrink: 0;
	color: #756652;
	font-size: 1.4rem;
	font-family: "Jost", sans-serif;
}

.p-front-news__title a {
	color: #3D2F22;
}

.p-front-news__title a:hover {
	color: #6B4A2B;
}

.p-front-news__more {
	margin-top: 4rem;
	text-align: center;
}

/*!
Theme Name: サンライフ住建 Theme
Theme URI:
Author: サンライフ住建
Author URI:
Description: Original Theme of サンライフ住建
Version: 1.0
License: Esolab
License URI:
Tags:
Text Domain: sunlife_prj
*/

/****************************************
① 土台（foundation）
****************************************/

.p-front-cta {
	padding: 6.4rem 0;
	background: #EFE8DA;
}

.p-front-cta__list {
	display: grid;
	margin-top: 4rem;
	gap: 1.6rem;
}

.p-front-cta__item a {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 2.4rem;
	gap: 0.4rem;
	border-radius: 0.8rem;
	background: #8A5F38;
	color: #FFFFFF;
	text-align: center;
	transition: background-color 0.3s;
}

.p-front-cta__item a:hover {
	background: #6B4A2B;
}

.p-front-cta__label {
	font-weight: 700;
	font-size: 1.8rem;
	font-family: "Zen Kaku Gothic New", "游ゴシック体", YuGothic, "Yu Gothic", sans-serif;
}

.p-front-cta__note {
	font-size: 1.2rem;
	opacity: 0.85;
}

.p-front-cta__tel {
	margin-top: 4rem;
	text-align: center;
}

.p-front-cta__tel a {
	color: #6B4A2B;
	font-weight: 500;
	font-size: 2.4rem;
	font-family: "Jost", sans-serif;
	letter-spacing: 0.06em;
}

/*!
Theme Name: サンライフ住建 Theme
Theme URI:
Author: サンライフ住建
Author URI:
Description: Original Theme of サンライフ住建
Version: 1.0
License: Esolab
License URI:
Tags:
Text Domain: sunlife_prj
*/

/****************************************
① 土台（foundation）
****************************************/

.p-front-fixed-cta {
	display: grid;
	z-index: 200;
	position: fixed;
	bottom: 0;
	left: 0;
	grid-template-columns: repeat(2, 1fr);
	width: 100%;
}

.p-front-fixed-cta a {
	padding: 1.6rem;
	color: #FFFFFF;
	font-weight: 700;
	font-size: 1.4rem;
	text-align: center;
}

.p-front-fixed-cta__tel {
	background: #6B4A2B;
}

.p-front-fixed-cta__contact {
	background: #8A5F38;
}

.has-fixed-cta {
	padding-bottom: 6.4rem;
}

.u-pc {
	display: none;
}

.screen-reader-text {
	position: absolute !important; /* WP標準クラスの慣例実装。表示崩れ防止に必須のため */
	width: 1px;
	height: 1px;
	overflow: hidden;
	border: 0;
	white-space: nowrap;
	clip-path: inset(50%);
}

@media (prefers-reduced-motion: reduce) {

*,
*::before,
*::after {
	animation-duration: 0.01ms !important; /* アクセシビリティ対応のためのユーザー設定尊重。!important はOS設定を確実に優先させるために必要 */
	animation-iteration-count: 1 !important;
	scroll-behavior: auto !important;
	transition-duration: 0.01ms !important;
}

}

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

.l-container {
	padding: 0 4rem;
}

.l-header__inner {
	min-height: 9rem;
	padding: 0.8rem 2.4rem;
}

.l-header__logo img {
	height: 2.6rem;
}

.l-header__actions {
	gap: 1.6rem;
}

.l-header__actions .c-btn {
	padding: 1.2rem 2.4rem;
	font-size: 1.4rem;
}

.l-header__tel {
	display: block;
	color: #6B4A2B;
	font-weight: 500;
	font-size: 1.8rem;
	font-family: "Jost", sans-serif;
	letter-spacing: 0.06em;
}

.l-header__contact {
	display: inline-block;
}

.l-drawer__panel {
	padding: 9.6rem 6.4rem 6.4rem;
}

.l-drawer__close {
	top: 2.4rem;
	right: 6.4rem;
}

.l-footer__cta-item {
	padding: 6.4rem;
}

.l-footer__cta-en {
	font-size: 5.6rem;
}

.l-footer__body {
	flex-direction: row;
	justify-content: space-between;
	padding-top: 9.6rem;
	padding-bottom: 9.6rem;
	gap: 9.6rem;
}

.l-footer__sitemap {
	grid-template-columns: repeat(4, auto);
	gap: 6.4rem;
}

.l-footer__bottom {
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
}

.c-breadcrumb__list {
	padding: 0 4rem;
}

.c-page-header {
	padding: 6.4rem 0;
}

.c-page-header__en {
	font-size: 6.4rem;
}

.c-page-header__title {
	font-size: 2.4rem;
}

.c-heading {
	font-size: 2.8rem;
}

.c-table {
	font-size: 1.6rem;
}

.c-table th,
.c-table td {
	display: table-cell;
	padding: 1.6rem 2.4rem;
	vertical-align: top;
}

.c-table th {
	width: 24rem;
	border-bottom: 1px solid #DDD5C4;
}

.c-card-link {
	grid-template-columns: repeat(2, 1fr);
	gap: 2.4rem;
}

.c-placeholder-box {
	min-height: 32rem;
}

.c-section-heading__en {
	font-size: 6.4rem;
}

.p-not-found {
	padding: 12.8rem 0 12.8rem;
}

.p-not-found__title {
	font-size: 3.2rem;
}

.p-not-found__links {
	flex-direction: row;
	justify-content: center;
}

.p-page {
	padding: 12.8rem 0 12.8rem;
}

.p-company {
	padding: 12.8rem 0 12.8rem;
}

.p-company__section + .p-company__section {
	margin-top: 9.6rem;
}

.p-company__logo {
	margin: 2.4rem 0 0;
}

.p-company__history-row {
	flex-direction: row;
	gap: 4rem;
}

.p-company__photos {
	grid-template-columns: repeat(3, 1fr);
	gap: 2.4rem;
}

.p-company__map {
	aspect-ratio: 16/9;
}

.p-contact {
	padding: 12.8rem 0 12.8rem;
}

.p-contact__tel-number a {
	font-size: 3.2rem;
}

.p-contact__form {
	margin-top: 6.4rem;
}

.p-logo {
	padding: 12.8rem 0 12.8rem;
}

.p-logo__list {
	grid-template-columns: repeat(2, 1fr);
	gap: 2.4rem;
}

.p-service {
	padding: 12.8rem 0 12.8rem;
}

.p-shinchiku {
	padding: 12.8rem 0 12.8rem;
}

.p-shinchiku__flow-list {
	gap: 2.4rem;
}

.p-shinchiku__flow-title {
	font-size: 2rem;
}

.p-works-archive {
	padding: 12.8rem 0 12.8rem;
}

.p-works-archive__grid {
	grid-template-columns: repeat(2, 1fr);
}

.p-works-filter {
	grid-template-columns: repeat(3, 1fr);
	align-items: end;
}

.p-works-filter__actions {
	grid-column: 1/-1;
}

.p-works-single {
	padding: 12.8rem 0 12.8rem;
}

.p-works-single__ba--cols2 {
	grid-template-columns: repeat(2, 1fr);
}

.p-works-single__ba--cols3 {
	grid-template-columns: repeat(3, 1fr);
}

.p-works-single__content .gallery {
	grid-template-columns: repeat(3, 1fr);
}

.p-works-single__content .gallery.gallery-columns-2 {
	grid-template-columns: repeat(2, 1fr);
}

.p-works-single__content .gallery.gallery-columns-4 {
	grid-template-columns: repeat(4, 1fr);
}

.p-works-single__related {
	grid-template-columns: repeat(3, 1fr);
}

.p-faq {
	padding: 12.8rem 0 12.8rem;
}

.p-form__row {
	display: flex;
	gap: 2.4rem;
}

.p-form__label {
	flex-shrink: 0;
	align-items: flex-start;
	width: 24rem;
	padding-top: 0.8rem;
}

.p-form__control {
	margin-top: 0;
}

.p-form input[type=text],
.p-form input[type=email],
.p-form input[type=tel],
.p-form select,
.p-form textarea {
	width: auto;
	min-width: 32rem;
}

.p-form textarea {
	width: 100%;
}

.p-news-archive {
	padding: 12.8rem 0 12.8rem;
}

.p-news-archive__row {
	flex-direction: row;
	align-items: baseline;
	gap: 2.4rem;
}

.p-news-single {
	padding: 12.8rem 0 12.8rem;
}

.p-front-fv {
	margin-bottom: 12.8rem;
}

.p-front-fv__media {
	aspect-ratio: 1.9/1;
}

.p-front-fv__body {
	padding: 6.4rem;
}

.p-front-fv__catch {
	font-size: 3.2rem;
}

.p-front-fv__area {
	font-size: 1.6rem;
}

.p-front-entrances {
	padding: 12.8rem 0;
}

.p-front-entrances__list {
	grid-template-columns: repeat(3, 1fr);
	gap: 2.4rem;
}

.p-front-works {
	padding: 12.8rem 0;
}

.p-front-works__grid {
	grid-template-columns: repeat(2, 1fr);
	gap: 0.8rem 1.2rem;
}

.p-front-works__item:first-child {
	grid-column: span 2;
}

.p-front-panjyon {
	padding: 12.8rem 0;
}

.p-front-panjyon__en {
	font-size: 7.2rem;
}

.p-front-fudosan {
	padding: 12.8rem 0;
}

.p-front-fudosan__en {
	font-size: 7.2rem;
}

.p-front-fudosan__btns {
	flex-direction: row;
	justify-content: center;
	gap: 1.6rem;
}

.p-front-reasons {
	padding: 12.8rem 0;
}

.p-front-reasons__item {
	grid-template-columns: 1fr 1fr;
	align-items: center;
	gap: 6.4rem;
}

.p-front-reasons__item:nth-child(even) {
	direction: rtl;
}

.p-front-reasons__item:nth-child(even) .p-front-reasons__text {
	direction: ltr;
}

.p-front-reasons__num {
	font-size: 6.4rem;
}

.p-front-news {
	padding: 12.8rem 0;
}

.p-front-news__row {
	flex-direction: row;
	align-items: baseline;
	gap: 2.4rem;
}

.p-front-cta {
	padding: 12.8rem 0;
}

.p-front-cta__list {
	grid-template-columns: repeat(2, 1fr);
	max-width: 72rem;
	margin-right: auto;
	margin-left: auto;
	gap: 2.4rem;
}

.p-front-cta__item a {
	padding: 4rem 2.4rem;
}

.has-fixed-cta {
	padding-bottom: 0;
}

.u-sp {
	display: none;
}

.u-pc {
	display: revert;
}

}

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

.l-header__inner {
	padding: 0.8rem 6.4rem;
	gap: 2.4rem;
}

.l-header__tagline {
	display: block;
	color: #756652;
	font-size: 1.2rem;
	line-height: 1.5;
}

.l-drawer__visual {
	display: flex;
	position: relative;
	align-items: center;
	justify-content: center;
	width: 50%;
	background-image: url("images/photo/photo-fv-3.webp");
	background-position: center;
	background-size: cover;
}

.l-drawer__panel {
	width: 50%;
}

.l-drawer__tiles {
	grid-template-columns: repeat(4, 1fr);
}

.l-drawer__tile {
	border-bottom: 0;
}

.l-drawer__tile:nth-child(2n) {
	border-right: 1px solid rgba(255, 255, 255, 0.3);
}

.l-drawer__tile:last-child {
	border-right: 0;
}

.l-drawer__groups {
	grid-template-columns: repeat(3, 1fr);
	gap: 4rem 1.6rem;
}

.l-footer__cta {
	grid-template-columns: repeat(2, 1fr);
}

.l-footer__cta-item {
	padding: 9.6rem 6.4rem;
}

.l-footer__cta-item + .l-footer__cta-item {
	border-top: 0;
	border-left: 1px solid rgba(255, 255, 255, 0.15);
}

.c-card-link {
	grid-template-columns: repeat(3, 1fr);
}

.p-works-archive__grid {
	grid-template-columns: repeat(3, 1fr);
}

.p-works-filter {
	grid-template-columns: repeat(3, 1fr) auto;
}

.p-works-filter__actions {
	grid-column: auto;
}

.p-front-fv__catch {
	font-size: 5.6rem;
}

.p-front-entrances__label {
	font-size: 1.8rem;
}

.p-front-works__grid {
	grid-template-columns: repeat(3, 1fr);
}

}

