@charset "utf-8";

html,
body {
    font-family: "hiragino-mincho-pron", sans-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;
    color: #5E3505;
}

.bg-fix {
    background-image: url("../images/washi-bg.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "hiragino-mincho-pron", sans-serif;
    font-weight: bold;
    font-style: normal;
}

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

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


/* フォント */
.yuji {
    font-family: "Yuji Syuku", serif;
}


.zen {
    font-family: "Zen Kaku Gothic New", sans-serif;
}

.yu {
    font-family: "yu-mincho-pr6n", sans-serif;
}

.hira {
    font-family: "hiragino-mincho-pron", sans-serif;
}

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

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

.fc-brown {
    color: #5E3505 !important;
}

.fc-red {
    color: #E43905 !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-brown {
    background-color: #726030;
}

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

.bg-beige-1 {
    background-color: rgba(242, 203, 76, 0.21);
}

.bg-beige-2 {
    background-color: rgba(190, 135, 16, 0.15);
}



/*罫線*/
.b-brown {
    border: 1px solid #5E3505;
}

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

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

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

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

/* ボタン */
.button {
    position: relative;
    display: inline-flex !important;
    background-color: #E43905;
    color: #FFF;
    width: 180px;
    height: 45px;
    justify-content: center;
    align-items: center;
    transition: all 0.3s;
}

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

.button:hover {
    background-color: #5E3505;
}

.button:hover::after {
    right: 6px;
}

.button p {
    color: #FFF9EC;
    font-family: "Yuji Syuku", serif;
    margin: 0 !important;
    padding: 0 !important;
    letter-spacing: 0.2rem;
}

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

/* ナビ */

.a-nav {
    display: none;
    opacity: 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 900;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    transition: all 0.3s;
    background-image: url("../images/header-bg.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

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

.a-nav a p {
    color: #FFF9EC;
    transition: all 0.3s ease;
}

.a-nav a:hover p {
    color: #E43905;
}

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

.a-nav-sp {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 64px;
    z-index: 800;
    padding: 10px;
    background-image: url("../images/header-bg.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
}

.sp-top-logo {
    max-width: 120px;
    height: auto;
}

.nav-logo {
    max-width: 160px;
}

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

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

@media (min-width: 992px) {
    .nav-logo {
        max-width: 160px;
    }

    .a-nav {
        display: flex;
        flex-direction: row;
        opacity: 1;
        height: auto;
        padding: 28px 46px;
    }

    .a-nav a {
        color: #FFF;
    }

    .a-nav a:hover {
        color: #FFF;
        text-decoration: underline;
    }

    .menu-box {
        display: block;
    }

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

.reserve-button {
    position: fixed;
    bottom: 30px;
    right: 0;
    width: 142px;
    transition: all 0.3s;
    transform-origin: right;
    z-index: 700;
}

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

.a-burger {
    position: fixed;
    top: 10px;
    right: 10px;
    z-index: 1100;
    border: 1px solid #FFF;
    border-radius: 22px;
    cursor: pointer;
    width: 44px;
    height: 44px;
    margin: 0;
    padding: 0;
}

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

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

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

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

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

@media (min-width: 992px) {
    .a-burger {
        display: none;
    }

    .reserve-button {
        width: 186px;
    }
}

.nav-tel-link {
    max-width: 200px;
}

/* フッター */

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

.foot-insta {
    width: 26px;
}

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

/* 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: #E43905;
    color: #FFF;
    font-family: "Yuji Syuku", serif;
}

.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: #5E3505;
}

.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;

}
.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: calc(100vh - 64px);
    margin-top: 64px;
}

@media (min-width:992px) {
    .fv {
        height: calc(100vh - 102px);
        margin-top: 102px;
    }
}

.fv-sub {
    height: calc(80vh - 64px);
    margin-top: 64px;
}

@media (min-width:992px) {
    .fv-sub {
        height: calc(80vh - 102px);
        margin-top: 102px;
    }
}

.news-detail-top {
    margin-top: 64px;
}

@media (min-width:992px) {
    .news-detail-top {
        margin-top: 102px;
    }
}

/* TOPページ */
.top-fv {
    background-image: url(../images/top-bg-sp.jpg);
}

@media (min-width:992px) {
    .top-fv {
        background-image: url(../images/top-bg.jpg);
    }
}

.top-cont {
    height: calc(50vh - 32px);
    display: flex;
    align-items: center;
}

.top-cont img {
    width: 100%;
    height: 90%;
    object-fit: contain;
    display: block;
    transition: all 0.3s;
}

.top-cont-img1:hover,
.top-cont-img2:hover {
    transform: scale(1.05);
}

.top-cont-img1 {
    transform-origin: left;
}

.top-cont-img2 {
    transform-origin: right;
}

.top-text {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    text-align: center;
    transform: translateY(-50%);
    z-index: 100;

}

.top-title {
    position: absolute;
    bottom: 3%;
    left: 0;
    width: 100%;
    text-align: center;
    z-index: 100;
}

@media (min-width:768px) {
    .top-cont {
        height: calc(100vh - 102px);
    }

    .top-text {
        top: 10%;
        transform: translateY(0);
    }

    .top-title {
        bottom: 10%;
    }
}

@media (min-width:768px) {
    .top-bento-img {
        transform-origin: right;
        transform: scale(1.2);
    }
}

.subpage-title {
    position: relative;
    z-index: 10;
    margin-left: 1em;
}

.subpage-title::before {
    content: "";
    z-index: -1;
    position: absolute;
    width: 2em;
    height: 2em;
    top: -0.3em;
    left: -0.75em;
    background-image: url(../images/en1.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.subpage-title::first-letter {
    font-size: 1.3em;
}

.concept-deco1 {
    transform: translate(50%, -50%);
}

.concept-deco2 {
    transform: translate(-50%, 50%);
}

.title-underline {
    position: relative;
    display: inline-block;
    padding: 0.1em 1em;
}

.title-underline::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0.4em;
    background: rgba(230, 146, 0, 0.25);
}

@media (min-width: 768px) {
    .recommend-img {
        margin-bottom: -20%;
    }
}

.title-en-after {
    position: relative;
    z-index: 10;
}

.title-en-after::before {
    content: "";
    z-index: -1;
    position: absolute;
    width: 2em;
    height: 2em;
    top: -0.3em;
    right: -0.75em;
    background-image: url(../images/en1.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.policy-box {
    overflow-y: scroll;
    height: 400px;
    border-radius: 30px;
}
