@charset "utf-8";


:root {
    --text-color: #fff;
    --black: #000000;
    --white: #fff;
    --red: #D04141;
    --yellow: #FFCE7B;
    --blue: #2E7FCF;
}

html,
body {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: normal;
    font-style: normal;
    font-optical-sizing: auto;
    line-height: 1.8;
    font-style: normal;
    letter-spacing: 0.2em;
    overflow-x: clip;
    background-color: #000;
    color: var(--text-color);
    word-break: auto-phrase;
}

.bg-fix {
    background-image: url("../images/washi-bg.jpg");
    background-size: contain;
    background-position: center;
    background-repeat: repeat;
    width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: ta-mincho-gf-01, sans-serif;
    font-weight: 100;
    font-style: normal;
}

a {
    color: #FFF;
    text-decoration: none !important;
}

a:hover {
    color: #D04141;
    cursor: pointer;
}


/* フォント */
.sans {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: bold;
}

.min {
    font-family: ta-mincho-gf-01, sans-serif;
}

.haku {
    font-family: ah-hakushu-fude-thick-script, sans-serif;
}

.fc-white {
    color: #FFF !important;
}

.fc-beige {
    color: #FFF9EC !important;
}

.fc-black {
    color: #000000 !important;
}

.fc-red {
    color: var(--red) !important;
}

.fc-yellow {
    color: var(--yellow) !important;
}

.fc-blue {
    color: var(--blue);
}


.v-text {
    writing-mode: vertical-rl;
    text-orientation: upright;
    white-space: nowrap;
}

.text-shadow {
    text-shadow: 2px 2px 5px black;
}

.text-shadow-white {
    text-shadow: 2px 2px 5px white;
}

.has-shadow {
    box-shadow: 4px 4px 12px rgba(0, 0, 0, 0.15);
}

/* 背景 */
.bg-white {
    background-color: #FFF;
}

.bg-brown {
    background-color: #726030;
}

.bg-yellow {
    background-color: #E3B017;
}

.bg-red {
    background-color: var(--red);
}

.bg-black {
    background-color: var(--black);
}

.bg-gray {
    background-color: #EDEDED;
}

/*罫線*/
.b-white {
    border: 1px solid #FFF;
}

.b-blue {
    border: 2px solid var(--blue);
}

.bl-brown {
    border-left: 1px solid #5E3505;
}

.br-brown {
    border-right: 1px solid #5E3505;
}

.bb-white {
    border-bottom: 1px solid #FFF;
}

.bt-brown {
    border-bottom: 1px solid #5E3505;
}

/* ボタン */
.button,
.button-b {
    position: relative;
    display: inline-flex !important;
    color: #FFF;
    width: auto;
    height: 42px;
    justify-content: start;
    align-items: center;
    transition: all 0.3s;
}

.button::after,
.button-b::after {
    content: "";
    width: 60px;
    height: 28px;
    background-image: url(../images/arrow.svg);
    background-size: contain !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    position: absolute;
    top: 50%;
    right: -70px;
    transform: translateY(-50%);
    transition: all 0.3s;
}

.button:hover::after,
.button-b:hover::after {
    right: -85px;
}

.button p {
    color: #FFF;
    font-family: ta-mincho-gf-01, sans-serif;
    font-size: clamp(0.875rem, 0.652rem + 0.96vw, 1.563rem) !important;
    margin: 0 !important;
    padding: 0 !important;
    letter-spacing: 0.2rem;
}

.button-b p {
    color: var(--black);
    font-family: ta-mincho-gf-01, sans-serif;
    font-size: clamp(0.875rem, 0.652rem + 0.96vw, 1.563rem);
    margin: 0 !important;
    padding: 0 !important;
    letter-spacing: 0.2rem;
}

.button.is-free {
    width: auto;
    padding: 0 36px;
}

/* ナビ */

.a-nav-menu {
    display: none;
    opacity: 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 900;
    justify-content: center;
    align-items: center;
    transition: all 0.3s;
    background-color: #000;
}

.a-nav-menu.edit {
    display: flex;
    opacity: 1;
}

.menu-logo {
    max-width: 120px;
}

.menu-box {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    margin-bottom: 30px;
}

.menu-box a {
    margin: 0;
    padding: 0;
    min-width: 20px;
    min-height: 0;
}

.menu-box>a:not(:last-child) {
    margin-top: 14px;
}

.menu-box a p {
    color: #FFF;
    font-size: clamp(0.875rem, 0.592rem + 1.23vw, 1.75rem);
    font-family: ta-mincho-gf-01, sans-serif;
    letter-spacing: 0.4em;
    transition: all 0.3s ease;
    writing-mode: horizontal-tb;
    text-orientation: mixed;
}

.menu-box a:hover p {
    color: var(--red);
}

.menu-store p {
    font-family: ta-mincho-gf-01, sans-serif;
    text-align: center;
}

.insta-logo {
    transition: all 0.3s ease;
}

.insta-logo-button {
    width: 25px;
    margin-right: 10px;
}

@media (min-width: 768px) {
    .insta-logo-button {
        width: 36px;
    }
}

.insta-logo.menu {
    width: 30px;
}

.insta-logo a:hover {
    transform: scale(1.05);
}

@media (min-width: 768px) {

    .menu-box {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: start;
        margin-bottom: 50px;
    }

    .menu-box>a:not(:last-child) {
        margin-right: 20px;
        margin-top: 0;
    }

    .menu-box a p {
        writing-mode: vertical-rl;
        text-orientation: upright;
        white-space: nowrap;
    }

    .insta-logo.menu {
        width: 35px;
    }

    .menu-store p {
        text-align: start;
    }
}

@media (min-width: 992px) {
    .menu-box>a:not(:last-child) {
        margin-right: 40px;
    }
}

.burger-posi {
    position: fixed;
    top: 30px;
    left: 30px;
    z-index: 1100;
    display: flex;
    align-items: center;
}

.a-burger {
    position: relative;
    border: 1px solid #FFF;
    background-color: rgba(33, 33, 33, 0.7);
    border-radius: 40px;
    cursor: pointer;
    width: 54px;
    height: 54px;
    margin: 0;
    padding: 0;
}

@media (min-width: 768px) {
    .burger-posi {
        top: 50px;
        left: 30px;
    }
}

.a-burger div {
    width: 30px;
    height: 2px;
    background-color: #FFF;
    border-radius: 2px;
    position: absolute;
    left: 10px;
    transform-origin: center;
    transition: all 0.3s;
    padding: 0;
    margin: 0;
    min-height: 2px !important;
}

.a-burger div:nth-child(1) {
    top: 20px;
}

.a-burger div:nth-child(2) {
    bottom: 20px;
}

.a-burger.is-active div:nth-child(1) {
    transform: rotate(-45deg);
    top: 25px;
}

.a-burger.is-active div:nth-child(2) {
    transform: rotate(45deg);
    bottom: 25px;
}

.header-button {
    position: fixed;
    top: 42px;
    left: 110px;
    z-index: 800;
    display: flex;
    align-items: center;
}

/* フッター */

.foot-logo {
    max-width: 250px;
}

.foot-insta {
    width: 26px;
}

@media (min-width: 768px) {
    .foot-logo {
        max-width: 296px;
    }
}

/* News表示 */

/* News表示 画像あり版 */
.news-list .webgene-blog {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;

}

.news-list .webgene-item {
    width: 100%;
}

@media (min-width: 768px) {
    .news-list .webgene-item {
        width: 48%;
    }
}

/* ページネーション共通 */
.webgene-pagination {
    width: 100%;
}

.webgene-pagination ul,
.pagelink {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 5rem;
}

.webgene-pagination ul li,
.pagelink p {
    padding: 0 1rem;
}

.webgene-pagination ul li a,
.pagelink p a {
    display: inline-flex !important;
    font-family: "hiragino-mincho-pron", serif;
    width: 130px;
    height: 50px;
    padding: 10px 15px !important;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s;
}

.webgene-pagination ul li a:hover,
.pagelink p a:hover {
    cursor: pointer;
}

/* Nextボタン */
.webgene-pagination li.next a::after,
.pagelink p.next a::after {
    content: "";
    display: block;
    width: 35px;
    height: 28px;
    background-image: url("../images/arrow.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transition: all 0.3s;
}

.webgene-pagination ul li.next a:hover::after,
.pagelink p.next a:hover::after {
    transform: translateX(6px);
}

/* Prevボタン */
.webgene-pagination ul li.prev a::before,
.pagelink p.prev a::before {
    content: "";
    display: block;
    width: 35px;
    height: 28px;
    background-image: url("../images/arrow-prev.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transition: all 0.3s;
}

.webgene-pagination ul li.prev a:hover::before,
.pagelink p.prev a:hover::after {
    transform: translateX(-6px);
}



/* フォーム */
.formInput,
.formTextArea {
    width: 100%;
    padding: 0.5rem;
    border: none;
    border-radius: 0;
    border: 1px solid #CBC3B0;
    background-color: #FFFCF5;
    margin-bottom: 2rem;
}

.formTextArea {
    height: 8rem;
}

.formInput:focus,
.formInput:focus-visible,
.formTextArea:focus,
.formTextArea:focus-visible,
.form-button:focus,
.form-button:focus-visible {
    border: 1px solid #CBC3B0;
    background-color: #FFFCF5;

}

.zipInput {
    width: 6rem;
}

@media (min-width:768px) {
    .formTh {
        padding-left: 2rem;
    }
}

.requiredText {
    background-color: #A3987C;
    color: #FFF;
    padding: 4px 8px;
    font-size: 0.8rem;
    margin-left: 1rem;
}

.privacyformError {
    padding-top: 25px;
}

@media (min-width:768px) {
    .privacyformError {
        padding-top: 0;
    }
}

/* ページ共通設定 */

.fv {
    height: 100vh;
    position: relative;
}

.fv-menu {
    position: absolute;
    top: 30px;
    right: 30px;
    display: flex;
    justify-content: end;
    align-items: start;
}

@media (min-width:768px) {
    .fv-menu {
        top: 50px;
        right: 35px;
    }
}

.fv-menu-box {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: start;
    margin-right: 30px;
}

.fv-title-common,
.fv-title-common2 {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    padding-left: 6%;
}

.fv-title-common h1 {
    font-family: ah-hakushu-fude-thick-script, sans-serif;
    font-size: clamp(5rem, 3.583rem + 6.13vw, 9.375rem);
}

.fv-title-common2 h1 {
    font-family: ah-hakushu-fude-thick-script, sans-serif;
    font-size: clamp(4rem, 2.259rem + 7.53vw, 9.375rem);
}

.fv-title-common p,
.fv-title-common2 p {
    font-family: ta-mincho-gf-01, sans-serif;
    font-size: clamp(1.125rem, 0.842rem + 1.23vw, 2rem);
}

.foot-menu-box {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: start;
}

.fv-menu-box a,
.foot-menu-box a {
    margin: 0;
    padding: 0;
    min-width: 20px;
    min-height: 0;
}

.fv-menu-box>a:not(:last-child) {
    margin-right: 16px;
}

.foot-menu-box>a:not(:last-child) {
    margin-right: 12px;
}

.fv-menu-box a p,
.foot-menu-box a p {
    color: #FFF;
    font-size: 12px;
    font-family: ta-mincho-gf-01, sans-serif;
    letter-spacing: 0.4em;
    transition: all 0.3s ease;
    writing-mode: vertical-rl;
    text-orientation: upright;
    white-space: nowrap;
}

.fv-menu-box.black a p {
    color: #000;
    font-size: 12px;
    font-family: ta-mincho-gf-01, sans-serif;
    letter-spacing: 0.4em;
    transition: all 0.3s ease;
    writing-mode: vertical-rl;
    text-orientation: upright;
    white-space: nowrap;
}

.fv-menu-box a:hover p ,
.foot-menu-box a:hover p {
    color: var(--red) !important;
}

@media (min-width:768px) {

    .fv-menu-box a p,
    .foot-menu-box a p,
    .fv-menu-box.black a p {
        font-size: 16px;
    }

    .foot-menu-box>a:not(:last-child) {
        margin-right: 16px;
    }
}

.top-logo {
    max-width: 86px;
}

.fv-scroll {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 10%;
    width: 46px;
    transition: all 0.3s ease;
}

.fv-scroll:hover {
    cursor: pointer;
    bottom: 9%;
}

.common-bg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-image: url(../images/common-bg.png);
    background-repeat: repeat-x;
    background-size: contain;
    /* 画像の拡大・縮小設定 */
    background-position: center top;
    /* 中央揃え + 上寄せ */
}

.common-bg2,
.common-bg3 {
    width: 100%;
    height: 20%;
    position: absolute;
    top: 0;
    left: 0;
    background-image: url(../images/common-bg.png);
    background-repeat: repeat-x;
    background-size: cover;
    /* 画像の拡大・縮小設定 */
    background-position: center top;
    /* 中央揃え + 上寄せ */
}

@media (min-width:992px) {
    .common-bg2 {
        height: 45%;
    }

    .common-bg3 {
        height: 25%;
    }
}


.reserve-button {
    background-image: url(../images/button-bg.jpg);
    background-size: cover;
    background-position: center;
    position: relative;
    z-index: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 16px;
    transition: all 0.3s;
}

.reserve-button:hover {
    transform: scale(1.05);
}

.reserve-button img {
    height: 48px;
    width: 48px;
    display: block;
    margin-right: 10px;
}

.reserve-button p {
    font-family: ta-mincho-gf-01, sans-serif;
    color: #FFF;
    line-height: 1.3;
}

.hover-anim {
    transition: all 0.3s;
}

.hover-anim:hover {
    transform: scale(1.05);
}

.no-wrap {
    white-space: nowrap;
}

/* プラシバシーポリシー */
.policy-box {
    overflow-y: scroll;
    height: 400px;
    border-radius: 30px;
}

/* TOP */

.top-fv-title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -42%);
    width: 90%;
    max-width: 1000px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.top-fv-title img {
    width: 100%;
    height: auto;
}

.top-fv-title h1 {
    color: #FFF;
    font-family: ta-mincho-gf-01, sans-serif;
    font-size: clamp(0.875rem, 0.673rem + 0.88vw, 1.5rem);
}

@media (min-width:768px) {

    .top-fv-title {
        width: 85%;
    }
}

.top-sec2-posi {
    position: relative;
    z-index: 10;
    padding-top: 20%;
    padding-left: 20%;
}

.top-sec2-icon {
    display: flex;
    flex-direction: column;
    align-items: start;
    margin-left: 7%;
    color: #FFF;
    font-size: 18px;
    font-family: ta-mincho-gf-01, sans-serif;
    transform: translateY(0%);
    padding-bottom: 170px;
    text-shadow: 2px 2px 5px black;
}

.top-sec2-icon img {
    width: 80px;
}

.top-sec2-img1 {
    position: absolute;
    top: 0;
    right: 0;
    width: 80%;
    max-width: 860px;
}

.top-sec2-img2 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80%;
    max-width: 860px;
}

@media (min-width:768px) {
    .top-sec2-icon {
        font-size: 32px;
        transform: translateY(-15%);
        padding-bottom: 120px;
        margin-left: 0;
    }

    .top-sec2-icon img {
        width: 120px;
    }

    .top-sec2-img1 {
        width: 60%;
        max-width: 860px;
    }

    .top-sec2-img2 {
        width: 60%;
        max-width: 860px;
    }
}

@media (min-width:992px) {
    .top-sec2-icon img {
        width: 150px;
    }
}

.top-sec2-b {
    position: relative;
    z-index: 10;
    padding-left: 15%;
}

.top-sec2-b h3 {
    font-family: ta-mincho-gf-01, sans-serif;
    color: var(--yellow);
    font-size: clamp(1.875rem, 1.632rem + 1.05vw, 2.625rem);
    line-height: 1.8;
}

@media (min-width:992px) {
    .top-sec2-b {
        padding-left: 8%;
    }
}

@media (min-width:1200px) {
    .top-sec2-b {
        padding-left: 14%;
    }
}

.top-sec3-bg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-image: url(../images/top-sec3-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    /* 画像の拡大・縮小設定 */
    background-position: center top;
    /* 中央揃え + 上寄せ */
}

.top-sec3-title1 {
    position: static;
    /* 通常の文書フローに戻る */
    display: block;
    /* 高さを持つブロック要素として扱う */
    width: 90%;
    /* 横幅を100%にして並べる */
    height: auto;
    /* コンテンツの高さに合わせる */
    margin: 0 auto;
    /* 必要なら中央寄せ */
}

.top-sec3-img1 {
    width: 100%;
}

.top-sec3-title2 {
    position: static;
    /* 通常の文書フローに戻る */
    display: block;
    /* 高さを持つブロック要素として扱う */
    width: 90%;
    /* 横幅を100%にして並べる */
    height: auto;
    /* コンテンツの高さに合わせる */
    margin: 0 auto;
    /* 必要なら中央寄せ */
}

.top-sec3-img2 {
    width: 100%;
}


@media (min-width:768px) {
    .top-sec3-title1 {
        position: absolute;
        width: 60%;
        max-width: 600px;
        top: 0%;
        left: 8%;
        z-index: 5;
    }

    .top-sec3-img1 {
        width: 80%;
        max-width: 980px;
        margin-top: 130px;
    }

    .top-sec3-title2 {
        position: absolute;
        width: 55%;
        max-width: 700px;
        bottom: 5%;
        right: 2%;
        z-index: 5;
    }

    .top-sec3-img2 {
        width: 80%;
        max-width: 920px;
        transform: translateY(-12%);
    }
}

@media (min-width:1200px) {
    .top-sec3-title1 {
        width: 70%;
        max-width: 800px;
        top: 0%;
        left: 8%;
    }
  
    .top-sec3-title2 {
        width: 65%;
        max-width: 800px;
        bottom: 5%;
        right: 2%;
    }
}


.top-sec3-deco {
    position: absolute;
    bottom: 2%;
    right: 2%;
    width: 70%;
}

@media (min-width:768px) {
    .top-sec3-deco {
        width: 45%;
        bottom: 5%;
        right: 4%;
    }
}

.top-sec4-bg {
    width: 80%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-image: url(../images/top-sec4-bg.png);
    background-repeat: repeat-y;
    background-size: contain;
    /* 画像の拡大・縮小設定 */
    background-position: left top;
}

.top-sec4-img {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.top-sec4-img img {
    width: 160px;
}

@media (min-width:768px) {

    .top-sec4-bg {
        width: 60%;
    }

    .top-sec4-img {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
    }

    .top-sec4-img img {
        width: 210px;
    }
}

@media (min-width:992px) {
    .top-sec4-img img {
        width: 280px;
    }
}

.top-sec5-box {
    border-radius: 10px;
    border: 2px solid #FFF;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
}

.top-sec5-box h2 {
    font-size: clamp(1.5rem, 1.014rem + 2.1vw, 3rem);
}

.top-sec5-box p {
    font-size: clamp(0.75rem, 0.507rem + 1.05vw, 1.5rem);
}

.top-sec6-bg {
    width: 80%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    background-image: url(../images/top-sec6-bg.png);
    background-repeat: repeat-y;
    background-size: contain;
    /* 画像の拡大・縮小設定 */
    background-position: right top;
}

@media (min-width:768px) {

    .top-sec6-bg {
        width: 60%;
    }
}

.top-sec6-img {
    width: 100%;
    height: 240px;
    background-image: url(../images/sec6-img.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

@media (min-width:768px) {
    .top-sec6-img {
        height: auto;
    }
}

/* こだわり */

.com-sec2-img {
    width: 100%;
    max-width: 1000px;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    background-image: url(../images/com-sec2-img1.png);
    background-repeat: no-repeat;
    background-size: cover;
    /* 画像の拡大・縮小設定 */
    background-position: right 100% top;
    display: flex;
    align-items: center;
}

.com-sec2-h2 {
    font-size: clamp(2.5rem, 1.366rem + 4.9vw, 6rem);
    position: relative;
    z-index: 10;
    padding-left: 6%;
    text-shadow: 2px 2px 5px black;
}

/* コンセプト */

.title-section1 {
    width: 100%;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--yellow);
    /* 文字色 */
    font-size: 48px;

    /* 背景に赤い筆の画像 */
    background-image: url(../images/fude-bg1.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    /* 円全体が見えるように */
}

.fude-bg2 {
    width: 100%;
    height: auto;
    background-image: url(../images/fude-bg2.svg);
    background-size: contain;
    /* 縦横比維持、余白ができても全体表示 */
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.fude-bg2 p {
    font-size: clamp(2rem, 1.676rem + 1.4vw, 3rem);
    color: #fff;
    font-family: ta-mincho-gf-01, sans-serif;
    text-shadow: 2px 2px 5px black;
}

.conce-sec2-img {
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.conce-sec2-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* 縦横比維持＆拡大縮小 */
}

@media (min-width:768px) {
    .conce-sec2-img {
        height: auto;
        overflow: hidden;
    }
}

.conce-button-bg {
    background-color: #000;
    border: solid 2px #FFF;
    padding: 1.2rem 1.8rem;
    border-radius: 10px;
}

@media (min-width:768px) {
    .conce-button-bg {
        padding: 2rem;
    }
}

/* 利用シーン　*/

.scene1-bg {
    position: absolute;
    top: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(to top,
            #530D01 0%,
            #000 50%,
            #000000 100%)
}

.scene2-bg {
    position: absolute;
    top: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(to top,
            #4E3A16 0%,
            #000 50%,
            #000000 100%)
}

.scene-title-img {
    width: 50%;
    overflow: hidden;
}

.scene-title-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* 縦横比維持＆拡大縮小 */
}

@media (min-width:768px) {
    .scene-title-img {
        width: 100%;
        height: 100%;
        overflow: hidden;
    }
}

.scene-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.scene-title h2 {
    color: var(--yellow);
    font-size: clamp(2.5rem, 1.69rem + 3.5vw, 5rem);
}

.scene-title p {
    color: var(--white);
    font-size: clamp(1.25rem, 0.683rem + 2.45vw, 3rem);
    font-family: ta-mincho-gf-01, sans-serif;
    margin-top: 1rem;
    text-align: center;
}

@media (min-width:768px) {
    .scene-title {
        align-items: start;
    }

    .scene-title p {
        text-align: start;
    }
}

.scene-text-r {
    background-color: #000;
    border-style: solid;
    border-color: #E1CCA7;
    border-width: 0 2px 2px 0;
    /* 上 右 下 左 の順 */
    font-family: ta-mincho-gf-01, sans-serif;
    line-height: 2;
    font-size: clamp(1rem, 0.757rem + 1.05vw, 1.75rem);
    padding: 2rem;
}

.scene-text-l {
    background-color: #000;
    border-style: solid;
    border-color: #E1CCA7;
    border-width: 0 0 2px 2px;
    /* 上 右 下 左 の順 */
    font-family: ta-mincho-gf-01, sans-serif;
    line-height: 2;
    font-size: clamp(1rem, 0.757rem + 1.05vw, 1.75rem);
    padding: 2rem;
}

/* FAQ */

.faq-box {
    display: flex;
    align-items: center;
    justify-content: start;
    padding: 1.2rem;
}

.faq-box.b {
    background-color: #000;
}

.faq-box.w {
    background-color: #FFF;
}

.faq-box img {
    width: 40px;
    margin-right: 1.5rem;
}

.faq-box.b p {
    font-size: clamp(0.75rem, 0.588rem + 0.7vw, 1.25rem);
    color: #FFF;
}
.faq-box.w p {
    font-size: clamp(0.75rem, 0.588rem + 0.7vw, 1.25rem);
    color: #000 !important;
}

.faq-box.w p a {
    color: #000 !important;
}

@media (min-width:768px) {
    .faq-box {
        padding: 2rem;
    }

    .faq-box img {
        width: 58px;
        margin-right: 2rem;
    }
}

.news-button {
    border: solid 1px #FFF;
    border-radius: 10px;
    transition: all 0.3s;
    background-color: #000;
    padding: 1.2rem 6.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.news-button:hover{
    cursor: pointer;
    background-color: #4E3A16;
}

.news-button p {
    color: #FFF;
    font-size: 16px;
    font-family: ta-mincho-gf-01, sans-serif;
}

/* お品書き　*/

.menu-pop {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 2.5rem;
    margin-top: 2rem;
}

.menu-pop h2 {
    font-size: clamp(3.125rem, 2.113rem + 4.38vw, 6.25rem);
    color: var(--yellow);
    margin-bottom: 1.5rem;
}

.menu-pop p {
    font-size: clamp(1.5rem, 1.014rem + 2.1vw, 3rem);
    color: #FFF;
    font-family: ta-mincho-gf-01, sans-serif;
}

.menu-little p {
    font-size: 12px;
    color: #FFF;
    margin-top: 1rem;
}

.menu-pop-no {
    width: 180px;
    margin-bottom: 2rem;
}

.menu-pop-meat {
    max-width: 1000px;
    width: 95%;
    height: auto;
    margin-top: 2rem;
}

.menu-list {
    display: flex;
    justify-content: center;
}

.menu-list div:not(:last-child) {
    margin-bottom: 1.2rem;
}

.menu-price {
    display: flex;
    justify-content: end;
    text-align: end;
}

/* 求人情報　*/

.rec-fv-img {
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    background-image: url(../images/rec-fv-img-sp.jpg);
}

@media (min-width:1200px) {
    .rec-fv-img {
        background-image: url(../images/rec-fv-img.jpg);
    }
}

.rec-title {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    padding-left: 6%;
    transform: translateY(20%) !important;
    text-shadow: 1.5px 1.5px 4px rgba(0, 0, 0, 0.55);
}

.rec-title h1 {
    font-family: "heisei-mincho-std", serif;
    font-weight: 700;
    font-style: normal;
    font-size: clamp(5rem, 3.583rem + 6.13vw, 9.375rem);
}

.rec-title p {
    font-family: ta-mincho-gf-01, sans-serif;
    font-size: clamp(1.125rem, 0.842rem + 1.23vw, 2rem);
}

.rec-t {
    font-size: clamp(1.5rem, 1.176rem + 1.4vw, 2.5rem);
    color: var(--blue);
    font-family: "Noto Sans JP", sans-serif;
    font-weight: bold;
}

.t-line {
    display: inline-block; /* 擬似要素の幅を文字列に合わせる */
    position: relative;    /* 擬似要素の基準にする */
    padding-bottom: 16px;   /* 文字と線の間に余白を作る */
  }
  
.t-line::after {
    content: "";
    position: absolute;
    left: 50%;              /* 中央起点にして */
    bottom: 0;              /* テキストの下に配置 */
    transform: translateX(-50%); /* 中央に合わせる */
    width: 60%;             /* テキスト幅の70%だけに線を引く */
    height: 2px;            /* 線の太さ */
    background-color: var(--blue); /* 線の色 */
  }

  .rec-logo {
    width: 45%;
    height: 100%;
    overflow: hidden;
}

.rec-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* 縦横比維持＆拡大縮小 */
}

@media (min-width:768px) {
    .rec-logo {
        width: 100%;
        height: auto;
        overflow: hidden;
    }
}

.rec-button {
    border: 3px solid var(--blue);
    background-color: #FFF;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 60px;
    transition: all 0.3s;
    padding: 1rem 2rem;
}

.rec-button img {
    width: 32px;
    margin-right: 1.2rem;
}

.rec-button p {
    font-size: clamp(1.25rem, 1.088rem + 0.7vw, 1.75rem);
    font-weight: 500;
    color: var(--blue) !important;
}

.rec-button:hover {
    transform: scale(1.05);
}