@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;
}

li {
    list-style: none;
}
ul {
    margin: 0;
    padding: 0;
}




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

.header {
    height: 667px;
    width: 100%;
    background-image: url(../images/top.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative; /* 子要素のabsolute用 */
}

/* 左上のロゴ（今まで通り） */
.header_logo_left {
    margin: 0;
    padding: 20px; /* 例：余白調整 */
}
.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 {
    height: 800px;
    width: 100%;
    background-image: url(../images/top.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative; /* 子要素のabsolute用 */
}

/* 左上のロゴ（今まで通り） */
.header_logo_left {
    margin: 0;
    padding: 24px 3.1%; /* 例：余白調整 */
}
.header_logo_left img {
    width: 80px;
    height: auto;
}

/* 背景中央に重ねるロゴ */
.header_logo_center {
    position: absolute;
    top: 50%;   /* 上から中央 */
    left: 50%;  /* 左から中央 */
    transform: translate(-50%, -50%); /* 中心に補正 */
    width: 300px;   /* サイズ調整 */
    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: absolute;   /* ←親ごと固定する */
    right: 3.1%;       
    top: 24px;
    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: -116px;
    right: 20%;
    /* left: 10%; */
    z-index: 2;
}

.nav_item {
    color: var(--primary-white);
    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-white);
    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-white);
    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--message{
    padding: 80px 6.4%;
}

.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;
}

.txt {
    color: var(--primary-black);
    text-align: center;
    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: 56px;
}



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

    .section--message{
    padding: 140px 6.4%;
    }

    .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;
    }

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


}








/* =============================
カルサイネイザンについて
==============================*/

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

.txt_group {
    margin-top: 72px
}

.txt_contents {
    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_img img {
    align-self: stretch;
    border-radius: 10px;
    margin-top: 40px;
}

.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) {

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

    .txt_group {
        margin-top: 72px;
        display: flex;
        justify-content: center;
        /* flex-direction: row-reverse; */
        gap: 5%;
    }

    .txt_contents {
        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;
        max-width: 440px;
    }

    .about_img img {
        align-self: stretch;
        border-radius: 20px;
        margin-top: 0px;
        /* max-width: 397px; */
    }

    .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);
    }


}






/* ============================
スライダー
==============================*/


 .slider {
        overflow: hidden;
        width: 100%;

    }

    .slide-wrapper {
        display: flex;
        width: 400%; /* 画像が3枚なら3枚×2で6枚分*/
        animation: slide 100s linear infinite;
        background: linear-gradient(to top, #DACCB4 50%, #F2EADD 50%);
        gap: 16px;
    }

    .img01 {
        width: 160px;
        height: 160px;
        border-radius: 50%;
        border: 6px solid var(--primary-red);
    }

    .img03 {
        width: 160px;
        height: 160px;
        border-radius: 50%;
        border: 6px solid var(--primary-purple);
    }
    .img04 {
        width: 160px;
        height: 160px;
        border-radius: 50%;
        border: 6px solid var(--primary-yellow);
    }
    .img05 {
        width: 160px;
        height: 160px;
        border-radius: 50%;
        border: 6px solid var(--primary-green);
    }

    @keyframes slide {
      0% {
        transform: translateX(0);
      }
      100% {
        transform: translateX(-50%); /* 画像群が半分の幅だけ左に移動 */
      }
    }





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

     .slider {
        overflow: hidden;
        width: 100%;

    }

    .slide-wrapper {
        display: flex;
        width: 300%; /* 画像が3枚なら3枚×2で6枚分*/
        animation: slide 100s linear infinite;
        background: linear-gradient(to top, #DACCB4 50%, #F2EADD 50%);
        gap: 24px;
    }

    .img01 {
        width: 360px;
        height: 360px;
        border-radius: 50%;
        border: 10px solid var(--primary-red);
    }

    .img03 {
        width: 360px;
        height: 360px;
        border-radius: 50%;
        border: 10px solid var(--primary-purple);
    }
    .img04 {
        width: 360px;
        height: 360px;
        border-radius: 50%;
        border: 10px solid var(--primary-yellow);
    }
    .img05 {
        width: 360px;
        height: 360px;
        border-radius: 50%;
        border: 10px solid var(--primary-green);
    }

    @keyframes slide {
      0% {
        transform: translateX(0);
      }
      100% {
        transform: translateX(-50%); /* 画像群が半分の幅だけ左に移動 */
      }
    }


}











/* ===============================
メニュー
================================*/

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

.menu_group {
    margin-top: 56px;
}

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

.txt_group_title {
    text-align: center;
}

.txt_group_title h3 {
    color: var(--primary-red);
    text-align: center;
    font-family: "Noto Sans JP";
    font-size: 1.8rem;
    font-style: normal;
    font-weight: 700;
    line-height: 1.5;
    margin-top: 16px;
}

.money {
    color: var(--primary-black);
    text-align: center;
    font-family: "Noto Sans JP";
    font-size: 1.4rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-top: 16px;
}

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

.txt_group_txt {
    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;
}

.menu_btn {
    margin-top: 40px;   
    display: flex;
    justify-content: center;
}

.menu_btn a {
    position: relative;
    color: var(--primary-white);
    background-color: var(--primary-yellow);
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.84px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 240px;
    height: 44px;
    border: 1px solid var(--primary-red);
    border-radius: 50px;
    padding: 0 10px 0px 28px;
    text-decoration: none;
}
  
.menu_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: 1px 0 0 14px;
    transition: 0.4s;
}

.menu_btn a:hover::after {
    background-image: url(../images/arrow-b.png);
    width: 16px;
    height: 16px;
}

.menu_btn a:hover {
    background-color: var(--primary-white);
    color: var(--primary-black);
}





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

    .section--menu {
        padding: 140px 11.1% 140px;
        background-color: var(--primary-beige);
    }

    .menu_group {
        margin-top: 72px;
    }

    .menu_list {
        background-color: var(--primary-white);
        align-self: stretch;
        border-radius: 20px;
        padding: 56px 10.1%;
        margin-top: 40px;
        display: flex;
        justify-content: space-between;
        align-items: end;
        gap: 6%;
    }

    .menu_txt_group {
        width: 60%;
    }

    .txt_group_title {
        text-align: left;
    }

    .txt_group_title h3 {
        color: var(--primary-red);
        text-align: left;
        font-family: "Noto Sans JP";
        font-size: 2rem;
        font-style: normal;
        font-weight: 700;
        line-height: 1.5;
        margin-top: 24px;
    }

    .money {
        color: var(--primary-black);
        text-align: left;
        font-family: "Noto Sans JP";
        font-size: 1.6rem;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
        margin-top: 16px;
    }

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

    .txt_group_title h3 br {
        display: none;
    }

    .txt_group_txt {
        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%; /* 33.6px */
        letter-spacing: 0.96px;
        margin-top: 32px;
    }

    .menu_btn {
        margin-top: 0px;   
        display: flex;
        justify-content: center;
    }

    .menu_btn a {
        position: relative;
        color: var(--primary-white);
        background-color: var(--primary-yellow);
        font-size: 1.6rem;
        font-weight: 500;
        line-height: 1;
        letter-spacing: 0.96px;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 300px;
        height: 48px;
        border: 1px solid var(--primary-yellow);
        border-radius: 50px;
        padding: 0 10px 0px 28px;
        text-decoration: none;
    }
    
    .menu_btn a::after {
        content: '';
        display: inline-block;
        width: 22px;
        height: 22px;
        background-image: url(../images/arrow-w.png);
        background-repeat: no-repeat;
        background-size: contain;
        background-position: center;
        margin: 1px 0 0 18px;
        transition: 0.4s;
    }

    .menu_btn a:hover::after {
        background-image: url(../images/arrow-b.png);
        width: 18px;
        height: 18px;
    }

    .menu_btn a:hover {
        background-color: var(--primary-white);
        color: var(--primary-black);
    }

}















/* ================================
お客様の声
==================================*/

.section--voice {
    padding: 20px 0 80px;
    background-color: var(--primary-beige);
}

/* .voice_list {
    list-style: none;
    padding: 0;
    margin: 0;
} */

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

.voice_item:first-of-type {
    margin-top: 72px;
}

.voice_img {
    display: flex;
    justify-content: center; /* 横中央 */
    align-items: center;
}

.voice_img img {
    width: 60px;
    height: auto;
}

.voice_topic01 {
    color: var(--primary-black);
    font-family: "Noto Sans JP";
    font-size: 1.4rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin-top: 20px;
}

.voice_topic01 span {
    background-color: var(--primary-beige);
    border: 1px solid var(--primary-beige);
    border-radius: 50px;
    padding: 2px 10px;
    text-decoration: none;
    margin-right: 16px;
}

.voice_topic02 {
    color: var(--primary-black);
    font-family: "Noto Sans JP";
    font-size: 1.4rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin-top: 12px;
}

.voice_topic02 span {
    background-color: var(--primary-beige);
    border: 1px solid var(--primary-beige);
    border-radius: 50px;
    padding: 2px 10px;
    text-decoration: none;
    margin-right: 16px;
}

.voice_txt {
    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%; /* 25.2px */
    letter-spacing: 0.48px;
    margin-top: 24px;
}





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

    .section--voice {
        padding: 20px 11.1% 100px;
        background-color: var(--primary-beige);
    }

    .voice_list {
        display: flex;
        justify-content: space-between;
        gap: 20px;
        margin-top: 72px;
    }

    .voice_item {
        padding: 32px 2.4%;
        background-color: var(--primary-white);
        align-self: stretch;
        border-radius: 20px;
        margin: 0;
        width: 360px;
    }

    .voice_item:first-of-type {
        margin-top: 0px;
    }

    .voice_img {
        display: flex;
        justify-content: center; /* 横中央 */
        align-items: center;
    }

    .voice_img img {
        width: 72px;
        height: auto;
    }

    .voice_topic01 {
        color: var(--primary-black);
        font-family: "Noto Sans JP";
        font-size: 1.6rem;
        font-style: normal;
        font-weight: 500;
        line-height: normal;
        margin-top: 28px;
    }

    .voice_topic01 span {
        background-color: var(--primary-beige);
        border: 1px solid var(--primary-beige);
        border-radius: 50px;
        padding: 2px 10px;
        text-decoration: none;
        margin-right: 16px;
    }

    .voice_topic02 {
        color: var(--primary-black);
        font-family: "Noto Sans JP";
        font-size: 1.6rem;
        font-style: normal;
        font-weight: 500;
        line-height: normal;
        margin-top: 14px;
    }

    .voice_topic02 span {
        background-color: var(--primary-beige);
        border: 1px solid var(--primary-beige);
        border-radius: 50px;
        padding: 2px 10px;
        text-decoration: none;
        margin-right: 16px;
    }

    .voice_txt {
        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%; /* 25.2px */
        letter-spacing: 0.64px;
        margin-top: 24px;
    }


}










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

.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);
    }


}






















