@charset "UTF-8";

/*********************************************************************
*  flex box
*********************************************************************/
.flex {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
}
/* justify-content */
.f_between {
    -webkit-box-pack:justify;
    -webkit-flex-pack:justify;
    -webkit-justify-content:space-between;
    justify-content:space-between;
}
.f_around {
    -webkit-flex-pack: distribute;
    -webkit-justify-content: space-around;
    justify-content: space-around;
}
.f_start {
    -webkit-box-pack:start;
    -webkit-flex-pack:start;
    -webkit-justify-content:flex-start;
    justify-content:flex-start;
}
.f_end {
    -webkit-box-pack:end;
    -webkit-flex-pack:end;
    -webkit-justify-content:flex-end;
    justify-content:flex-end;
}
.f_center {
    -webkit-box-pack:center;
    -webkit-flex-pack:center;
    -webkit-justify-content:center;
    justify-content:center;
}
/* align-items */
.f_items_start {
    -webkit-align-items: flex-start;
    align-items: flex-start;
}
.f_items_end {
    -webkit-align-items: flex-end;
    align-items: flex-end;
}
.f_items_center {
    -webkit-box-align: center;
    align-items: center;
}
.f_items_baseline {
    -webkit-align-items: baseline;
    align-items: baseline;
}
.f_items_stretch {
    -webkit-align-items: stretch;
    align-items: stretch;
}
/* flex-wrap */
.f_wrap {
    -webkit-box-lines:multiple;
    -webkit-flex-wrap:wrap;
    flex-wrap:wrap;
}
/* flex-direction */
.f_reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    flex-direction: row-reverse;
}
.f_column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
}
.f_column_reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    flex-direction: column-reverse;
}
/* flex-grow */
.f_grow1 {
    -webkit-box-flex:1;
    flex-grow:1;
}
.f_grow2 {
    -webkit-box-flex:2;
    flex-grow:2;
}
.f_grow3 {
    -webkit-box-flex:3;
    flex-grow:3;
}


/*********************************************************************
*  form parts
*********************************************************************/
/* select */
.area-select {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    padding: 20px 0 60px;
}
.area-select label {
    font-size: 1.2rem;
    white-space: nowrap;
}
.area-select select {
    width: auto;
    height: 28px;
    padding: 0 10px;
    background: url(../img/common/area_select_arrow.jpg) no-repeat center right;
    background-size: 6px;
    border: none;
    border-bottom: 1px solid #3a3a3a;
    font-size: 1.4rem;
}
@media screen and (max-width: 768px) {
    .area-select {
        padding: 0 20px;
        margin-bottom: 30px;
        border: 1px solid #3a3a3a;
    }
    .area-select label { margin-right: 26px }
    .area-select select {
        -webkit-box-flex:1;
        flex-grow:1;
        height: 38px;
        padding: 0 10px;
        background-size: 9px;
        border: none;
        font-size: 1.5rem;
    }
}

.select-placeholder { position: relative }
.select-placeholder p {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding-right: 18px;
    padding-left: 10px;
    color: rgba( 58, 58, 58, 0.5 );
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 3.0rem;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    pointer-events: none;
}

select.nonValue { color: rgba(58, 58, 58, .5) }
.select-short-container p {
    white-space: nowrap;
    margin-right: 0.5em;
}
.select-short-container select { width: auto }
.select-short-box { margin-right: 30px }
@media screen and (max-width: 768px) {
    .select-short-container { display: block }
    .select-short-box { width: 100% }
    .select-short-box select {
        -webkit-box-flex:1;
        flex-grow:1;
    }
}

/* radio button */
.radio {}
.radio label {
    position: relative;
    display: block;
    height: 30px;
    padding-left: 20px;
    margin-right: 24px;
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 2.9rem;
    letter-spacing: 0.1em;
    white-space: nowrap;
    cursor: pointer;
}
.radio label::before {
    content: "";
    position: absolute;
    top: 9px;
    left: 0;
    width: 12px;
    height: 12px;
    border: 1px solid #d8d8d8;
    border-radius: 100%;
    box-sizing: border-box;
}
.radio label:after {
    content: "";
    position: absolute;
    top: 11px;
    left: 2px;
    display: none;
    width: 8px;
    height: 8px;
    border-radius: 100%;
    background-color: rgba(58, 58, 58, 0.5);
}
.radio input[type="radio"]:checked + label::after { display: block }

/* Submit button */
.submit-btn {
    width: 200px;
    height: 43px;
    margin-right: auto;
    margin-left: auto;
}
.submit-btn button {
    display: block;
    width: 100%;
    height: 100%;
    border: 2px solid #dac9a5;
    color: #a68b62;
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 3.9rem;
    letter-spacing: 0.14em;
    text-align: center;
    -webkit-transition: all .15s ease-out;
    transition: all .15s ease-out;
}
.submit-btn button:disabled {
    opacity: 0.5;
    cursor: default;
}
.submit-btn.gray button {
    border-color: #d8d8d8;
    color: #3a3a3a;
}
.submit-btn button:hover {
    background-color: #a68b62;
    border-color: #a68b62;
    color: #fff;
}
.submit-btn button:disabled:hover {
    background-color: transparent;
    border-color: #dac9a5;
    color: #a68b62;
}
.submit-btn.gray button:hover {
    background-color: #3a3a3a;
    border-color: #3a3a3a;
}
.submit-btn button .mail-icon {
    display: inline-block;
    width: 15px;
    height: 11px;
    margin-right: 8px;
    background: url(../img/common/mail_icon.jpg) no-repeat center center;
    background-size: contain;
    -webkit-transition: background-image .15s ease-out;
    transition: background-image .15s ease-out;
}
.submit-btn button:hover .mail-icon { background-image: url(../img/common/mail_icon_hover.jpg) }

/* other parts */
.form-error {
    position: absolute;
    top: calc(100% - 10px);
    left: 30px;
    padding: 2px 10px;
    background-color: rgba(229, 119, 119, 0.5);
    border-radius: 6px;
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.5em;
    letter-spacing: 0.1em;
    pointer-events: none;
}
.form-error::before { content: "*" }
.form-error::before {
    content: "";
    position: absolute;
    bottom: 100%;
    left: 12px;
    border: 4px solid transparent;
    border-bottom: 6px solid rgba(229, 119, 119, 0.5);
}
.form-complete {
    width: 100%;
    padding: 20px 10px;
    border: 4px solid #d8d8d8;
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 2em;
    letter-spacing: 0.1em;
    text-align: center;
}

.js-confirm { display: none }
@media screen and (max-width: 768px) {
    .js-input {
        width: calc(100% + 20px);
        padding-top: 10px;
        padding-bottom: 10px;
        margin-left: -10px;
    }
}
@media screen and (max-width: 767px) {
    .js-input input { width: 100% !important }
}

/*********************************************************************
*  Common parts
*********************************************************************/
#wrap { overflow: hidden }
.wrap { overflow: hidden }
.wrap-y { overflow-y: hidden }
.wrap-x { overflow-x: hidden }

.block { display: block }
.inline-block { display: inline-block }
.relative { position: relative }

/* PCファースト */
.sp { display: none !important }
@media screen and (max-width: 768px) {
    .pc { display: none !important }
    .sp { display: block !important }
}


/* title tag */
.main-title {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack:center;
    -webkit-flex-pack:center;
    -webkit-justify-content:center;
    justify-content:center;
    -webkit-align-items: baseline;
    align-items: baseline;
    padding: 80px 0 30px;
    margin-right: 10px;
    margin-left: 10px;
    border-bottom: 1px solid #d8d8d8;
    font-size: 1.3rem;
    font-weight: 300;
}
.main-title img { height: 50px }
.main-title p {
    position: relative;
    top: -22px;
    padding-left: 10px;
}
@media screen and (max-width: 768px) {
    .main-title {
        display: block;
        padding: 20px 0 8px;
        margin-bottom: 18px;
        font-size: 1.0rem;
        text-align: center;
    }
    .main-title img {
        height: 40px;
        margin: auto;
    }
    .main-title p {
        top: 0;
        padding-left: 0;
        margin-top: -5px;
    }
}

.hotel-main-title {
    position: relative;
    padding: 50px 10px 100px;
    margin-top: 50px;
    margin-bottom: 60px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}
.hotel-main-title::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
}
.hotel-main-title p {
    position: relative;
    color: #fff;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1em;
    letter-spacing: 0.2em;
    text-align: center;
    z-index: 1;
}
.hotel-main-title p:nth-child(1) { margin-top: 100px }
.hotel-main-title p:nth-child(2) { margin-top: -20px }
.hotel-main-title img {
    margin-right: auto;
    margin-left: auto;
}
@media screen and (max-width: 900px) {
    .hotel-main-title {
        padding-top: 40px;
        margin-top: 0;
    }
}
@media screen and (max-width: 768px) {
    .hotel-main-title { padding-bottom: 40px }
    .hotel-main-title p:nth-child(1) { margin-top: 40px }
}
@media screen and (max-width: 600px) {
    .hotel-main-title { padding-bottom: 10px }
    .hotel-main-title p {
        font-size: 1.0rem;
        font-weight: 300;
        letter-spacing: 0.1em;
    }
    .hotel-main-title p:nth-child(1) { margin-top: 20px }
    .hotel-main-title p:nth-child(2) { margin-top: 0 }
    .hotel-main-title img { height: 45px }
}

.title-en {
    padding-top: 44px;
    margin-bottom: 10px;
    background-repeat: no-repeat;
    background-position: top left;
    background-size: auto 45px;
    font-size: 1.3rem;
    font-weight: 300;
    line-height: 1em;
}
@media screen and (max-width: 768px) {
    .title-en {
        padding-top: 38px;
        margin-bottom: 20px;
        background-position: top center;
        background-size: auto 40px;
        font-size: 1.2rem;
        text-align: center;
    }
}

.title-en-left {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: baseline;
    align-items: baseline;
    margin-bottom: 10px;
    font-size: 1.3rem;
    font-weight: 300;
}
.title-en-left img { height: 50px }
.title-en-left p {
    position: relative;
    top: -22px;
    padding-left: 10px;
}
@media screen and (max-width: 768px) {
    .title-en-left {
        display: block;
        margin-bottom: 15px;
    }
    .title-en-left img {
        max-width: 100%;
        height: 40px;
        margin-right: auto;
        margin-left: auto;
    }
    .title-en-left p {
        top: -2px;
        padding-left: 0;
        text-align: center;
    }
}

.image-title {
    margin-bottom: 60px;
    text-align: center;
}
.image-title img {
    display: inline-block;
    max-width: 80%;
}
@media screen and (max-width: 768px) {
    .image-title {
        position: relative;
        padding-bottom: 10%;
        margin-bottom: 30px;
    }
    .image-title img {
        position: absolute;
        top: 0;
        left: 50%;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
        max-height: 100%;
    }
}

/* contents */
.contents {
    margin-top: 50px;
    margin-right: auto;
    margin-left: auto;
}
.top .contents,
.hotel-pages .contents { margin-top: 0 }
.contents-box {
    padding: 80px 10px;
    margin-right: auto;
    margin-left: auto;
}
@media screen and (max-width: 900px) {
    .contents { margin-top: 40px }
    .hotel-pages .contents { margin-top: 0 }
    .contents-box { padding: 40px 10px }
}
@media screen and (max-width: 768px) {
    .contents-box.sp_max { padding: 40px 0 }
}

.right-box {
    margin-right: 0;
    margin-left: auto;
}
.left-box {
    margin-right: auto;
    margin-left: 0;
}
@media screen and (max-width: 768px) {
    .right-box,
    .left-box {
        margin-right: auto;
        margin-left: auto;
    }
}

/* text */
.noto-serif { font-family: 'Noto Serif JP', serif }
.montserrat { font-family: 'Montserrat', sans-serif }
.small { font-size: 1.3rem }
.normal { font-size: 1.4rem }
.large { font-size: 1.6rem }
.light { font-weight: 300 }
.regular { font-weight: 400 }
.midium { font-weight: 500 }
.bold { font-weight: 700 }
.red { color: #e57777 }
.ocher { color: #a68b62 }
.left { text-align: left }
.right { text-align: right }
.center { text-align: center }

@media screen and (max-width: 768px) {
    .small { font-size: 1.0rem }
    .medium { font-size: 1.2rem }
    .large { font-size: 1.4rem }
}


/* width */
.full-width {
    position: relative;
    left: calc(50% - 50vw);
    width: 100vw;
}
.w100p { max-width: 100% }
.w920 { max-width: 920px }
.w1120 { max-width: 1120px }
.w1430 { max-width: 1430px }


/* background-color */
.bg-white { background-color: #fff }
.bg-ocher { background-color: #efe8d9 }
.bg-dark_brown { background-color: #a68b62 !important }
.bg-maroon { background-color: #a66262 !important }
.bg-pink { background-color: #ecd5c8 }
.bg-blue { background-color: #75ceda !important }
.bg-dark { background-color: #3a3a3a }


/* button */
.btn-top { position: relative }
.btn-top .guide-btn {
    position: absolute;
    top: 80px;
}
.btn-top .guide-btn.right-box { right: 10px }
.btn-top .guide-btn.left-box { left: 10px }
.guide-btn {
    width: 115px;
    height: 43px;
}
.guide-btn a,
.guide-btn button {
    display: block;
    width: 100%;
    height: 100%;
    border: 2px solid #dac9a5;
    color: #a68b62;
    font-size: 1.3rem;
    font-weight: bold;
    line-height: 3.9rem;
    letter-spacing: 0.14rem;
    text-align: center;
    -webkit-transition: all 0.15s ease-out;
    transition: all 0.15s ease-out;
}
.guide-btn a:hover,
.guide-btn button:hover {
    color: #fff;
    background-color: #a68b62;
    border-color: #a68b62;
}
@media screen and (max-width: 768px) {
    .btn-top .guide-btn { position: static }
    .btn-top .guide-btn .sp { display: inline !important }
    .btn-top .guide-btn.right-box { right: 10px }
    .btn-top .guide-btn.left-box { left: 10px }
    .guide-btn {
        width: 175px;
        height: 30px;
    }
    .guide-btn a,
    .guide-btn button {
        font-size: 1.2rem;
        line-height: 2.6rem;
        background-color: #fff;
    }
}


.border-frame {
    padding: 18px;
    border: 1px solid #3a3a3a;
}
@media screen and (max-width: 768px) {
    .border-frame { padding: 6px 8px }
}
.bold-frame {
    padding: 40px;
    border: 40px solid #efe8d9;
}
@media screen and (max-width: 768px) {
    .bold-frame {
        padding: 0;
        border: none;
    }
}


.topic dt {
    width: 14%;
    padding-left: 20px;
    line-height: 3.0rem;
}
.topic dd {
    width: 86%;
    line-height: 3.0rem;
}
@media screen and (max-width: 768px) {
    .topic dt {
        width: 16%;
        padding-left: 0;
        line-height: 1.5rem;
    }
    .topic dd {
        width: 84%;
        line-height: 1.5rem;
    }
}


/* Tab contents */
.tab-box {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    background-color: #efe8d9;
}
.tab-list {
    -webkit-box-flex:1;
    flex-grow:1;
    width: 50%;
    padding-right: 1px;
    border-left: 1px solid #fff;
}
.tab-list:first-child,
.tab-list.active,
.tab-list.active + .tab-list { border-left-color: #efe8d9 }
.tab-list.active { border-left-color: #a68b62 }
.tab-list button {
    width: 100%;
    height: 100%;
    min-height: 50px;
    padding: 5px;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 2.0rem;
    letter-spacing: 0.1em;
    text-align: center;
}
.tab-list.active button {
    background-color: #a68b62;
    color: #fff;
    font-weight: 700;
    pointer-events: none;
}
.tab-contents {
    display: none;
    border: 5px solid #a68b62;
}
.tab-contents.open { display: block }
@media screen and (max-width: 767px) {
    .tab-list button {
        min-height: auto;
        padding: 15px 5px;
        font-size: 1.2rem;
        line-height: 1.5rem;
    }
}


.wire-box {
    padding-top: 16px;
    margin-bottom: 40px;
    border-bottom: 1px solid #d8d8d8;
}
.wire-box.single {
    padding-top: 0;
    margin-bottom: 0;
}
.wire-detail { border-top: 1px solid #d8d8d8 }
.wire-title {
    width: 200px;
    padding-top: 15px;
    padding-right: 10px;
    padding-bottom: 15px;
    border-right: 1px solid #d8d8d8;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 2.142857142857143;
    letter-spacing: 0.1em;
    white-space: nowrap;
}
.wire-content {
    position: relative;
    width: calc(100% - 200px);
    padding-top: 15px;
    padding-left: 30px;
    padding-bottom: 15px;
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 2.4rem;
    letter-spacing: 0.1em;
}
.wire-content button {
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 2.4rem;
}
@media screen and (max-width: 768px) {
    .wire-box {
        padding-top: 0;
        margin-bottom: 0;
        border-bottom: none;
    }
    .wire-detail {
        display: block;
        margin-bottom: 10px;
        border-top: none;
    }
    .wire-title {
        width: 100%;
        padding: 3px 10px;
        background-color: #efe8d9;
        border-right: none;
        font-size: 1.2rem;
        line-height: 2em;
    }
    .wire-content {
        width: 100%;
        padding: 3px 10px;
        font-size: 1.2rem;
        line-height: 2em;
    }
    .wire-content button {
        font-size: 1.2rem;
        line-height: 2em;
    }
    .wire-content input,
    .wire-content select,
    .wire-content textarea {
        margin-top: 5px;
        margin-bottom: 5px;
    }
}


/*********************************************************************
*  header
*********************************************************************/
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    z-index: 9999;
    -webkit-transition: background-color 0.15s ease-out;
    transition: background-color 0.15s ease-out;
}
.blogs header { border-bottom: 1px solid rgba(58, 58, 58, 0.2) }
@media screen and (max-width: 900px) {
    body.top header,
    .hotel-pages header { background-color: transparent }
    body.top.active header { background-color: #fff }
}

.h_container { padding: 0 30px }
.hotel-pages .h_container::before {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.7);
}
.h_contents {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack:justify;
    -webkit-flex-pack:justify;
    -webkit-justify-content:space-between;
    justify-content:space-between;
    -webkit-box-align: center;
    align-items: center;
    height: 50px;
    -webkit-transition: height 0.15s ease-in;
    transition: height 0.15s ease-in;
}
.h_contents .logo {
    width: 234px;
    margin-left: -5px;
}
.h_contents .logo .normal,
.h_contents .logo .home { width: 100% }
.h_contents .logo .home { display: none }
.h_contents .logo .normal { display: block }
@media screen and (max-width: 900px) {
    .h_container {
        padding: 0 10px;
        -webkit-transition: background-color .5s ease-out;
        transition: background-color .5s ease-out;
    }
    .hotel-pages .h_container::before { display: none }
    body.active .h_container { background-color: rgba(255, 255, 255, 0.5) }
    .h_contents { height: 40px }
    .h_contents .logo {
        position: relative;
        width: 164px;
        margin-left: -4px;
        z-index: 9999;
    }
    .hotel-pages .h_contents .logo { display: none }
    body.top .h_contents .logo .home { display: block }
    body.top .h_contents .logo .normal { display: none }
    body.top.active .h_contents .logo .home { display: none }
    body.top.active .h_contents .logo .normal { display: block }
    .h_contents .logo.active .normal { display: block !important }
    .h_contents .logo.active .home { display: none !important }
}

.hotel-name {
    position: absolute;
    top: 100%;
    left: 0;
    padding-left: 30px;
    z-index: 9999;
}
.hotel-name a {
    display: inline-block;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 5.0rem;
    letter-spacing: 0.1em;
    white-space: nowrap;
}
@media screen and (max-width: 900px) {
    .hotel-name {
        position: static;
        padding-left: 0;
    }
    .hotel-name a {
        color: #fff;
        font-size: 1.2rem;
        line-height: 4.0rem;
    }
    body.active .hotel-name a,
    .logo.active + .hotel-name a { color: #3a3a3a }
}

.sp_menu-icon { display: none }
@media screen and (max-width: 900px) {
    .sp_menu-icon {
        position: relative;
        display: block;
        width: 27px;
        height: 18px;
        z-index: 9999;
        -webkit-transition: filter .15s ease-out;
        transition: filter .15s ease-out;
    }
    body.top:not(.active) .sp_menu-icon.active {
        -webkit-filter: drop-shadow(0 0 5px rgba(58, 58, 58, 0.5));
        filter: drop-shadow(0 0 5px rgba(58, 58, 58, 0.5));
    }
    .h_menu-btn {
        position: relative;
        display: block;
        width: 100%;
        height: 100%;
    }
    .h_menu-btn span {
        position: absolute;
        left: 0;
        display: block;
        width: 100%;
        height: 1.5px;
        background-color: #3a3a3a;
        -webkit-transition:
            top 0.3s ease-out,
            left 0.3s ease-out,
            transform 0.3s ease-out,
            opacity 0.3s ease-in-out,
            background-color 0.15s ease-out;
        transition:
            top 0.3s ease-out,
            left 0.3s ease-out,
            transform 0.3s ease-out,
            opacity 0.3s ease-in-out,
            background-color 0.15s ease-out;
    }
    body.top .h_menu-btn span,
    body.hotel-pages .h_menu-btn span { background-color: #fff }
    body.top.active .h_menu-btn span,
    body.hotel-pages.active .h_menu-btn span,
    .sp_menu-icon.active .h_menu-btn span { background-color: #3a3a3a }
    .h_menu-btn span:nth-child(1) { top: 0 }
    .h_menu-btn span:nth-child(2) { top: calc(50% - 0.75px) }
    .h_menu-btn span:nth-child(3) { top: calc(100% - 1.5px) }
    .sp_menu-icon.active .h_menu-btn span:nth-child(1) {
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%) rotate(-45deg);
        transform: translate(-50%, -50%) rotate(-45deg);
    }
    .sp_menu-icon.active .h_menu-btn span:nth-child(2) {
        left: 70%;
        opacity: 0;
    }
    .sp_menu-icon.active .h_menu-btn span:nth-child(3) {
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%) rotate(45deg);
        transform: translate(-50%, -50%) rotate(45deg);
    }
}

.h_blk-out { display: none }
.h_menu {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack:end;
    -webkit-flex-pack:end;
    -webkit-justify-content:flex-end;
    justify-content:flex-end;
}
.sp_list { display: none }
.h_bottom-menu {
    position: absolute;
    top: 100%;
    right: 0;
}
.h_normal-menu { height: 50px }
.h_normal-menu .h_menu-list { margin-left: 0 }
.h_menu-list {
    margin-left: 40px;
    white-space: nowrap;
}
.h_menu-list.tel { margin-left: 20px }
.h_menu-list.paypay {
    width: 26px;
    height: 26px;
    background: url(../img/common/paypay_icon.png) no-repeat center center;
    background-size: contain;
}
.h_menu-list.paypay span { display: none }
.h_menu-list a,
.h_menu-list button {
    position: relative;
    display: block;
    height: 100%;
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 5.0rem;
    letter-spacing: 0.14em;
}
.h_menu-list.tel a {
    font-size: 1.6rem;
    letter-spacing: 0.1em;
}
.h_menu-list > a::before,
.h_menu-list > button::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 6px;
    background-color: #e57777;
    -webkit-transition: width 0.15s ease-in;
    transition: width 0.15s ease-in;
}
.h_menu-list:not(.tel) a:hover::before,
.h_menu-list:not(.tel) button:hover::before { width: 100% }
@media screen and (max-width: 900px) {
    .h_menu-container {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        padding-top: 40px;
    }
    .h_blk-out {
        position: absolute;
        display: block;
        width: 100%;
        height: 100vh;
        background-color: transparent;
        pointer-events: none;
        -webkit-transition: background-color 0.15s ease-in;
        transition: background-color 0.15s ease-in;
    }
    .active + .h_menu-container .h_blk-out {
        background-color: rgba(0, 0, 0, 0.3);
        pointer-events: visible;
    }
    .h_menu {
        position: absolute;
        top: 0;
        display: block;
        width: 100%;
        height: 0;
        max-height: 100vh;
        background-color: #fff;
        z-index: 10;
        overflow-y: hidden;
        overflow-x: auto;
        -webkit-transition:
            height 0.3s ease-out,
            padding-top 0.3s ease-out;
        transition:
            height 0.3s ease-out,
            padding-top 0.3s ease-out;
    }
    .active + .h_menu-container .h_menu {
        padding-top: 40px;
        -webkit-transition:
            height 0.3s 0.2s ease-out,
            padding-top 0.3s 0.2s ease-out;
        transition:
            height 0.3s 0.2s ease-out,
            padding-top 0.3s 0.2s ease-out;
    }
    .h_bottom-menu,
    .h_normal-menu {
        position: static;
        display: block;
    }
    .h_normal-menu { padding-top: 30px }
    .pc_list { display: none }
    .sp_list { display: inherit }
    .h_menu-list {
        margin-left: 0;
        margin-bottom: 10px;
    }
    .h_menu-list.paypay {
        display: -webkit-box;
        display: -webkit-flex;
        display: flex;
        -webkit-box-pack:center;
        -webkit-flex-pack:center;
        -webkit-justify-content:center;
        justify-content:center;
        width: 100%;
        height: auto;
        background: none;
    }
    .h_menu-list.paypay .icon {
        display: block;
        width: 30px;
        height: 30px;
        margin-right: 10px;
        background: url(../img/common/paypay_icon.png) no-repeat center center;
        background-size: contain;
        line-height: 30px;
    }
    .h_menu-list.paypay .icon-text {
        position: relative;
        display: block;
        padding-left: 1em;
        font-size: 1.4rem;
        font-weight: 500;
        line-height: 3.0rem;
        z-index: 1;
    }
    .h_menu-list.paypay .icon-text::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: calc(100% + 1em);
        height: 100%;
        border: 1px solid #3a3a3a;
        border-radius: 5px;
    }
    .h_menu-list.paypay .icon-text::after {
        content: "";
        position: absolute;
        top: calc(50% - 4px);
        right: calc(100% - 4px);
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
        width: 8px;
        height: 8px;
        background-color: #fff;
        border: 1px solid #3a3a3a;
        border-top: none;
        border-right: none;
    }
    .h_menu-list.tel { margin-left: 0 }
    .h_menu-list a,
    .h_menu-list button {
        width: 100%;
        padding: 0 10px;
        font-size: 1.4rem;
        line-height: 3.0rem;
        text-align: center;
    }
    .h_menu-list > a::before,
    .h_menu-list > button::before { display: none }
}


.h_menu-list .h_sns { height: 100% }
.h_menu-list-icon {
    width: 25px;
    margin-left: 20px;
}
.h_menu-list-icon img { width: 100% }
@media screen and (max-width: 900px) {
    .h_menu-list .h_sns {
        -webkit-box-pack:center;
        -webkit-flex-pack:center;
        -webkit-justify-content:center;
        justify-content:center;
        padding-top: 15px;
        padding-bottom: 20px;
    }
    .h_menu-list-icon { margin-right: 20px }
    .h_menu-list-icon a,
    .h_menu-list-icon button { padding: 0 }
}


.h_flags {
    position: absolute;
    top: 100%;
    right: 0;
}
body.event .h_flags,
body.blogs .h_flags { display: none }
.hotel-pages .h_flags { top: 200% }
.h_flags-shadow {
    -webkit-filter: drop-shadow(-1px 2px 5px rgba(0, 0, 0, 0.2));
    filter: drop-shadow(-1px 2px 5px rgba(0, 0, 0, 0.2));
}
@media screen and (max-width: 900px) {
    .h_flags { display: none }
}

/*********************************************************************
*  footer
*********************************************************************/
footer {
    position: relative;
    z-index: 1;
}
.f_sns {
    height: 70px;
    background-color: #fff;
}
.hotel-pages .f_sns { height: 100px }
.f_sns-logo { display: none }
.f_sns-list {
    height: 25px;
    margin-right: 28px;
}
.f_sns-list:last-child { margin-right: 0 }
.f_sns-list a {
    display: block;
    padding-left: 33px;
    background: no-repeat center left;
    background-size: contain;
    color: #a68b62;
    font-size: 1.2rem;
    line-height: 2.5rem;
}
.f_sns-list a.twitter { background-image: url(../img/common/f_twitter.jpg) }
.f_sns-list a.facebook { background-image: url(../img/common/f_facebook.jpg) }
.f_sns-list a.instagram { background-image: url(../img/common/f_instagram.jpg) }
.f_sns-list a.app { background-image: url(../img/common/f_app.jpg) }
@media screen and (orientation: portrait) {
    .f_sns {
        height: 66px;
        padding: 0 10px;
        border-top: 1px solid #3a3a3a;
    }
    .hotel-pages .f_sns { height: 66px }
    .f_sns-logo {
        display: block;
        width: 48px;
    }
    .f_sns-box { margin-left: 27.5px }
    .f_sns-list { margin-right: 20px }
    .f_sns-list a {
        width: 25px;
        height: 25px;
        padding-left: 100%;
        overflow: hidden;
    }
    .f_sns-list a.twitter { background-image: url(../img/common/twitter.jpg) }
    .f_sns-list a.facebook { background-image: url(../img/common/facebook.jpg) }
    .f_sns-list a.instagram { background-image: url(../img/common/instagram.jpg) }
    .f_sns-list a.app { background-image: url(../img/common/app.jpg) }
}

.f_philosophy-area { display: none }
.f_philosophy {
    position: relative;
    width: 200px;
    max-width: calc(100% - 20px);
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 30px;
    /* background: -webkit-linear-gradient(65deg, #8ed2e9, #3b3c8e);
    background: linear-gradient(25deg, #8ed2e9, #3b3c8e); */
    background-color: #a68b62;
    overflow: hidden;
}
/* .f_philosophy::before {
    content: "";
    position: absolute;
    top: 10px;
    left: -130px;
    width: 400px;
    height: 400px;
    border: 2px solid rgba(89, 192, 223, 0.2);
    border-radius: 100%;
}
.f_philosophy::after {
    content: "";
    position: absolute;
    top: -20px;
    left: -90px;
    width: 180px;
    height: 180px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 100%;
} */
.f_philosophy button {
    position: relative;
    display: block;
    width: 100%;
    height: 50px;
    padding-left: 0.2em;
    padding-bottom: 10px;
    color: #fff;
    font-size: 2.0rem;
    font-weight: 700;
    letter-spacing: 0.2em;
}
.f_philosophy button::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: calc(50% - 70px);
    width: 140px;
    height: 20px;
    background: url(../img/common/logo_w.png) no-repeat center center / contain;
}
@media screen and (max-width: 900px) {
    .f_philosophy-area {
        display: block;
        padding-top: 10px;
        padding-bottom: 30px;
    }
    .f_philosophy { margin-bottom: 0 }
}

.f_menu-area { background-color: #efe8d9 }
.hotel-pages .f_menu-area { background-color: #fff }
.f_logo {
    width: 234px;
    padding-top: 56px;
    padding-bottom: 30px;
    margin: auto;
}
.hotel-pages .f_logo { padding-top: 36px }
.f_large-menu { margin-bottom: 42px }
.hotel-pages .f_large-menu { margin-bottom: 20px }
.f_large-menu .f_menu-list:not(:last-child) { margin-right: 30px }
.f_large-menu .f_menu-list a,
.f_large-menu .f_menu-list button {
    display: block;
    width: 115px;
    height: 43px;
    border: 2px solid #dac9a5;
    color: #a68b62;
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 3.9rem;
    letter-spacing: 0.14em;
    text-align: center;
    -webkit-transition: all 0.15s ease-out;
    transition: all 0.15s ease-out;
}
.f_large-menu .f_menu-list a:hover,
.f_large-menu .f_menu-list button:hover {
    border-color: #a68b62;
    background-color: #a68b62;
    color: #fff;
}
@media screen and (max-width: 900px) {
    .f_menu-area { background-color: #fff }
    .f_large-menu { display: none }
}

.f_small-menu { padding: 10px }
.f_small-menu .f_menu-list:not(:last-child) { margin-right: 36px }
.f_small-menu .f_menu-list.sp-menu { display: none }
.f_small-menu .f_menu-list a,
.f_small-menu .f_menu-list button {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 2.8rem;
}
.f_small-menu .f_menu-list a:hover,
.f_small-menu .f_menu-list button:hover { opacity: 0.5 }
@media screen and (max-width: 900px) {
    .f_small-menu { padding: 0 }
    .f_small-menu .f_menu {
        position: relative;
        -webkit-box-lines:multiple;
        -webkit-flex-wrap:wrap;
        flex-wrap:wrap;
    }
    .f_small-menu .f_menu::before {
        content: "";
        position: absolute;
        top: 0;
        left: 50%;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
        width: 1px;
        height: 100%;
        background-color: #3a3a3a;
    }
    .f_small-menu .f_menu-list {
        -webkit-box-flex:1;
        flex-grow:1;
        width: 50%;
        border-top: 1px solid #3a3a3a;
    }
    .f_small-menu .f_menu-list:not(:last-child) { margin-right: 0 }
    .f_small-menu .f_menu-list.sp-menu { display: block }
    .f_small-menu .f_menu-list.pc-menu { display: none }
    .f_small-menu .f_menu-list a,
    .f_small-menu .f_menu-list button {
        position: relative;
        width: 100%;
        max-width: 50vw;
        padding: 10px 15px 10px 10px;
        font-size: 1.0rem;
        line-height: 2.0rem;
    }
    .f_small-menu .f_menu-list a::before,
    .f_small-menu .f_menu-list button::before {
        content: "";
        position: absolute;
        top: calc(50% - 5.75px);
        right: 8px;
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
        width: 10.5px;
        height: 10.5px;
        border-top: 2px solid #b3b3b3;
        border-right: 2px solid #b3b3b3;
    }
}

small {
    display: block;
    padding: 10px;
    background-color: #3a3a3a;
    color: #fff;
    font-size: 1.1rem;
    line-height: 2.0rem;
    text-align: center;
}
@media screen and (max-width: 900px) {
    small {
        padding: 5px 10px;
        margin-bottom: 47px;
        font-size: 1.0rem;
        line-height: 1.5rem;
    }
}
@media screen and (min-width: 768px) {
    small { margin-bottom: 0; }
}

.sp_bottom-menu {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    border-top: 2px solid #575757;
    background: rgba(255, 255, 255, 0.85);
    z-index: 9999;
}
.b_menu-list {
    -webkit-box-flex:1;
    flex-grow:1;
    width: 50%;
    background-color: #b39c79;
}
.b_menu-list:not(:last-child) { margin-right: 1px }
.b_menu-list a,
.b_menu-list button {
    display: block;
    width: 100%;
    color: #fff;
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 4.5rem;
    letter-spacing: 0.1em;
    text-align: center;
    white-space: nowrap;
}
.b_menu-list span {
    background: no-repeat center left;
    background-size: auto 19px;
}
.b_menu-list span.b_tel {
    padding-left: 16px;
    background-image: url(../img/common/b_tel.jpg);
}
.b_menu-list span.b_event {
    padding-left: 24px;
    background-image: url(../img/common/b_event.jpg);
}
.b_menu-list span.b_reserv {
    padding-left: 23px;
    background-image: url(../img/common/b_reserv.jpg);
}
@media screen and (min-width: 768px) {
    .sp_bottom-menu { display: none }
}

/* Hotel pages */
.hotel-top .h_footer-content {
    background: linear-gradient(to right, #3a3a3a, #3a3a3a);
    background-repeat: repeat-x;
    background-position: bottom left;
    background-size: 100% 50%;
}
.h_footer-content .contents-box { padding-bottom: 60px }
.h_footer-box {
    position: relative;
    padding-top: 56px;
    z-index: 1;
}
.hotel-top .h_footer-box {
    -webkit-align-items: flex-end;
    align-items: flex-end;
    padding-bottom: 60px;
}
.h_footer-box .flex .title-en {
    padding-right: 78px;
    margin-bottom: 0;
}
.h_f_contact-area,
.h_f_link-area { width: 50% }
.hotel-top .h_f_contact-area,
.hotel-top .h_f_link-area { width: auto }
.hotel-top .h_f_contact-main {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
}
.h_f_contact { margin-right: 40px }
.h_f_contact:not(:first-child) { margin-top: 30px }
.hotel-top .h_f_contact:not(:first-child) { margin-top: 0 }
.h_f_contact p {
    padding-bottom: 8px;
    font-size: 1.2rem;
    font-weight: 300;
    line-height: 1.4rem;
}
.h_f_contact .submit-btn { margin-left: 0 }
.h_f_contact .tel {
    padding-top: 1px;
    padding-left: 22px;
    background: url(../img/common/tel_icon.png) no-repeat center left;
    background-size: 14px;
    font-size: 2.4rem;
    font-weight: 900;
    line-height: 3.3rem;
    letter-spacing: 0.1em;
    white-space: nowrap;
}
.h_f_link-area { margin-top: -136px }
.hotel-top .h_f_link-area {
    display: block;
    margin-top: 0;
}
.h_f_link {
    width: 266px;
    max-width: 48.5%;
    height: 60px;
}
.hotel-top .h_f_link {
    max-width: 100%;
}
.hotel-top .h_f_link:not(:first-child) { margin-top: 20px }
.h_f_link-btn {
    width: 100%;
    height: 100%;
    border: 1px solid #fff;
    -webkit-transition: all .15s ease-out;
    transition: all .15s ease-out;
}
.h_f_link-btn:hover {
    border-color: transparent;
    box-shadow: 0 0 20px rgba(229, 199, 199, 0.4);
}
.h_f_link-btn strong {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
}
.h_f_link-btn span {
    padding-left: 20px;
    font-size: 1.2rem;
    letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
    .hotel-top .h_footer-box {
        padding-top: 20px;
        padding-bottom: 0;
    }
    .hotel-top .h_f_contact-area {
        display: block;
        width: 100%;
    }
    .h_footer-box .flex .title-en {
        padding-right: 0;
        margin-bottom: 16px;
        line-height: 1em;
    }
    .hotel-top .h_f_contact-main { display: block }
    .h_f_contact {
        padding-top: 18px;
        margin-right: 0;
    }
    .h_f_contact p {
        margin-bottom: 20px;
        text-align: center;
    }
    .h_f_contact.h_f_contact-tel { text-align: center; }
    .h_f_contact.h_f_contact-tel p { margin-bottom: 0 }
    .h_f_contact .tel {
        display: inline-block;

        padding-left: 19px;
        background-size: contain;
        font-size: 1.8rem;
        line-height: 1em;
    }
    .h_f_contact .submit-btn {
        margin-right: auto;
        margin-left: auto;
    }
    .hotel-top .h_f_link-area { display: none }
}

.access-container {
    position: absolute;
    top: 0;
    left: 50%;
    width: calc((100% - 20px) / 2);
    margin-right: auto;
    margin-left: auto;
    z-index: 1;
}
.hotel-top .access-container {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    padding-top: 120px;
}
body:not(.hotel-top) .access-container .bg-diagonally { display: none }
.access-contents {
    position: relative;
    width: 100%;
    padding-top: 46px;
    padding-bottom: 55px;
    z-index: 1;
}
.hotel-top .access-contents { padding: 0 10px 100px }
.access-box {
    width: 50%;
    padding-right: 10px;
}
.hotel-top .access-box {
    width: calc(100% - 720px);
    padding-right: 0
    ;
}
.hotel-top .access-box.map {
    width: 720px;
    max-width: 65.5%;
}
.access-title {
    padding-top: 44px;
    margin-bottom: 24px;
    background-repeat: no-repeat;
    background-position: top left;
    background-size: auto 37px;
    font-size: 1.3rem;
    font-weight: 300;
    line-height: 1em;
    letter-spacing: 0.1em;
}
.hotel-top .access-title {
    padding-top: 72px;
    background-image: url(../img/title/access_white.png) !important;
    background-size: auto 100%;
    font-size: 0;
}
.access-text {
    font-size: 1.2rem;
    line-height: 2em;
    letter-spacing: 0;
}
.hotel-top .access-text {
    padding-right: 10px;
    color: #fff;
}
.access-map {
    position: relative;
    padding-bottom: 56.25%;
    margin-bottom: 2px;
    background-color: #6e6e6e;
}
.hotel-top .access-map { margin-top: -52px }
.access-map iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.map-link { text-align: right }
.hotel-top .map-link { display: none }
.map-link a {
    font-size: 1.2rem;
    line-height: 1.5em;
    letter-spacing: 0;
}
.map-link a:hover { text-decoration: underline }
.access-btn { display: none }
@media screen and (max-width: 767px) {
    .hotel-top .access-container {
        padding-top: 30px;
    }
    .hotel-top .access-contents {
        display: block;
        padding-bottom: 30px;
    }
    .hotel-top .access-box {
        width: 600px;
        max-width: 100%;
        margin-right: auto;
        margin-left: auto;
    }
    .hotel-top .access-title {
        padding-top: 60px;
        margin-bottom: 56.25%;
        background-position: top center;
        background-size: auto 40px;
    }
    .hotel-top .access-text {
        padding-top: 8px;
        padding-right: 0;
        margin-bottom: 20px;
        font-size: 1.2rem;
        line-height: 1.5rem;
        word-break: keep-all;
    }
    .hotel-top .access-text span { display: none }
    .hotel-top .access-text br { display: none }
    .hotel-top .access-map { margin-top: 0 }
    .hotel-top .access-box.map {
        position: absolute;
        top: 60px;
        left: 50%;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
        width: 600px;
        max-width: calc(100% - 20px);
    }
    .access-btn {
        display: block;
        width: 175px;
        margin-right: auto;
        margin-left: auto;
    }
    .access-btn a {
        display: block;
        width: 100%;
        border: 2px solid #dac9a5;
        color: #a68b62;
        font-size: 1.2rem;
        font-weight: 700;
        line-height: 2.6rem;
        letter-spacing: 0.14em;
        text-align: center;
    }
}


@media screen and (max-width: 768px) {
    body:not(.hotel-top) #bottom-contents { display: none }
}


/*********************************************************************
*  Popup
*********************************************************************/
/* Base */
.popup {
    position: fixed;
    top: 0;
    left: 0;
    display: none;
    width: 100%;
    height: 100vh;
    z-index: 9999;
}
.popup .blk-screen {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    -webkit-animation: popup .3s ease-out both;
    animation: popup .3s ease-out both;
}
@keyframes popup {
    0% { opacity: 0 }
    100% { opacity: 1 }
}
.popup .popup-container {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-animation: popupContent .5s .1s ease-out both;
    animation: popupContent .5s .1s ease-out both;
}
@keyframes popupContent {
    0% { top: -100% }
    100% { top: 50% }
}
.popup-close {
    position: absolute;
    bottom: 100%;
    right: 0;
    width: 38px;
    height: 38px;
    margin-bottom: 22px;
}
.popup-close::before {
    content: "×";
    position: absolute;
    top: 0;
    right: 0;
    color: #fff;
    font-size: 6.0rem;
    font-weight: 300;
    line-height: 3.8rem;
    letter-spacing: -10px;
    cursor: pointer;
}
.popup-close.right-adj { right: 20px }
#popup-box {
    max-height: calc(100vh - 150px);
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-transition: height .15s ease-out;
    transition: height .15s ease-out;
}
.popup-container img {
    max-width: 80vw;
    max-height: calc(80vh - 120px);
}
@media screen and (max-width: 768px) {
    .popup-close {
        width: 19px;
        height: 19px;
        margin-bottom: 10px;
    }
    .popup-close::before {
        font-size: 3.0rem;
        line-height: 1.9rem;
        letter-spacing: -5px;
    }
    .popup-close.right-adj { right: 3vw }
    #popup-box { max-height: calc(100vh - 80px) }
    .popup-container img {
        max-width: 92vw;
        max-height: calc(80vh - 60px);
    }
}
@media screen and (max-width: 554px) {
    .popup-close.right-adj { right: 10px }
}

.popup-inner {
    width: 900px;
    max-width: 92vw;
    padding: 36px 38px 40px;
    background-color: #efe8d9;
    border: 4px solid #fff;
}
.popup-inner.white {
    background-color: #fff;
    border-color: #efe8d9;
}
.popup-title {
    margin-bottom: 30px;
    font-weight: 700;
    text-align: center;
}
.popup-title strong {
    display: block;
    margin-bottom: 14px;
    font-size: 3.0rem;
    line-height: 1em;
    letter-spacing: 0.2em;
}
.popup-title span {
    display: block;
    font-size: 1.4rem;
    line-height: 1em;
    letter-spacing: 0.2em;
}
.popup-caution {
    margin-bottom: 1.6rem;
    font-size: 1.2rem;
    line-height: 2.0rem;
}
@media screen and (max-width: 767px) {
    .popup-inner { padding: 20px 10px 30px }
    .popup-title { margin-bottom: 20px }
    .popup-title strong {
        margin-bottom: 8px;
        font-size: 2.6rem;
    }
    .popup-title span { font-size: 1.2rem }
}


/* Coupon Popup */
.coupon-popup {
    width: 900px;
    max-width: 92vw;
    padding: 36px 38px 40px;
    background-color: #fff;
    border: 4px solid #ecd5c8;
}
.coupon-caution {
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 3.0rem;
    letter-spacing: 0.1em;
}
.coupon-caution span { color: #e57777 }
.c_popup-link-area {
    padding-top: 30px;
    padding-bottom: 44px;
}
.c_popup-link-area p {
    padding-top: 6px;
    padding-bottom: 6px;
    font-size: 1.2rem;
    line-height: 1.5em;
    text-align: center;
}
.c_popup-link {
    width: 200px;
    max-width: 100%;
    margin-right: auto;
    margin-left: auto;
}
.c_popup-link a {
    display: block;
    height: 44px;
    padding: 7px 5px;
    border: 2px solid #dac9a5;
    color: #a68b62;
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 2em;
    text-align: center;
}
.c_popup-link a:hover {
    background-color: #a68b62;
    border-color: #a68b62;
    color: #fff;
}
.c_popup-qr {
    margin-top: 10px;
    width: 148px;
    max-width: 100%;
    margin-right: auto;
    margin-left: auto;
}

/* Plan Popup */
.p_popoup-detail { width: calc(100% + 38px) }
.p_popup-slider {
    width: 230px;
    padding-right: 24px;
    padding-left: 24px;
    margin-right: 20px;
    margin-bottom: 20px;
}
.p_popup-image {
    width: 182px;
    height: 100%;
}
.p_popup-image-inner {
    width: 100%;
    height: 100%;
}
.p_popup-image-inner img {
    max-width: 100%;
    max-height: 100%;
}
.p_slider-arrow {
    position: absolute;
    top: 0;
    width: 24px;
    height: 100%;
    cursor: pointer;
}
.p_slider-arrow.prev { right: 100% }
.p_slider-arrow.next { left: 100% }
.p_slider-arrow::before {
    content: "";
    position: absolute;
    top: 50%;
    width: 1px;
    height: 24px;
    background-color: #000;
}
.p_slider-arrow.prev::before {
    left: 0;
    -webkit-transform: rotate(-30deg);
    transform: rotate(-30deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
}
.p_slider-arrow.next::before {
    right: 0;
    -webkit-transform: rotate(30deg);
    transform: rotate(30deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
}
.p_slider-arrow::after {
    content: "";
    position: absolute;
    bottom: 50%;
    width: 1px;
    height: 24px;
    background-color: #000;
}
.p_slider-arrow.prev::after {
    left: 0;
    -webkit-transform: rotate(30deg);
    transform: rotate(30deg);
    -webkit-transform-origin: bottom left;
    transform-origin: bottom left;
}
.p_slider-arrow.next::after {
    right: 0;
    -webkit-transform: rotate(-30deg);
    transform: rotate(-30deg);
    -webkit-transform-origin: bottom right;
    transform-origin: bottom right;
}
.p_popup-frame {
    border: 1px solid #3a3a3a;
    padding: 10px;
}
.p_popup-frame p {
    color: #000;
    line-height: 1.8rem;
    letter-spacing: 0;
}
.p_popup-caution {
    font-size: 1.1rem;
    font-weight: 300;
}
.p_popup-list {
    font-size: 1.2rem;
    font-weight: 500;
}
.p_popup-list a:hover { text-decoration: underline }
.p_popup-list strong {
    display: block;
    margin-bottom: 6px;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1em;
}
.p_popup-benefits { width: calc(100% - 250px) }

/* LINE Popup */
.line-title {
    height: 60px;
    margin-bottom: 30px;
    color: #00b900;
    font-size: 4.0rem;
    font-weight: 900;
    line-height: 5.6rem;
    letter-spacing: 0.1em;
    text-align: center;
    white-space: nowrap
}
.line-title .line-logo {
    display: block;
    width: 60px;
    height: 60px;
    margin-right: 20px;
    background: url(../img/common/line_logo.png) no-repeat center left;
    background-size: contain;
}
.line-title .line-text {
    display: block;
    width: 103px;
    height: 60px;
    margin-right: 8px;
    background: url(../img/common/line_text.png) no-repeat center left;
    background-size: contain;
}
.line-catch {
    text-align: center;
    margin-bottom: 30px;
}
.line-catch span {
    display: inline-block;
    max-width: 100%;
    height: 50px;
    padding-right: 60px;
    padding-left: 60px;
    background-color: #00b900;
    border-radius: 25px;
    color: #fff;
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 5.0rem;
    letter-spacing: 0.06em;
    white-space: nowrap;
}
.line-name-box { margin-bottom: 24px }
.line-name-frame {
    padding: 15px 22px;
    border: 3px solid #00b900;
}
.line-name-frame span {
    display: block;
    padding-right: 0.5em;
    padding-left: 0.5em;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 2em;
}
.line-name-frame span.line-name {
    background-color: #00b900;
    color: #fff;
}
.line-qr {
    width: 180px;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 10px;
}
.line-pc { text-align: center }
.line-text1 {
    margin-bottom: 20px;
    font-size: 1.6rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    line-height: 2.0rem;
}
.line-text2 {
    font-size: 1.4rem;
    letter-spacing: 0.06em;
    line-height: 2.0rem;
}
.popup-inner .line-sp { display: none }
@media screen and (max-width: 767px) {
    .line-title {
        height: 45px;
        margin-bottom: 15px;
        font-size: 3.0rem;
        line-height: 4.4rem;
    }
    .line-title .line-logo {
        width: 45px;
        height: 45px;
        margin-right: 15px;
    }
    .line-title .line-text {
        display: block;
        width: 76px;
        height: 45px;
        margin-right: 6px;
    }
    .line-catch {
        text-align: center;
        margin-bottom: 20px;
    }
    .line-catch span {
        display: block;
        height: 26px;
        padding-right: 0;
        padding-left: 0;
        border-radius: 13px;
        font-size: 1.5rem;
        line-height: 2.6rem;
    }
    .line-name-box { margin-bottom: 0 }
    .line-name-frame {
        display: block;
        padding: 0;
        border: none;
        text-align: center;
    }
    .line-name-frame span {
        padding-right: 0;
        padding-left: 0;
        font-size: 1.8rem;
        line-height: 3.5rem;
    }
    .line-name-frame span.line-name {
        display: inline-block;
        height: 3.5rem;
        padding-right: 0.5em;
        padding-left: 0.5em;
        background-color: transparent;
        border: 2px solid #00b900;
        color: #00b900;
        line-height: 3.0rem;
    }
    .line-qr {
        width: 30%;
        margin-bottom: 10px;
    }
    .popup-inner .line-pc { display: none }
    .popup-inner .line-sp { display: block }
    .line-link { text-align: center }
    .line-link a {
        display: inline-block;
        height: 60px;
        padding-right: 1em;
        padding-left: 1em;
        background-color: #00b900;
        border-radius: 13px;
        color: #fff;
        font-size: 2.7rem;
        font-weight: 500;
        line-height: 5.9rem;
        letter-spacing: 0;
    }
}


.reservation-container {}
.reservation-form {
    opacity: 0;
    -webkit-animation: popup .5s .25s ease-out both;
    animation: popup .5s .25s ease-out both;
}
.reservation-confirm-title {
    margin-bottom: 22px;
    font-size: 2.0rem;
    font-weight: 700;
    line-height: 1.5em;
    letter-spacing: 0.2em;
    text-align: center;
}
.reservation-confirm-text {
    margin-bottom: 50px;
    font-size: 1.4rem;
    line-height: 3.6rem;
    letter-spacing: 0;
    text-align: center;
}
.reservation-confirm-text strong {
    color: #e80000;
    font-size: 1.6rem;
    font-weight: 700;
}
.reservation-btn-area .submit-btn {
    margin-right: 25px;
    margin-left: 25px;
}
@media screen and (max-width: 767px) {
    .reservation-confirm-title { font-weight: 900 }
    .reservation-confirm-text {
        margin-bottom: 40px;
        font-size: 1.0rem;
        line-height: 1.5rem;
    }
    .reservation-confirm-text strong {
        display: inline-block;
        padding-top: 1.5rem;
        font-size: 1.2rem;
    }
    .reservation-btn-area:not(.reverse) { display: block }
    .reservation-btn-area.reverse {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        flex-direction: column-reverse;
    }
    .reservation-btn-area .submit-btn {
        width: auto;
        margin-right: 10px;
        margin-left: 10px;
    }
    .reservation-btn-area .submit-btn:not(:first-child) { margin-top: 30px }
    .reservation-btn-area.reverse  .submit-btn:not(:first-child) {
        margin-top: 0;
        margin-bottom: 30px;
    }
    .reservation-container .submit-btn button {
        background-color: #a68b62;
        border-color: #a68b62;
        color: #fff;
    }
}


.reservation-shop-select {
    width: 100%;
    height: 45px;
    margin-bottom: 40px;
    font-size: 1.4rem;
}
.reservation-shop-select p {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding-right: 20px;
    padding-left: 20px;
    box-shadow: 0 0 15px rgba(73, 50, 0, 0.15);
    font-weight: 500;
    line-height: 4.5rem;
    letter-spacing: 0.1em;
    text-align: center;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    pointer-events: none;
}
.reservation-shop-select p::before {
    content: "";
    position: absolute;
    top: calc(50% - 5px);
    right: 6px;
    border: 5px solid transparent;
    border-top: 10px solid #a98f68;
    border-bottom: none;
}
.reservation-shop-select select {
    width: auto;
    max-width: 100%;
    height: 100%;
    padding-right: 20px;
    padding-left: 20px;
    opacity: 0;
}

.reservation-date-range {
    margin-bottom: 10px;
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 1.5em;
    letter-spacing: 0;
    text-align: center;
}
.reservation-date-range span {
    color: #e57777;
    font-weight: 700;
}
.reservation-sp-frame-box {
    margin-bottom: 12px;
    font-size: 1.2rem;
    line-height: 2em;
    letter-spacing: 0;
}
@media screen and (max-width: 767px) {
    .reservation-date-range {
        margin-bottom: 14px;
        font-size: 1.5rem;
        line-height: 2.5rem;
    }
    .reservation-sp-frame-box {
        padding: 10px;
        margin-bottom: 10px;
        border: 1px solid #d8d8d8;
        font-size: 1.0rem;
        line-height: 1.5em;
    }
}

.reservation-calendar-title {
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 3.4rem;
    letter-spacing: 0.1em;
}
.reservation-calendar-title .date-area { padding-left: 10px }
.reservation-calendar-title .date-area.prev {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    flex-direction: row-reverse;
}
.reservation-calendar-title .date-area p {
    padding-right: 8px;
    padding-left: 8px;
}
.reservation-calendar-btn {
    width: 25px;
    height: 12px;
    padding-right: 3px;
    background-color: #3a3a3a;
    border-radius: 3px;
}
.reservation-calendar-btn span {
    position: relative;
    display: block;
    width: 4px;
    height: 8px;
    margin-right: 1px;
    margin-left: 1px;
    background-color: #fff;
}
.reservation-calendar-btn span::before,
.reservation-calendar-btn span::after {
    content: "";
    position: absolute;
    top: 0;
    left: -0.5px;
    border: 4px solid transparent;
    border-left: 4px solid #3a3a3a;
}
.reservation-calendar-btn span::after {
    left: 90%;
    border-left-color: #fff;
}
.reservation-calendar-title .date-area.prev .reservation-calendar-btn {
    padding-right: 0;
    padding-left: 3px;
}
.reservation-calendar-title .date-area.prev .reservation-calendar-btn span::before {
    left: auto;
    right: -0.5px;
    border-left: none;
    border-right: 4px solid #3a3a3a;
}
.reservation-calendar-title .date-area.prev .reservation-calendar-btn span::after {
    left: auto;
    right: 90%;
    border-left: none;
    border-right: 4px solid #fff;
}
@media screen and (max-width: 767px) {
    .reservation-calendar-title {
        font-size: 1.5rem;
        line-height: 5.4rem;
    }
    .reservation-calendar-title .date-area p {
        padding-right: 10px;
        padding-left: 10px;
    }
    .reservation-calendar-btn {
        width: 27px;
        height: 13px;
    }
    .reservation-calendar-btn span {
        margin-right: 2px;
        margin-left: 2px;
    }
}

.reservation-calendar-box {
    margin-bottom: 14px;
    background-color: #a68b62;
    border: 3px solid #a68b62;
}
.reservation-calendar {
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 0;
}
.reservation-calendar.caption {
    padding-bottom: 3px;
    color: #fff;
    line-height: 2.4rem;
    text-align: center;
}
.reservation-calendar-content {
    width: calc((100% - 18px) / 7);
    margin-right: 3px;
    margin-bottom: 3px;
}
.reservation-calendar-content:nth-child(7n) { margin-right: 0 }
.reservation-calendar-content:nth-last-child(-n + 7) { margin-bottom: 0 }
.reservation-calendar.date-box .reservation-calendar-content { background-color: #efe8d9 }
.reservation-calendar-date-select {
    width: 100%;
    height: 47px;
    padding-left: 10%;
    padding-right: 20%;
}
.reservation-calendar-date-select.active {
    background-color: #e57777;
    color: #fff;
    -webkit-transition: background-color .15s ease-out;
    transition: background-color .15s ease-out;
}
.reservation-calendar-date-select:disabled { pointer-events: none }
.reservation-calendar-date-select .calendar-date {
    font-size: 1.6rem;
    font-weight: 500;
}
.reservation-calendar-date-select .calendar-status {
    font-size: 2.4rem;
    font-weight: 100
}
@media screen and (max-width: 767px) {
    .reservation-calendar-box {
        margin-bottom: 16px;
        border-width: 2px;
    }
    .reservation-calendar {
        font-size: 1.5rem;
        font-weight: 500;
    }
    .reservation-calendar.caption {
        padding-bottom: 2px;
        line-height: 2.2rem;
    }
    .reservation-calendar-content {
        width: calc((100% - 12px) / 7);
        margin-right: 2px;
        margin-bottom: 2px;
    }
    .reservation-calendar-date-select {
        display: block;
        height: 58px;
        padding: 5px 0;
    }
    .reservation-calendar-date-select .calendar-date {
        font-size: 1.5rem;
        line-height: 2.2rem;
    }
    .reservation-calendar-date-select .calendar-status {
        font-size: 2.0rem;
        line-height: 2.6rem;
    }
}

.reservation-input-detail {
    padding-top: 16px;
    margin-bottom: 40px;
    border-bottom: 1px solid #d8d8d8;
}
.reservation-input-box {
    width: 50%;
    border-top: 1px solid #d8d8d8;
}
.reservation-input-box:nth-child(2n) {
    padding-left: 10px;
    border-left: 1px solid #d8d8d8;
}
.reservation-input-box dt,
.reservation-input-box dd {
    padding-top: 15px;
    padding-bottom: 15px;
    font-size: 1.4rem;
    line-height: 2.4rem;
    letter-spacing: 0.1em;
}
.reservation-input-box dt {
    width: 130px;
    font-weight: 700;
    white-space: nowrap;
}
.reservation-input-box dd {
    width: calc(100% - 130px);
    font-weight: 500;
}
@media screen and (max-width: 768px) {
    .reservation-input-detail {
        display: block;
        border-bottom: none;
    }
    .reservation-input-box {
        display: block;
        width: 100%;
        margin-bottom: 10px;
        border-top: none;
    }
    .reservation-input-box:nth-child(2n) {
        padding-left: 0;
        border-left: none;
    }
    .reservation-input-box dt {
        width: 100%;
        padding: 3px 10px;
        background-color: #efe8d9;
        border-right: none;
        font-size: 1.2rem;
        line-height: 2em;
    }
    .reservation-input-box dd {
        width: 100%;
        padding: 3px 10px;
        font-size: 1.2rem;
        line-height: 2em;
    }
}

/* Slider Popup */
.slider-pop {
    position: relative;
    padding-right: 20px;
    padding-left: 20px;
}
.slider-pop-image {
    display: none;
    opacity: 0;
}
.slider-pop-image.active {
    position: static;
    display: block;
    opacity: 1;
    -webkit-transition: opacity .3s .15s ease-out;
    transition: opacity .3s .15s ease-out;
}
.slider-pop-image.non-active {
    position: absolute;
    display: block;
    -webkit-transition: opacity .15s ease-in;
    transition: opacity .15s ease-in;
}
.slider-pop-prev,
.slider-pop-next {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 30px;
    height: 100%;
    min-height: 96px;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    -webkit-transition: opacity .15s ease-out;
    transition: opacity .15s ease-out;
    z-index: 10;
}
.slider-pop-prev {
    left: 0;
    background: url(../img/common/prev_arrow.png) no-repeat center center / contain;
}
.slider-pop-next {
    right: 0;
    background: url(../img/common/next_arrow.png) no-repeat center center / contain;
}
.slider-pop-prev.active,
.slider-pop-next.active {
    opacity: 1;
    pointer-events: visible;
}
@media screen and (max-width: 768px) {
    .slider-pop {
        padding-right: 3vw;
        padding-left: 3vw;
    }
}
@media screen and (max-width: 554px) {
    .slider-pop {
        width: 100vw;
        padding-right: 10px;
        padding-left: 10px;
    }
    .slider-pop-image { width: 100% }
    .slider-pop-prev,
    .slider-pop-next {
        top: calc(50% - 25px);
        -webkit-transform: none;
        transform: none;
        width: 50px;
        height: 50px;
        min-height: 0;
        background: rgba(58, 58, 58, 0.5) !important;
        border-radius: 100%;
    }
    .slider-pop-prev {
        right: calc(91.5% - 10px);
        left: auto;
    }
    .slider-pop-next {
        right: auto;
        left: calc(91.5% - 10px);
    }
    .slider-pop-prev::before,
    .slider-pop-next::before {
        content: "";
        position: absolute;
        top: calc(50% - 11.5px);
        width: 23px;
        height: 23px;
        border-top: 3px solid #fff;
        border-right: 3px solid #fff;
    }
    .slider-pop-prev::before {
        left: 18px;
        -webkit-transform: rotate(-135deg);
        transform: rotate(-135deg);
    }
    .slider-pop-next::before {
        right: 18px;
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
    }
}












/*********************************************************************
*  Accordion contents
*********************************************************************/
.accordion-container { margin-bottom: 40px }
.accordion-container.single { margin-bottom: 0 }
.accordion-box { margin-bottom: 40px }
.accordion-container.single .accordion-box { margin-bottom: 0 }
.accordion-title {
    padding: 12px 18px;
    background-color: #a68b62;
    color: #fff;
    font-size: 1.8rem;
    font-weight: 500;
    line-height: 2.6rem;
}
.accordion-content { padding: 40px }
.accordion-list:not(:last-child) { margin-bottom: 20px }
.accordion-content-title { min-height: 60px }
.accordion-content-title button {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    padding: 18px 60px 18px 20px;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.5em;
    letter-spacing: 0.1em;
    text-align: left;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}
.accordion-content-title button.active {
    white-space: normal;
    overflow: visible;
}
.accordion-content-title button::before,
.accordion-content-title button::after {
    content: "";
    position: absolute;
    top: 29.25px;
    right: 20px;
    width: 25px;
    height: 1.5px;
    background-color: #3a3a3a;
}
.accordion-content-title button::after {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
}
.accordion-content-title button.active::after { display: none }
.js-accordion-content { display: none }
.accordion-inner { padding: 20px 40px 40px }
.accordion-sp { display: none }
@media screen and (max-width: 767px) {
    .accordion-title {
        padding: 11px 10px;
        font-size: 1.2rem;
        font-weight: 700;
        line-height: 1.5em;
    }
    .accordion-content { padding: 20px 15px 18px }
    .accordion-list:not(:last-child) { margin-bottom: 15px }
    .accordion-content-title { min-height: 40px }
    .accordion-content-title button {
        padding: 8px 30px 8px 10px;
        font-size: 1.4rem;
        line-height: 2.4rem;
    }
    .accordion-content-title button::before,
    .accordion-content-title button::after {
        top: 19.5px;
        right: 10px;
        width: 15px;
        height: 1px;
    }
    .accordion-inner {
        padding: 20px 20px 16px;
        padding-right: 15px;
        padding-bottom: 20px;
        padding-left: 15px;
    }
    .accordion-sp { display: block }
}


