@charset "utf-8";

html,
body {
    font-family: "Shippori Mincho", serif;
    font-weight: normal;
    font-style: normal;
    font-optical-sizing: auto;
    line-height: 1.5;
    font-style: normal;
    letter-spacing: 0.1em;
    overflow-x: clip;
    background-color: #d4cdb9;
}
body {
    background-image: url("../images/bg.jpg");
    background-size: 100% auto;
    background-position: center;
    background-repeat: repeat-y;
    background-attachment: fixed;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Shippori Mincho", serif;
    font-weight: bold;
    font-style: normal;
}

a {
    color: #000;
}

a:hover {
    color: #AD0F0F;
    text-decoration: none;
    cursor: pointer;
}


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

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

.fc-brown {
    color: #483400 !important;
}
.fc-brown2 {
    color: #A87F00 !important;
}
.fc-red {
    color: #AD3400 !important;
}
.fc-black {
    color: #000 !important;
}

.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-white-70 {
    background-color: rgba(255, 255, 255, 0.7);
}
.bg-brown {
    background-color: #726030;
}
.bg-beige {
    background-color: #E5D1B0;
}
.bg-yellow {
    background-color: #E3B017;
}


/*罫線*/
.bl-gold-5 {
    border-left: 5px solid #E1C477;
}
.br-gold {
    border-right: 2px solid #E1C477;
}
.bb-gold {
    border-bottom: 2px solid #E1C477;
}
.bb-y {
    border-bottom: 1px solid #EBD07F;
}
/* ボタン */
.button {
    display: inline-flex !important;
    font-family: "Shippori Mincho", serif;
    align-items: center;
    justify-content: center;
    gap: 8px; /* テキストとアイコンの間隔 */
    padding: 12px 40px 12px 24px !important;
    background-color: #c89b3c; /* 金色系の背景 */
    color: white;
    font-size: 15px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, 0.7); /* 半透明の白い枠 */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* ふんわりした影 */
    transition: all 0.3s ease;
    position: relative;
}

.button::after {
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    background-image: url("../images/ci-right.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    right: 15px; /* ボタンの右端に配置 */
    top: 50%;
    transform: translateY(-50%);
    filter: brightness(0) invert(1); /* アイコンを白くする */
}

.button:hover {
    color: #FFF !important;
    background-color: #b48830; /* ホバー時に少し暗く */
    transform: translateY(-2px); /* 軽く浮かせる */
}

.button div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 !important;
    padding: 0 !important;
}

.button p {
    color: #FFF;
    text-align: center;
    margin: 0 !important;
    padding: 0 !important;
    letter-spacing: 0.2rem;
}
.button.is-brown {
    background-color: #726030; /* 金色系の背景 */
}
.button.is-brown:hover {
    background-color: #5f4e21; /* ホバー時に少し暗く */
}
.button.is-large {
    gap: 8px; /* テキストとアイコンの間隔 */
    padding: 12px 50px 12px 34px !important;
    font-size: 24px;
    border-radius: 100px;
}
.button.is-large::after {
    width: 24px;
    height: 24px;
}
/* ナビ */

.a-nav {
    display: none;
    opacity: 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 900;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    transform-origin: center;
    transition-duration: 0.3s;
    transition-property: background-color, color, opacity, transform;
    z-index: 700;
    background-image: url("../images/top_menu.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    
}
.a-nav a {
    color: #000;
    transition: all 0.3s ease;
}
.a-nav a:hover {
    color:;
}
.nav-logo {
    max-width: 80px;
}

@media (min-width: 1200px) {
    .nav-logo {
        max-width: 55px;
    }
    .a-nav {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        opacity: 1;
        height:auto;
        background: linear-gradient(to bottom, rgba(78, 57, 18, 1) 0%, rgba(78, 57, 18, 0) 100%);
    }
    .a-nav a {
        color: #FFF;
    }
    .a-nav a:hover {
        color: #FFF;
    }
}
.reserve-button {
    background-color: #BC9A3B;
    color: #FFF !important;
}
.reserve-button:hover {
    background-color: #d4b768;
    color: #FFF !important;
}


.a-burger {
    position: fixed;
    top: 10px;
    right: 10px;
    z-index: 1100;
    align-items: center;
    appearance: none;
    background: none;
    border: 1px solid #FFF;
    border-radius: 22px;
    cursor: pointer;
    display: inline-flex;
    flex-direction: column;
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    justify-content: center;
    vertical-align: top;
    align-self: center;
    color: #000;
    margin: 0;
    padding: 0;
    background-color: #b488308c;
}

.a-burger div {
    background-color: #FFF;
    display: block;
    width: 20px;
    height: 2px;
    border-radius: 4px;
    position: absolute;
    left: 11px;
    transform-origin: center;
    transition-duration: 0.3s;
    transition-property: background-color, color, opacity, transform;
    padding: 0;
    margin: 0;
    min-height: 2px !important;

}

.a-burger div:nth-child(1) {
    bottom: 23px;
}

.a-burger div:nth-child(2) {
    top: 23px;
}

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

.a-burger.is-active div:nth-child(2) {
    transform: rotate(45deg);
    top: 20px;
}
.sp-top-logo {
    width: 50px;
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 100;
}
@media (min-width: 1200px) {
    .a-burger, .sp-top-logo{
        display: none;
    }
}
.nav-tel-link {
    max-width: 200px;
}

/* フッター */
.footer {

}



.footer a {
 color: #483400;
}

.footer a:hover {

}
.foot-logo a {
    color: #726030;
}

/* News表示 */
.index-news .webgene-blog,
.news-page .webgene-blog {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;

}

.index-news .webgene-item,
.news-page .webgene-item
 {
    width: 100%;
    margin-bottom: 2rem;
}
@media (min-width: 768px) {
    .index-news .webgene-item,
    .news-page .webgene-item {
        width: 48%;
    }
}
@media (min-width: 992px) {
    .index-news .webgene-item {
        width: 24%;
    }
}


.webgene-pagination {
    width: 100%;
}

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

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

.webgene-pagination ul li a,
.pagelink p a {
    padding: 0.5rem 2rem !important;
    min-height: 0 !important;
    line-height: 1 !important;
    font-size: 1rem;
    background-color: #CBC3B0;
    color: #655324;
}

.webgene-pagination ul li a:hover,
.pagelink p a:hover {
    cursor: pointer;
    transform-origin: center;
    transition-duration: 0.3s;
    transition-property: background-color, color, opacity, transform;
    background-color: #FFF;
}

.webgene-pagination ul li,
.pagelink p {
    margin: 0;
    position: relative;
    display: inline-block;
}

.webgene-item-prevPageLink {
    margin-left: 1rem;
}

.news-list .webgene-blog {
    display: flex;
    flex-wrap: wrap;
}

.news-list .webgene-blog .webgene-item {
    width: 45%;
    margin: 2rem 2.5%;
}

/* フォーム */
.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;

}

.formBtn {
    border: 2px solid #522A14;
    background-color: #FFF;
    color: #522A14;
    font-size: 1rem;
    padding: 1rem 3rem !important;
}

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

/* TOPページ */
.top-logo {
    width: 200px;
}

.top-fv .fv-inner {
    background-image: url("../images/top-title-bg-sp.png");
    background-position: bottom center;
    background-repeat: no-repeat;
    background-size: 100% auto;
}
@media (min-width: 992px) {
    .top-fv .fv-inner {
        background-image: url("../images/top-title-bg.png");
    }
}
.title-v-brush {
    color: #483400;
    text-shadow: 2px 2px 2.5px rgba(223, 156, 12, 0.3);
    background-image: url("../images/title-brush-bg.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
 }
 .title-v-brush h1,
 .title-v-brush h2,
 .title-v-brush h3,
 .title-v-brush h4,
 .title-v-brush h5,
 .title-v-brush h6 {
    writing-mode: vertical-rl;
    text-orientation: upright;
    white-space: nowrap;
    letter-spacing: 0.5rem;
    line-height: 1.5;
 }
 .title-v-white {
    color: #483400;
    text-shadow: 2px 2px 2.5px rgba(223, 156, 12, 0.3);
    background-color: #FFF;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    position: relative;
    top: -30px;
    padding: 1rem 0;

 }

 .title-v-white h1,
 .title-v-white h2,
 .title-v-white h3,
 .title-v-white h4,
 .title-v-white h5,
 .title-v-white h6 {
    writing-mode: vertical-rl;
    text-orientation: upright;
    white-space: nowrap;
    letter-spacing: 0.5rem;
    line-height: 1.5;
    display: inline-block;
 }
@media (min-width:768px) {
    .title-v-white {
        top: -30px;
        padding: 2rem;

     }
}

 .title-underline {
    color: #483400;
    display: inline-block;
    position: relative;
    padding-bottom: 10px;
 }
 .title-underline::after {
    content: "";
    position: absolute;
    left: 10%;
    bottom: -5px;
    height: 1px;
    width: 80%;
    background-color: #483400;
 }
 .title-sideline {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.title-sideline::before,
.title-sideline::after {
    content: "";
    flex-grow: 1;
    height: 1px;
    background-color: #A87F00;
    margin: 0 20px;
}
.title-sideline-gold {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.title-sideline-gold::before,
.title-sideline-gold::after {
    content: "";
    flex-grow: 1;
    height: 1px;
    background-color: #A87F00;
    margin: 0 20px;
}
.title-sideline2 {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.title-sideline2::after {
    content: "";
    flex-grow: 1;
    height: 1px;
    background-color: #000;
    margin-left: 20px;
}
.scene-title {
    width: 60px;
    position: relative;
    bottom: -30px;
    left: -15px;
}
@media (min-width:768px){
    .scene-title {
        width: 100px;
    } 
}
.bl-g8 {
    border-left: 8px solid #D8B236;
}

.takeout-title {
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: 100% 100% !important;
}

/*******************************************
 20260310
*******************************************/
.tawaranko_img_box{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    margin: 10% auto 0;
}
@media (min-width:768px){
    .tawaranko_img_box{
        flex-direction: row;
        width: 50%;
    }
}