@charset "UTF-8";

/* ------------------
common
-------------------*/

html {
    font-size: 62.5%;
    font-style: normal;
    letter-spacing: 0.15rem;
    line-height: 2.5;
}

h1 {
    font-family: "Noto Serif", "Noto Serif JP", serif;
    font-size: 2rem;
    color: #FFF;
    font-weight: 400;
}

h2 {
    font-family: "Noto Serif", "Noto Serif JP", serif;
    font-size: 2.2rem;
    color: #343434;
    font-weight: 700;
    line-height: 1.5;
    text-align: center;
    z-index: 50;
}

h3 {
    font-family: "Noto Serif", "Noto Serif JP", serif;
    font-size: 1.8rem;
    color: #343434;
    font-weight: 500;
    line-height: 1.5;
}

p, li, span {
    font-family: "Noto Sans" "Noto Sans JP", sans-serif;
    font-size: 1.6rem;
    color: #343434;
    font-weight: 300;
    line-height: 1.88;
}

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

.red {
    color: #dc3556;
}

.bold {
    font-weight: 600;
}

.border {
    border-bottom: #565656 solid 1px;
}

.link,
.tel,
.mail {
    color: #343434;
    font-weight: 600;
    border-bottom: 1px solid #343434;
}

.icon {
    width: 20px;
    height: auto;
}

.pcBr {
    display: none;
}

.btn {
    display: block;
    width: 70vw;
    max-width: 100%;
    height: 45px;
    line-height: 45px;
    position: relative;
    background-color: #343434;
    border-radius: 50px;
    color: #FFF;
    font-size: 1.4rem;
    font-weight: 400;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s, box-shadow 0.3s;
    margin: 40px auto 0;
}

.btn a {
    display: block;
    height: 45px;
    line-height: 45px;
    text-align: center;
}

.btn-icon {
    position: absolute;
    width: 20px;
    height: auto;
    right: 10px;
    top: 13px;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    cursor: pointer;
}

.impactLine {
    position: relative;
    width: 100%;
    max-width: 500px;
    top: -10px;
    z-index: 10;
    margin: 0 auto 0;
}

.line {
    width: 100%;
    max-width: 500px;
    border: 1px solid #898989;
    border-radius: 10px;
    margin: 30px auto 0;
    mask-image: linear-gradient(to right, rgb(255, 255, 255) 30%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right rgb(255, 255, 255) 30%, transparent 100%); /* Safari用 */
}

.decorationLine {
    width: 30px;
    height: 2px;
    background-color: #343434;
    border-radius: 50px;
    margin: 15px auto 0;
}

.main {
    background-image: url(../images/background.jpg);
    overflow: hidden;
}

.main__title {
    width: 100%;
    height: 40vh;
    position: relative;
    opacity: 0;
    top: 70px;
    animation: fadeInUpFirstView 1.5s ease-out forwards;
    mask-image: linear-gradient(to bottom, rgb(255, 255, 255) 10%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, rgb(255, 255, 255) 10%, transparent 100%); /* Safari用 */
}

.main__title-img {
    width: 100%;
    height: 50vh;
    object-fit: cover;
    object-position: center;
}

.main__title-txt {
    width: 70%;
    color: #FFF;
    font-size: 3rem;
    font-weight: 600;
    text-align: center;
    position: absolute;
    top: 70px;
    bottom: 100px;          /* 下から20pxの位置に固定 */
    left: 50%;            /* 一度左から50%の位置に持っていく */
    transform: translateX(-50%); /* 自身の幅の半分だけ左に戻して完璧な中央にする */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);;
    margin: 0;
}

.main__contents-wrapper {
    width: 100%;
    max-width: 900px;
    height:100%;
    margin: 70px auto 0;
    padding: 40px 10% 70px;
}

.onePoint.fadeIn-up {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 70px;
}

.onePoint__img {
    width: 50px;
    height: 50px;
}


@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10%);
    }
    to {
        opacity: 1;
        transform: translateY(0%);
    }
}

@media screen and (min-width: 768px) {
    .tbFlex {
        display: flex;
        gap: 40px;
    }
}

/* pc 960px */

@media screen and (min-width: 960px) {
    .loader {
        width: 200px;
        height: 200px;
    }
    .pcFlex {
        display: flex;
        gap: 40px;
    }
    .spBr {
        display: none;
    }
    .pcBr {
        display: block;
    }
    .btn {
        width: 250px;
        height: 60px;
        font-size: 1.6rem;
        line-height: 60px;
    }
    .btn a {
        display: block;
        height: 60px;
        line-height: 60px;
        text-align: center;
    }
    .btn-icon {
        top: 20px;
    }
    .line {
        margin-top: 40px;
    }
    .main__title {
        top: 120px;
    }
    .main__contents-wrapper {
        max-width: 1200px;
        margin-top: 120px;
        padding: 90px 5.3% 90px;
    }
    .onePoint.fadeIn-up {
        margin-top: 90px;
    }
    .onePoint__img {
        width:100px;
        height: 100px;
    }
} /* pc */


/* ------------------
loading
-------------------*/

#loading {
    width: 100vw;
    height: 100vh;
    transition: all 0.5s;
    background-color: #FFF4FF; /* 背景色 */
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    clip-path: circle(100% at 50% 50%);
    transition: clip-path 1.2s ease-in-out, clip-path 1.2s ease-in-out;
}

.loader {
    width: 130px;
    height: 130px;
}

/* 読み込み完了後に消すためのクラス */
.loaded {
    /* 【重要】円の半径を0%にして、中央へ縮める */
    clip-path: circle(0% at 50% 50%) !important;
    /* 完全に消えた後にマウス操作を邪魔しないようにする */
    pointer-events: none;
}

.is-visited #loading {
    display: none;
}

:root {
  /* 通常時の遅延ベース（ここを基準にする） */
    --delay-offset: 0s;
}

/* 2回目以降は、ベースを5.2秒分「前倒し」にする */
.is-visited {
    --delay-offset: -5.2s;
}


/* ------------------
header
-------------------*/

.header {
    position: fixed;
    width: 100%;
    height: 70px;
    background-color: #FFF;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.3);
    z-index: 100;
}

.header-inner {
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 4.3%;
}

.header__logo-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.header__logo {
    width: 50px;
    height: 50px;
    align-items: center;
    cursor: pointer;
}

.header__name {
    width: 200px;
    font-family: "Noto Serif", "Noto Serif JP", serif;
    font-size: 2rem;
    color: #343434;
    font-weight: 800;
}

.hamburger {
    width: 30px;      /* メニュー全体の幅 */
    height: 25px;     /* メニュー全体の高さ */
    position: relative;
    cursor: pointer;
}

.hamburger span,
.hamburger span::before,
.hamburger span::after {
    content: "";
    display: block;
    height: 3px;      /* 線の太さ */
    width: 100%;
    border-radius: 5px;
    background-color: #343434; /* 線の色 */
    position: absolute;
    left: 0;
    transition: all 0.3s; /* アニメーション用 */
    z-index: 200;
}

/* 真ん中の線の位置 */
.hamburger span {
    top: 50%;
    transform: translateY(-50%);
}

/* 上の線の位置 */
.hamburger span::before {
    top: -10px; /* 真ん中からの距離 */
}

/* 下の線の位置 */
.hamburger span::after {
    top: 10px;  /* 真ん中からの距離 */
}

/* 真ん中の線を消す */
.hamburger.is-active span {
    background-color: transparent;
}

/* 上の線を45度回転 */
.hamburger.is-active span::before {
    top: 0;
    transform: rotate(45deg);
    background-color: #FFF;
}

/* 下の線を-45度回転 */
.hamburger.is-active span::after {
    top: 0;
    transform: rotate(-45deg);
    background-color: #FFF;
}

/* メニューの初期状態（右に隠しておく場合） */
.navigation {
    position: fixed;
    top: 0;
    left: -100%; /* 画面の外へ */
    width: 100%;
    height: 100vh;
    background: #343434;
    transition: all 0.5s;
    padding: 70px 10%;
    z-index: 100;
}

/* クラスが付いた時のメニューの状態 */
.navigation.is-active {
    left: 0; /* 画面内に戻ってくる */
}

/* 先ほどの「×」にするCSSも忘れずに！ */
.hamburger.is-active span {
    background-color: transparent;
}
/* ...（以下、前述の回転アニメーション） */

.navigation__item {
    font-family: "Noto Serif", "Noto Serif JP", serif;
    color: #FFF;
    font-size: 1.6rem;
    font-weight: 600;
    margin-top: 10px;
}


/* SNS */

.sns__list {
    display: flex;
    height: 40px;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
    gap: 10px;
}

    .navigation .sns__list {
    justify-content: flex-start;
}

.sns__item {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    object-fit: contain;
    color: #FFF;
}

.sns__item a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.sns__item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.sns__item.x img {
    width: 25px;
    height: 25px;
}

.X {
    display: flexbox;
    width: 30px;
    height: 30px;
    justify-content: center;
    align-items: center;
}

.x img {
    width: 25px;
    height: 25px;
    object-fit: contain;
}

.tel__btn {
    width: 180px;
    height: 50px;
    background-color: #343434;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.15);
    margin: 20px 0 0;
}

.tel__btn-list {
    display: flex;
    width: 180px;
    height: 50px;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.tel__btn-icon {
    display: block;
    width: 30px;
    height: 30px;
}

.tel__btn-txt {
    font-family: "Noto Serif", "Noto Serif JP", serif;
    color: #FFF;
    font-weight: 600;
}

@media screen and (min-width: 960px) {
    .header {
        height: 120px;
    }
    .header-inner {
        height: 120px;
        gap: 10%;
    }
    .header__logo-wrapper {
        gap: 5px;
    }
    .header__logo-wrapper a {
        display: block;
        width: 80px;
        height: 80px;
        flex-shrink: 1;
    }
    .header__logo {
        width: 80px;
        height: 80px;
    }
    .header__name {
        width: 150px;
    }
    .hamburger{
        width: 70%;
        height: 120px;
        position: static;
    }
    .hamburger span,
    .hamburger span::before,
    .hamburger span::after {
        display: none;
    }
    .navigation {
        display: flex;
        height: 120px;
        flex-wrap: nowrap;
        position: static;
        left: 0;
        align-items: center;
        justify-content: flex-end;
        background: none;
        transition: none;
        padding: 0;
        gap: 20px;
    }
    .navigation__list {
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-end;
        align-items: center;
        row-gap: 0px;
        column-gap: 20px;
    }
    .navigation__item {
        display: inline-block; /* または flex */
        white-space: nowrap;   /* 改行禁止 */
        flex-shrink: 0;
        color: #343434;
        font-size: 1.4rem;
        margin-top: 0;
    }
    .tel__btn {
        width: 180px;
        line-height: 50px;
        margin: 0;
        flex-shrink: 0;
    }
    .tel__btn-list {
        width: 160px;
        margin: 0 auto;
    }
    .navigation .sns__list {
        display: none;
    }
}


/* ------------------
footer
-------------------*/

.floating-btn__wrapper {
    display: none;
    position: fixed;   /* ❶ 画面に対して絶対に固定する命令 */
    width: 180px;        /* ❺ スマホ画面の両端に少し余白を持たせる横幅 */
    bottom: 50px;      /* ❷ 画面の一番下から20px浮かせた位置に固定 */
    left: 50%;         /* ❸ 一度画面の真ん中に持ってくる */
    transform: translateX(-50%); /* ❹ ボタン自身の幅の半分だけ左に戻して、完全に中央揃えにする */
    z-index: 50;     /* ❼ 他の画像や文字の下に隠れないように一番手前に出す */
}

footer {
    width: 100vw;
    height: auto;
    background-color: #343434;
    padding: 30px 10% 20px;
}

.shopInfo p {
    color: #FFF;
    font-size: 1.4rem;
}

.shopInfo__storeName {
    display: flex;
    width: 100%;
    height: 60px;
    justify-content: center;
    align-items: center;
}

.shopInfo__storeName-logo {
    width: 60px;
    height: 60px;
}

.shopInfo__storeName-txtBox {
    height: 50px;
    font-family: "Noto Serif", "Noto Serif JP", serif;
    padding: 5px;
}


.shopInfo__storeName-txt {
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1;
}

.shopInfo__storeName-title {
    font-size: 2rem;
    font-weight: 700;
}

.shopInfo__address,
.shopInfo__businessHours,
.shopInfo__tel {
    margin-top: 10px;
}

.shopInfo__businessHours-txt {
    padding-left: 10px;
}

.copyright {
    display: block;
    text-align: center;
    color: #FFF;
    padding: 30px 0 0;
}

@media screen and (min-width: 768px) {
    footer .sns {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 10px;
    }
    .floating-btn__wrapper {
        bottom: 65px;
    }
    footer .sns__line {
        margin: 0;
    }
    footer .sns__list {
    height: 60px;
    margin-top: 0;
    }
}


/* ------------------
top button
-------------------*/

.scroll-top-btn {
    position: fixed;
    bottom: 50px;      /* 画面下からの位置（固定ボタンと被る場合は調整してね） */
    right: 20px;       /* 画面右からの位置 */
    width: 50px;
    height: 50px;
    background-color: #343434; /* サイトに合わせたラベンダー色 */
    border-radius: 50%;        /* まん丸にする */
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 999;
    /* 💡 最初は非表示にしておき、ふわっと出すための設定 */
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
    /* 軽いシャドウでおしゃれに浮かせます */
    box-shadow: 0 3px 10px rgba(0,0,0,0.15);
}

/* ボタンがアクティブ（画面に表示されるとき）のクラス */
.scroll-top-btn.is-show {
    opacity: 1;
    visibility: visible;
}

/* ボタンの中の矢印（＜ を回転させて上向きにする上級テクニック） */
.scroll-top-btn .circle {
    width: 50px;
    height: 50px;
    line-height: 50px;
    color: #FFF;
    text-align: center;
}

@media screen and (min-width: 768px) {
    .scroll-top-btn {
        bottom: 65px;
    }
}


/* ------------------
fadeIn
-------------------*/

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.fadeIn-up {
    opacity: 0;
    transform: translateY(10px); /* 少し下から浮かび上がる */
    transition: opacity 1.5s ease-out, transform 1.5s ease-out;
}

.fadeIn-up.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.fadeIn-left {
    position: relative;
    z-index: 10;
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 1.5s ease-out, transform 1.5s ease-out;
}

.fadeIn-left.is-visible {
    opacity: 1;
    transform: translateX(-30px);
}

.fadeIn-right {
    position: relative;
    z-index: 9;
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 1.5s ease-out, transform 1.5s ease-out;
}

.fadeIn-right.is-visible {
    opacity: 1;
    transform: translateX(30px);
}

@keyframes fadeInUpFirstView {
    from {
        opacity: 0;
        transform: translateY(3%);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media screen and (min-width: 768px) {
    .fadeIn-left {
        transform: translateX(-30vw);
    }
    .fadeIn-left.is-visible {
        transform: translateX(-25vw);
    }
    .fadeIn-right {
        transform: translateX(30vw);
    }
    .fadeIn-right.is-visible {
        transform: translateX(25vw);
    }
}