*,
*::before,
*::after {
    box-sizing: border-box;
    /* すべての要素に適用 */
}

/* 基本設定 */
html {
    font-size: 62.5%;
    /* 1rem = 10px */
    scroll-behavior: smooth;
    /* スムーズスクロール */
}


body {
    /*font-family: 'Noto Sans JP', sans-serif;*/
    font-family: "IBM Plex Sans JP", sans-serif;
    font-style: normal;
    color: #333;
    line-height: 1.6;
    background-color: #f8f8f8;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s ease;
}

a:hover {
    opacity: 0.7;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
    /* 画像下部の余白削除 */
}

/*
.loading {
  content: '';
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  z-index: 1000;
  background: #1d3a62;
  height: 100vh;
}

.loading div {
  top: 50%;
  left: 50%;  
  transform: translate(-50%, -50%);
  position: absolute;
}

.loading p {
  color: #fff;
  font-size: 50px;
  font-family: 'Concert One', cursive;
  animation: open .7s linear;
}


@keyframes open{
	0% {
		opacity: 0;
		transform: scaleY(8) scaleX(8);
	}
	70% {
		opacity: 1;
		transform: scaleY(1) scaleX(1);
	}
}
*/
/* ローディング画面 */
.loading {
    content: '';
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    z-index: 1000;
    background: #dec4a6;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loading div {
    position: relative;
}

.loading__logo {
    max-width: 200px;
    /* ロゴの最大幅を調整 */
    height: auto;
    opacity: 0;
    /* 初期状態で非表示 */
    animation: open 0.7s ease-out forwards;
    /* アニメーション適用 */
    animation-delay: 0.2s;
    /* アニメーション開始までの遅延 */
}

.spinner {
    width: 100px;
    height: 100px;
    /*margin: 200px auto;*/
    background-color: #fff;
    border-radius: 100%;
    animation: sk-scaleout 1s infinite ease-in-out;
}

/* ローディングアニメーション */
/*
@keyframes sk-scaleout {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
    opacity: 0;
  }
}
*/
@keyframes open {
    0% {
        opacity: 0;
        transform: scale(0.5);
        /* 小さく表示して拡大 */
    }

    70% {
        opacity: 1;
        transform: scale(1.1);
        /* 少し大きくなってから */
    }

    100% {
        opacity: 1;
        transform: scale(1);
        /* 元のサイズに戻る */
    }
}


.loaded {
    opacity: 0;
    visibility: hidden;
}

/* 共通コンテナ */
.section__inner,
.header__inner,
.footer__inner {
    max-width: 1100px;
    /* FitEasyに合わせた最大幅 */
    margin: 0 auto;
    padding: 0 20px;
    /* 左右の余白 */
}

/* ボタンの共通スタイル */
.btn-primary {
    display: inline-block;
    padding: 15px 20px;
    background-color: #1d3a62;
    /* スチールブルー */
    color: #fff;
    border-radius: 5px;
    font-weight: 700;
    transition: background-color 0.3s ease;
    text-align: center;
}

.btn-primary:hover {
    background-color: #5F9EA0;
    /* シーグリーン */
}

.btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    background-color: #fff;
    color: #1d3a62;
    border: 1px solid #1d3a62;
    border-radius: 5px;
    font-weight: 700;
    transition: background-color 0.3s ease, color 0.3s ease;
    text-align: center;
}

.btn-secondary:hover {
    background-color: #1d3a62;
    color: #fff;
}

.btn-store {
    display: inline-block;
    padding: 10px 15px;
    background-color: #1d3a62;
    /* スレートブルー */
    color: #fff;
    border-radius: 5px;
    font-size: 1.4rem;
    /*margin-right: 10px;*/
    margin-bottom: 10px;
    white-space: nowrap;
    /* テキストが途中で改行しないように */
}

.white {
    color: #fff;
}

/* ヘッダー */
.header {
    background-color: #fff;
    padding: 10px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 100;
}

.header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-logo {
    font-size: 0;
    /*font-weight: 700;
    color: #4682B4; /* スチールブルー */
}

.site-logo a {
    display: block;
    /* aタグをブロック要素にする */
    line-height: 0;
    /* 画像の余白をなくす */
}

.site-logo img {
    height: 50px;
    /* ロゴ画像の高さを調整 (必要に応じて変更) */
    width: auto;
    /* アスペクト比を保つ */
    display: block;
    /* 余白の調整 */
}

.global-nav {
    /*
    padding-right: 20px;
    padding-left: 20px;
    */
}

.global-nav ul {
    display: flex;
    gap: 30px;
    padding-right: 20px;
    padding-left: 20px;
}

.global-nav a {
    font-size: 1.6rem;
    color: #333;
    padding: 5px 0;
    position: relative;
}

.global-nav a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background-color: #1d3a62;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.global-nav a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.header__reserve-btn {
    font-size: 1.5rem;
}

.nav-toggle {
    /* ハンバーガーメニューボタンはPCで非表示 */
    display: none;
}

/* ヒーローセクション */
.hero {
    /* background-image: url('../images/0016_xlarge.jpg'); メインビジュアルの背景画像 */
    background-size: cover;
    background-position: center;
    height: 70vh;
    /* 画面の高さの70% */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    margin-top: 40px;
    /* ヘッダーの高さ分 */
    position: relative;
    z-index: 1;
    /* ヘッダーの下にくるように */
}

/* スライドショーのコンテナ */
.hero__slideshow {
    position: absolute;
    /* 親要素に対して絶対配置 */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    /* hero__innerより奥に配置 */
}

/* 各スライド画像 */
.hero__slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    /* 初期状態では非表示 */
    transition: opacity 1.5s ease-in-out;
    /* フェードイン・アウトのアニメーション */
}

/* 現在表示中のスライド */
.hero__slide.active {
    opacity: 1;
    /* activeクラスが付いている画像は表示 */
}

/* オーバーレイのz-indexを調整 */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: -1;
    /* スライドショーより手前、hero__innerより奥に配置 */
}

.hero::before {
    /* オーバーレイ */
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    /* 暗めのオーバーレイ */
    z-index: -1;
}

.hero__catchcopy {
    font-size: 2.2rem;
    font-weight: 400;
    margin-bottom: 10px;
}

.hero__title {
    font-size: 4.8rem;
    font-weight: 700;
    line-height: 1.3;
}

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


.hero__btn {
    font-size: 1.8rem;
    padding: 18px 40px;
}

/* ヒーローセクションの要素を初期状態で非表示にするCSS */
.fade-in-item {
    opacity: 0;
    transform: translateX(-20px);
    /* 初期位置を左に20pxずらす */
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    /* アニメーションの設定 */
}

/* アニメーションを実行するクラス */
.fade-in-item.is-visible {
    opacity: 1;
    transform: translateX(0);
}

/* 各セクションの共通スタイル */
.section {
    padding: 80px 0;
}

.section:nth-of-type(odd) {
    /* 奇数番目のセクションの背景色 */
    background-color: #fff;
}

.section-title {
    border-bottom: 3px solid #1d3a62;
    font-size: 3.6rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: #1d3a62;
    position: relative;
    display: inline-block;
}

/*
.section-title::after {
    /* 下線 
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #1d3a62;
}*/

/* ABOUTセクション */
.about__content {
    text-align: center;
}

.about__content>p {
    font-size: 1.8rem;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.about__features {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.about__features li {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    background-color: #fff;
    /* ライトシアン */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.about__features img {
    margin-bottom: 15px;
    width: 100%;

}

s .about__features h3 {
    font-size: 2.0rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #2F4F4F;
    /* ダークスレートグレー */
}

.about__features p {
    font-size: 1.5rem;
    color: #555;
}

/* 最新情報セクションのスタイル */
.news-list {
    display: flex;
    flex-wrap: wrap;
}

/*
.news-item {
    display: flex;
    flex-wrap: wrap;
    border-bottom: 1px solid #ccc;
    padding: 15px 0;
    width: 100%;
    margin: 0 5%;
}

.news-item:first-child {
    border-top: none;
}
*/
.news-date {
    width: 150px;
    padding-right: 20px;
    font-weight: bold;
    /*color: #555;*/
    text-align: left;
}

.news-title {
    flex-grow: 1;
    font-weight: bold;
    margin: 0;
    line-height: 1.0;
}

.news-link {
    color: #333;
    transition: color 0.3s ease;
}

.news-link:hover {
    color: #1d3a62;
}

.mb-15 {
    margin-bottom: 15px;
}

/*88888888888888888888888888888888888888888888888888888888888888888
/* 新しい地域リンクのコンテナとして追加 */
/* 地域リンクの横並びコンテナ */
.store__area-nav {
    display: flex;
    /* 子要素を横並びに */
    justify-content: center;
    /* 中央揃え */
    gap: 30px;
    /* リンク間のスペース */
    margin-bottom: 30px;
    /* 下部に余白 */
}

/* リンク自体のスタイル修正 */
.area-link {
    /* 以前のCSSで設定した、中央寄せを解除する */
    display: inline-block;
    /* flexの子要素として適切に扱うため */
    text-align: center;
    width: auto;
    /* 幅をコンテンツに合わせる */
}

/* area-link内のh3のスタイル調整 */
.area-link h3 {
    /* クリック可能なリンクなので、マージンや下線を調整してタブ風にする */
    font-size: 2.0rem;
    /* サイズを少し小さく */
    font-weight: 700;
    /*color: #1d3a62;*/
    margin-top: 0;
    /* 親要素でマージンを調整するためリセット */
    margin-bottom: 0;
    padding: 10px 20px;
    /* パディングを追加 */
    border-bottom: 3px solid transparent;
    /* 初期状態では透明な下線 */
    transition: border-bottom 0.3s ease;
}

/* ホバー時のスタイル */
.area-link:hover h3 {
    border-bottom: 3px solid #1d3a62;
    /* ホバーで下線をメインカラーに */
    opacity: 1;
    /* <a>:hoverのopacity:0.7を無効化 */
}

/* 既存の地域見出しのスタイルの調整（h3のスタイルに影響を与えないように） */
/* ※このスタイルは、店舗リストの上にあるH3 (#tokyo-area など) のためのものです */
.section.store>h3,
.store__list h3 {
    /* area-link h3と区別するためにセレクタを調整 */
    font-size: 2.4rem;
    /* margin-top: 50px;*/
    margin-bottom: 20px;
    border-bottom: 2px solid #1d3a62;
    display: block;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 5px;
    text-align: center;
}

/* 画面幅の狭い場所でリンク全体がクリックしやすいよう調整 */
/* スマートフォン (〜767px) */
@media (max-width: 767px) {

    /* 地域リンクコンテナの調整 */
    .store__area-nav {
        flex-wrap: wrap;
        /* 画面幅が狭くなったら折り返す */
        gap: 15px 20px;
        /* 上下左右の隙間を調整 */
        margin-bottom: 25px;
    }

    /* リンク内のh3のスマホでの調整 */
    .area-link h3 {
        font-size: 1.8rem;
        padding: 4px 8px;
    }
}

/*88888888888888888888888888888888888888888888888888888888888888888

/* --- レスポンシブデザイン --- */
@media (max-width: 767px) {

    /*
    .news-list {}

    .news-item {
        align-items: flex-start;
        padding: 20px 0;
        width: 100%;
        margin: 0;
    }
*/
    .news-date {
        width: auto;
        margin-bottom: 5px;
    }

}

/* サービスセクション */
.service__items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    /* レスポンシブなグリッド */
    gap: 30px;
}

.service__item {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.service__item:hover {
    transform: translateY(-5px);
}

.service__item figure {
    width: 100%;
    height: 200px;
    /* 画像の高さ固定 */
    overflow: hidden;
}

.service__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* 画像をボックスに収める */
}

.service__item h3 {
    font-size: 2.2rem;
    font-weight: 700;
    padding: 20px 20px 10px;
    color: #1d3a62;
}

.service__item p {
    font-size: 1.5rem;
    padding: 0 20px 20px;
    color: #555;
}

/* 店舗一覧セクション */
.store__description {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 40px;
}

.store__more-btn {
    display: block;
    margin: 0 auto;
    width: fit-content;
    font-size: 1.6rem;
}

.store_tab {
    font-size: 1.5rem;
    color: #fff;
    background-color: #1d3a62;
    display: flex;
    margin-bottom: 40px;
}

.to_FC {
    font-size: 1.6rem;
    text-align: center;
}

/* オンラインショップセクション */
.online-shop p {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 40px;
}

.online-shop__banners {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.online-shop__banner {
    flex: 1;
    min-width: 300px;
    max-width: 450px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    position: relative;
    color: #fff;
    text-align: center;
    transition: transform 0.3s ease;
}

/*
.online-shop__banner:hover {
    transform: translateY(-5px);
}
*/

/*下記後で消して*/
.js-hidden-item {
    display: none;
}

.online-shop__banner img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.online-shop__banner p {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2.4rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    margin-bottom: 0;
    /* 親要素のpのmarginを打ち消す */
}

.online-shop__btn {
    display: block;
    margin: 0 auto;
    width: fit-content;
    font-size: 1.6rem;
}

/* サブスクリプション & メンズネイル & お問い合わせセクション */
.subscription,
.men-nail,
.contact {
    text-align: center;
}

.subscription p,
.men-nail p,
.contact p {
    font-size: 1.8rem;
    margin-bottom: 40px;
}

.contact__info p {
    font-size: 2.0rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #2F4F4F;
}

.contact__form-btn {
    font-size: 1.6rem;
}

/* フッター */
.footer {
    background-color: #333;
    color: #fff;
    padding: 40px 0;
    text-align: center;
}

.footer__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.footer__nav ul {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer__nav a {
    color: #fff;
    font-size: 1.4rem;
}

.copyright {
    font-size: 1.4rem;
    color: #bbb;
}

.footer__sns {
    display: flex;
    gap: 15px;
}

.footer__sns img {
    width: 30px;
    height: 30px;
}

#contents1 {
    opacity: 0;
    transform: translateY(30px);
    transition: transform 0.3s ease-out 0s, opacity 0.3s linear 0s;
}

#contents1.active {
    transform: translateY(0);
    opacity: 1;
}

#contents2 {
    opacity: 0;
    transform: translateY(30px);
    transition: transform 0.3s ease-out 0s, opacity 0.3s linear 0s;
}

#contents2.active {
    transform: translateY(0);
    opacity: 1;
}

#contents3 {
    opacity: 0;
    transform: translateY(30px);
    transition: transform 0.3s ease-out 0s, opacity 0.3s linear 0s;
}

#contents3.active {
    transform: translateY(0);
    opacity: 1;
}

#contents4 {
    opacity: 0;
    transform: translateY(30px);
    transition: transform 0.3s ease-out 0s, opacity 0.3s linear 0s;
}

#contents4.active {
    transform: translateY(0);
    opacity: 1;
}

#contents5 {
    opacity: 0;
    transform: translateY(30px);
    transition: transform 0.3s ease-out 0s, opacity 0.3s linear 0s;
}

#contents5.active {
    transform: translateY(0);
    opacity: 1;
}




/* --- レスポンシブデザイン --- */

/* タブレット (〜1024px) */
@media (max-width: 1024px) {

    .section__inner,
    .header__inner,
    .footer__inner {
        padding: 0 30px;
    }

    .hero {
        height: 60vh;
    }

    .hero__catchcopy {
        font-size: 1.8rem;
    }

    .hero__title {
        font-size: 3.8rem;
    }

    .hero__btn {
        padding: 15px 35px;
        font-size: 1.6rem;
    }

    .section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 3.2rem;
        margin-bottom: 50px;
    }

    /* ABOUT */
    .about__content>p {
        font-size: 1.6rem;
    }

    .about__features li {
        min-width: unset;
        /* 親要素に合わせて調整 */
        flex: none;
        /* flex:1を解除 */
        width: calc(50% - 15px);
        /* 2列表示 */
        max-width: 350px;
        /* 必要に応じて最大幅を設定 */
    }

    /* サービス */
    .service__items {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    /* 店舗 */
    .store__item {
        padding: 25px;
    }

    .store__item h3 {
        font-size: 2.0rem;
    }

    .store__item p {
        font-size: 1.5rem;
    }



    /* ヘッダー */
    .header__inner {
        padding: 0 30px;
        /* PCサイズとの調整 */
    }

    .global-nav {
        /* ハンバーガーメニューが非表示のPC向けスタイルを無効化 */
        display: none;
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background-color: rgba(255, 255, 255, 0.95);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: left 0.3s ease;
        z-index: 99;
    }

    .global-nav {
        padding-right: 2px;
        padding-left: 0px;
    }

    .global-nav.is-active {
        left: 0;
    }

    .global-nav ul {
        flex-direction: column;
        text-align: center;
        gap: 25px;
    }

    .global-nav a::after {
        display: none;
        /* スマホメニューでは下線非表示 */
    }

    .header__reserve-btn {
        display: none;
        /* ハンバーガーメニュー時に非表示 */
    }

    .nav-toggle {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 22px;
        background: none;
        border: none;
        cursor: pointer;
        position: relative;
        z-index: 101;
        padding-top: 0;
        padding-bottom: 0;
    }

    .nav-toggle span {
        display: block;
        width: 100%;
        height: 3px;
        background-color: #333;
        transition: all 0.3s ease;
    }

    .nav-toggle.is-active span:nth-of-type(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .nav-toggle.is-active span:nth-of-type(2) {
        opacity: 0;
    }

    .nav-toggle.is-active span:nth-of-type(3) {
        transform: translateY(-10px) rotate(-45deg);
    }
}

/* スマートフォン (〜767px) */
@media (max-width: 767px) {
    html {
        font-size: 58%;
    }

    .section__inner,
    .header__inner,
    .footer__inner {
        max-width: 100%;
        /* 最大幅を100%に設定 */
        padding: 0 15px;
        /* 左右に15pxのパディング */
    }

    /* ヒーローセクションの修正 */
    .hero__inner {
        width: 100%;
        /* 幅を100%に設定 */
        padding: 0 15px;
        /* 左右に15pxのパディング */
    }

    /* ヘッダー */
    .header {
        padding: 15px 0;
    }

    .site-logo {
        font-size: 2.4rem;
    }

    .global-nav {
        display: none;
        /* ハンバーガーメニューで切り替えるため非表示 */
        position: fixed;
        top: 0;
        left: -100%;
        /* 初期位置は画面外 */
        width: 100%;
        height: 100vh;
        background-color: rgba(255, 255, 255, 0.95);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: left 0.3s ease;
        z-index: 99;
    }

    .global-nav.is-active {
        /* JavaScriptで追加するクラス */
        left: 0;
    }

    .global-nav ul {
        flex-direction: column;
        text-align: center;
        gap: 25px;
        padding-right: 20px;
        padding-left: 20px;
    }

    .global-nav a {
        font-size: 2.2rem;
        color: #1d3a62;
    }

    .global-nav a::after {
        display: none;
        /* スマホメニューでは下線非表示 */
    }

    .header__reserve-btn {
        display: none;
        /* スマホではメインメニュー内に移動、または非表示 */
    }

    .global-nav {
        padding-right: 2px;
        padding-left: 0px;
    }

    .nav-toggle {
        /* ハンバーガーメニューボタン表示 */
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 22px;
        background: none;
        border: none;
        cursor: pointer;
        position: relative;
        z-index: 101;
        /* ナビより手前に */
        padding-top: 0;
        padding-bottom: 0;
    }

    .nav-toggle span {
        display: block;
        width: 100%;
        height: 3px;
        background-color: #333;
        transition: all 0.3s ease;
    }

    .nav-toggle.is-active span:nth-of-type(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .nav-toggle.is-active span:nth-of-type(2) {
        opacity: 0;
    }

    .nav-toggle.is-active span:nth-of-type(3) {
        transform: translateY(-10px) rotate(-45deg);
    }


    /* ヒーローセクション */
    .hero {
        height: 50vh;
        margin-top: 35px;
        /* ヘッダーの高さ分 */
    }

    .hero__catchcopy {
        font-size: 1.6rem;
    }

    .hero__title {
        font-size: 3.2rem;
    }

    .hero__btn {
        padding: 12px 25px;
        font-size: 1.5rem;
    }

    .section {
        padding: 40px 0;
    }

    .section-title {
        font-size: 2.8rem;
        margin-bottom: 40px;
    }

    /* ABOUT */
    .about__content>p {
        font-size: 1.5rem;
    }

    .about__features li {
        width: 100%;
        /* 1列表示 */
        max-width: 320px;
        /* 最大幅 */
    }

    /* サービス */
    .service__item h3 {
        font-size: 2.0rem;
    }

    .service__item p {
        font-size: 1.4rem;
    }

    /* 店舗 */
    .store__description {
        font-size: 1.6rem;
    }

    .store__item {
        padding: 20px;
    }

    .store__item h3 {
        font-size: 1.8rem;
    }

    .store__item p {
        font-size: 1.4rem;
    }

    /* オンラインショップ */
    .online-shop p {
        font-size: 1.6rem;
    }

    .online-shop__banners {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .online-shop__banner {
        width: 100%;
        /* 1列表示 */
        max-width: 350px;
    }

    .online-shop__banner p {
        font-size: 2.0rem;
    }

    /* サブスクリプション & メンズネイル & お問い合わせ */
    .subscription p,
    .men-nail p,
    .contact p {
        font-size: 1.6rem;
    }

    .contact__info p {
        font-size: 1.6rem;
    }

    .contact__form-btn {
        font-size: 1.5rem;
    }

    /* JavaScriptでbodyに付与されるクラス */
    body.no-scroll {
        overflow: hidden;
        /* メニュー表示時に背景のスクロールを止める */
    }

    /* フッター */
    .footer {
        padding: 30px 0;
    }

    .footer__nav ul {
        flex-direction: column;
        gap: 10px;
    }

    .footer__nav a,
    .copyright {
        font-size: 1.3rem;
    }
}

/*メニュー8888888888888888888888888888888888
/* 店舗一覧セクション */
.store__description {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 40px;
}

.store__list {
    display: flex;
    /* 追加: Flexboxで横並びにする */
    overflow-x: auto;
    /* 追加: 横スクロールを可能にする */
    -webkit-overflow-scrolling: touch;
    /* 追加: iOSで滑らかなスクロール */
    gap: 30px;
    padding-bottom: 20px;
    /* スクロールバーのための余白 */
    margin-bottom: 40px;
    scrollbar-width: none;
    /* Firefoxでのスクロールバーを非表示にする */
}

/* Webkit系ブラウザ（Chrome, Safari）のスクロールバーを非表示にする */
.store__list::-webkit-scrollbar {
    display: none;
}

.store__item {
    flex-shrink: 0;
    /* 追加: アイテムが縮まないようにする */
    width: 320px;
    /* 各店舗カードの固定幅 */
    background-color: #F0F8FF;
    /* アリスブルー */
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.store__item h3 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #2F4F4F;
}

.store__item p {
    font-size: 1.6rem;
    margin-bottom: 10px;
    color: #555;
}

.store__more-btn {
    display: block;
    margin: 0 auto;
    width: fit-content;
    font-size: 1.6rem;
}


/*-------メニュー----------*/
/* page-menu.php 専用のセクションID */
#menu-contents {
    padding-top: 60px;
    /* index.phpに合わせて調整 */
    padding-bottom: 80px;
}

.section-title {
    /* index.phpと共通のh2タイトルスタイル */
    border-bottom: 3px solid #1d3a62;
    text-align: center;
    font-size: 3.2rem;
    color: #1d3a62;
    margin-bottom: 25px;
}

.section-description {
    /* index.phpと共通のpタグスタイル */
    text-align: center;
    margin-bottom: 40px;
    font-size: 1.6rem;
}

/* 大見出し (月額パス / 通常メニュー) */
.menu-heading {
    font-size: 2.8rem;
    font-weight: 700;
    color: #1d3a62;
    text-align: center;
    margin-top: 60px;
    margin-bottom: 20px;
}

/* 小見出し (料金プラン / ハンドケア・ジェルポリッシュなど) */
.menu-category {
    font-size: 2.0rem;
    font-weight: 700;
    color: #333;
    padding-left: 15px;
    border-left: 5px solid #dec4a6;
    /* アクセントカラーのライン */
    margin-top: 40px;
    margin-bottom: 20px;
}

/* スマホ対応 */
@media (max-width: 767px) {
    .menu-heading {
        font-size: 2.2rem;
    }

    .menu-category {
        font-size: 1.8rem;
    }
}

/* テーブルの共通スタイル */
.menu-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 40px;
    table-layout: fixed;
    /* 固定幅にする（PC時） */
}

.menu-table th,
.menu-table td {
    padding: 12px 15px;
    border: 1px solid #ddd;
    text-align: left;
    vertical-align: middle;
    font-size: 1.5rem;
}

.menu-table thead th {
    background-color: #f5f5f5;
    /* ヘッダーの背景色 */
    font-weight: bold;
    color: #1d3a62;
    text-align: center;
}

.menu-table tbody tr:nth-child(odd) {
    background-color: #fcfcfc;
    /* 縞模様 */
}

/* 購入ボタンのスタイル (index.phpの.btn-storeに似せる) */
.btn-purchase {
    display: inline-block;
    padding: 8px 15px;
    background-color: #dec4a6;
    /* アクセントカラー */
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.4rem;
    font-weight: bold;
    transition: opacity 0.3s;
    white-space: nowrap;
    /* ボタンが改行しないように */
}

.btn-purchase:hover {
    opacity: 0.8;
}

/* ルールリストのスタイル */
.rule-list {
    max-width: 800px;
    margin: 20px auto 60px;
    padding-left: 20px;
    font-size: 1.5rem;
}

.rule-list li {
    margin-bottom: 10px;
    line-height: 1.6;
}

/* 2列テーブルコンテナ (ジェルメニュー、オプション) */
.flex-table-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 40px;
}

.flex-table-container .menu-table {
    flex: 1 1 45%;
    /* PCでは約2列に */
    margin-bottom: 0;
}

.flex-table-container caption {
    font-weight: bold;
    font-size: 1.6rem;
    text-align: left;
    padding-bottom: 10px;
    color: #1d3a62;
}

/* --- レスポンシブ対応 (モバイル向け) --- */
@media (max-width: 767px) {

    /* 横スクロールラッパー */
    .table-scroll-wrapper {
        overflow-x: auto;
        /* 横スクロールを許可 */
        margin-bottom: 30px;
    }

    .menu-table {
        /* モバイルで横スクロールさせるために最小幅を設定 */
        min-width: 600px;
        table-layout: auto;
    }

    .menu-table th,
    .menu-table td {
        padding: 8px 10px;
        font-size: 1.4rem;
    }

    /* 2列テーブルを縦積みへ */
    .flex-table-container {
        flex-direction: column;
    }

    .flex-table-container .menu-table {
        flex: 1 1 100%;
        min-width: 100%;
    }

    .mt-50 {
        margin-top: 50px;
    }
}

.tl {
    text-align: left;
}

.tc {
    text-align: center;
}

.centering_parent {
    text-align: center;
    padding: 20px;
    /* 余白指定 */
    /* height: 150px;              /* 高さ指定 */
}

.centering_item {
    display: inline-block;
    /* width: 200px;               /* 幅指定 */
    /* height: 90px;               /* 高さ指定 */
    /* margin:  0 auto;            /* 中央寄せ */
}

.fs-14 {
    font-size: 1.4em;
}

.df {
    display: flex;
    justify-content: center;
}

.mt-70 {
    margin-top: 70px;
}

.flex-container {
    justify-content: center;
    align-items: center;
}

.fs-18 {
    font-size: 1.8em;
}

.block {
    width: 150px;
    display: flex;
    padding: 10px 15px;
    margin: 5px;
    background-color: #1d3a62;
    color: #fff;
    border-radius: 30px;
    /*border: 1px solid #1d3a62;*/
    font-size: 1.4rem;
    margin-bottom: 10px;
    white-space: nowrap;
}

.fade-in-fc {
    opacity: 0;
    transform: translateX(-20px);
    /* 初期位置を左に20pxずらす */
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    /* アニメーションの設定 */
}

/* アニメーションを実行するクラス */
.fade-in-fc.is-visible {
    opacity: 1;
    transform: translateX(0);
    /* 最終的な位置に戻す */
    transition-delay: 0.5s;
}

.new_store {
    width: 150px;
    display: flex;
    padding: 10px 15px;
    margin: 5px;
    background-color: #1d3a62;
    color: #fff;
    border-radius: 30px;
    /*border: 1px solid #1d3a62;*/
    font-size: 1.4rem;
    margin-bottom: 10px;
    white-space: nowrap;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.about__fc {
    font-size: 1.8rem;
    margin-bottom: 40px;
    /*max-width: 800px;*/
    margin-left: 20px;
    margin-right: 20px;
}

.linkbox {
    position: relative;
}

.linkbox a {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
}

/*
.news-thumbnails img {
    width: 150px;
    height: 150px;
    object-fit: cover;
}
*/
.news-text {
    margin: 0 20px;
}

.fs-20 {
    font-size: 2.0rem;
}

.fs-18 {
    font-size: 1.8rem;
}

.fs-16 {
    font-size: 1.6rem;
}

.df_recruitment {
    margin-top: 20px;
    display: flex;
    justify-content: center;
}

@media (max-width: 767px) {

    .df_recruitment {
        display: block;
    }
}

.rec_img {
    width: 70%;
}

@media (max-width: 767px) {
    .rec_img {
        width: 100%;
    }
}

.fv-c {
    align-items: center;
}

.recommended-list {
    list-style: none;
    padding: 0;
    margin: 0;
    max-width: 800px;
    /* 必要に応じて調整 */
}

.recommended-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    /* 項目間の余白 */
}

.list-num {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 24px;
    height: 24px;
    font-size: 1.6rem;
    font-weight: bold;
    color: #fff;
    background-color: #1d3a62;
    border-radius: 50%;
    margin-right: 15px;
    line-height: 1;
    flex-shrink: 0;
}

/* テキストコンテンツ */
.list-content {
    flex: 1;
}

/* 1. や 2. のすぐ横の見出し部分 */
.list-title {
    font-size: 1.8rem;
    font-weight: bold;
    margin: 0 0 5px 0;
    /* 下に少しだけ余白 */
    line-height: 1.4;
    color: #333;
}


.list-content p {
    font-size: 1.6rem;
    line-height: 1.6;
    margin: 0;
    color: #555;
}

.list-num2 {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 10px;
    height: 10px;
    font-size: 1.6rem;
    font-weight: bold;
    color: #fff;
    background-color: #1d3a62;
    border-radius: 50%;
    margin-right: 15px;
    line-height: 1;
    flex-shrink: 0;
    margin-top: 7px;
}

/* スマホ調整 */
@media (max-width: 767px) {


    .list-num {
        width: 20px;
        height: 20px;
        font-size: 1.5rem;
    }

}

.news-excerpt {
    margin-top: 10px;
    font-size: 1.4rem;
    /* タイトルより少し小さく */
    line-height: 1.6;
    color: #666;
    /* 少し薄めの色に */
}

/* 「つづきはこちら」のスタイル */
.read-more {
    display: inline-block;
    color: #1d3a62;
    font-weight: bold;
    text-decoration: underline;
    margin-left: 5px;
}

.news-item {
    display: flex;
    flex-wrap: nowrap !important;
    align-items: flex-start;
    padding: 20px 0;
    margin: 0 5%;
    border-bottom: 1px solid #ccc;
    width: 100%;
}

/* 画像エリアの固定 */
.news-thumbnails {
    flex-shrink: 0;
    width: 150px;
}

.news-thumbnails img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

/* テキストエリアを可変にする */
.news-text {
    flex: 1;
    min-width: 0;
    margin: 0 0 0 20px;
    display: flex;
    flex-direction: column;
}

.news-excerpt {
    margin: 10px 0 0 0;
    font-size: 1.4rem;
    color: #666;
    line-height: 1.6;
}

.read-more {
    font-size: 1.4rem;
    color: #1d3a62;
    font-weight: bold;
    text-decoration: underline;
}

/* スマホ対応（767px以下） */
@media (max-width: 767px) {
    .news-item {
        margin: 0;
        /* 左右のmarginをリセット */
        gap: 10px;
        /* 隙間を少し狭く */
    }

    .news-thumbnails {
        width: 100px;
        /* スマホでは画像を少し小さく */
    }

    .news-thumbnails img {
        height: 100px;
    }

    .news-text {
        margin-left: 10px;
    }

    /* スマホで抜粋が長すぎる場合はここを調整 */
    .news-excerpt {
        font-size: 1.2rem;
    }
}

/* テキスト部分の共通設定 */
.excerpt-text {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -webkit-line-clamp: 2;
    /* PCは3行 */
    line-height: 1.1;
    color: #666;
    font-size: 1.4rem;
    margin-bottom: 10px;
}


@media (max-width: 767px) {
    .excerpt-text {
        -webkit-line-clamp: 1;
        font-size: 1.2rem;
        /* 文字を少し小さくして調整 */
    }
}

/* タイトル下の余白調整 */
.news-title {
    margin-bottom: 10px;
}

/* 日付と「続きはこちら」の横並び設定 */
.excerpt-footer {
    display: flex;
    justify-content: space-between;
    /* 両端に配置 */
    align-items: center;
    /* 垂直中央揃え */
    margin-top: 10px;
}

/* 左側の日付スタイル */
.news-date-bottom {
    font-size: 1.4rem;
    color: #888;
    font-weight: bold;
}



/* スマホ用調整 */
@media (max-width: 767px) {
    .excerpt-text {
        -webkit-line-clamp: 2;
        /* スマホは2行 */
    }

    .news-date-bottom,
    .read-more {
        font-size: 1.2rem;
    }
}

.about__190 {
    width: 145px;
    font-size: 1.4rem !important;
    padding: 10px 5px !important;
}


.mb-20 {
    margin-bottom: 20px !important;
}

.mb-0 {
    margin-bottom: 0 !important;
}

.about-page {
    font-size: 1.8rem;
    margin-left: 20px;
    margin-right: 20px;
}

.back-color {
    padding: 10px;
    background: #dec4a6;
}

.heading {
    font-size: 1.8rem;
    padding: 10px;
    color: #fff;
    font-weight: bold;
}


.all-text {
    font-size: 1.8rem;
    font-weight: bold;
    color: #1d3a62;
    word-break: auto-phrase;
}

.main-text {
    font-size: 1.6rem;
    font-weight: bold;
    color: #1d3a62;
    word-break: auto-phrase;
}

.fs-15 {
    font-size: 1.5rem;
}

@media (max-width: 400px) {

    .page_top {
        height: 80px;
        width: 100px;
    }
}

.mb-10 {
    margin-bottom: 10px !important;
}

.mt-12 {
    margin-top: 12px;
}

/* 募集要項テーブル専用スタイル */
.recruitment-table {
    max-width: 800px;
    /* 見やすい幅に制限 */
    margin: 0 auto;
    border: 1px solid #ddd;
    background-color: #fff;
}

.recruitment-table th {
    width: 30%;
    /* 1列目（項目名）の幅を固定 */
    background-color: #1d3a62;
    /* 左側を濃い色にして視認性をアップ */
    color: #fff;
    font-weight: bold;
    text-align: center;
    border: 1px solid #fff;
}

.recruitment-table td {
    width: 70%;
    text-align: left;
    line-height: 1.8;
    padding: 20px;
    /* 少し広めにパディングを取る */
    background-color: #fff;
}

.recruitment-table td strong {
    color: #1d3a62;
}

.recruitment-table td small {
    display: block;
    margin-top: 5px;
    color: #888;
    font-size: 1.2rem;
}

/* スマホ用：1列目の幅を少し狭める */
@media (max-width: 767px) {
    .recruitment-table {
        min-width: 100%;
        /* 横スクロールさせず画面内に収める */
    }

    .recruitment-table th {
        width: 35%;
        padding: 10px 5px;
        font-size: 1.3rem;
    }

    .recruitment-table td {
        padding: 15px 10px;
        font-size: 1.4rem;
    }
}

.flex-center {
    justify-content: center;
}

a.btn--menu {
    color: #fff;
    background-color: #1d3a62;
    border-bottom: 5px solid #365785;
    padding: 10px 15px;
    font-size: 1.4rem;
    border-radius: 10px;
    font-weight: bold;
}

a.btn--menu:hover {
    margin-top: 3px;
    color: #fff;
    opacity: 0.8;
    background: #1d3a62;
    border-bottom: 2px solid #305fa0;
}

a.btn--shadow {
    -webkit-box-shadow: 0 3px 5px rgba(0, 0, 0, .3);
    box-shadow: 0 3px 5px rgba(0, 0, 0, .3);
}

.df_menu {
    display: flex;
    justify-content: center;
}

@media (max-width: 767px) {

    .df_menu {
        display: block;
    }
}

.blog-heading {
    padding: 0.7em 0.5em;
    border: 2px solid #1d3a62;
    position: relative;
    margin: 15px 0 20px 0;
}

.blog-heading::before,
.blog-heading::after {
    content: "";
    display: block;
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid #1d3a62;
}


.blog-heading::before {
    left: -8px;
    top: -8px;
}

.blog-heading::after {
    right: -8px;
    bottom: -8px;
}

.btn-wide {
    width: 140px !important;
}


