@charset "utf-8";
/* ====================================
common
=====================================*/

/* * { outline: 2px solid red; } */

:root {
    --primary-white: #FDFDFD;
    --primary-whiteLow: #F2EADD; /* メイン背景色 */
    --primary-black: #222222;
    --primary-beige: #DACCB4; /* サブ背景色　 */
    --primary-red: #9B4A30;
    --primary-green: #2C4B3D;
    --primary-yellow: #A6793D;
    --primary-purple: #5E3A58;
}

html {
    font-size: 62.5%;
}

body {
    font-family:
        YakuHanJP, 
        "Noto Sans JP",
        "poppins", sans-serif;
    color: var(--primary-black, 222222);
    line-height: 1;
    margin: 0;
    padding: 0;
}

img {
    max-width: 100%;
    height: auto;
}

.topic_sub, .topic_sub_w {
    font-family: "poppins", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.topic {
    text-align: center;
}

.topic_sub {
    color: var(--primary-red);
    font-family: Poppins;
    font-size: 1.2rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.topic_main {
    color: var(--primary-black);
    text-align: center;
    font-family: "Noto Sans JP";
    font-size: 2rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.main_btn {
    margin-top: 56px;   
    display: flex;
    justify-content: center;
}

.main_btn a {
    position: relative;
    color: var(--primary-white);
    background-color: var(--primary-red);
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.84px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 184px;
    height: 48px;
    border: 1px solid var(--primary-red);
    border-radius: 50px;
    padding: 0 12px 0px 36px;
    text-decoration: none;
}
  
.main_btn a::after {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    background-image: url(../images/arrow-w.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    margin: 2px 0 0 18px;
    transition: 0.4s;
}

.main_btn a:hover::after {
    background-image: url(../images/arrow-r.png);
}

.main_btn a:hover {
    background-color: var(--primary-white);
    color: var(--primary-red);
}

/* PC */
@media screen and (min-width: 769px) {

    .topic {
        text-align: center;
    }

    .topic_sub {
        color: var(--primary-red);
        font-family: Poppins;
        font-size: 1.8rem;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
    }

    .topic_main {
        color: var(--primary-black);
        text-align: center;
        font-family: "Noto Sans JP";
        font-size: 3.6rem;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
    }


    .main_btn {
        margin-top: 100px;   
        display: flex;
        justify-content: center;
    }

    .main_btn a {
        position: relative;
        color: var(--primary-white);
        background-color: var(--primary-red);
        font-size: 1.6rem;
        font-weight: 500;
        line-height: 1;
        letter-spacing: 0.84px;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 280px;
        height: 64px;
        border: 1px solid var(--primary-red);
        border-radius: 50px;
        padding: 0 12px 0px 36px;
        text-decoration: none;
    }
    
    .main_btn a::after {
        content: '';
        display: inline-block;
        width: 24px;
        height: 24px;
        background-image: url(../images/arrow-w.png);
        background-repeat: no-repeat;
        background-size: contain;
        background-position: center;
        margin: 2px 0 0 24px;
        transition: 0.4s;
    }

    .main_btn a:hover::after {
        background-image: url(../images/arrow-r.png);
    }

    .main_btn a:hover {
        background-color: var(--primary-white);
        color: var(--primary-red);
    }

}





/* ==============================
header
============================== */

.header {
    padding: 10px 0;
    /* background-image: url(../images/top.webp); */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative; /* 子要素のabsolute用 */
    background-color: var(--primary-whiteLow);
}

/* 左上のロゴ（今まで通り） */
.header_logo_left {
    margin: 0;
    padding: 4px 0 4px 4.2%; 
}
.header_logo_left img {
    width: 56px;
    height: auto;
}

/* 背景中央に重ねるロゴ */
.header_logo_center {
    position: absolute;
    top: 50%;   /* 上から中央 */
    left: 50%;  /* 左から中央 */
    transform: translate(-50%, -50%); /* 中心に補正 */
    width: 150px;   /* サイズ調整 */
    height: auto;
    animation: floatUp 1.5s ease-out forwards;
    opacity: 0; /* 最初は透明 */
}

/* アニメーション定義 */
@keyframes floatUp {
  0% {
    transform: translate(-50%, -60%); /* 少し下にスタート */
    opacity: 0;
  }
  100% {
    transform: translate(-50%, -50%); /* 中央に到達 */
    opacity: 1;
  }
}

.header_btn_menu {
    display: flex;
    position: fixed;   /* ←親ごと固定する */
    right: 4.2%;       /* 位置指定はこちらに書く */ 
    top: 24px;
    align-items: center; /* 縦位置を揃える */
    z-index: 2;
}


.header_btn_menu a {
    color: var(--primary-white);
    background-color: var(--primary-red);
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.056rem;
    padding: 12px 10px 14px 12px;
    text-align: center;
    width: 120px;
    height: 40px;
    border-radius: 50px;
    border: 1px solid var(--primary-red);
    text-decoration: none;
    margin-right: 8px;
}

.header_btn {
    width: 40px;
    height: 40px;
}


/* .nav初期表示 */

.nav {
    background-color: #9B4A30;
    background-repeat: no-repeat;
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 100;
    transform: translateX(-100%);
    transition: transform 0.4s;
}

.nav_header {
    padding: 16px 4.2%;
    display: flex;
    justify-content: end;
}

.nav_btn {
    width: 40px;
    height: 40px;
    position: fixed;
}

.nav_list {
    margin-top: 100px;
    padding-left: 0;
}

.nav_item {
    color: var(--primary-white);
    text-align: center;
    font-family: "Noto Sans JP";
    font-size: 1.4rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-top: 28px;
    list-style: none;
    text-decoration: none;
}

.nav_item a {
    color: var(--primary-white);
    font-family: "Noto Sans JP";
    font-size: 1.4rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-decoration: none;
}

.nav_group_list {
    margin-top: 40px;
    padding-left: 0;
}

.nav_group_item {
    list-style: none;
    color: var(--primary-white);
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.056rem;
    padding: 12px 0px;
    text-align: center;
    width: 250px;
    /* height: 20px; */
    margin: 0 auto;
    margin-top: 20px;
    border-radius: 50px;
    border: 1px solid var(--primary-white);
    text-decoration: none;
}

.nav_group_item:hover {
    background-color: var(--primary-white);
}

.nav_group_item a {
    color: var(--primary-white);
    font-family: "Noto Sans JP";
    font-size: 1.4rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-decoration: none;
}

.nav_group_item a:hover {
    color: var(--primary-red);
}

.nav.active {
    transform: translateX(0);
}




/* PC */
@media screen and (min-width: 769px) {

    .header {
        padding: 24px 3.1%;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        position: relative; /* 子要素のabsolute用 */
    }

    /* 左上のロゴ（今まで通り） */
    .header_logo_left {
        margin: 0;
        padding-left: 0;
    }
    .header_logo_left img {
        width: 80px;
        height: auto;
    }

    .header_btn_menu {
        display: flex;
        position: absolute;   /* ←親ごと固定する */
        right: 4.2%;       /* 位置指定はこちらに書く */ 
        top: 40px;
        align-items: center; /* 縦位置を揃える */
        z-index: 2;
    }


    .header_btn_menu a {
        color: var(--primary-white);
        background-color: var(--primary-red);
        font-size: 1.6rem;
        font-weight: 700;
        line-height: 1;
        letter-spacing: 0.056rem;
        padding: 18px 32px 19px 32px;
        text-align: center;
        width: 200px;
        height: 56px;
        border-radius: 50px;
        border: 1px solid var(--primary-red);
        text-decoration: none;
        margin-right: 8px;
    }

    .header_btn {
        display: none;
    }


    /* .nav初期表示 */

    .nav {
        background: transparent;
        width: auto;
        height: auto;
        padding: 0;
        position: static;
        transform: translateX(0);
    }

    .nav_header {
        display: none;
    }

    .nav_btn {
        display: none;
    }

    .nav_list {
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 28px;
        position: fixed;
        top: -86px;
        right: 20%;
        /* left: 10%; */
        z-index: 2;
    }

    .nav_item {
        color: var(--primary-black);
        text-align: center;
        font-family: "Noto Sans JP";
        font-size: 1.6rem;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
        margin-top: 28px;
        list-style: none;
        text-decoration: none;
    }

    .nav_item a {
        color: var(--primary-black);
        font-family: "Noto Sans JP";
        font-size: 1.6rem;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
        text-decoration: none;
    }

    .nav_group_list {
        display: none;
    }

    .nav_group_item {
        list-style: none;
        color: var(--primary-black);
        font-size: 1.6rem;
        font-weight: 700;
        line-height: 1;
        letter-spacing: 0.056rem;
        padding: 18px 0px;
        text-align: center;
        width: 300px;
        /* height: 20px; */
        margin: 0 auto;
        margin-top: 20px;
        border-radius: 50px;
        border: 1px solid var(--primary-white);
        text-decoration: none;
    }

    .nav_group_item:hover {
        background-color: var(--primary-white);
    }

    .nav_group_item a {
        color: var(--primary-white);
        font-family: "Noto Sans JP";
        font-size: 1.6rem;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
        text-decoration: none;
    }

    .nav_group_item a:hover {
        color: var(--primary-red);
    }

}







/* ==============================
トップ画面
================================*/

.section--about--top {
    background-image: url(../images/about_top_b.webp);
    width: 100%;
    height: 500px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.about_topic {
    text-align: center;
    position: absolute;
    top:50%;
    left: 50%;
    -ms-transform: translate(-50%,-50%);/*ベンダープレフィックス*/
    -webkit-transform: translate(-50%,-50%);/*ベンダープレフィックス*/
    transform: translate(-50%,-50%);/*センター寄せの修正*/
}

.about_topic_sub {
    color: var(--primary-white);
    font-family: Poppins;
    font-size: 1.2rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.about_topic_main {
    color: var(--primary-white);
    text-align: center;
    font-family: "Noto Sans JP";
    font-size: 2rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}




/* PC */
@media screen and (min-width: 769px) {

    .section--about--top {
        background-image: url(../images/about_top_b.webp);
        width: 100%;
        height: 700px;
        background-size: cover;
        background-position: center;
        position: relative;
    }

    .about_topic {
        text-align: center;
        position: absolute;
        top:50%;
        left: 50%;
        -ms-transform: translate(-50%,-50%);/*ベンダープレフィックス*/
        -webkit-transform: translate(-50%,-50%);/*ベンダープレフィックス*/
        transform: translate(-50%,-50%);/*センター寄せの修正*/
    }

    .about_topic_sub {
        color: var(--primary-white);
        font-family: Poppins;
        font-size: 1.8rem;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
    }

    .about_topic_main {
        color: var(--primary-white);
        text-align: center;
        font-family: "Noto Sans JP";
        font-size: 3.6rem;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
    }


}











/* =======================
本文
=========================*/

.section--about--txt {
    padding: 80px 4.2%;
    background-color: var(--primary-whiteLow);
}

.about_list {
    text-align: start;
}

.about_txt01 {
    color: var(--primary-black);
    font-feature-settings: 'halt' on;
    font-family: "Noto Sans JP";
    font-size: 1.4rem;
    font-style: normal;
    font-weight: 500;
    line-height: 210%; /* 29.4px */
    letter-spacing: 0.84px;
}

.about_txt02 {
    color: var(--primary-black);
    font-feature-settings: 'halt' on;
    font-family: "Noto Sans JP";
    font-size: 1.4rem;
    font-style: normal;
    font-weight: 500;
    line-height: 210%; /* 29.4px */
    letter-spacing: 0.84px;
    margin-top: 24px;
}

.about_txt03 {
    color: var(--primary-black);
    font-feature-settings: 'halt' on;
    font-family: "Noto Sans JP";
    font-size: 1.4rem;
    font-style: normal;
    font-weight: 500;
    line-height: 210%; /* 29.4px */
    letter-spacing: 0.84px;
}

.about_txt04 {
    color: var(--primary-black);
    font-feature-settings: 'halt' on;
    font-family: "Noto Sans JP";
    font-size: 1.4rem;
    font-style: normal;
    font-weight: 500;
    line-height: 210%; /* 29.4px */
    letter-spacing: 0.84px;
    margin-top: 40px;
}

.about_txt05 {
    color: var(--primary-black);
    font-feature-settings: 'halt' on;
    font-family: "Noto Sans JP";
    font-size: 1.4rem;
    font-style: normal;
    font-weight: 500;
    line-height: 210%; /* 29.4px */
    letter-spacing: 0.84px;
    margin-top: 40px;
}

.abouts_img img {
    align-self: stretch;
    border-radius: 10px;
    margin-top: 40px;
    margin-bottom: 40px;
}

.about_contents {
    background-color: var(--primary-white);
    align-self: stretch;
    border-radius: 10px;
    padding: 40px 6.9%;
    margin-top: 40px;
}

.about_lists {
    padding: 40px 0;
    column-count: 2;
}

.about_item {
    color: var(--primary-black);
    font-family: "Noto Sans JP";
    font-size: 1.2rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    background-color: var(--primary-whiteLow);
    align-self: stretch;
    border-radius: 4px;
    padding: 10px 0%;
    text-align: center;
    margin-bottom: 8px;
}

.about_title {
    background-color: var(--primary-white);
    align-self: stretch;
    border-radius: 10px;
    padding: 40px 6.9%;
    margin-top: 40px;
}

.about_title h3 {
    color: var(--primary-red);
    font-feature-settings: 'halt' on;
    font-family: "Noto Sans JP";
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 700;
    line-height: 200%; /* 32px */
    margin-bottom: 40px;
}



/* PC */
@media screen and (min-width: 769px) {

    .section--about--txt {
        padding: 100px 19%;
        background-color: var(--primary-whiteLow);
    }

    .about_list {
        text-align: start;
    }

    .about_group01 {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 36px;
        margin-bottom: 40px;
    }

    .about_txt01 {
        color: var(--primary-black);
        font-feature-settings: 'halt' on;
        font-family: "Noto Sans JP";
        font-size: 1.6rem;
        font-style: normal;
        font-weight: 500;
        line-height: 210%; /* 29.4px */
        letter-spacing: 0.96px;
    }

    .about_txt02 {
        color: var(--primary-black);
        font-feature-settings: 'halt' on;
        font-family: "Noto Sans JP";
        font-size: 1.6rem;
        font-style: normal;
        font-weight: 500;
        line-height: 210%; /* 29.4px */
        letter-spacing: 0.96px;
        margin-top: 24px;
    }

    .about_txt03 {
        color: var(--primary-black);
        font-feature-settings: 'halt' on;
        font-family: "Noto Sans JP";
        font-size: 1.6rem;
        font-style: normal;
        font-weight: 500;
        line-height: 210%; /* 29.4px */
        letter-spacing: 0.96px;
    }

    .about_txt04 {
        color: var(--primary-black);
        font-feature-settings: 'halt' on;
        font-family: "Noto Sans JP";
        font-size: 1.6rem;
        font-style: normal;
        font-weight: 500;
        line-height: 210%; /* 29.4px */
        letter-spacing: 0.96px;
        margin-top: 40px;
    }

    .about_txt05 {
        color: var(--primary-black);
        font-feature-settings: 'halt' on;
        font-family: "Noto Sans JP";
        font-size: 1.6rem;
        font-style: normal;
        font-weight: 500;
        line-height: 210%; /* 29.4px */
        letter-spacing: 0.96px;
        margin-top: 80px;
        margin-bottom: 40px;
    }

    .abouts_img img {
        align-self: stretch;
        border-radius: 10px;
        margin-top: 40px;
        margin-bottom: 40px;
    }

    .about_contents {
        background-color: var(--primary-white);
        align-self: stretch;
        border-radius: 10px;
        padding: 56px 6.9%;
        margin-top: 80px;
    }

    .about_lists {
        padding: 40px 0;
        column-count: 2;
        gap: 16px;
    }

    .about_item {
        color: var(--primary-black);
        font-family: "Noto Sans JP";
        font-size: 1.6rem;
        font-style: normal;
        font-weight: 500;
        line-height: normal;
        background-color: var(--primary-whiteLow);
        align-self: stretch;
        border-radius: 4px;
        padding: 16px 0%;
        text-align: center;
        margin-bottom: 16px;
    }

    .about_title {
        background-color: var(--primary-white);
        align-self: stretch;
        border-radius: 10px;
        padding: 56px 6.9%;
        margin-top: 40px;
    }

    .about_title h3 {
        color: var(--primary-red);
        font-feature-settings: 'halt' on;
        font-family: "Noto Sans JP";
        font-size: 2.4rem;
        font-style: normal;
        font-weight: 700;
        line-height: 200%; /* 32px */
        margin-bottom: 40px;
    }


}













/* ==========================
ご予約について
============================*/

.section--guide {
    background-color: var(--primary-white);
    padding: 100px 4.2%;
}

.guide_list {
    list-style: none;
    padding: 32px 6.9%;
    background-color: var(--primary-whiteLow);
    border-radius: 10px;
    margin: 80px 0; /* 上に余白を追加してバッジがはみ出ても大丈夫に */
    position: relative; /* ← 子要素の絶対配置の基準になる */
    text-align: center;
}

.guide_item {
    background-color: var(--primary-yellow);
    color: var(--primary-white);
    font-weight: bold;
    border-radius: 50%;
    width: 88px;
    height: 88px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    font-size: 1.6rem;
    line-height: 1.4;
    position: absolute;  /* ← これを追加 */
    top: -40px;          /* ← カードの上にはみ出させる */
    left: 50%;
    transform: translateX(-50%);
    font-family: Poppins;
    font-style: normal;
    font-weight: 500;
    padding-top: 6px;
}

.guide_list p {
    font-feature-settings: 'halt' on;
    font-family: "Noto Sans JP";
    font-size: 1.4rem;
    font-style: normal;
    font-weight: 500;
    line-height: 200%; /* 28px */
    letter-spacing: 0.56px;
    color: var(--primary-black);
    margin-top: 40px;
    margin-bottom: 40px;
    text-align: start;
}

.guide_btn_LINE {
    display: block;
    width: 180px;
    background-color: var(--primary-white);
    color: var(--primary-black);
    border: 1px solid var(--primary-white);
    border-radius: 9999px;
    padding: 6px 0 4px 0;
    margin: 0 auto;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
    position: relative;
    color: var(--primary-black);
    font-family: Poppins;
    font-size: 1.4rem;
    font-style: normal;
    font-weight: 500;
    line-height: 200%; /* 28px */
    letter-spacing: 0.56px;
}

.guide_btn_LINE::after {
    content: "↗";
    font-size: 14px;
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
}

.guide_btn_Instagram {
    display: block;
    width: 180px;
    background-color: var(--primary-white);
    color: var(--primary-black);
    border: 1px solid var(--primary-white);
    border-radius: 9999px;
    padding: 6px 0 4px 0;
    margin: 0 auto;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
    position: relative;
    color: var(--primary-black);
    font-family: Poppins;
    font-size: 1.4rem;
    font-style: normal;
    font-weight: 500;
    line-height: 200%; /* 28px */
    letter-spacing: 0.56px;
    margin-top: 16px;
}

.guide_btn_Instagram::after {
    content: "↗";
    font-size: 14px;
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
}



/* PC */
@media screen and (min-width: 769px) {

    .section--guide {
    background-color: var(--primary-white);
    padding: 100px 11.1%;
    }

    .guide_group {
        display: flex;
        justify-content: space-between;
        gap: 20px;
        margin-top: 32px;
    }
    
    /* .guide_contents {
        width: 360px;
    } */

    .guide_list {
        list-style: none;
        padding: 32px 6.9%;
        background-color: var(--primary-whiteLow);
        border-radius: 20px;
        margin: 100px 0 0 0; /* 上に余白を追加してバッジがはみ出ても大丈夫に */
        position: relative; /* ← 子要素の絶対配置の基準になる */
        text-align: center;
        width: 360px;
        height: 440px;
    }

    .guide_item {
        background-color: var(--primary-yellow);
        color: var(--primary-white);
        font-weight: bold;
        border-radius: 50%;
        width: 120px;
        height: 120px;
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 0 auto;
        font-size: 2rem;
        line-height: 1.5;
        position: absolute;  /* ← これを追加 */
        top: -60px;          /* ← カードの上にはみ出させる */
        left: 50%;
        transform: translateX(-50%);
        font-family: Poppins;
        font-style: normal;
        font-weight: 500;
        padding-top: 6px;
    }

    .guide_list p {
        font-feature-settings: 'halt' on;
        font-family: "Noto Sans JP";
        font-size: 1.6rem;
        font-style: normal;
        font-weight: 500;
        line-height: 200%; /* 28px */
        letter-spacing: 0.64px;
        color: var(--primary-black);
        margin-top: 60px;
        margin-bottom: 40px;
        text-align: start;
    }

    .guide_btn_LINE {
        display: block;
        width: 227px;
        background-color: var(--primary-white);
        color: var(--primary-black);
        border: 1px solid var(--primary-white);
        border-radius: 9999px;
        padding: 6px 0 4px 0;
        margin: 0 auto;
        text-decoration: none;
        font-weight: bold;
        transition: 0.3s;
        position: relative;
        color: var(--primary-black);
        font-family: Poppins;
        font-size: 1.6rem;
        font-style: normal;
        font-weight: 500;
        line-height: 200%; /* 28px */
        letter-spacing: 0.64px;
    }

    .guide_btn_LINE::after {
        content: "↗";
        font-size: 16px;
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
    }

    .guide_btn_Instagram {
        display: block;
        width: 227px;
        background-color: var(--primary-white);
        color: var(--primary-black);
        border: 1px solid var(--primary-white);
        border-radius: 9999px;
        padding: 6px 0 4px 0;
        margin: 0 auto;
        text-decoration: none;
        font-weight: bold;
        transition: 0.3s;
        position: relative;
        color: var(--primary-black);
        font-family: Poppins;
        font-size: 1.6rem;
        font-style: normal;
        font-weight: 500;
        line-height: 200%; /* 28px */
        letter-spacing: 0.64px;
        margin-top: 16px;
    }

    .guide_btn_Instagram::after {
        content: "↗";
        font-size: 16px;
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
    }


}














/* ========================
写真
==========================*/

.shashin {
    height: 80vh;
    object-fit: cover;
}



/* PC */
@media screen and (min-width: 769px) {

    .shashin {
        width: 100%;
        height: 50vh;
        object-fit: cover;
    }

}













/* =======================
よくあるご質問
=========================*/

.section--faq {
    padding: 80px 4.2%;
    background-color: var(--primary-whiteLow);
}

.faq_list {
    margin-top: 72px;
}

.qa-1 {
    /* max-width: 500px; */
    margin-bottom: 16px;
    padding: 4px 1.2%;
    background-color: var(--primary-white);
    align-self: stretch;
    border-radius: 10px;
}

.qa-1 summary {
    color: var(--primary-black);
    font-family: "Noto Sans JP";
    font-size: 1.4rem;
    font-style: normal;
    font-weight: 500;
    line-height: 210%; /* 25.2px */
    letter-spacing: 0.48px;

    display: grid;
    grid-template-columns: 1fr auto;
    align-items: start;
    position: relative;
    padding: 1em 1.4em 1em 3em;
    cursor: pointer;
}

.qa-1 summary::before {
    position: absolute;
    left: 1em;
    top: 1.1em;
    font-weight: 700;
    font-size: 1.4rem;
    font-family: Poppins;
}

.qa-1 summary::before {
    color: var(--primary-red);
    content: "Q";
}

.qa-1 summary::after {
    transform: translateY(-25%) rotate(45deg);
    width: 5.4px;
    height: 5.4px;
    margin-left: 12px;
    border-bottom: 2px solid var(--primary-black);
    border-right: 2px solid var(--primary-black);
    content: '';
    transition: transform .5s;
    margin-top: 12px;
}

.qa-1[open] summary::after {
    transform: rotate(225deg);
}

.qa-1 p {
    position: relative;
    transform: translateY(-10px);
    opacity: 0;
    margin: 0;
    padding: .3em 3em 1.4em;
    transition: transform .5s, opacity .5s;

    color: var(--primary-black);
    font-family: "Noto Sans JP";
    font-size: 1.4rem;
    font-style: normal;
    font-weight: 500;
    line-height: 210%; /* 25.2px */
    letter-spacing: 0.48px;
}

.qa-1[open] p {
    transform: none;
    opacity: 1;
}

.qa-1 p::before {
    position: absolute;
    left: 1em;
    font-weight: 700;
    font-size: 1.4rem;
    font-family: Poppins;
    margin-top: 8px;
    color: var(--primary-red);
    line-height: 1.2;
    content: "A";
}



/* PC */
@media screen and (min-width: 769px) {

    .section--faq {
        padding: 100px 11.1%;
        background-color: var(--primary-whiteLow);
    }

    .faq_list {
        margin-top: 100px;
    }

    .qa-1 {
        /* max-width: 500px; */
        margin-bottom: 24px;
        padding: 20px 4.2%;
        background-color: var(--primary-white);
        align-self: stretch;
        border-radius: 20px;
    }

    .qa-1 summary {
        color: var(--primary-black);
        font-family: "Noto Sans JP";
        font-size: 1.6rem;
        font-style: normal;
        font-weight: 500;
        line-height: 210%; /* 25.2px */
        letter-spacing: 0.64px;

        display: grid;
        grid-template-columns: 1fr auto;
        align-items: start;
        position: relative;
        padding: 1em 1.4em 1em 3em;
        cursor: pointer;
    }

    .qa-1 summary::before {
        position: absolute;
        left: 1em;
        top: 1.1em;
        font-weight: 700;
        font-size: 1.6rem;
        font-family: Poppins;
    }

    .qa-1 summary::before {
        color: var(--primary-red);
        content: "Q";
    }

    .qa-1 summary::after {
        transform: translateY(-25%) rotate(45deg);
        width: 8px;
        height: 8px;
        margin-left: 22px;
        border-bottom: 2px solid var(--primary-black);
        border-right: 2px solid var(--primary-black);
        content: '';
        transition: transform .5s;
        margin-top: 12px;
    }

    .qa-1[open] summary::after {
        transform: rotate(225deg);
    }

    .qa-1 p {
        position: relative;
        transform: translateY(-10px);
        opacity: 0;
        margin: 0;
        padding: .3em 3em 1.4em;
        transition: transform .5s, opacity .5s;

        color: var(--primary-black);
        font-family: "Noto Sans JP";
        font-size: 1.6rem;
        font-style: normal;
        font-weight: 500;
        line-height: 210%; /* 25.2px */
        letter-spacing: 0.64px;
    }

    .qa-1[open] p {
        transform: none;
        opacity: 1;
    }

    .qa-1 p::before {
        position: absolute;
        left: 1em;
        font-weight: 700;
        font-size: 1.6rem;
        font-family: Poppins;
        margin-top: 8px;
        color: var(--primary-red);
        line-height: 1.2;
        content: "A";
    }



}

























/* ========================
お問い合わせ
==========================*/

.section--contact {
    padding: 80px 10%;
    background-image: url(../images/contact.webp);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.topic_sub_w {
    color: var(--primary-white);
    font-family: Poppins;
    font-size: 1.2rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.topic_main_w {
    color: var(--primary-white);
    text-align: center;
    font-family: "Noto Sans JP";
    font-size: 2rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.contact_group {
    margin-top: 56px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact_list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact_list_a_l, .contact_list_a_i {
    text-decoration: none;
}

.contact_item_l {
    border: 1px solid var(--primary-white);
    border-radius: 50%;
    width: 300px;
    height: 300px;
    margin-top: 20px;
}

.contact_item_i {
    border: 1px solid var(--primary-white);
    border-radius: 50%;
    width: 300px;
    height: 300px;
    margin-top: 20px;
}

.contact_title {
    color: var(--primary-white);
    text-align: center;
    font-family: Poppins;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    padding-top: 72px;
}

.contact_txt {
    color: var(--primary-white);
    text-align: center;
    font-family: "Noto Sans JP";
    font-size: 1.2rem;
    font-style: normal;
    font-weight: 400;
    line-height: 200%; /* 20.4px */
    margin-top: 24px;
}

.contact_item_l:hover {
    background-color: var(--primary-green);
    transition: background-color 0.3s ease;
}

.contact_item_i:hover {
    background-color: var(--primary-red);
    transition: background-color 0.3s ease;
}




/* PC */
@media screen and (min-width: 769px) {

    .section--contact {
        padding: 100px 11.1%;
        background-image: url(../images/contact.webp);
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
    }

    .topic_sub_w {
        color: var(--primary-white);
        font-family: Poppins;
        font-size: 1.8rem;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
    }

    .topic_main_w {
        color: var(--primary-white);
        text-align: center;
        font-family: "Noto Sans JP";
        font-size: 3.6rem;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
    }

    .contact_group {
        margin-top: 56px;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 24px;
    }

    .contact_list {
        list-style: none;
        padding: 0;
        margin: 0;
        margin-top: 56px;
        display: flex;
        justify-content: space-between;
        gap: 88px;
    }

    .contact_list_a_l, .contact_list_a_i {
        text-decoration: none;
    }

    .contact_item_l {
        border: 1px solid var(--primary-white);
        border-radius: 50%;
        width: 400px;
        height: 400px;
        margin-top: 0px;
    }

    .contact_item_i {
        border: 1px solid var(--primary-white);
        border-radius: 50%;
        width: 400px;
        height: 400px;
        margin-top: 0px;
    }

    .contact_title {
        color: var(--primary-white);
        text-align: center;
        font-family: Poppins;
        font-size: 3.2rem;
        font-style: normal;
        font-weight: 500;
        line-height: normal;
        padding-top: 100px;
    }

    .contact_txt {
        color: var(--primary-white);
        text-align: center;
        font-family: "Noto Sans JP";
        font-size: 1.6rem;
        font-style: normal;
        font-weight: 400;
        line-height: 200%; /* 20.4px */
        margin-top: 32px;
    }

    .contact_item_l:hover {
        background-color: var(--primary-green);
        transition: background-color 0.3s ease;
    }

    .contact_item_i:hover {
        background-color: var(--primary-red);
        transition: background-color 0.3s ease;
    }


}



















/* ==========================
footer
===========================*/


.footer {
    background-color: var(--primary-green); /* 画像の緑に近い色 */
    color: var(--primary-white);
    padding: 64px 10% 20px;
    text-align: center;
    font-family: "Noto Sans JP", sans-serif;
}

/* ロゴ */
.footer_logo img {
    max-width: 100px;
    margin-bottom: 60px;
}

/* フッターナビ全体 */
.footerNav_group {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px; /* リスト間の横スペース */
    margin-bottom: 40px;
}

/* リスト全体 */
.footerNav_list01,
.footerNav_list02 {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* メニューリンク（左のリスト） */
.footerNav_list01 {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* 個別リンク */
.footerNav_item a {
    color: var(--primary-white);
    text-decoration: none;
    font-size: 1.4rem;
    transition: color 0.3s ease;
}

/* ボタンリンク（右のリスト） */
.footerNav_list02 {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 20px; /* スマホ時に間隔調整 */
}

.footerNav_item_link a {
    display: inline-block;
    padding: 16px 24px;
    border: 1px solid var(--primary-white);
    border-radius: 24px;
    text-decoration: none;
    color: var(--primary-white);
    font-size: 1.4rem;
    transition: all 0.3s ease;
}

.footerNav_item_link a:hover {
    background-color: var(--primary-white);
    color: var(--primary-green); /* 背景色反転で文字色変更 */
}

/* コピーライト */
.footer_copy {
    margin-top: 40px;
    font-size: 1.2rem;
    color: var(--primary-white);
}





/* PC */
@media screen and (min-width: 769px) {


    
    .footer {
        background-color: var(--primary-green); /* 画像の緑に近い色 */
        color: var(--primary-white);
        padding: 100px 11.1% 40px;
        text-align: center;
        font-family: "Noto Sans JP", sans-serif;
    }

    /* ロゴ */
    .footer_logo img {
        max-width: 160px;
        margin-bottom: 60px;
    }

    /* フッターナビ全体 */
    .footerNav_group {
        display: block;
        margin-bottom: 72px;
    }

    /* リスト全体 */
    .footerNav_list01,
    .footerNav_list02 {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    /* メニューリンク（左のリスト） */
    .footerNav_list01 {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-direction: row;
        gap: 24px;
        margin-top: 72px;
    }

    /* 個別リンク */
    .footerNav_item a {
        color: var(--primary-white);
        text-decoration: none;
        font-size: 1.6rem;
        transition: color 0.3s ease;
    }

    /* ボタンリンク（右のリスト） */
    .footerNav_list02 {
        display: flex;
        flex-direction: row;
        gap: 24px;
        margin-top: 56px; /* スマホ時に間隔調整 */
    }

    .footerNav_item_link a {
        display: inline-block;
        padding: 24px 40px;
        border: 1px solid var(--primary-white);
        border-radius: 50px;
        text-decoration: none;
        color: var(--primary-white);
        font-size: 1.6rem;
        transition: all 0.3s ease;
    }

    .footerNav_item_link a:hover {
        background-color: var(--primary-white);
        color: var(--primary-green); /* 背景色反転で文字色変更 */
    }

    /* コピーライト */
    .footer_copy {
        margin-top: 40px;
        font-size: 1.2rem;
        color: var(--primary-white);
    }


}





