@charset "utf-8";

@font-face {
    font-family: "Zen Old Mincho";
    src: url(/fonts/ZenOldMincho-Regular.ttf);
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: "Zen Old Mincho";
    src: url(/fonts/ZenOldMincho-SemiBold.ttf);
    font-weight: 600;
    font-display: swap;
}

@font-face {
    font-family: "Zen Old Mincho";
    src: url(/fonts/ZenOldMincho-Bold.ttf);
    font-weight: 700;
    font-display: swap;
}

body {
	/*スマホで勝手に文字が大きくなる対策*/
	-webkit-text-size-adjust: 100%;
}

:root {
    /* Colors */
    --color-primary: #A48454;
    --color-text: #000000;
    --color-text-light: #FFFFFF;
    --color-text-gray: #A2A2A2;
    --color-bg: #FFFFFF;
    --color-overlay: rgba(0, 0, 0, 0.3);

    /* Typography */
    --font-family-base: "Zen Old Mincho", serif;
    --font-family-en: "Garamond Premier Pro", serif;

    /* Font Sizes */
    --font-size-base: 16px;
    --font-size-lg: 18px;
    --font-size-xl: 20px;
    --font-size-2xl: 24px;
    --font-size-3xl: 30px;

    /* Line Heights */
    --line-height-relaxed: 1.6;
    --line-height-loose: 1.8;

    /* Spacing */
    --spacing-xs: 5px;
    --spacing-sm: 10px;
    --spacing-md: 20px;
    --spacing-lg: 40px;
    --spacing-xl: 80px;
}


.l-main,
#contents {
	padding: 0;
	width: 100%;
	overflow: hidden;
	background: #fff;
}

/* Main Visual */
.p-mv {
    width: 100%;
    height: 550px;
    overflow: hidden;
}

.p-mv__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Contents Section */
.p-contents {
    padding: 80px 0;
    background-color: var(--color-bg);
}

.p-contents__inner {
    max-width: 1140px;
    margin: 0 auto;
}

.c-section-header {
    position: relative;
}

.c-section-header__ja {
    width: fit-content;
}

.p-contents__layout {
    margin-top: 20px;
	position: relative;
	padding: 60px 60px 51px;
	background: #FCF8F5;
}

.p-contents__list {
    display: flex;
	align-items: center;
    gap: 68px;
}
.p-contents__list.p-contents__start {
    align-items: flex-start;
}
.p-contents__menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.p-contents__menu-item {
    font-family: var(--font-family-base);
    font-weight: 600;
    font-size: var(--font-size-lg);
    color: var(--color-text);
    margin-bottom: var(--spacing-sm);
    line-height: var(--line-height-relaxed);
}

.p-contents__menu-item a {
    font-family: var(--font-family-base);
    font-weight: 600;
    font-size: var(--font-size-lg);
    color: var(--color-text);
    line-height: var(--line-height-relaxed);
}

.p-contents__image {
	width: 637px;
	height: 396px;
    position: absolute;
	top: -92px;
    right: 40px;
}

.p-contents__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* デザイナーズ物件セクション */
.p-designers {
    padding: 11px 0 80px;
    background-color: var(--color-bg);
}

.p-designers__inner {
    max-width: 1140px;
    margin: 0 auto;
}

.p-designers__content {
    display: flex;
    gap: 36px;
    margin-top: 18px;
    align-items: flex-start;
}

.p-designers__main {
	width: 420px;
	height: 314px;
    flex-shrink: 0;
}

.p-designers__main img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.p-designers__main-image {
    display: block;
    max-width: 100%;
    height: auto;
}

.p-designers__text {
    padding-top: 87px;
}

.p-designers__catch {
    font-family: var(--font-family-base);
    font-size: var(--font-size-2xl);
    font-weight: 600;
    margin: 0 0 15px;
    line-height: var(--line-height-relaxed);
}

.p-designers__description {
    font-family: var(--font-family-base);
    font-size: var(--font-size-base);
    font-weight: 600;
    line-height: var(--line-height-loose);
    margin: 0;
}

.p-designers__types {
    display: grid;
    grid-template-columns: repeat(6, 170px);
    gap: 20px;
    margin-top: 30px;
}

.p-designers__type {
    position: relative;
    width: 170px;
    height: 170px;
    overflow: hidden;
    border-radius: 50%;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.p-designers__type:hover {
    transform: scale(1.05);
}

.p-designers__type a:hover {
    opacity: 1;
}

.p-designers__type-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.p-designers__type-name {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--color-text-light);
    font-family: var(--font-family-base);
    font-size: var(--font-size-lg);
    font-weight: 600;
    text-align: center;
    line-height: 1.4;
	white-space: nowrap;
    z-index: 1;
}



/* 物件タイプセクション */
.p-property-types {
    padding: 50px 0 128px;
    background-color: var(--color-bg);
}

.p-property-types__inner {
    max-width: 1140px;
    margin: 0 auto;
}

.p-property-types__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
	justify-content: space-between;
    gap: 50px 29px;
    position: relative;
}



.p-property-types__content {
    display: flex;
    gap: 18px;
    margin-top: 13px;
    align-items: flex-start;
}

.p-property-types__image {
	width: 275px;
	height: 275px;
    flex-shrink: 0;
}

.p-property-types__image img {
    display: block;
    max-width: 100%;
    height: auto;
}

.p-property-types__text {
	width: 265px;
    padding-top: 45px;
}

.p-property-types__description {
    font-family: var(--font-family-base);
    font-size: var(--font-size-base);
    font-weight: 600;
    line-height: var(--line-height-loose);
    margin: 0 0 16px;
}

/* ボタンコンポーネント */
.c-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 200px;
    height: 50px;
    background-color: var(--color-text);
    border-radius: 25px;
    position: relative;
    overflow: hidden;
}

.c-button::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    border-radius: 40px;
    margin: auto;
    width: 98px;
    height: 23px;
    background: #fff;
    transform: scale(0);
    transition-duration: 0.4s;
    transition-timing-function: ease-out;
}
.c-button:hover::before {
    transform: scale(2);
}
.c-button:hover {
    opacity: 1;
}
    .c-button span::before {
        content: "";
        display: inline-block;
        width: 117px;
        height: 23px;
        background: url(/images/top/bt-txt.webp) no-repeat center / cover;
        transition: .4s;
        position: relative;
        z-index: 1;
    }
    .c-button:hover span::before {
        background: url(/images/top/bt-txt-on.webp) no-repeat center / cover;
    }
#link01,
#link02,
#link03,
#link04,
#link05,
#link06,
#link07,
#link08,
#link09,
#link10,
#link11,
#link12,
#link13,
#link14,
#link15,
#link16,
#link17 {
    padding-top: 90px;
    margin-top: -90px;
}