@charset "UTF-8";

/* 変数定義 */
:root {
    /* カラー */
    --color-primary: #b3a38f; 
    --color-secondary: #9f575e; 
    --color-text: #333;     
    --color-white: #fff; 
    --color-bg: #dbdbc2;
    --color-footer-bg: #b3a38f; 
    --color-footer-text: #5c4d42; 

/* レイアウト */
    --width-content: 1100px;
    --space-unit: 15px;
    --space-section: 40px;
    --space-section-pc: 60px; /* セクション間余白 (PC) */

    /* フォント */
    --font-base: "Noto Sans JP", "Yu Gothic", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", sans-serif;
    --font-title: "Itim", cursive;
    --font-logo: "Philosopher", sans-serif; 

/* その他 */
--duration: 0.3s;
}

/* ベース */
.body {
    font-family: var(--font-base);
    color: var(--color-text);
    background-color: var(--color-bg);
    line-height: 1.7;
    font-size: 16px; /* 基本フォントサイズ */
    overflow-x: hidden; /* 横スクロール防止 */
}
img video {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    transition: opacity var(--duration);
}

a:hover {
    opacity: 0.7;
}

@import url("https://fonts.googleapis.com/css?family=Ubuntu:700");


/* レイアウト */
.wrapper {
    text-align: center;
    max-width: var(--width-content-max); /* PCでの最大幅を設定 */
    margin: 0 auto;
    padding: 0 var(--space-unit);
    box-sizing: border-box;
}

/* セクション共通タイトル */
.concept-title {
    font-family: var(--font-title);
    font-size: 48px; /* SP用タイトルサイズ */
    color: var(--color-secondary);
    text-align: center;
    font-weight: 400; /* Itimは太さが少ないので通常 */
    position: relative;
    padding: 20px;
}


.section-title {
    font-family: var(--font-title);
    font-size: 48px;
    color: var(--color-secondary);
    text-align: center;
    margin: 0 auto 30px;
    font-weight: 400;
    position: relative;
    padding: 10px;
    z-index: 1; 
    max-width: 91%;
}
    
  
  .section-title::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #bbb; 
    z-index: -1; 
  }
.section-title span {
    display: inline-block;
    background: #fff;
    padding: 0 15px;
    font-size: 36px;
}

/* ボタン共通 */
.btn {
    display: inline-block; /* inline-blockに変更して中央揃えしやすくする */
    text-align: center;
    font-weight: bold;
    transition: all var(--duration);
    padding: 12px 24px; /* 上下左右のパディング指定 */
    border-radius: 30px;
    cursor: pointer;
    font-size: 18px;
    
}

.btn-primary {
    background: var(--color-secondary);
    color: var(--color-white);
    border: none;
    min-width: 250px; /* 最小幅 */
    box-sizing: border-box; /* パディングを含めて幅計算 */
}



/* ヘッダー */
header {
    background-color: var(--color-primary);
    padding: 10px 0;
    position: sticky; /* スクロール追従 */
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative; /* ナビゲーションの位置基準 */
}

.logo img {
    width: 120px; /* SP用ロゴサイズ */
    height: auto;
}

.header-title {
    font-family: var(--font-title);
    font-size: 32px;
    font-family: var(--font-title);
    color: var(--color-secondary);
    margin: 0;
}


/* ハンバーガーメニューボタン */
.menu {
    display: block; /* SPでは表示 */
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    width: 40px;
    height: 40px;
    position: relative;
    z-index: 1010; /* ナビより手前 */
}

.menu span {
    display: block;
    width: 28px;
    height: 3px;
    background-color: var(--color-white);
    border-radius: 2px;
    position: absolute;
    left: 6px;
    transition: transform var(--duration), top var(--duration), opacity var(--duration);
}

.menu span:nth-child(1) {
    top: 10px;
}
.menu span:nth-child(2) {
    top: 18px;
}
.menu span:nth-child(3) {
    top: 26px;
}

/* ハンバーガーメニューが開いた時のスタイル */
.menu.is-active span:nth-child(1) {
    top: 18px;
    transform: rotate(45deg);
}
.menu.is-active span:nth-child(2) {
    opacity: 0;
}
.menu.is-active span:nth-child(3) {
    top: 18px;
    transform: rotate(-45deg);
}

/* グローバルナビゲーション (SP) */
.nav {
    display: none; /* JSで is-active を付与して表示 */
    position: fixed; /* 画面全体に広げる */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(179, 163, 143, 0.95); /* 半透明背景 */
    padding-top: 80px; /* ヘッダー高さ分下げる */
    box-sizing: border-box;
    z-index: 999; /* ヘッダーより下、メインコンテンツより上 */
    overflow-y: auto; /* メニュー項目が多い場合にスクロール */
}

.nav.is-active {
    display: block;
}

.nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

.nav-list > li {
    margin-bottom: 20px;
}

.nav-link {
    display: block;
    padding: 15px 0;
    font-size: 18px;
    font-weight: bold;
    color: var(--color-white); /* SPメニュー内リンク色 */
    text-transform: uppercase; /* 大文字に */
}



/* メイン */
main {
    padding-top: 0; /* ヘッダーが sticky なので不要 */
}

/* セクション共通余白 */
main section {
    padding-top: var(--space-section-sp);
    padding-bottom: var(--space-section-sp);
}

/* セクション１: ヒーローエリア & コンセプト */
.sec-01 { padding-top: 0; padding-bottom: 0; background-color: ;} /* 最初のセクションは上パディングなし */

.hero-area {
    position: relative;
    width: 100%;
    /* 必要に応じて高さを指定 vh など */
    /* height: 70vh; */
}

.video-section {
    position: relative;
    width: 100%;
    height: 100%; /* 親要素に高さを指定した場合 */
    overflow: hidden;
}
.video-section video {
    display: block;
    padding-bottom: 20px;
    width: 100%;
    height: 100%;
    object-fit: cover; /* アスペクト比を保ちつつエリアを埋める */
}

.hero-text {
    position: absolute;
    color: var(--color-white);
    font-size: 18px; /* SP用テキストサイズ */
    font-weight: bold;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5); /* 文字を読みやすく */
    padding: 10px;
    background-color: rgba(0,0,0,0.3); /* 少し背景色をつけて読みやすく */
    box-sizing: border-box;
    line-height: 1.65;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
}



  
  .wrapper h3 {
    margin: 0;
  }
  
  .wrapper h3 a {
    position: relative;
    overflow: hidden;
    text-decoration: none;
    color: #ec407a;
    font-size: 22px;
    margin: -38px;
  }
  
  .wrapper h3 a::after {
    content: '';
    background: rgba(236, 64, 122, .25);
    position: absolute;
    left: 12px;
    bottom: -6px;
    width: calc(100% - 8px);
    height: calc(100% - 8px);
    z-index: -1;
    transition: .35s cubic-bezier(.25, .1, 0, 2.05);
  }
  
  .wrapper h3 a:hover::after {
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 100%;
  }

.hero-image-sp { display: none; } /* 通常は動画を表示するので非表示 */
/* 動画未対応や代替で表示する場合 */
/* .no-video .hero-image-sp { display: block; }
.no-video .video-section { display: none; } */

.concept {
    padding-top: var(--space-section-sp); /* コンセプト部分の開始位置 */
    padding-bottom: var(--space-section-sp);
}
.concept-title { margin: 0%;} /* section-title 共通スタイル適用 */
.concept-subtitle {
    max-width: 600px; /* ★ ここで横幅を制限 */
    margin: 0 auto 30px; /* ★ センター寄せ + 下余白 */
    padding: 1rem 2rem calc(1rem + 10px);
    font-size: 18px;
    text-align: center;
    color: var(--color-white);
    position: relative;
}

.concept-images  {
    margin-bottom: var(--space-unit);
    width: 100%; /* 画像幅調整 */
    background-color: #b3a38f;
    margin-bottom: 30px;
    
}
.concept-text {
    font-size: 14px;
    
} 

.text {
    font-size: 14px;
}

.text_01 {
    display: none;
}

h5 {
    max-width: 600px; /* ★ ここで横幅を制限 */
    margin: 0 auto 30px; /* ★ センター寄せ + 下余白 */
    padding: 1rem 2rem calc(1rem + 10px);
    font-size: 18px;
    text-align: center;
    color: var(--color-white);
    position: relative;
    background: rgba(159, 87, 94,0.9);
    text-align: left;
}

h5::before {
    content: '';
    position: absolute;
    top: -7px;
    left: -7px;
    width: 100%;
    height: 100%;
    border: 4px solid #000;
    box-sizing: border-box;
}

img.img_03 {
    display: none;
    }

    @keyframes fuwafuwa {
    0% {
        transform:translate(0, 0) rotate(-7deg);
    }
    50% {
        transform:translate(0, -7px) rotate(0deg);
    }
    100% {
        transform:translate(0, 0) rotate(7deg);
    }
    }

    img.img_08 {
        display: none;
    }

    
    img.img_09 {
    display: none;
    }

/* セクション２＆３: MENU */
.menu-section {}
.menu-category-title { } /* section-title 共通スタイル適用 */
.menu-item {
    margin-bottom: 40px;
}
.menu-item:last-child { margin-bottom: 0; }

.menu-image-container {
    position: relative; /* ラベルの位置基準 */
    margin-bottom: var(--space-unit);
}


.menu-image_01 {
    width: 100%;
    padding-bottom: 20px;
}

.menu-image_02 {
    width: 90%;
}

.menu-image_02-container {
    /* background-image: none; */
    display: grid;
    justify-items: center;
    text-align: center;
}




.bg-text {
    font-size: 14px;
    padding: 20px;
    text-align: left;
}
.menu-item-label {
    font-family: var(--font-title);
    font-size: 40px; /* SP用ラベルサイズ */
    color: var(--color-secondary); /* #c66e76 から変更 */
    opacity: 0.8;
    font-weight: 400;
    
    
}
.skin-care-label { /* Skin Care特有の調整が必要な場合 */
    /* CSSで任意の位置に配置 (例) */
    position: absolute;
    bottom: 20px;
    left: 20px;
    display: block; /* ブロック要素にして単独で表示 */
    margin-bottom: 15px;
    color: #9b3e47;
}
.menu-item-title.aroma-title { /* Aroma の見出し */
    font-family: var(--font-title);
    font-size: 40px; /* SP用ラベルサイズ */
    color: var(--color-secondary);
    text-align: center;
    margin-bottom: 20px;
    font-weight: 400;
    margin: 0 auto 30px;
    position: relative;
    padding: 10px;
    z-index: 1; 
    max-width: 100%;
    }



.menu-item-title.aroma-title::before {
content: "";
position: absolute;
top: 50%;
left: 0;
width: 100%;
height: 3px;
background-color: #bbb; 
z-index: -1; 
}

.menu-item-title.aroma-title span {
display: inline-block;
background: #fff;
padding: 0 15px;
}

.menu-description {
    font-size: 14px;
    margin-bottom: var(--space-unit);
    padding: 0 10px;

    
}

.menu-description_1 {
    text-align: left;
    font-size: 14px;
    margin-bottom: var(--space-unit);
    padding-left: 20px;
    padding-right: 20px;
    
}

.menu-description_2 {
    font-size: 14px;
    text-align: left;
    margin-bottom: var(--space-unit);
    padding-left: 20px;
    padding-right: 20px;
}
.menu-item .btn {
    margin-top: 20px;
}

.aroma-images img {
    width: 95%;
    padding-top: 20px;
    padding-bottom: 20px;
    margin-bottom: var(--space-unit);
    margin-left: auto;
    margin-right: auto;
  }
  
    h6 {
        display: none;
    }

.content_02,h6 {
    display: none;
}
.sec-03 {
    padding-bottom: 20px;
}

.split-left,
.split-right {
    display: none;
}

/* セクション４: GALLERY */
.sec-04-wrapper {
    text-align: center;
    width: 75%;
    margin: auto;
    padding-bottom: 20px;
}

.gallery-section { 
    text-align: center; 
    padding-bottom: 40px;
} /* moreボタンを中央揃え */

.gallery-title { } /* section-title 共通スタイル適用 */
.gallery-images {
    display: grid;
    justify-items: center;
    margin-bottom: var(--space-unit);
    width: 100%; /* SPでは幅いっぱいに */
}

img {
    width: 100%;
    padding-bottom: 20px;
}

.img::before,
.img::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  z-index: 1;
}

.img::before {
  top: -10px;
  right: -10px;
  border-top: 30px solid #053e62;
  border-right: 30px solid #053e62;
  border-bottom: 30px solid rgba(0, 0, 0, 0) 0;
  border-left: 30px solid rgba(0, 0, 0, 0) 0;
}

.img::after {
  bottom: -10px;
  left: -10px;
  border-top: 30px solid rgba(0, 0, 0, 0) 0;
  border-right: 30px solid rgba(0, 0, 0, 0) 0;
  border-bottom: 30px solid #053e62;
  border-left: 30px solid #053e62;
}

.gallery-section .btn {
    margin-top: 20px;
}

/* セクション５: ACCESS */
.access-section { }
.access-title { } /* section-title 共通スタイル適用 */
.access-content { }
.map {
    margin-bottom: 30px;
    /* Google Mapの埋め込みはアスペクト比維持が難しい場合がある */
    /* 必要であれば以下のようなテクニックを使う */
    position: relative;
    padding-bottom: 75%;
    height: 0;
    overflow: hidden;
}
.map iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 300px; /* 高さを指定 */
    border: 1px solid #ddd; /* 境界線 */
}
.shop-info {
    text-align: center;
}
.shop-name {
    font-family: var(--font-title); /* 店名にも適用 */
    font-size: 28px;
    color: var(--color-secondary);
    margin-bottom: 15px;
    padding-bottom: 20px;
}
.shop-address {
    display: inline-block;
    font-weight:bold;
    background:#fafafa;
    box-shadow: 0px 0px 0px 8px #9f575e;
    border: dashed 2px #000000;
    margin: 0 auto 50px;
    padding: 20px 40px 20px 40px;
    border-radius: 10px;
}
.shop-address strong {
    display: block; /* 見出し的に改行 */
    margin-top: 10px;
    font-weight: bold;
    color: var(--color-primary); /* 見出しの色 */
}
.shop-address a {
    color: var(--color-secondary); /* 電話番号リンクの色 */
    text-decoration: underline;
}

.section-title_1{
    padding: 10px;
}

/* フッター */
.page-footer {
    background-color: var(--color-footer-bg);
    color: var(--color-footer-text);
    padding: 30px 0 15px;
    margin-top: var(--space-section-sp);
}
.footer-inner {
    text-align: center;
}
.footer-logo { margin-bottom: 20px; }
.footer-shop-name {
    font-family: var(--font-title);
    font-size: 24px;
    color: var(--color-secondary);
    margin: 0;
}
.footer-nav-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}
.footer-nav-list li {
    margin-bottom: 10px;
}
.footer-nav-link {
    color: var(--color-footer-text);
    font-size: 14px;
}
.copyright {
    text-align: center;
    font-size: 12px;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #e0d8cc; /* 区切り線 */
}
.copyright small {
    font-size: inherit; /* smallのデフォルトスタイルを打ち消す */
}

/* --------------------
   PC用スタイル (min-width: 768px)
   -------------------- */
    @media screen and (min-width: 768px) {
    /* 基本余白 */
    :root {
        --space-unit: 20px;
        --space-section-sp: var(--space-section-pc); /* PCではSP用もPC用に統一 */
    }

    /* レイアウト */
    .wrapper {
        text-align: center;
        padding: 0 20px; /* PC用左右パディング */
    }

    /* セクション共通タイトル */
     .section-title {
        font-size: 70px;
        font-family: var(--font-title);
        font-size: 48px;
        color: var(--color-secondary);
        text-align: center;
        margin: 0 auto 30px;
        font-weight: 400;
        position: relative;
        padding: 10px;
        z-index: 1; 
        max-width: 50%;
    } 
    
    .section-title::before {
        z-index: -1; 
    } 

    .section-title span {
        display: inline-block;
        background: #fff;
        padding: 0 15px;
        font-size: 80px;
    }

    /* ボタン */
    .btn-primary {
        min-width: 290px;
        padding: 15px 30px;
        margin-top: 40px;
    }
    
    .concept-title {
        font-size: 80px;
    }

    .video-section {
        padding-bottom: 60px;
        height: 950px;
        object-fit: cover;
    }


    /* ヘッダー */
    .header { padding: 15px 0; }
    .logo img { width: 180px; } /* PC用ロゴサイズ */

    .header-title {
        font-size: 70px;
        margin-left: 177px;
        justify-content: center;
    }

    .logo {
        padding-left: 50px;
    }

    .concept-text-wrapper {
        display: flex;
        justify-content: center;
    }
    

    /* ハンバーガーメニュー非表示 */
    .menu { display: none; }

    /* グローバルナビゲーション (PC) */
    .nav {
        display: block; /* PCでは常に表示 */
        position: static; /* staticに戻す */
        width: auto;
        height: auto;
        background-color: transparent;
        padding-top: 0;
        overflow-y: visible;
    }
    .nav-list {
        display: flex;
        justify-content: flex-end; /* 右寄せ */
        text-align: left; /* リストアイテム内のテキストは左揃え */
        padding-right: 20px;
    }
    .nav-list > li {
        margin-bottom: 0;
        margin-left: 25px; /* メニュー間の余白 */
    }
    .nav-link {
        padding: 10px 0;
        font-size: 16px;
        color: var(--color-white); /* PCナビリンク色 */
        font-weight: normal;
        text-transform: none; /* 大文字化解除 */
        position: relative; /* ホバーエフェクト用 */
    }
     /* ナビリンクホバー下線 */
    .nav-link::after {
        content: '';
        position: absolute;
        bottom: 5px;
        left: 0;
        width: 100%;
        height: 1px;
        background: var(--color-white);
        transform: scaleX(0);
        transform-origin: right top;
        transition: transform var(--duration);
    }
    .nav-link:hover::after {
        transform: scaleX(1);
        transform-origin: left top;
    }


    /* セクション１: ヒーローエリア & コンセプト */
    .hero-text { font-size: 28px; width: auto; background: none; padding: 0; } /* PC用テキスト */

    
    .concept {
        padding-bottom: 80px; 
        text-align: center;}

    h3.concept-subtitle { 
        font-size: 32px;
        margin-bottom: 80px;
        margin: auto;
    }
    .concept-images {
        display: flex; /* 横並びに */
        justify-content: center; /* 中央揃え */
        gap: 30px; /* 画像間の余白 */
        margin-bottom: 40px;
        background-color: #fff;
    }
    .concept-images img {
        width: 60%; /* 幅を調整して横に2枚並べる */
        margin-bottom: 0;
    }

    img.img_03 {
        width: 4%;
        position: absolute;
        animation: fuwafuwa 3s ease-in-out infinite alternate;
        display: inline-block;
        transition: 1.5s ease-in-out;
        margin-top: 15px;
        display: flex;
        left: 63%;
        top: 56%;
    }

    h5::before {
        height: 118%;
    }

    .concept-text-wrapper-f-up
    .concept-text {
        margin-bottom: 60px;
        padding: 30px; /* 例: 20pxに変更して広げる */
    } 
    
    .concept-text {
        font-size: 18px;
    }

    .text {
        display: none;
    }
    .text_01 {
        font-size: 18px;
        display: block;
        position: absolute;
        padding-top: 300px;
    }
    h5 {
        margin: 40px; /* ここで外側の余白を調整 */
    }

    img.img_08 {
        width: 4%;
        position: absolute;
        animation: fuwafuwa 3s ease-in-out infinite alternate;
        display: inline-block;
        transition: 1.5s ease-in-out;
        margin-top: 15px;
        display: flex;
        right: 700px;
        top: 410px;
    }

    
    img.img_09 {
        width: 4%;
        position: absolute;
        animation: fuwafuwa 3s ease-in-out infinite alternate;
        display: inline-block;
        transition: 1.5s ease-in-out;
        margin-top: 15px;
        display: flex;
        right: 71%;
        top: 20%;
    }

    .wrapper h3 a {
        position: relative;
        overflow: hidden;
        text-decoration: none;
        color: #ec407a;
        font-size: 30px;
        margin: -38px;
      }


    /* セクション２＆３: MENU */
    .sec-02 {
        padding-top: 60px;
    }
    .menu-item {
        justify-items: center;
        /* flex-wrap: wrap; 必要に応じて折り返し */
        /* align-items: center; */
        justify-content: space-between; /* 要素間のスペースを均等に */
        margin-bottom: 60px;
        text-align: left; /* テキストは左揃え */
    }
    .menu-item.skin-care { /* Skin Careの構成に合わせて調整 */
        /* 例えば画像を左右に配置し、テキストを中央に */
    }
    .skin-care .menu-image-container { order: 1; width: 100%; }
    .skin-care .menu-description:nth-of-type(1) { order: 2; width: 100%; text-align: center; margin: 20px 0; }
    .skin-care img.menu-image:nth-of-type(2) { order: 3; width: 48%; }
    .skin-care .menu-description:nth-of-type(2) { order: 4; width: 100%; text-align: center; margin: 20px 0; }
    .skin-care .btn { order: 5; width: 100%; text-align: center; margin-top: 80px; margin-bottom: 40px; }

    .menu-item-label {
        font-family: var(--font-title);
        font-size: 80px; /* SP用ラベルサイズ */
        color: var(--color-secondary); /* #c66e76 から変更 */
        opacity: 0.8;
        font-weight: 400;
        
        
    }
    .skin-care-label { /* Skin Care特有の調整が必要な場合 */
        /* CSSで任意の位置に配置 (例) */
        position: absolute;
        bottom: 100px;
        left: 20px;
        display: block; /* ブロック要素にして単独で表示 */
        margin-bottom: 15px;
        color: #9b3e47;
    }

    .menu-item.aroma .aroma-images {
        width: 100%; /* 画像エリアの幅 */
        display: none;
        gap: 20px; /* 画像間の隙間 */
        padding-top: 40px;
    }
    .menu-item.aroma .aroma-images img { width: calc(50% - 10px); }
    .menu-item.aroma .menu-description { width: 40%; }
    .menu-item.aroma .btn { width: 100%; text-align: center; margin-bottom: 40px;} more ボタンを下に


    .menu-item-label { font-size: 120px; }
    .menu-item-title { font-size: 60px;}

    .aroma-title {
        display: none;
    }
    .menu-image_01 {
        width: 60%;
        padding-bottom: 60px;
        animation: fuwafuwa 3s linear infinite;
    }
    /* menu-image_01 */
    @keyframes fuwafuwa {
        0% { transform: translateY(0) }
        33.33333% { transform: translateY(10px) }
        66.66667% { transform: translateY(0) }
        100% { transform: translateY(0) }
    }

    .menu-image_02 {
        display: none;
    }

    p.menu-description {
        font-size: 18px;
        padding: 1rem 0 ;/*上下の余白・左右の余白*/
        display: inline-block;
    }
    .menu-description_1 {
        justify-items: center;
        font-size: 26px;
        position: absolute;
        padding-top: 480px;
        padding-left: 700px;
        padding-bottom: 20px;
    }

    .menu-description_2 {
        justify-items: center;
        font-size: 26px;
        position: absolute;
        padding-top: 980px;
        padding-left: 850px;
        
    }

    .bg-box {
        background-image: url(../img/pc-sec01-04.webp);
        background-size: cover;
        flex-direction: row-reverse;
        justify-items: center;
        background-repeat: no-repeat;
        text-align:  center;   
        padding:  150px;
        margin-left: 600px;
        animation: fuwafuwa 3s linear infinite;
    }


    /* bg-box */
    @keyframes fuwafuwa {
        0% { transform: translateY(0) }
        33.33333% { transform: translateY(10px) }
        66.66667% { transform: translateY(0) }
        100% { transform: translateY(0) }
    }
    .bg-text {
        background-color:rgba(201, 188, 171, 0.5);
        font-size: 26px;
        display:  inline-block; 
        padding: 10px 20px;     
    }


    .container_02 {
        position: relative;
        height: 80vh;
        display: flex;
        overflow: hidden;
        padding: auto;
        width: 80%;
    }
    
    .split-left,
    .split-right {
    position: relative;
    width: 80%;
    height: 80%;
    opacity: 0;
    transform: translateX(-100%);
    animation: slideIn 1.2s ease-out forwards;
    }
    
    .split-left {
    background: #b3a38f;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    color: white;
    padding: 0 5%;
    }
    
    .content_02 {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s forwards;
    animation-delay: 1s;
    }
    
    .content_02,h6 {
    display: grid;
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: 700;
    }
    
    .content_02,p {
        display: grid;
    font-size: 1.2em;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.8;
    }

    .split-right {
    transform: translateX(100%);
    animation-delay: 0.3s;
    overflow-y: scroll;
    -ms-overflow-style: none; 
    scrollbar-width: none; 
    }
    
    .split-right::-webkit-scrollbar {
    display: none;
    }
    .split-left,
    .split-right {
    display: flex;
}
    
    .image-container {
    height: 150%; /* 画像エリアを大きくしてスクロール可能に */
    display: flex;
    flex-direction: column;
    }
    
    .scroll-image {
        width: 100%;
    height: 328px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s forwards;
    }
    
    .image-1 {
        width: 100%;
        padding: 0%;
    animation-delay: 1.2s;
    }
    
    .image-2 {
        width: 100%;
        padding: 0%;
    animation-delay: 1.4s;
    }
    
    .image-3 {
        width: 100%;
        padding: 0%;
    animation-delay: 1.6s;
    }
    
    .image-4 {
        width: 100%;
        padding: 0%;
    animation-delay: 1.8s;
    }
    
    @keyframes slideIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
    }
    
    @keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
    }
    
    @keyframes fadeIn {
    to {
        opacity: 1;
    }
    }

    h6 {
        display: block;
        font-weight: bold;
        font-size: 40px;
        font-family: var(--font-title);
        color: var(--color-secondary);
        font-weight: 400; 
    }
    
    .sec03 {
        padding-bottom: 60px;
    }

    .menu-sections-wrapper-f-up-fadeup {
        justify-content: center;
    }
    
    .gallery-images {
    position: relative;
    display: block;
    width: 80%;
    margin-inline: auto;
    margin-top: 60px;
    margin-bottom: 80px;
    justify-content: center; 
    gap: 40px;
    left: 26%;
    }

    .gallery-images img {
    width: 50%;
    rotate: 3deg;
    }

    .gallery-images::after {
        content: "";
        position: absolute;
        top: -26px;
        display: block;
        width: 60%;
        height: 106%;
        background-color: #e6e6fa;
        rotate: -10deg;
        z-index: -1;
        right: 20%;
      }


      .gallery-images1 {
        position: relative;
        display: block;
        width: 80%;
        margin-inline: auto;
        margin-top: 60px;
        margin-bottom: 80px;
        justify-content: center; 
        gap: 40px;
        right: 24%;
        }
        .gallery-images1 img {
        width: 60%;
        rotate: 3deg;
        }
    
        .gallery-images1::after {
            content: "";
            position: absolute;
            top: -9px;
            display: block;
            width: 73%;
            height: 106%;
            background-color: #e6e6fa;
            rotate: -9deg;
            z-index: -1;
            right: 13%;
          }
    
    .gallery-section .btn { margin-top: 60px; margin-bottom: 60px;}



    /* セクション５: ACCESS */
    .access-content {
        display: flex; /* マップと情報を横並び */
        gap: 40px; /* 間隔 */
        /* align-items: flex-start; 上揃え */
        align-items: center;
        padding-bottom: 40px;
    }
    
    .map {
        width: 80%; /* マップの幅 */
        margin-bottom: 0;
        padding: 200px;
        padding-left: 80px;
        margin-left: 300px;
    }

    .map iframe { 
        height: 400px;
        padding-left: 150px;
    } /* PC用マップ高さ */

    .shop-info {
        width: 120%; /* 情報の幅 */
        text-align: center; 
        margin-right: 500px;

    }
    .shop-name { 
        font-size: 32px;
    }


    /* フッター */
    .page-footer { padding: 50px 0 20px; margin-top: var(--space-section-pc); }
    .footer-inner {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
        text-align: left;
    }
    .footer-logo { margin-bottom: 0; }
    .footer-shop-name { 
        font-size: 60px;
        padding-bottom: 20px;
    }
    .footer-nav-list {
        display: flex;
        margin-bottom: 0;
    }
    .footer-nav-list li {
        margin-bottom: 0;
        margin-left: 20px;
    }
    .footer-nav-link { font-size: 15px; }
    .copyright { text-align: center; margin-top: 40px; padding-top: 20px; font-size: 13px; }


p {
    font-size: 18px;
}

/* PCでより幅広の画面用 (オプション) */
@media screen and (min-width: 1200px) {
    /* 更なる調整が必要な場合 */
}




/* メニュー */
/* セクション１ */
.hero-area_01 {
    position: relative;
    width: 100%;
    /* 必要に応じて高さを指定 vh など */
    /* height: 70vh; */
}

.hero-text_01 {
    position: absolute;
    top: 35%;
    left: 80%;
    transform: translate(-50%, -50%);
    color: var(--color-secondary);
    font-size: 150px; /* SP用テキストサイズ */
    font-family: "Itim", cursive;
    font-weight: bold;
    text-shadow: 1px 1px 3px rgba(249, 249, 249, 0.5); /* 文字を読みやすく */
    text-align: center;
    padding: 10px;
    background-color: rgba(234, 233, 233, 0.3); /* 少し背景色をつけて読みやすく */
    width: 20%; /* 幅を指定して折り返し調整 */
    box-sizing: border-box;
}

.concept.wrapper.f-up_01 {
    justify-items: center;
}
.concept-images_01 {
    width: 55%;
    display: flex;
}


.img_04 {
    width: 30%;
    margin-right: 200px;
    background-color: #b3a38f;
    padding: 30px;
    border-radius: 50%;

}
.concept-wrapper_03 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem; /* 写真とテキストの間隔 */
    flex-wrap: wrap; /* モバイル対応 */
  }
  
  .concept-wrapper_03 img {
    width: 30%;
    border-radius: 50%;
    padding: 30px;
    background-color: #b3a38f;
  }
  /* テキストブロックを左に配置 */
  .text_02 {
    top: -220px;
    left: 180px;
    max-width: 600px;
    margin: 0; /* 自動センタリングは不要 */
    padding: 1rem 2rem calc(1rem + 10px);
    font-size: 18px;
    color: var(--color-white);
    position: relative;
    background: rgba(159, 87, 94, 0.8);
    text-align: left;
  }
  
/* 赤枠の微調整 */
.text_02::before {
    content: '';
    position: absolute;
    top: -10px; /* 少し上に移動 */
    left: -10px; /* 少し左に移動 */
    width: 100%;
    height: 100%;
    border: 4px solid #000;
    box-sizing: border-box;
    z-index: -1; /* 背面に */
  }

 /* テキストブロックを左に配置 */
 .text_03 {
    top: 90px;
    right: 80px;
    max-width: 600px;
    margin: 0; /* 自動センタリングは不要 */
    padding: 1rem 2rem calc(1rem + 10px);
    font-size: 18px;
    color: var(--color-white);
    position: relative;
    background: rgba(159, 87, 94, 0.9);
    text-align: left;
  }
  
/* 赤枠の微調整 */
.text_03::before {
    content: '';
    position: absolute;
    top: -10px; /* 少し上に移動 */
    left: -10px; /* 少し左に移動 */
    width: 100%;
    height: 100%;
    border: 4px solid #000;
    box-sizing: border-box;
    z-index: -1; /* 背面に */
  }

.target-dog {
    font-size: 24px;
    text-align: center;
    padding-bottom: 20px;
}
.concept-title_01 {
    font-size: 38px;
    font-family: var(--font-title);
    text-align: center;
    padding-bottom: 40px;
    
}

/* セクション２ */
.wrapper_01 {
    padding: auto;
}

.flex {
    display: flex; /*横並び*/
    justify-content: center;
    padding-top: 80px;
    padding-bottom: 80px;
    padding-left: 200px;
    background-color: rgba(179, 163, 143, 0.5);
  }

.flex_01 {
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
    padding-bottom: 80px;
    padding-right: 200px;
    
}
  .flex .image {
    width: 60%; /*画像サイズ指定*/
    margin: 0;
    padding: 0;
    padding-left: 200px;
    overflow: hidden;
    position: relative;
  }
  .flex .text {
    margin: 0 0 0 20px;
    padding: 0;
  }


.img_07 {
    position: relative;
}

.img_07::before,
.img_07::after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    z-index: 1;
}

.img_07::before {
    top: -10px;
    right: -10px;
    border-top: 30px solid #053e62;
    border-right: 30px solid #053e62;
    border-bottom: 30px solid transparent;
    border-left: 30px solid transparent;
}
.img_07::after {
    bottom: -1px;
    left: -12px;
    border-top: 30px solid transparent;
    border-right: 30px solid transparent;
    border-bottom: 30px solid #053e62;
    border-left: 30px solid #053e62;
}

.img_05 {
    position: relative;
}

.img_05::before,
.img_05::after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    z-index: 1;
}

.img_05::before {
    top: -10px;
    right: -10px;
    border-top: 30px solid #053e62;
    border-right: 30px solid #053e62;
    border-bottom: 30px solid transparent;
    border-left: 30px solid transparent;
}
.img_05::after {
    bottom: -1px;
    left: -12px;
    border-top: 30px solid transparent;
    border-right: 30px solid transparent;
    border-bottom: 30px solid #053e62;
    border-left: 30px solid #053e62;
}
.text_05 {
    width: 600px;
    margin: auto;
    border: 2px double#333;
    padding: 20px;
}

.text_06 {
    width: 600px;
    margin: auto;
    background: rgba(159, 87, 94, 0.6);
    padding: 20px;
    border: 2px double#333;
}

.image_05{
    width: 60%; /*画像サイズ指定*/
    margin: 0;
    padding: 0;
    overflow: hidden;
    position: relative;
  }

.target-dog {
    padding-top: 80px;
}

/* セクション３ */
.concept-wrapper_04 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem; /* 写真とテキストの間隔 */
    flex-wrap: wrap; /* モバイル対応 */
  }


  .text_04 {
    left: 180px;
    max-width: 564px;
    margin: 0; /* 自動センタリングは不要 */
    padding: 1rem 2rem calc(1rem + 10px);
    font-size: 18px;
    color: var(--color-white);
    position: relative;
    background: rgba(159, 87, 94, 0.8);
    text-align: left;
  }
  
/* 赤枠の微調整 */
.text_04::before {
    content: '';
    position: absolute;
    top: -10px; /* 少し上に移動 */
    left: -10px; /* 少し左に移動 */
    width: 100%;
    height: 100%;
    border: 4px solid #000;
    box-sizing: border-box;
    z-index: -1; /* 背面に */
  }
  /* テキストブロックを左に配置 */
  .text_07 {
    top: -120px;
    left: 180px;
    max-width: 600px;
    margin: 0; /* 自動センタリングは不要 */
    padding: 1rem 2rem calc(1rem + 10px);
    font-size: 18px;
    color: var(--color-white);
    position: relative;
    background: rgba(159, 87, 94, 0.9);
    text-align: left;
  }
  
/* 赤枠の微調整 */
.text_07::before {
    content: '';
    position: absolute;
    top: -10px; /* 少し上に移動 */
    left: -10px; /* 少し左に移動 */
    width: 100%;
    height: 100%;
    border: 4px solid #000;
    box-sizing: border-box;
    z-index: -1; /* 背面に */
  }
  
  .image-container img {
    width: 100%;
    border-radius: 50%;
    
  }
  

 /* テキストブロックを左に配置 */
 .text_08 {
    top: 40px;
    right: 200px;
    max-width: 600px;
    margin: 0; /* 自動センタリングは不要 */
    padding: 1rem 2rem calc(1rem + 10px);
    font-size: 18px;
    color: var(--color-white);
    position: relative;
    background: rgba(159, 87, 94, 0.9);
    text-align: left;
  }
  
/* 赤枠の微調整 */
.text_08::before {
    content: '';
    position: absolute;
    top: -10px; /* 少し上に移動 */
    left: -10px; /* 少し左に移動 */
    width: 100%;
    height: 100%;
    border: 4px solid #000;
    box-sizing: border-box;
    z-index: -1; /* 背面に */
  }

.img_06 {
    width: 30%;
    padding: 0%;
    background-color: #b3a38f;
    padding: 30px;
    border-radius: 50%;
}

.video-section_01 video {
    display: block;
    width: 100%;
    height: 500px;/* 表示したい高さを指定 */
    object-fit: cover;
    object-position: center center; 
    padding-bottom: 80px;
}
/* セクション４ */
.pricelist {
    background-color: #f9f7f3;
    padding: 20px;
    margin: 0;
}

.price-table-container {
    background-color: #e8e6eb;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 90%;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

table {
    width: 100%;
    border-collapse: collapse;
}

th {
    background-color: #e8e6eb;
    text-align: center;
    padding: 15px 10px;
    font-size: 18px;
    font-weight: bold;
    color: #333;
    border-bottom: 2px solid rgba(0,0,0,0.3);
}

td {
    padding: 12px 10px;
    text-align: center;
    font-size: 16px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

tr:last-child td {
    border-bottom: none;
}

.dog-column {
    text-align: center;
    width: 33%;
    background-color: #e8e6eb;
}

.price-column {
    width: 33%;
    background-color: #e8e6eb;
}
}
    /* -----------------------------
  レスポンシブ - スマートフォン
----------------------------- */
@media screen and (max-width: 767px) {
    .wrapper {
        width: 100%;
        padding-bottom: 20px;
    }

    .sec-ttl {
        font-size: 24px;
        padding-bottom: var(--space-unit);
    }

    .lead {
        text-align: left;
    }

    /* ヘッダー（SP） */
    .header .wrapper {
        padding: 0 var(--space-unit);
        height: auto;
    }

    .logo {
        margin: 10px 0;
    }

    .hero-text_01 {
        position: absolute;
        top: 28%;
        left: 53%;
        color: var(--color-secondary);
        font-size: 50px; /* SP用テキストサイズ */
        font-family: "Itim", cursive;
        font-weight: bold;
        text-shadow: 1px 1px 3px rgba(249, 249, 249, 0.5); /* 文字を読みやすく */
        text-align: center;
        padding: 7px;
        background-color: rgba(234, 233, 233, 0.3); /* 少し背景色をつけて読みやすく */
        width: 40%; /* 幅を指定して折り返し調整 */
        box-sizing: border-box;
        /* border-radius: 40%; */
    }



    img.image_1 {
        width: 70%;
        justify-content: center;
        background-color: #b3a38f;
        border-radius: 50%;
        padding: 10px;
        margin: auto;
    }
    .img_04 {
        width: 70%;
        background-color: rgba(179, 163, 143, 0.5);
        padding: 15px;
        border-radius: 50%;
        /* margin-left: 55px; */
        margin: auto;
        margin-top: 20px;
    }

    .video-section_01 video {
        display: block;
        width: 100%;
        height: 170px;/* 表示したい高さを指定 */
        object-fit: cover;
        object-position: center center; 
        padding-bottom: 40px;
    }


    .img_06 {
        width: 70%;
        padding: 0%;
        background-color: rgba(179, 163, 143, 0.5);
        padding: 15px;
        border-radius: 50%;
        margin: auto;
        margin-bottom: 40px;
    }


    .concept-wrapper_03 {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 2rem; /* 写真とテキストの間隔 */
        flex-wrap: wrap; /* モバイル対応 */
        padding-bottom: 40px;
      }

    .text_02 {
        max-width: 341px;
        margin: 0; /* 自動センタリングは不要 */
        padding: 1rem 2rem calc(1rem + 5px);
        font-size: 12px;
        color: var(--color-white);
        position: relative;
        background: rgba(159, 87, 94, 0.9);
        text-align: left;
        margin-bottom: 20px;
        left: 39px;
        }
        
    /* 赤枠の微調整 */
    .text_02::before {
        content: '';
        position: absolute;
        top: -10px; /* 少し上に移動 */
        left: -10px; /* 少し左に移動 */
        width: 100%;
        height: 100%;
        border: 4px solid #000;
        box-sizing: border-box;
        z-index: -1; /* 背面に */
        }

        .text_03 {
        max-width: 230px;
        margin: 0; /* 自動センタリングは不要 */
        padding: 1rem 2rem calc(1rem + 5px);
        font-size: 12px;
        position: relative;
        background:  rgba(179, 163, 143, 0.5);
        left: 105px;
        top: 24px;
        }
        
    /* 赤枠の微調整 */
    .text_03::before {
        content: '';
        position: absolute;
        top: -10px; /* 少し上に移動 */
        left: -10px; /* 少し左に移動 */
        width: 100%;
        height: 100%;
        border: 4px solid #000;
        box-sizing: border-box;
        z-index: -1; /* 背面に */
        }


        .text_04 {
            max-width: 341px;
            margin: 0; /* 自動センタリングは不要 */
            padding: 1rem 2rem calc(1rem + 5px);
            font-size: 12px;
            color: var(--color-white);
            position: relative;
            background: rgba(159, 87, 94, 0.9);
            text-align: left;
            margin-bottom: 20px;
            left: 39px;
            }
            
        /* 赤枠の微調整 */
        .text_04::before {
            content: '';
            position: absolute;
            top: -10px; /* 少し上に移動 */
            left: -10px; /* 少し左に移動 */
            width: 100%;
            height: 100%;
            border: 4px solid #000;
            box-sizing: border-box;
            z-index: -1; /* 背面に */
            }
        .wrapper_01 {
            padding-top: 30px;
        }

        .flex {
        
        justify-content: center;
        }

    .flex_01 {
        
        flex-direction: row-reverse;
        justify-content: center;
        
        
    }
        .flex .image {
        width: 100%; /*画像サイズ指定*/
        margin: 0;
        overflow: hidden;
        position: relative;
        }

        .flex .text {
        margin: 0 0 0 20px;
        padding: 0;
        }

    .text_05 {
        display: flex;
        justify-content: center;
        font-size: 14px;
        width: 350px;
        padding: 20px;
        margin: auto;
        background-color: rgba(179, 163, 143, 0.5);
        border: 2px double#333;
    }

    .text_06 {
        font-size: 14px;
        width: 350px;
        margin: auto;
        background: rgba(159, 87, 94, 0.6);
        padding: 20px;
        margin: auto;
        border: 2px double#333;
    }

    .target-dog {
        padding-bottom: 10px;
        text-align: center;
    }

    .concept-title_01 {
        font-size: 18px;
        font-family: var(--font-title);
        text-align: center;
        padding-bottom: 20px;
        
    }

    figure, img {
        display: flex;
        justify-content: center;

    }

    .price-table-container {
        background-color: #e8e6eb;
        display: flex;
        margin: auto;
        width: 90%;
        padding: 10px;
        border-radius: 10%;

    }
    
    th, td {
        text-align: center;
        padding: 8px 5px;
        font-size: 14px;
    }

    th {
        padding: 10px;
        border-bottom: 2px solid rgba(0,0,0,0.3);
    }

    th.dog-column {
        
    }

}







/* ギャラリー */
/* * {
    box-sizing: border-box;
    font-family: "Avenir", "Helvetica", sans-serif;
}

body {
    background-color: #f9f9f9;
}

/* Default table styles for this demo */
/* table {
    border-collapse: collapse;
    text-align: left;
    width: 100%;
}
table tr {
    background: white;
    border-bottom: 1px solid
}
table th, table td {
    padding: 10px 20px;
}
table td span {
    background: #eee;
    color: dimgrey;
    display: none;
    font-size: 10px;
    font-weight: bold;
    padding: 5px;
    position: absolute;
    text-transform: uppercase;
    top: 0;
    left: 0;
} */ */

/* Simple CSS for flexbox table on mobile */
/* @media(max-width: 800px) {
    table thead {
        left: -9999px;
        position: absolute;
        visibility: hidden;
    }
    table tr {
        border-bottom: 0;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        margin-bottom: 40px;
    }
    table td {
        border: 1px solid;
        margin: 0 -1px -1px 0;
        padding-top: 35px;
        position: relative;
        width: 50%;
    }
    table td span {
        display: block;
    } */
}