@charset "UTF-8";

/* -----------------------------
  ヘッダー
----------------------------- */
.header {
    padding-bottom: var(--space-unit);
    background: var(--color-main);
    position: relative;
}

.header .wrapper {
    height: 120px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* ロゴ */
.logo img {
    margin: 0% 0% 0% 5%;
    padding-top: 1%;
    max-width: 20%;
}
/* グローバルナビ */
.nav {
    background: var(--color-main);
}

.nav-list {
    width: 1170px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}

.nav-list > li {
    width: 20%;
}

.nav-link {
    display: block;
    height: 60px;
    font-size: 24px;
    color: var(--color-text);
    text-align: center;
    line-height: 60px;
    transition: all 0.5s;
}

.nav-link:hover {
    background: var(--color-gray);
    color: var(--color-white);
}

/* -----------------------------
  メインビジュアル 
----------------------------- */
.mv {
    padding: 100px 0 80px;
    width: 100%;
    overflow: hidden;
    background-color: var(--color-sub);
    
}
/* Slick本体のコンテナ */
.slick-list {
    overflow: visible !important;
}
.slick-slide {
    opacity: 0.5;
    transform: scale(0.85);
    transition: transform 0.4s ease, opacity 0.4s ease;
    padding: 0 10px;
    box-sizing: border-box;
    position: relative;
}
.slick-center {
    opacity: 1;
    transform: scale(1);
    z-index: 1;
}
.slider-item {
    position: relative;
    box-sizing: border-box;
    width: 100%;
}
.slider-item img {
    display: block;
    width: 100%; 
    height: auto;
    margin: 0 auto;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    border-radius: 10px;
}
/* 疑似要素でリングを追加 */
.slider-item::before {
    content: '';
    display: block;
    position: absolute;
    width: 90%;
    height: 50px;
    top: 10px;
    left: 50%;
    transform: translate(-50%, -50%); 
    background-image: url('../img/ring.png');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    z-index: 10;
    pointer-events: none;
    opacity: inherit;
    transition: inherit;
}
/* ドットナビゲーションの位置調整 */
.slick-dots {
    bottom: -60px; /* スライダーの下、mvのpadding内で見える位置に */
    position: absolute; /* mv領域内に配置 */
    left: 0;
    width: 100%;
}
.slick-dots li button:before {
    color: var(--color-text); /* ドットの色を変更 */
    opacity: 0.4;
    font-size: 12px; /* ドットのサイズ */
    transition: opacity 0.3s ease;
}
.slick-dots li.slick-active button:before {
    opacity: 1;
}
/* 矢印ナビゲーションの調整 */
.slick-prev,
.slick-next {
    width: 45px; /* 少し大きく */
    height: 45px;
    z-index: 10; /* ドットより手前 */
    background-color: rgba(43, 35, 23, 0.5);
    border-radius: 50%;
    transition: background-color 0.3s ease;
}
.slick-prev:hover,
.slick-next:hover {
    background-color: rgba(43, 35, 23, 0.8);
}
.slick-prev {
    left: 40px; /* 位置調整 */
}
.slick-next {
    right: 40px; /* 位置調整 */
}
.slick-prev:before,
.slick-next:before {
    font-size: 22px; /* 矢印サイズ */
    color: white;
    opacity: 0.8;
}
/* スクリーンリーダー用テキストを非表示に */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}
/* 矢印ナビゲーションの調整 */
.slick-prev,
.slick-next {
    width: 45px;
    height: 45px;
    z-index: 10;
    background-color: rgba(43, 35, 23, 0.5); /* 半透明の背景 */
    border-radius: 50%; /* 円形に */
    transition: background-color 0.3s ease;
    display: flex; /* アイコンを中央寄せにするためにflexを使用 */
    justify-content: center;
    align-items: center;
    padding: 0; /* デフォルトのpaddingをリセット */
    border: none; /* デフォルトのborderをリセット */
    color: white; /* アイコンの色 */
}
.slick-prev:hover,
.slick-next:hover {
    background-color: rgba(43, 35, 23, 0.8);
}
.slick-prev {
    left: 40px;
}
.slick-next {
    right: 40px;
}
.slick-prev:before,
.slick-next:before {
    content: '' !important;
}
.slick-prev i,
.slick-next i {
    font-size: 20px;
    line-height: 1;
}
.slick-disabled {
    opacity: 0.3;
    cursor: default;
}
.slick-disabled:hover {
    background-color: rgba(43, 35, 23, 0.5);
}
.slick-prev:hover, .slick-prev:focus, .slick-next:hover, .slick-next:focus {
    color: white;
}

/* セクション01 */
.sec-01 {
    padding-bottom: var(--space-section);
    padding-top: var(--space-section);
    background: url(../img/bg1.png);
    background-repeat: no-repeat;
    background-position:70% center ;
    background-size: contain;
    position: relative;

}
.wave-png::after{
    content: "";
    display: block;
    background-image: url(../img/nami2.png);
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 200px;
    position: absolute;
    left: 0;
    bottom: 0;
    
}

/* セクション02 */
.sec-02 {
    background-color: var(--color-sub);
    position: relative;

}
.copy {
    margin-bottom: 40px;
}

/* バナー */
.sec-bn {
    padding-bottom: var(--space-section);
}
.banner1 {
    background-image: url(../img/bn1.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 45px 0;
}
.bn1-main {
    padding-left: 5%;
}
.bn1-sub {
    padding-left: 20%;
}
.banner2 {
    background-image: url(../img/bn2.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 45px 0;
}
.bn2-sub {
    padding-left: 70%;
}
.bn2-main {
    padding-left: 73%;
}

/* セクション03 */
.sec-03 {
    padding-bottom: 15%;
    position: relative;
}

/* セクション04 */
.sec-04 {
    background-color: var(--color-sub);
    padding-bottom: var(--space-section);
    margin-bottom: var(--space-section);
}
.accordion-item {
    border-bottom: 1px solid #ccc;
}
.question {
        cursor: pointer;
    padding: 1rem;
    background: var(--color-sub);
    font-weight: bold;
    position: relative;
}

.question::after {
    content: '+';
    position: absolute;
    right: 1rem;
    transition: transform 0.3s;
}

.question.active::after {
    content: '-';
}

.answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: #fff;
    padding: 0 1rem;
}

.answer.open {
    max-height: 300px;
    padding: 1rem;
}

.hukidashi {
    padding: 5% 0 0 5%;
    position: relative;

}

.hukidashi-p {
    top: 180px;
    left: 95px;
    position: absolute;

}

/* セクション05 */

.sec-05 {
    margin-bottom: var(--space-section);
    background: url(../img/bg1.png);
    background-repeat: no-repeat;
    background-position:30% center ;
    background-size: contain;
    position: relative;

}

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

.form {
    max-width: 500px;
    margin: 50px auto;
    background: #f9f6ef;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    color: #333;
}

.form p {
    margin: 20px 0 6px;
    font-size: 15px;
    color: #444;
}

.form input[type="text"],
.form input[type="email"],
.form textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #ccc;
    border-radius: 10px;
    font-size: 14px;
    background-color: #fff;
    color: var(--color-text);
    transition: border-color 0.3s ease;
}

.form input[type="text"]:focus,
.form input[type="email"]:focus,
.form textarea:focus {
    border-color: #c9decf;
    outline: none;
    background-color: #f9f6ef;
}

.form textarea {
    height: 120px;
    resize: vertical;
}
.form input[type="submit"] {
    margin-top: 25px;
    width: 100%;
    padding: 12px;
    background-color: #c9decf; /* ミントグリーン */
    border: none;
    color: var(--color-text);
    font-size: 15px;
    font-weight: bold;
    border-radius: 20px;
    cursor: pointer;
    transition: background-color 0.3s;
    text-align: center;
}
.form input[type="submit"]:hover {
    background-color: #b5cdbd;
}
/* -----------------------------
フッター
----------------------------- */
.image-footer {
    position: relative;
    background-image: url(../img/ft.png); /* ←ここに画像パス */
    background-size: cover;
    background-position: top;
    color: #333;
    padding: 200px 20px 20px 20px;
    text-align: center;

}
.image-footer h1 {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 20px;
    letter-spacing: 0.05em;
}
.image-footer p {
    margin: 6px 0;
    font-size: 15px;
}
.image-footer small {
    display: block;
    margin-top: 200px;
    font-size: 13px;
    color: #444;
}
.image-footer a {
    color: #333;
    text-decoration: none;
    border-bottom: 1px dotted #333;
}
.image-footer a:hover {
    opacity: 0.7;
}

/* -------------------------
ご利用案内
------------------------- */

.top-img1 {
    background-image: url(../img/hdimg1.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: left top;
}


.info-01 {
    position: relative;
    padding: 5% 0 10% 0;


}
.info-01img {
    top: 50px;
    width: 150px;
    position: absolute;
}


.info-02 {
    background-color: var(--color-sub);
    padding-bottom: var(--space-section);


}
.price {
    display: flex;
    justify-content: center;
    margin-bottom: 70px;
}
.price2 {
    display: flex;
    justify-content: center;
}
.price-card {
    background-color: var(--color-main);
    width: 350px;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    margin: 36px;
}
.price-card-f {
    background-color: var(--color-main);
    width: 660px;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    margin: 36px;
}
.duration {
    background-color: white;
    border-radius: 12px;
    padding: 10px 0;
    font-size: 20px;
    margin-bottom: 20px;
}

.price-text {
    font-size: 96px;
    color: var(--color-text);
}

.price span {
    font-size: 40px;
    font-weight: normal;
}
.family-p {
    font-size: 64px;
    color: var(--color-text);
}

.info-03 {
    position: relative;
    text-align: center;
    padding: 60px 20px;
    padding-bottom: 8%;

}

  /* 背景イラスト（水色にじみ） */
.info-bg {
    position: absolute;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 300px;
    background: url(../img/bg1.png) no-repeat center;
    background-size: contain;
    opacity: 0.3;
    z-index: 0;
}

  /* タイトル */
.info-title {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 40px;
    z-index: 1;
    position: relative;
}

  /* キャラクター左右 */
.info-chara {
    position: absolute;
    top: 30px;
    width: 150px;
}

.info-chara.left {
    left: 20px;
    top: 500px
}

.info-chara.right {
    right: 20px;
}

  /* 間取り図（中央） */
.info-map {
    position: relative;
    z-index: 1;
    max-width: 600px;
    width: 90%;
    margin: 0 auto 40px auto;
}

  /* テキスト説明 */
.info-text {
    max-width: 700px;
    margin: 0 auto;
    text-align: left;
    z-index: 1;
    position: relative;
}

.info-text h2 {
    font-size: 24px;
    margin-bottom: 15px;
    text-align: center;
}

.info-text ul {
    padding-left: 1em;
}

.info-text li {
    margin-bottom: 8px;
    line-height: 1.6;
    font-size: 16px;
}


.info-04 {
    background-color: var(--color-sub);
    padding-bottom: var(--space-section);
}

.hukidashi-p2 {
    top: 150px;
    left: 140px;
    position: absolute;

}


/* ---------------------------------
ギャラリー
--------------------------------- */
.gal-01 {
    padding: var(--space-section) 0 10% 0;
    position: relative;
}

.top-img2 {
    background-image: url(../img/hdimg2.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: left top;
}
.grid {
    display: grid;
    gap: 1rem 1.5rem;
    grid-template-columns: repeat(3,1fr);

}
.item-gal img {
    aspect-ratio: 1/1;
    object-fit: cover;
}
.item-gal-big {
    grid-column: 1/3;
    grid-row: 1/3;
}

.item-gal-big img {
    height: 100%;
    width: 100%;
}
.gal-02 {
    padding: var(--space-section) 0 10% 0;
    background-color: var(--color-sub);
}

.gal-p {
    padding-bottom: 10px;
    text-align: center;
}

/* -------------------------
アクセス
------------------------- */

.top-img3 {
    background-image: url(../img/hdimg3.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: left top;
}
.access-01 {
    padding: var(--space-section) 0 10% 0;
    position: relative;
}

.iframe {
    width: 100%;
}

.location-map {
    position: relative;
    width: 100%;
    padding-bottom: 75%; /* アスペクト比調整（高さ） */
    height: 0;
    overflow: hidden;
    max-width: 754px; /* 上限は維持したい場合 */
    margin: 0 auto;
}

.location-map iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}
.access-02 {
    padding: var(--space-section) 0 10% 0;
    background-color: var(--color-sub);
}
.access-info
{
    width: 100%;
    max-width: 700px;
    margin: auto;
    padding: 0 1.5rem;
    border-spacing: 0;
}
.access-info th,
.access-info td {
    border-bottom: 1px solid var(--color-gray);
}
.access-info th {
    text-align: left;
    padding: 1rem;
}
.access-info td {
    padding: 1rem 0;
}
/* ---------------------
モバイル版
--------------------- */
@media (max-width: 600px){

    .logo img {
        max-width: 30%;
    }

    .nav-list {
        display: flex;
        flex-direction: column;
        gap: 15px;
        white-space: nowrap; /* ← 文字の折り返しを防止 */
    }
        
    .nav-list li {
        writing-mode: horizontal-tb; /* ← 念のため縦書きを防止 */
    }

    .nav-list {
        width: 800px;
    }

    .nav-link {
        font-size: 16px;
        display: block;
    width: 100%;
        }

    .sec1-ttl {
        font-size: 24px;
    }
    .slider-item::before {
        width:90%;
        top: 5px;
    }

    .sec-01 {
        padding-bottom: 30%;
    }

    .banner1 {
        padding: 20px 0;
    }

    .bn1-main {
        padding-left: 5%;
        font-size: 20px;
    }
    .bn1-sub {
        padding-left: 20%;
        font-size: 16px;
    }

    .banner2 {
        padding: 20px 0;
    }
    .bn2-sub {
        padding-left: 60%;
        font-size: 16px;
        
    }
    .bn2-main {
        padding-left: 70%;
        font-size: 20px;
    }

    .sec-03 {
        padding-bottom: 30%;
    }

    .hukidashi-p {
        top: 135px;
        left: 50px;
    }
    .wave-png::after{
        height: 100px;
}

.info-01img {
    top: 50px;
    width: 70px;
    position: absolute;
}

.price-text {

    
    font-size: 60px;
    color: var(--color-text);
}

.family-p {
    font-size: 30px;
    color: var(--color-text);
}

.info-chara {
    position: absolute;
    top: 0px;
    width: 50px;
}
.info-01 {
    position: relative;
    padding: 5% 0 20% 0;
}

.info-chara.left {
    left: 20px;
    top: 2px
}

.hukidashi-p2 {
    top: 110px;
    left: 100px;
    position: absolute;
}

.gal-01 {
    padding: var(--space-section) 0 30% 0;
    position: relative;
}
/* ハンバーガーボタン */
.menu-toggle {
    display: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 20%;
    z-index: 100;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #333;
    border-radius: 2px;
}


  /* ▼ モバイル対応 */
@media (max-width: 600px) {
    .hamburger {
    display: flex;
    }

    .nav {
    position: absolute;
    top: 64px;
    right: 24px;
    background-color: #f9f6ef;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    width: 200px;
    display: none;
    flex-direction: column;
    padding: 20px;
    z-index: 100;
    }

    .nav ul {
    flex-direction: column;
    gap: 15px;
    }

    /* メニューを表示する条件 */
    .menu-toggle:checked ~ .nav {
    display: flex;
    }
}
.price {
    display: flex;
    flex-direction: column;
    margin-bottom: 70px;
}
.price-card {
    width: 270px;
}
.sec-ttl {
    font-size: 24px;
}

}