@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;700;900&family=Noto+Serif+JP:wght@400;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lora&display=swap');



/*  ----------------------------------------------------------

font-size

----------------------------------------------------------  */
html {
    font-size: 0.833vw;
}

@media screen and (max-width: 767px) {
    html {
        font-size: 1.303vw;
    }
}

@media screen and (max-width: 540px) {
    html {
        font-size: 1.851vw;
    }
}

@media screen and (max-width: 414px) {
    html {
        font-size: 2.415vw;
    }
}

@media screen and (min-width: 1401px) {
    html {
        font-size: 0.714vw;
    }
}



/*  ----------------------------------------------------------

base

----------------------------------------------------------  */
:root {
    --maincolor: #b5874f;
}

body {
    background: #121212;
    color: #fff;
    font-family: 'Noto Serif JP', serif;
    font-size: 1.2rem;
    letter-spacing: 0.06em;
    line-height: 1.6;
}

@media screen and (max-width: 767px) {
    body {
        font-size: 1.4rem;
    }
}

a {
    color: #fff;
}



/*  ----------------------------------------------------------

header

----------------------------------------------------------  */
header {
    position: absolute;
    top: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* background: #fff; */
    width: 100%;
    z-index: 100;
    padding: 0 13rem 0 5rem;
    height: 10rem;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
}

header h1 {
    width: 13rem;
    line-height: 1;
    margin-top: 2rem;
}

header h1 a {
    display: block;
}

header h1 img {
    width: 100%;
    height: auto;
    display: block;
}

@media screen and (max-width: 767px) {
    header {
        display: block;
        height: auto;
        padding: 1.5rem 0;
        text-align: center;
    }

    header h1 {
        width: 14rem;
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        margin: 0 auto;
    }
}



/*  ----------------------------------------------------------

nav

----------------------------------------------------------  */
ul.gnav-menu {
    display: flex;
    align-items: center;
}

ul.gnav-menu>li {}

ul.gnav-menu>li:not(:first-child) {
    margin-left: 4rem;
}

ul.gnav-menu>li>a {
    display: inline-block;
    position: relative;
    color: #fff;
    font-size: 1.55rem;
}

ul.gnav-menu>li>a::after {
    position: absolute;
    background: #fff;
    bottom: -4px;
    content: '';
    height: 1px;
    left: 0;
    transform: scale(0, 1);
    transform-origin: center top;
    transition: transform .3s;
    width: 100%;
}

ul.gnav-menu>li>a:hover::after {
    transform: scale(1, 1);
}

ul.gnav-menu>li>a:hover {
    opacity: 1;
    filter: alpha(opacity=100);
}

ul.gnav-menu>li>a i {
    font-size: 2em;
}



/*  ----------------------------------------------------------

footer

----------------------------------------------------------  */
footer {
    background: #000;
    color: #000;
    padding: 5rem 0 0;
}

footer a {
    font-size: 1.5rem;
    color: #fff;
}

footer .logo {
    width: 13.5rem;
    margin: 7rem auto 7.5rem;
}

footer nav ul {
    margin: 0 0 5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

footer nav ul li {
    padding: 0 2rem;
    border-right: 0.1rem solid rgba(255, 255, 255, 0.7);
}

footer nav ul li:nth-last-child(1),
footer nav ul li:nth-last-child(2) {
    border-right: none;
}

footer nav ul li a i {
    font-size: 2.5rem;
}

footer small {
    display: block;
    text-align: center;
    font-size: 1.2rem;
    background-color: #1f224f;
    padding: 1rem;
    color: #fff;
}

@media screen and (max-width: 767px) {
    footer nav ul {
        margin: 0 0 2rem 0;
        display: block;
    }

    footer nav ul li {
        padding: 0.5rem 0;
        text-align: center;
        border-right: none;
    }

    footer nav ul li:not(:last-child) {
        margin-bottom: 1.5rem;
    }

    footer small {
        display: block;
        text-align: center;
        font-size: 1.2rem;
        padding-bottom: 8rem;
    }
}



/*  ----------------------------------------------------------

page-ttl

----------------------------------------------------------  */
.page-ttl {
    background: url(../img/top-kv-1.jpg) no-repeat center / cover;
    position: relative;
}

.page-ttl>div {
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 30rem;
}

.page-ttl h2 {
    color: #fff;
    font-size: 3.6rem;
    font-weight: normal;
    line-height: 1;
}

@media screen and (max-width: 767px) {}



/*  ----------------------------------------------------------

style

----------------------------------------------------------  */
/* heading */
.heading-1 {
    line-height: 1;
    margin-bottom: 5rem;
    font-size: 3.1rem;
    letter-spacing: 0.15em;
    font-weight: normal;
    text-align: center;
    position: relative;
}

.heading-1 span {
    display: flex;
    flex-direction: column;
    /* color: var(--maincolor); */
    font-size: 1.4rem;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.heading-1 ::after {
    content: "";
    background: url(../img/title_icon.png) no-repeat center top / contain;
    width: 15.5rem;
    height: 1rem;
    position: absolute;
    bottom: -2.6rem;
    left: 0;
    right: 0;
    margin: 0 auto;
}

@media screen and (max-width: 767px) {
    .heading-1 {
        margin-bottom: 4rem;
    }
}

/* more */
.more {
    text-align: center;
    line-height: 1;
    display: block;
    color: var(--maincolor);
    width: 22rem;
    padding: 1.8rem 0 1.9rem 0;
    letter-spacing: 0.1em;
    /* border: solid 1px var(--maincolor); */
    position: relative;
    margin: 0 auto;
}

.more.more--right {
    margin: 0;
    margin-left: auto;
}

.more.more--left {
    margin: 0;
    margin-right: auto;
}

/* .more::before {
    content: "";
    width: 4.5rem;
    height: 0;
    border-top: 0.1rem solid var(--maincolor);
    position: absolute;
    right: 0;
    bottom: 50%;
}
.more:hover {
    opacity: 1;
    background: #fff;
} */
@media screen and (max-width: 767px) {
    .more {
        margin: 0 auto;
    }

    .more.more--right {
        margin: 0 auto;
    }

    .more.more--left {
        margin: 0 auto;
    }
}

/* ttl */
.ttl {
    border-bottom: solid 1px rgba(255, 255, 255, 0.2);
    font-size: 2.2rem;
    margin-bottom: 3rem;
    padding: 1rem 0 1.5rem 0;
    position: relative;
    font-weight: normal;
}

.ttl.wt {
    border-bottom: solid 1px rgba(255, 255, 255, 0.2);
}

.ttl:after {
    border-bottom: solid 4px var(--maincolor);
    bottom: -4px;
    content: " ";
    display: block;
    position: absolute;
    width: 25%;
}

@media screen and (max-width: 767px) {
    .ttl:after {
        width: 40%;
    }
}

/* detail */
dl.detail {
    display: flex;
    flex-wrap: wrap;
}

dl.detail dt {
    padding: 1.5rem;
    width: 25%;

}

dl.detail dd {
    padding: 1.5rem;
    width: 75%;
}

dl.detail dt:last-of-type,
dl.detail dd:last-of-type {
    border-bottom: none;
}

dl.bk dt,
dl.bk dd {
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

dl.wt dt,
dl.wt dd {
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

@media screen and (max-width: 767px) {
    dl.detail {
        display: block;
    }

    dl.detail dt {
        padding: 1.2rem 1.2rem 0 1.2rem;
        width: 100%;
    }

    dl.detail dd {
        padding: 0 1.2rem 1.2rem 1.2rem;
        width: 100%;
    }

    dl.bk dt {
        border-bottom: none;
    }

    dl.wt dt {
        border-bottom: none;
    }
}



/*  ----------------------------------------------------------

gallery

----------------------------------------------------------  */
.gallery-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    justify-content: center;
    width: 90%;
    margin: 8rem auto;
}

.gallery-list li {
    list-style: none;
    margin: 0 1rem 2rem 1rem;
}

.gallery-list img {
    border-radius: 50%;
    height: 11vw;
    width: 11vw;
    object-fit: cover;
}

.gallery-list span {
    display: block;
    font-size: 1.2rem;
    line-height: 1.7;
    margin: 1.2rem 0 0 0;
    text-align: center;
    width: 14vw;
}

.object-fit-img {
    object-fit: contain;
    font-family: 'object-fit: contain;'
}

@media screen and (max-width: 767px) {
    .gallery-list {
        margin: 4rem auto;
        width: 95%;
    }

    .gallery-list li {
        margin: 0 .5rem 1.5rem .5rem;
    }

    .gallery-list img {
        width: 17vw;
        height: 17vw;
    }

    .gallery-list span {
        font-size: 1rem;
        line-height: 1.6;
        margin: 1rem auto 0 auto;
        width: 20vw;
    }
}



/*  ----------------------------------------------------------

hamburger

----------------------------------------------------------  */
.gnav-sp {
    display: block;
    position: fixed;
    top: 0;
    bottom: 0;
    width: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    transition: all .5s;
    z-index: -1;
    opacity: 0;
    background: #121212;
}

.gnav-sp .wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.gnav-sp-menu li {
    font-size: 1.6rem;
    text-align: center;
}

.gnav-sp-menu li a {
    display: block;
    padding: 1.5rem 0;

}

.gnav-sp-menu li a i {
    font-size: 2em;
}

/* toggle */
.toggle-btn {
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    width: 6rem;
    height: 6rem;
    transition: all .5s;
    cursor: pointer;
    z-index: 100000;
    background: var(--maincolor);
}

.toggle-btn span {
    display: block;
    position: absolute;
    left: 2rem;
    width: 2rem;
    height: 0.2rem;
    background-color: #fff;
    transition: all .4s;
}

.toggle-btn span:nth-child(1) {
    top: 1.9rem;
}

.toggle-btn span:nth-child(2) {
    top: 2.7rem;
}

.toggle-btn span:nth-child(3) {
    top: 3.5rem;
}

/* open */
.open .gnav-sp {
    top: 0;
    opacity: 1;
    z-index: 99999;
}

.open .toggle-btn span {
    background-color: #fff;
}

.open .toggle-btn span:nth-child(1) {
    -webkit-transform: translateY(0.8rem) rotate(-45deg);
    transform: translateY(0.8rem) rotate(-45deg);
}

.open .toggle-btn span:nth-child(2) {
    opacity: 0;
}

.open .toggle-btn span:nth-child(3) {
    -webkit-transform: translateY(-0.8rem) rotate(45deg);
    transform: translateY(-0.8rem) rotate(45deg);
}



/*  ----------------------------------------------------------

local menu

----------------------------------------------------------  */
ul.lcmenu {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 4rem;
    justify-content: space-between;
}

ul.lcmenu li {
    width: 49%;
    text-align: center;
}

ul.lcmenu li a {
    display: block;
    padding: 1.8rem 0 2rem 0;
    background: #333;

}

ul.lcmenu li.current a {
    color: #fff;
    background: var(--maincolor);
}

@media screen and (max-width: 767px) {
    ul.lcmenu li {
        width: 49%;
    }

    ul.lcmenu li a {
        padding: 1.2rem 0 1.3rem 0;
    }
}



/*  ----------------------------------------------------------

layout

----------------------------------------------------------  */
.container {
    margin: 8rem auto 10rem auto;
    width: 80rem;
}

.container .wrap {
    display: flex;
    justify-content: space-between;
}

.container .wrap.reverse {
    flex-direction: row-reverse;
}

.container .wrap>figure {
    width: 35%;
}

.container .wrap>div {
    width: 60%;
}

@media screen and (max-width: 767px) {
    .container {
        margin: 6rem 3rem 8rem 3rem;
        width: auto;
    }

    .container .wrap {
        display: block;
    }

    .container .wrap>figure {
        width: 100%;
        margin-bottom: 2rem;
    }

    .container .wrap>div {
        width: 100%;
    }
}



/*  ----------------------------------------------------------

fixed btn

----------------------------------------------------------  */
.fixed-btn {
    position: fixed;
    top: 27rem;
    right: 0rem;
    z-index: 999;

}

.fixed-btn a {
    width: 7.9rem;
    height: 11.5rem;
    /* padding: 0.5rem; */
    display: flex;
    align-items: center;
    justify-content: center;
    /* transform: rotate(45deg); */
}

.fixed-btn a>div {
    border: solid 1px #fff;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fixed-btn a>div>div {
    transform: rotate(-45deg);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.fixed-btn a>div>div i {
    font-size: 1.8rem;
    margin-bottom: 0.6rem;
}

@media screen and (max-width: 767px) {
    .fixed-btn {
        top: inherit;
        bottom: 0;
        right: 0;
        width: 50%;
    }

    .fixed-btn a {
        width: 100%;
        height: 6.4rem;
        transform: none;
        text-decoration: none !important;
        font-size: 1.8rem;
        background: var(--maincolor);
    }

    .fixed-btn a>div {
        width: 100%;
        height: 100%;
    }

    .fixed-btn a>div>div {
        transform: none;
        flex-direction: row;
        padding-bottom: 0.15rem;
    }

    .fixed-btn a>div>div i {
        font-size: 1.8rem;
        margin-bottom: 0;
        margin-top: 0.25rem;
        margin-right: 1rem;
    }

    .fixed-btn a>div>div span {
        margin-left: 1rem;
        margin-top: 0.3rem;
        font-size: 1.2rem;
    }
}



/*  ----------------------------------------------------------

display

----------------------------------------------------------  */
@media screen and (min-width: 768px) {
    .sp {
        display: none !important;
    }
}

@media screen and (max-width: 767px) {
    .pc {
        display: none !important;
    }
}



/*  ----------------------------------------------------------

page-top

----------------------------------------------------------  */
#page-top {
    position: fixed;
    z-index: 999;
    bottom: 1rem;
    right: 1rem;
}

#page-top a {
    background: var(--maincolor);
    color: #fff;
    width: 4rem;
    height: 4rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    line-height: 1;
    font-size: 1.4rem;
    padding-left: 0.1rem;
}

@media screen and (max-width: 767px) {
    #page-top {
        bottom: 7.4rem;
    }
}



/*  ----------------------------------------------------------

link

----------------------------------------------------------  */
a {
    text-decoration: none;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}

a.line {
    text-decoration: underline;
}

a:hover.line {
    text-decoration: none;
}

a:hover {
    opacity: 0.5;
}

@media screen and (min-width: 768px) {
    a[href^="tel:"] {
        pointer-events: none;
    }
}

@media screen and (max-width: 767px) {
    a[href^="tel:"] {
        text-decoration: underline;
    }
}



/*  ----------------------------------------------------------

class

----------------------------------------------------------  */
/* txt */
.txt-vertical {
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
}

@media screen and (max-width: 767px) {
    .txt-vertical.not {
        -ms-writing-mode: lr-tb;
        writing-mode: horizontal-tb;
        white-space: normal;
    }
}

/* map */
.gmap iframe {
    width: 100%;
    height: 40rem;
}

.gmap.gmap--top iframe {
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.gmap.gmap--top iframe:hover {
    filter: grayscale(0%);
}



/* margin */
.mb-10 {
    margin-bottom: 1rem !important;
}

.mb-15 {
    margin-bottom: 1.5rem !important;
}

.mb-20 {
    margin-bottom: 2.0rem !important;
}

.mb-25 {
    margin-bottom: 2.5rem !important;
}

.mb-30 {
    margin-bottom: 3.0rem !important;
}

.mb-35 {
    margin-bottom: 3.5rem !important;
}

.mb-40 {
    margin-bottom: 4.0rem !important;
}

.mb-45 {
    margin-bottom: 4.5rem !important;
}

.mb-50 {
    margin-bottom: 5.0rem !important;
}

.mb-55 {
    margin-bottom: 5.5rem !important;
}

.mb-60 {
    margin-bottom: 6.0rem !important;
}

.mb-65 {
    margin-bottom: 6.5rem !important;
}

.mb-70 {
    margin-bottom: 7.0rem !important;
}

.mb-75 {
    margin-bottom: 7.5rem !important;
}

.mb-80 {
    margin-bottom: 8.0rem !important;
}

.mb-85 {
    margin-bottom: 8.5rem !important;
}

.mb-90 {
    margin-bottom: 9.0rem !important;
}

.mb-95 {
    margin-bottom: 9.5rem !important;
}

.mb-100 {
    margin-bottom: 10.0rem !important;
}



/*  ----------------------------------------------------------

fade

----------------------------------------------------------  */
@-webkit-keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(30px);
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@-moz-keyframes fadeInUp {
    0% {
        opacity: 0;
        -moz-transform: translateY(30px);
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        -moz-transform: translateY(0);
        transform: translateY(0);
    }
}

@-ms-keyframes fadeInUp {
    0% {
        opacity: 0;
        -ms-transform: translateY(30px);
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.fadeInUp {
    -webkit-animation: fadeInUp 0.6s ease;
    -moz-animation: fadeInUp 0.6s ease;
    -ms-animation: fadeInUp 0.6s ease;
    animation: fadeInUp 0.6s ease;
    -webkit-animation-fill-mode: both;
    -moz-animation-fill-mode: both;
    -ms-animation-fill-mode: both;
    animation-fill-mode: both
}

.fade {
    opacity: 0;
}

.delay-1 {
    animation-delay: 0.2s;
    -moz-animation-delay: 0.2s;
    -webkit-animation-delay: 0.2s;
    -o-animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.35s;
    -moz-animation-delay: 0.35s;
    -webkit-animation-delay: 0.35s;
    -o-animation-delay: 0.35s;
}

.delay-3 {
    animation-delay: 0.5s;
    -moz-animation-delay: 0.5s;
    -webkit-animation-delay: 0.5s;
    -o-animation-delay: 0.5s;
}

.delay-4 {
    animation-delay: 0.65s;
    -moz-animation-delay: 0.65s;
    -webkit-animation-delay: 0.65s;
    -o-animation-delay: 0.65s;
}

.delay-5 {
    animation-delay: 0.8s;
    -moz-animation-delay: 0.8s;
    -webkit-animation-delay: 0.8s;
    -o-animation-delay: 0.8s;
}

.ctrl {
    display: inline-block;
}




.mainvisual__scroll {
    display: inline-block;
    position: absolute;
    left: 4.5%;
    top: 72rem;
    z-index: 10;
    animation: barAnime 1.8s infinite;
    width: 1.1rem;
}

@media screen and (max-width: 767px) {
    .mainvisual__scroll {
        top: 32rem;
    }
}

@-webkit-keyframes barAnime {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(20px);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes barAnime {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(20px);
    }

    100% {
        transform: translateY(0);
    }
}





/*  ----------------------------------------------------------

reserve

----------------------------------------------------------  */
.top-reservation {
    padding: 8rem 0 17rem;
    background: url(../img/texture-3.jpg) no-repeat center top -0.2rem / cover;
}

.top-reservation .inner {
    padding: 3rem;
    text-align: center;
}

/* .top-reservation h2 {
    font-size: 2.4rem;
    margin-bottom: 1rem;
    text-align: center;
} */

.top-reserve a {
    display: inline-block;
    margin: 2rem 0 0;
    font-size: 2rem;
    border-bottom: 2px solid #9c8e79;
    padding-bottom: 0.5rem;
}

@media screen and (max-width: 767px) {
    .top-reservation {
        padding: 6rem 0rem 0rem;
    }
}

/* ------------------------------
　calendar
------------------------------ */
.calendar-wrapper {
    position: relative;
    outline: 16px solid #ccc;
    /* max-width: 1000px; */
    width: 58%;
    margin: 10rem auto 0 auto;
    display: flex;
    background-color: rgba(255, 255, 255, 0.5);
    background-color: #fff;
    color: #000;
}

#calendar {
    text-align: center;
    width: 100%;
}

table {
    outline: 16px solid #ccc;
    border-collapse: collapse;
    width: 100%;
    table-layout: fixed;
    word-break: break-all;
    word-wrap: break-all;
}

.calendar-wrapper th {
    color: #000;
}

.calendar-wrapper th,
.calendar-wrapper td {
    outline: 1px solid #ddd;
    padding-top: 16px;
    padding-bottom: 16px;
    text-align: center;
    color: #111111;
}

.calendar-wrapper td:nth-child(6) .reservation-date,
.calendar-wrapper td:nth-child(6) .reservation-date a {
    color: #8888ff;
}

.calendar-wrapper td:last-child .reservation-date,
.calendar-wrapper td:last-child .reservation-date a {
    color: #ff8888;
}

.calendar-wrapper td.disabled {
    background-color: #eeeeee;
    color: #aaaaaa;
}

.reservation-date {
    text-decoration: underline;
}

.reservation-seat {
    font-size: 14px;
}

.reservation-seat a {
    color: #dd8866;
}

.reservation-seat-disabled {
    color: #aaaaaa;
}

.calendar-reservation {
    border-collapse: collapse;
    width: 100%;
    word-break: break-all;
    margin-top: 10px;
    margin-left: 1rem;
    padding: 20px;
}

.calendar-reservation form {
    padding-top: 0;
}

.calendar_date {
    font-size: 18px;
}

.calendar_person,
.calendar_time {
    width: 100%;
    font-size: 18px;
    padding: 8px;
    margin-top: 4px;
    margin-bottom: 8px;
}

.calendar_button {
    width: 100%;
    font-size: 18px;
    padding: 12px;
    border-radius: 6px;
    background-color: #aaaaaa;
    color: #ffffff;
    border: 1px solid #aaaaaa;
}

.calendar_button:not([disabled]) {
    cursor: pointer;
}

.calendar_info {
    font-size: 12px;
    margin-top: 20px;
}

.calendar_ok {
    color: #dd8866;
}

.reservation-message {
    margin-top: 1rem;
    margin-bottom: 1rem;
    font-size: 16px;
    text-align: center;
    color: #c00000;
}

@media screen and (max-width: 767px) {
    .calendar-wrapper {
        width: 80%;
        margin: 10rem auto 60px auto;
        flex-direction: column;
    }

    .calendar-wrapper {
        font-size: 12px;
    }

    .calendar-reservation {
        padding: 0;
        margin-top: 20px;
        margin-left: 0;
    }

    .calendar-reservation form {
        padding: 20px;
    }

    .calendar-reservation form div {
        margin-bottom: 20px;
    }

    .calendar_info {
        padding: 0 20px 20px 20px;
    }
}

@media screen and (max-width: 450px) {
    .reservation-date {
        font-size: 2.8vw;
    }
}

/* ------------------------------
　reservation
------------------------------ */
.regform {
    /* max-width: 840px; */
    margin: auto;
    color: #000;
}

.form-container {
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
}

.form-container input,
.form-container select {
    height: 2rem;
    font-size: 1.2rem;
}

.form-container textarea {
    width: 100%;
    height: 8rem;
}

.form-container .tel-form input,
.form-container .mail-form input {
    width: 100%;
    font-size: 1.2rem;
}

.form-container .pay-form select {
    width: 33%;
    font-size: 1.2rem;
}

.form-container dl {
    display: flex;
}

.form-container dt {
    display: flex;
    align-items: center;
    width: 300px;
    width: 30%;
    background-color: #eeebe4;
    font-weight: bold;
    padding: 5px 15px;
    border: 1px solid #cccccc;
}

.form-container dd {
    padding: 5px 15px;
    flex: 1;
    border: 1px solid #cccccc;
}

.form-container .text_field {
    width: 47.6%;
}

.form-container .text_field:first-child {
    margin-right: 3%;
}

.form-container .date-form,
.form-container .course-form,
.form-container .seat-form,
.form-container .cost-form {
    /* height: 36px; */
}

/* .form-container .date-form dd,
.form-container .course-form dd,
.form-container .seat-form dd,
.form-container .cost-form dd{
  padding: 12px 5px; 
} */

.form-container .blank-area {
    margin-right: 10px;
}

.hissu {
    min-width: 28px;
    height: 20px;
    display: inline-block;
    border: 1px solid #c00;
    padding: 3px;
    margin-left: 14px;
    font-size: 0.75rem;
    line-height: 1;
    color: #c00;
}

.nini {
    min-width: 28px;
    height: 20px;
    display: inline-block;
    border: 1px solid #999;
    padding: 3px;
    margin-left: 14px;
    font-size: 0.75rem;
    line-height: 1;
    color: #333;
}

.btn-container {
    display: flex;
    justify-content: space-evenly;
    justify-content: center;
    margin-top: 2rem;
    gap: 4rem;
}

.btn-container .submit-btn input {
    font-weight: bold;
    background: #f95a6b;
    background: linear-gradient(to bottom, #ff9ba2 0%, #f95a6b 75%, #f85164 100%);
    border: 1px solid #da949b;
    border-radius: 4px;
    box-shadow: inset 1px 1px 3px #f9d8db, inset -1px -1px 3px #ffa6ae;
    color: #ffffff !important;
    padding: 0.4rem 1.6rem;
    text-decoration: none;
    font-size: 1.2rem;
    cursor: pointer;
}

.btn-container .pre-btn input {
    background-color: #ffffff;
    border: solid #cccccc;
    border-radius: 4px;
    border-width: 1px 1px 3px;
    color: #666666 !important;
    font-weight: bold;
    text-align: center;
    cursor: pointer;
    padding: 0.4rem 1.6rem;
    text-decoration: none;
    font-size: 1.2rem;
}

.submit-message {
    margin-top: 4rem;
    font-size: 36px;
    font-weight: bold;
    text-align: center;
    animation: blink 6s ease-in-out infinite;
}

@keyframes blink {
    0% {
        opacity: 0.3;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0.3;
    }
}

@media screen and (max-width: 767px) {
    .form-container dl {
        flex-direction: column;
    }

    .form-container dt {
        width: 100%;
    }

    .form-container .date-form,
    .form-container .course-form,
    .form-container .seat-form,
    .form-container .cost-form {
        height: auto;
    }

    .form-container .text_field {
        width: 47.6%;
    }

    .form-container .blank-area {
        margin-right: 8px;
    }
}

/* ローディング */
.loader_container {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.95);
    z-index: 1;
}

.spinner {
    width: 64px;
    height: 64px;
    border: 8px solid;
    border-color: var(--brown) var(--brown) var(--brown) transparent;
    border-radius: 50%;
    animation: spin-animation 1.2s linear infinite;
}

@keyframes spin-animation {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.loader_container.isLoad {
    animation: fade-out 0.5s;
    animation-fill-mode: both;
}

@keyframes fade-out {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        visibility: hidden;
    }
}

.reserve-txt {
    text-align: center;
    font-size: 2rem;
}


/* index.html reserve-txt編集 */
.reserve-txt span {
    font-size: 1.5rem;
}




.policy_p {
    font-size: 1.5rem;
}



._reserve {
    font-size: 2rem;
    text-align: center;
}