@charset "UTF-8";

/* ===== 変数定義 ===== */
:root {
    --primary-navy: #00253B;     /* フォントカラー */
    --primary-khaki: #2B3700;     /* フォントカラー */
    --primary-pink: #FF0069;    /* フォントカラー */
    --primary-beige: #AEA392;    /* フォントカラー */
    --primary-rightbeige: #E7DBCA;     /* バックグランドカラー */
    --primary-whitebeige: #FCF7F1;     /* バックグランドカラー */
    --primary-rightgreen:#BAC0A2;
    --secondary-color: #FFFFFF;   /* 背景色 */
    --btn-color: linear-gradient(90deg, #DFCACA 0.08%, #E7B8B8 99.93%);   /* ボタン*/
    --font-sans: "Noto Sans JP", sans-serif;
    --font-serif: "Noto Serif JP", serif;
    --font-hand: "Babylonica", cursive;
}

/* ===== 全体リセット ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 62.5%; /* 1rem = 10px */
}   

body {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1;
    color: var(--primary-navy);
    background-color: var(--secondary-color);
}

html,body{
    overflow-x: hidden;
    width: 100%;
}

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

/* ===== ヘッダー ===== */

.header {
    background-image: url('../img/background_head.jpeg');
    background-repeat: no-repeat;
    background-size: cover;       /* 全体に広げる（オプション） */
    background-position: center;  /* 中央に配置（オプション） */
    color: #fff;
    display: flex;
    width: 100%;
    padding-bottom: 85px;
    flex-direction: column;
}

.header-inner {
    display: flex;
    width: 100%;
    height: auto;
    padding: 25px 30px 40px;
    justify-content: space-between;
    align-items: center;
}

 .logo_img {
    display: block;
    width: 66px;
    height: 37px;
    position: relative; /* z-indexを有効にするために必要 */
    z-index: 1001;      /* ボタンと同じ、もしくはメニュー(999)より高い数値にする */
}

.header-nav{
    display: flex;
    padding: 25px 20px;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
}

@media screen and (min-width: 769px) {
.header-inner {
    display: flex;
    padding: 30px 50px;
    align-items: center;
    gap: 32px;
    align-self: stretch;
    justify-content: flex-start;
    }

.header-nav{
    display: flex;
    padding: 30px 50px;
    align-items: center;
    gap: 32px;
    align-self: stretch;
    justify-content: flex-start;
}
}

/* ===== リンク・リスト基本 ===== */
a {
    color: var(--primary-navy);
    text-decoration: none;
    transition: color 0.3s;
}

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

/* ===== オーバーレイナビ（共通） ===== */

/* 表示状態 */
.nav.active {
    opacity: 1;
    visibility: visible;
    transform: translate(0);
}

.nav {
    position: fixed;
    top: 0;
    right: -100%;    /* 最初は右側に隠しておく */
    width: 100%;     /* スマホ時は横幅いっぱい */
    height: 100vh;
    background: #fff;
    transition: all 0.5s ease;
    z-index: 999;    /* ヘッダーより上に、ボタン(1001)より下に */
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow-y: auto;
    padding-top: 60px; /* メニュー上部の余白 */
}

/* openクラスがついた時：画面内に表示する */
.nav.open {
    right: 0;
}

/* ボタンがアクティブになった時の三本線の動き（例） */
#btn09.active span:nth-of-type(1) {
    transform: translateY(9px) rotate(-45deg);
}

#btn09.active span:nth-of-type(2) {
    opacity: 0;
}

#btn09.active span:nth-of-type(3) {
    /* 下の線は上に15px動かす */
    transform: translateY(-9px) rotate(45deg);
}

.btn-trigger {
    position: relative;
    width: 32px;
    height: 18px;
    cursor: pointer;
    z-index: 1001; /* メニュー(.nav)の999よりも高く設定 */
}

/* 三本線の色を調整（背景が白になる場合は、黒系に変える工夫が必要です） */
.btn-trigger span {
    background-color:var(--primary-navy); /* 紺色など、背景が白になっても見える色に */
    position: absolute;
  left: 0;
  width: 100%;
  height: 1px;        /* ★線の太さ（4pxだと太め、2px〜3pxだと繊細になります） */
  background-color: var(--primary-navy); /* ★線の色（お好みのカラーコードへ） */
  border-radius: 10px;
  transition: all .5s;
}

/* 三本線の位置調整（サイズを変えたらここも微調整） */
.btn-trigger span:nth-of-type(1) {
  top: 0;
}
.btn-trigger span:nth-of-type(2) {
  top: 50%;           /* 真ん中 */
  transform: translateY(-50%);
}
.btn-trigger span:nth-of-type(3) {
  bottom: 0;
}

/* ×印に変わった時の「色」も変えたい場合はここ */
#btn09.active span {
  background-color: #00253B; /* 閉じる時の色 */
}

/* メニューリスト */
.nav-list {
    list-style: none;
    width: 100%;
    max-width: 280px;
    text-align: left;
    padding: 60px 0 60px 45px;
    display: flex;
    margin-right: auto;
    flex-direction: column;
    gap: 50px;
}

.nav-item {
    font-size: 2rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    position: relative;
    padding-bottom: 20px;
}

.nav-item::after{
    content: ""; /* 擬似要素必須 */
    position: absolute;
    bottom: 0;       /* 下に配置 */
    left: 0;
    width: 280px;
    height: 0.5px;
    background-color: var(--primary-navy);
}

.nav-link{
    display: flex;
    text-align: center;
    width: 100%;
    font-size: 2rem;
    line-height: 1; /* 20px */
    gap: 15px;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
    position: relative;
}


.nav-text-wrap {
    display: flex;
    gap: 8px; /* MENU と メニューの間隔 */
    align-items: center;
}

.nav-arrow {
    display: inline-block;
    width: 6px;
    height: 12px;
    background-image: url(../img/nav_arrow.svg);
    background-size: contain;
    background-repeat: no-repeat;
}

.nav-text {
    text-align: center;
    font-weight: 300;
    font-size: 1.4rem;
}


.nav-info{
    display: flex;
    padding: 0 0 100px 45px;
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
    align-self: stretch;
}

.nav-title{
    display: flex;
    align-items: flex-end;
    gap: 20px;
}

.nav-subtitle{
    color: var(--primary-navy);
    text-align: center;
    margin: 0;
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 300;
}

.info-table {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
    align-self: stretch;
    }

.info-item{
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--primary-navy);
    font-family: var(--font-sans);
    font-size: 1.6rem;
    font-weight: 300;
    line-height: 1;
}

.info-text{
    color: var(--primary-navy);
    font-family: var(--font-sans);
    font-size: 1.6rem;
    font-weight: 300;
    line-height: 1.4; 
    margin: 0;
    display: flex;
    gap: 10px;
}

/* ボタン（開く/閉じる） */
.menu_btn,
.nav_btn {
    background: none;
    border: none;
}


/* ===== ボタン ===== */
.btn{
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    width: 333px;
    padding: 20px 25px;
    background: var(--btn-color);
    color: #FFFDE9;
    text-align: center;
    font-size: 1.6rem;
    font-weight: 600;
    line-height: 1;
    font-family: var(--font-serif);
    border-radius: 5px;
    position: relative;
    text-decoration: none;
    box-shadow: 2px 4px 4px 0 rgba(0, 0, 0, 0.25);
}

.btn::after{
    display: inline-block;
    content: '';
    width: 6px;
    height: 12px;
    background-image: url(../img/btn.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    top: 50%;
    right: 25px;
    transform: translateY(-50%);
}

/* ===== フッター ===== */
.footer{ 
    display: flex;
    width: 100%;
    padding: 60px 0;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
}

.footer-inner{
    width: 66px;
    height: 37px;
    flex-shrink: 0;
    aspect-ratio: 66/37;
}

.copyright{
    color: #000;
    text-align: center;
    font-weight: 300;
    line-height: 1;
    padding-bottom: 30px;
}

/* ===== 固定ボタン全体 ===== */
.floating-btn {
    position: fixed;
    bottom: 0;
    width: 100%;           /* スマホでは全幅 */
    max-width: 450px;      /* PC時の最大幅（適宜変更してください） */
    list-style: none;
    z-index: 1000;
    display: flex;
    margin: 0;
    padding: 0;
}

/* Contact (全体の2/5) */
.floating-btn-c {
    flex: 2;               /* 比率2 */
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-navy);
    padding: 10px 5px;     /* 横幅が狭まったときのために左右paddingを調整 */
}

/* Reservation (全体の2/5) */
.floating-btn-r {
    flex: 2;               /* 比率2 */
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(90deg, #FFBDBD 0%, #FFFCE9 100%);
    padding: 10px 5px;
}

/* Instagram (全体の1/5) */
.floating-btn-i {
    flex: 1;               /* 比率1 */
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(180deg, #FFD600 0%, #FF7A00 25.96%, #FF0069 51.92%, #D300C5 78.85%, #7638FA 100%);
}

.floating-txt{
    display: flex;
    gap: 5px;
}
/* テキストが溢れないように調整 */
.floating-c-txt01, 
.floating-r-txt01 {
    font-size: clamp(1.4rem, 5vw, 2.2rem); /* 画面幅に合わせて文字サイズを自動調整 */
}

.floating-c-txt01{
    color: var(--primary-white);
    font-family: var(--font-serif);
    font-weight: 700;
}

.floating-c-txt02{
    font-size: clamp(1rem, 3vw, 1.2rem); /* 画面幅に合わせて文字サイズを自動調整 */
    color: var(--primary-white);
    font-family: var(--font-serif);
}

.floating-r-txt01{
    color: var(--primary-navy);
    font-family: var(--font-serif);
    font-weight: 700;
}

.floating-r-txt02{
    font-size: clamp(1rem, 3vw, 1.2rem); /* 画面幅に合わせて文字サイズを自動調整 */
    color: var(--primary-navy);
    font-family: var(--font-serif);
}

.ig-img{
    width: 30px;
    height: 30px;
}
/* ===== fadeIn ===== */
.fadeIn{
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fadeIn.show{
  opacity: 1;
  transform: translateY(0); /* 元の位置へ戻す */
}

/* ===== fadeInLeft ===== */
.fadeInLeft{
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
} 
.fadeInLeft.show{
  opacity: 1;
  transform: translateX(0); /* 元の位置へ戻す */
}

/* ===== TopfadeIn ===== */
body {
  opacity: 0;
  transition: opacity 1.9s ease; /* ふわっと */
}

/* 読み込み完了で透明度を戻す */
body.fade-in {
  opacity: 1;
}

/* ===== アニメーション遅延設定 ===== */
.blurFade {
  opacity: 0;                   /* 初期状態は透明 */
  filter: blur(5px);            /* ぼかしておく */
  transition: opacity 0.8s ease, filter 0.8s ease;
}

.blurFade.show {
  opacity: 1;                   /* 表示時は透明度100% */
  filter: blur(0);               /* ぼかし解除 */
}


/* ===== TOPへ戻るボタン ===== */

.js-backToTop{
    display: flex;
    width: 100%;
    justify-content: center;
    padding: 15px;
    font-weight: 400;
    text-align: center;
    border: 1px solid var(--primary-whitebeige);
    background-color: var(--primary-white);
    gap: 10px;

}

.btn-txt{
    font-size: 1.6rem;
    color: var(--primary-beige);
    font-weight: 500;
    font-family: var(--font-serif);
}


/* news pc */
@media screen and (min-width: 769px){
.js-backToTop{
    display: none;
}
}
