@charset "utf-8";
.grecaptcha-badge { visibility: hidden; }
/* ポップなボタンのスタイル */
        .btn-pop {
            transition: all 0.2s ease;
            box-shadow: 0 4px 0 #d97706; /* 濃いオレンジの影 */
        }
        .btn-pop:hover {
            transform: translateY(2px);
            box-shadow: 0 2px 0 #d97706;
        }
        .btn-pop:active {
            transform: translateY(4px);
            box-shadow: 0 0 0 #d97706;
        }
        /* セクションの波型装飾用 */
        .wave-bottom {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            overflow: hidden;
            line-height: 0;
        }
        .wave-bottom svg {
            position: relative;
            display: block;
            width: calc(100% + 1.3px);
            height: 40px;
        }
        .wave-bottom .shape-fill {
            fill: #FFFFFF;
        }
/* ---- カラー */
:root {
    /* カラー */
    --color-00: #39302A;
    --color-01: #FAE0BE;
    --color-02: #FCF2E7;
    --color-03: #858E8C;
    --color-04: #337A74;
    --color-05: #E5E5E5;
    --color-white: #fff;
    --color-black: #000;
    /* 時間 */
    --duration-025: .25s;
    --duration-050: .5s;
    --duration-075: .75s;
    --duration-100: 1s;
    --duration-150: 1.5s;
    --duration-200: 2s;
    /* フォントサイズ */
    --fs-08: 0.8rem;
    --fs-12: 1.2rem;
    --fs-16: 1.6rem;
    --fs-18: 1.8rem;
    /* ボックスサイズ */
    --width-01: 1200px;
    --width-02: 1375px;
    --width-03: 1335px;
    --heigt-01: 600px;
}
.color-00 { color: var(--color-00); }
.color-01 { color: var(--color-01); }
.color-02 { color: var(--color-02); }
.color-03 { color: var(--color-03); }
.color-04 { color: var(--color-04); }
.color-05 { color: var(--color-05); }
.color-white { color: var(--color-white); }
.color-black { color: var(--color-black); }
.bg-color-00 { background-color: var(--color-00); }
.bg-color-01 { background-color: var(--color-01); }
.bg-color-02 { background-color: var(--color-02); }
.bg-color-03 { background-color: var(--color-03); }
.bg-color-04 { background-color: var(--color-04); }
.bg-color-05 { background-color: var(--color-05); }
.bg-color-white { background-color: var(--color-white); }
.bg-color-black { background-color: var(--color-black); }
/* ---- フォント */
body {
    line-height: 1;
    font-size: 16px;
    font-family: 'Noto Sans JP',
    sans-serif,"Yu Gothic",
    "游ゴシック", YuGothic,
    "游ゴシック体", "ヒラギノ角ゴ Pro W3",
    "メイリオ", sans-serif;
}
.bold { font-weight: bold; }
a {
    transition-duration: var(--duration-050);
    text-decoration: none;
}
.underline { text-decoration: underline; }
.fs-80 { font-size: 0.8rem; }
.fs-01 { font-size: 1rem; }
.fs-02 { font-size: 1.1rem; }
.fs-03 { font-size: 1.2rem; }
.fs-04 { font-size: 1.4rem; }
.fs-05 { font-size: 1.5rem; }
/* ---- ラップ(主に固定投稿ページ用) */
.body-wrap { 
    width: 100%;
    max-width: var(--width-01);
    margin: 0 auto;
}
.flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.justify-around { justify-content: space-around; }
.align-center { align-items: center; }
.align-start { align-items: flex-start; }
.align-end { align-items: flex-end; }
.align-stretch { align-items: stretch; }
.direction-column { flex-direction: column; }
.direction-reserve { flex-direction: column-reverse; }
.box-2-column { width: 50%; }
.box-3-column { width: calc(100% / 3); }
.box-4-column { width: 25%; }
/* ---- マージンパッディング量(主に固定投稿ページ用) */
.mt-100-50 { margin-top: 100px; }
.ma-0a { margin: 0 auto; }
.pa-20-10 { padding: 20px; }
.pb-20-10 { padding-bottom: 20px; }
.pc-pa-30 { padding: 30px; }
.mt-20 { margin-top: 20px; }
.mb-20 { margin-bottom: 20px; }
/* ---- その他初期設定 */
* { box-sizing: border-box; }
img { max-width: 100%; }
a:hover {
    transition-duration: var(--duration-025);
    opacity: .5;
}
.align-center {
    text-align: center;
}
.sp-block { display: none; }
.pc-block { display: block; }
/* ---- タイトル見出し */
.title-01 {
    position: relative;
    display: inline-block;
    margin: 0 auto;
    padding: 20px 0;
}
.title-01::before {
    position: absolute;
    content: "";
    background: url(../img/lantern.svg) no-repeat center center;
    background-size: contain;
    left: -55px;
    top: 0px;
    width: 55px;
    height: 84.5px;
}
.title-01 .text {
    font-size: var(--fs-16);
    font-weight: bold;
    display: flex;
    flex-direction: column;
}
.title-01 .sub-title {
    font-size: var(--fs-08);
    margin-bottom: 0.5rem;
}

.title-02 {
    position: relative;
}
.title-02::before {
    position: absolute;
}

/* ---- 全ページ共通パーツ */
.to-top {  }
/* ---- inviewパーツ */
.fade { opacity: 0; transition-duration: var(--duration-200); }
.fade-in { opacity: 1; transition-duration: var(--duration-200); }
.ef-up { transform: translateY(80px); opacity: 0; transition-duration: var(--duration-150); }
.is-show-up { opacity: 1; transform: translateY(0px); transition-duration: var(--duration-150); }
.ef-right { transform: translateX(80px); opacity: 0; transition-duration: var(--duration-150); }
.ef-left { transform: translateX(-80px); opacity: 0; transition-duration: var(--duration-150); }
.is-show-right { opacity: 1; transform: translateX(0px); transition-duration: var(--duration-150); }
.is-show-left { opacity: 1; transform: translateX(0px); transition-duration: var(--duration-150); }
/* ---- ボタン */

/* ---- header */

/* ---- フロントページ front */
.fv-wrap {
    height: 100%;
    width: 100%;
    padding: 2.5vh calc(2.5vh + 20px) 100px;
}
.fv-wrap:has(.morning) {
    background-color: #faffa2;
}
.fv-wrap:has(.afternoon) {
    background-color: #70f1ff;
}
.fv-wrap:has(.evening) {
    background-color: #75abf1;
}
.fv-wrap:has(.night) {
    background-color: #111324;
}
.front .window {
    border-radius: 30px;
    height: calc(97.5vh - 100px);
    background-color: var(--color-white);
    overflow: hidden;
}

.front .window video {
    width: 100%;
    height: auto;
}
.logo img {
    height: 50px;
    display: inline-block;
}


/* ---- 固定ページ */

/* ---- 投稿ページ */

/* ---- 記事ループページ */

/* ---- footer */

@media screen and ( max-width:834px ){
/* ---- マージンパッディング量(主に固定投稿ページ用) */
    .mt-100-50 { margin-top: 50px; }
    .pa-20-10 { padding: 10px; }
    .pb-20-10 { padding-bottom: 10px; }
    .pc-pa-30 { padding: 0px; }
/* ---- その他初期設定 */
    .sp-block { display: block; }
    .pc-block { display: none; }
    .sp-direction-column { flex-direction: column; }
    .sp-direction-reserve { flex-direction: column-reverse!important; }
/* ---- ボタン */

/* ---- header */

/* ---- フロントページ */

/* ---- 固定ページ */

/* ---- 記事ループページ */

/* ---- footer */

}/* max-width:999px ここまで */