@charset "UTF-8";

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

html {
    max-width: 1512px;
    width: 100%;
    height: 100%;
    font-family: "noto-sans-cjk-jp", sans-serif;
    color: #1C2833;
    line-height: 1.6;
    margin: 0 auto;
    scroll-behavior: smooth;

}


/* ----------------------------------------------------------
   リンク
---------------------------------------------------------- */
a {
    text-decoration: none;
    color: #1C2833;
    transition: color 0.3s ease;
}

a:visited {
    color: #FF6F61;
}

a:hover {
    color: #E06A5F;
}

/* ----------------------------------------------------------
   リストの点なし
---------------------------------------------------------- */
ul,
ol {
    list-style: none;
}

img {
    width: 100%;
}

/* ----------------------------------------------------------
   見出し・本文
---------------------------------------------------------- */



h1 {
    font-size: 28px;
    font-family: "ryo-display-plusn", serif;
    font-weight: 700;
    font-style: normal;
}

h2 {
    font-size: 28px;
    font-family: "helvetica-neue-lt-pro", sans-serif;
    font-weight: 100;
    font-style: normal;
}

h3 {
    font-size: 24px;
    font-family: "linotype-didot", "kinuta-mincho-stdn", serif;
    font-weight: 400;
}


p {
    font-size: clamp(16px, 0.5vw + 14.35px, 18px);
    font-family: "a-otf-gothic-mb101-pr6n", sans-serif;
    font-weight: 300;
    font-style: normal;
}


/* 
-------------------------------------------
style
-------------------------------------------
*/


body {
    min-width: 330px;
    max-width: 1512px;
    margin: 0 auto;
    box-sizing: border-box;
    color: #4A4A4A;
    background-color: #F5F0EA;
}

section {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.section-heading {
    padding: 3rem 0;
    margin: 0 2rem;
    max-width: 360px;
}

.title-border {
    width: 280px;
    height: 0.5px;
    background: #A68D72;
}

.section-heading h2 {
    text-align: right;
    color: #A68D72;
    font-size: 20px;
}


.equipments-section {
    padding: 0 0 3rem 0;
}

.section-inner {
    padding: 3rem 1rem;
}

.section-inner p {
    max-width: 900px;
}

section img {
    max-width: 800px;
}


.section-inner-img-box {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    max-width: 900px;
    padding: 2rem 0 0;

}

/* 
-------------------------------------------
スライダー
-------------------------------------------
*/

/* メインスライダーのスタイル */
.property-swiper {
    width: 100%;
    max-width: 800px;
    aspect-ratio: 4 / 3;
    margin: 0 auto 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* サムネイルスライダーのスタイル */
.property-swiper-thumbs {
    width: 100%;
    max-width: 800px;
    height: auto;
    margin: 0 auto;
    box-sizing: border-box;
    padding: 10px 0;
}

/* サムネイルスライド */
.property-swiper-thumbs .swiper-slide {
    width: 25%;
    height: 120px;
    opacity: 0.4;
    cursor: pointer;
    overflow: hidden;
    transition: opacity 0.3s;
    margin-bottom: 10px;
}

/* アクティブなサムネイル */
.property-swiper-thumbs .swiper-slide-thumb-active {
    opacity: 1;
    border: 3px solid #007aff;
}

.property-swiper-thumbs .swiper-slide:hover {
    opacity: 1;
}

/* 画像のスタイル */
.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* デバッグ用アウトライン */
/*
* {
    outline: 1px solid red;
} */