@charset "utf-8";

/* reset */
abbr,
address,
article,
aside,
audio,
b,
blockquote,
body,
canvas,
caption,
cite,
code,
dd,
del,
details,
dfn,
div,
dl,
dt,
em,
fieldset,
figcaption,
figure,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
header,
hgroup,
html,
i,
iframe,
img,
ins,
kbd,
label,
legend,
li,
mark,
menu,
nav,
object,
ol,
p,
pre,
q,
samp,
section,
small,
span,
strong,
sub,
summary,
sup,
table,
tbody,
td,
tfoot,
th,
thead,
time,
tr,
ul,
var,
video {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: 1em;
}

table {
    border-collapse: collapse;
}

/* font */
html {
    font-size: 14px;
    height: 100%;
    line-height: 1.6;
}

@media only screen and (min-width: 481px) {
    html {
        font-size: 12px;
        height: 100%;
        line-height: 1.4;
    }
}

body {
    font-family: Lato, Arial, 'メイリオ', 'Meiryo', 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'ＭＳ Ｐゴシック', sans-serif;
    min-width: 300px;
    color: #696969;
}

/* pc-sp switch */
main {
    max-width: 960px;
    margin: auto;
    font-size: 1.2em;
}

h1 {
    margin: 50px auto;
}

h2 {
    margin-bottom: 1.5em;
}

h3 {
    margin: 12px auto;
    font-weight: normal;
}

ul {
    list-style: none;
}

.index-eyecatch,
.index-entrance,
.index-shop-info {
    text-align: center;
}

.index-entrance,
.index-shop-info {
    margin: auto;
}

.index-eyecatch p {
    color: #696969;
}

.index-entrance ul {
    display: flex;
    justify-content: center;
    margin: 52px auto auto auto;
}

.index-entrance li {
    display: block;
}

.index-entrance a {
    color: #000;
    border-radius: 4px;
    display: block;
    border: rgba(184, 184, 184, 1) 1px solid;
    margin: 0 5px;
    padding: 15px;
    width: 165px;
    font-size: .7em;
    text-align: center;
    text-decoration: none;
    -webkit-transition: all .3s ease-out;
    -moz-transition: all 1.3s ease-out;
    -ms-transition: all 1.3s ease-out;
}

.index-entrance a:hover {
    border: rgba(236, 236, 236, 1) 1px solid
}

.index-shop-infotel {
    line-height: 1.1;
    margin: 30px auto;
}

.index-shop-info ul {
    padding-bottom: 10px;
}

.index-shop-info a {
    text-decoration: none;
    color: #696969;
}

.shop-phone-number {
    font-size: 1.5em;
    letter-spacing: 3px;
}

.shop-business-hours {
    line-height: 1;
    font-size: .8em;
    color: #696969;
}

.index-shop-other ul {
    width: 480px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.index-shop-other li {
    margin: 0 3px;
}

.other-banner {
    padding: 24px 0 72px;
}

@media only screen and (max-width: 768px) {
    main {
        width: 95%;
        font-size: .6em;
    }

    .index-entrance a {
        width: 150px;
        font-size: 14px;
        padding: 15px 0;
    }

    .index-shop-other ul {
        width: 100%;
    }
}

.index-eyecatch p:not(:last-of-type) {
    margin-bottom: 1em;
}

/* リセット */
/* 1. bodyの横スクロール制御はそのまま必須です */
html,
body {
    overflow-x: hidden;
    width: 100%;
}

/* =========================================
   1. 背景動画エリア（固定）
   ========================================= */
.fixed-video-section {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: #000;
}

.bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    opacity: 0.6;
    /* 動画を少し暗くする */
}

/* =========================================
   2. スクロールエリア
   ========================================= */
/* 2. スクロールエリア本体（無理に広げず、親要素に大人しく従わせる） */
.scrolling-content {
    position: relative;
    margin-top: 100vh;
    margin-top: 100dvh;
    width: 100%;
    z-index: 20;

    /* 前回の transform や margin-left: calc... はすべて削除します */
}

/* 3. 【ここが裏技】疑似要素を使って背景の白だけを左右いっぱいに広げる */
.scrolling-content::before {
    content: "";
    position: absolute;
    top: 0;
    left: -50vw;
    /* 左に向かって大きくはみ出させる */
    width: 200vw;
    /* 右にも届くように画面幅の2倍の超ワイドにする */
    height: 100%;
    /* 高さはコンテンツに合わせる */
    background-color: #fff;
    /* 覆い隠すための背景色（ここで色を指定） */
    z-index: -1;
    /* テキストや画像より後ろに配置 */
}



/* =========================================
   3. 共通の上部コンテンツレイアウト
   ========================================= */
.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 0 20px;
    text-align: center;
    max-width: 960px;
    margin: auto;
    font-size: 1.2em;
}

.fixed-video-section h1 {
    margin: 15px auto;
}

.fixed-video-section h2 {
    margin-bottom: 0.5em;
}

.fixed-video-section .index-entrance ul {
    margin: 20px auto auto auto;
}

.fixed-video-section .index-shop-infotel {
    margin: 15px auto;
}

/* 画像サイズの調整 */
.logo-img {
    max-width: 80%;
    height: auto;
}

/* 背景色に合わせた文字色の切り替え */
.fixed-video-section,
.fixed-video-section h1,
.fixed-video-section h2,
.fixed-video-section h3,
.fixed-video-section p,
.fixed-video-section a,
.fixed-video-section span,
.fixed-video-section li,
.fixed-video-section div {
    color: #fff;
}




/* =========================================
   4. レスポンシブ対応（スマホ向け）
   ========================================= */
@media screen and (max-width: 768px) {
    .fixed-video-section {
        align-items: flex-start;
    }

    .hero-content {
        padding-top: 10px;
        padding-bottom: 10px;
        width: 95%;
        font-size: .75em;
        gap: 5px;
    }

    .fixed-video-section h1 {
        margin: 5px auto;
    }

    .fixed-video-section h2 {
        margin-bottom: 0.3em;
        font-size: 1.1em;
    }

    .fixed-video-section .index-eyecatch p {
        font-size: 0.95em;
        line-height: 1.5;
    }

    .fixed-video-section .index-entrance ul {
        margin: 10px auto auto auto;
    }

    .fixed-video-section .index-shop-infotel {
        margin: 10px auto;
    }

    .logo-img {
        max-width: 90%;
    }

    .scrolling-content::before {
        left: 0;
        width: 100%;
    }
}

/* PC用動画: デフォルト表示 / スマホ用動画: デフォルト非表示 */
.bg-video-pc {
    display: block;
}

.bg-video-sp {
    display: none;
}

@media screen and (max-width: 768px) {

    /* スマホではPC用非表示、スマホ用表示 */
    .bg-video-pc {
        display: none;
    }

    .bg-video-sp {
        display: block;
    }
}