@charset 'utf-8';

:root {
    --color-white: #fff;
    --color-black: #000;
    --color-dark-gray: #333;
    --color-light-gray: #999;
    /* テキスト色 */
    --color-text: rgb(35, 24, 21);
    /* アクセントの背景色 */
    --color-accent-light: rgba(174, 158, 132, 0.1);
    /* アクセント・ボタン背景色 */
    --color-accent-dark: rgb(74, 79, 105);
}

/*
---------------------------------------
reset
---------------------------------------
*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    vertical-align: baseline;
    font-size: 100%;
    font-style: normal;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    letter-spacing: 0.1em;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
    margin: 0;
    padding: 0;
}

html {
    min-height: 100%;
    width: 100%;
    font-size: 62.5%;
}

html,
body,
.wrapper {
    min-height: 100%;
    position: relative;
}

.wrapper {
    min-width: 1030px;
    /* background: url(../img/common/bg-stripe.png); */
}

/* renewal -add */
.wrapper {
    /* background: url(../img/top/bg-top@2x.png) no-repeat 50% 0%; */
    background-size: 3200px auto;
}

@media screen and (max-width: 1280px) {
    #home.wrapper {
        background-position: 51.5% 0;
    }
}

#container {
    position: relative;
}

/* renewal -add */
#container {
    padding: 0 0 120px;
}

body {
    font-family: "游ゴシック", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", YuGothic, "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    color: var(--color-text);
    height: 100%;
    width: 100%;
    min-width: 1280px;
    margin: 0;
    padding: 0;
    position: relative;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* renewal -add */
body {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 400;
}

input,
textarea {
    margin: 0;
    padding: 0;
}

input:focus,
textarea:focus,
button:focus {
    outline: 0;
}

input[type="button"],
input[type="submit"],
button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

img {
    border: none;
}

ol,
ul {
    list-style: none;
}

p,
li,
dd,
dt {
    font-size: 1.6rem;
    line-height: 2;
}

table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
}

table th {
    font-weight: normal;
}

caption,
th {
    text-align: left;
}

a:focus {
    outline: none;
}

p,
dd,
li,
address {
    font-style: normal;
}

body small {
    font-size: 1.1rem;
}

figure {
    line-height: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: normal;
    letter-spacing: 0;
}

/*
----------------------------------------
flex
----------------------------------------
*/
.flex {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: stretch;
}

.flex.nowrap {
    flex-wrap: nowrap;
}

.flex.reverce {
    flex-direction: row-reverse;
}

.flex.item-center {
    align-items: center;
}

/* renewal -add */
.flex.content-start {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

.flex.content-end {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.flex .box.pic {
    width: 40%;
    padding: 0 20px 0 0;
    box-sizing: border-box;
    text-align: center;
}

.flex .box.pic img {
    max-width: 100%;
    height: auto;
}

.flex.reverce .box.pic {
    padding: 0 0 0 20px;
}

.flex .box.txt {
    width: 60%;
    box-sizing: border-box;
    padding: 0;
    margin-bottom: 5px;
    font-size: 1.6rem;
}

/* box */
.flex .box {
    padding: 8px;
    box-sizing: border-box;
    position: relative;
}

.flex .box .num {
    position: absolute;
    left: 5px;
    top: 5px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    background: #444;
    color: #fff;
    text-align: center;
    font-size: 1.8rem;
}

.flex.box-02 .box {
    width: 50%;
}

.flex.box-03 .box {
    width: 33.3333%;
}

.acf-contents .flex.box-04 .box {
    width: 25%;
    font-size: 1.3rem;
}

.acf-contents .flex.box-05 .box {
    width: 20%;
    font-size: 1.3rem;
}

.acf-contents .flex.box-06 .box {
    width: 16.6666%;
    font-size: 1.3rem;
}

.acf-contents .flex.box-02,
.acf-contents .flex.box-03,
.acf-contents .flex.box-04,
.acf-contents .flex.box-05,
.acf-contents .flex.box-06 {
    margin: 0 -8px;
    padding: 6rem 0;
}

.acf-contents .flex .box figure {
    text-align: center;
}

.acf-contents .flex .box figure img {
    width: 100%;
    height: auto;
}

.acf-contents {
    line-height: 2;
    word-wrap: break-word;
    word-break: break-all;
}

.acf-contents .box-ttl,
.acf-contents .img-txt .box-ttl {
    font-size: 2.4rem;
    padding: 0 0 1.5rem;
    display: block;
    margin: 0 0 0;
    line-height: 1.4;
}

.acf-contents .flex.box-02 .box-ttl,
.acf-contents .flex.box-03 .box-ttl,
.acf-contents .flex.box-04 .box-ttl,
.acf-contents .flex.box-05 .box-ttl,
.acf-contents .flex.box-06 .box-ttl {
    border-left: 1px solid #707070;
    margin: 0 0 0 3rem;
    padding: 8px 0 0 1em;
    letter-spacing: 1.7px;
    font-size: 1.4rem;
}

/*.acf-contents.post-content h3 {
  font-size: 2.2rem;
  font-weight: bold;
  margin: 0 0 20px 0;
}*/
.acf-contents.post-content,
.acf-contents.post-content p {
    margin-bottom: 20px;
    font-size: 1.6rem;
}

.acf-contents.post-content .img-txt {
    padding: 6rem 0;
}

.acf-contents.post-content .flex p {
    margin-bottom: 0;
}

/*
---------------------------------------
link
---------------------------------------
*/
a {
    text-decoration: none;
    font-size: inherit;
    color: inherit;
}

a:hover {
    text-decoration: none;
}

/*
---------------------------------------
clear
---------------------------------------
*/
.clearfix:after {
    content: ".";
    display: block;
    height: 0;
    font-size: 0;
    clear: both;
    visibility: hidden;
}

.clearfix {
    min-height: 1px;
}

* html .clearfix {
    height: 1px;
    /*\*/
    /*/
  height: auto;
  overflow: hidden;
  /**/
}

*:first-child + html .clearfix {
    zoom: 1;
}

/* IE7 */
/*
---------------------------------------
form
---------------------------------------
*/
form input[type="text"],
form input[type="email"],
form input[type="tel"] {
    border: none;
    font-size: 1.6rem;
    padding: 15px;
    background: #f7f7f7;
    width: 100%;
    box-sizing: border-box;
    border-radius: 0;
}

form input[type="submit"] {
    border-radius: 0;
}

form textarea {
    border: none;
    font-size: 1.6rem;
    padding: 15px;
    background: #f7f7f7;
    width: 100%;
    box-sizing: border-box;
}

/*
---------------------------------------
common
---------------------------------------
*/
.pc {
    display: block !important;
    margin: 0 auto;
}

.sp {
    display: none !important;
}

.contents {
    width: 100%;
    margin: 0 auto;
}

/*@media screen and (max-width: 1080px) {
  .contents{
    width : 1080px;
  }
}*/
.inner {
    max-width: 1099px;
    margin: 0 auto;
}

span {
    font-size: inherit;
}

a img {
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

a img:hover {
    opacity: 0.8;
}

.ca {
    font-family: "Oswald", "Noto Sans JP", serif;
    letter-spacing: 0;
}

.ti {
    font-family: "Oswald", "Noto Sans JP", serif;
    letter-spacing: 0;
}

.sa_mnch {
    font-family: "Noto Sans JP", sans-serif;
}

.smg {
    font-family: "Oswald", "Noto Sans JP", sans-serif;
}

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

.txt-center {
    text-align: center;
}

/*
---------------------------------------
heading
---------------------------------------
*/
.heading-01 {
    font-size: 4.5rem;
    text-align: center;
    letter-spacing: 2px;
    font-family: "Oswald", "Noto Sans JP", serif;
}

.heading-02 {
    font-size: 4.2rem;
    text-align: center;
    font-family: "Oswald", "Noto Sans JP", serif;
    position: relative;
    margin: 0 0 3.5rem;
}

.heading-02:before {
    content: "";
    background: var(--color-dark-gray);
    width: 5rem;
    height: 1px;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto -1rem;
    display: block;
}

.heading-03 {
    font-size: 2.6rem;
}

.heading-03:before {
    content: "";
    background: var(--color-dark-gray);
    /*width: 183px;*/
    width: calc((100% - 1080px) / 2 - 2rem);
    height: 1px;
    display: inline-block;
    transform: translateY(-10px);
    margin: 0 2rem 0 0;
}

/* renewal -add */
.heading-04 {
    font-size: 4.3rem;
    margin: 0 auto 0.4em;
    letter-spacing: .08em;
    color: var(--color-text);
    text-align: center;
}

.heading-05 {
    font-size: 4.3rem;
    margin: 0 auto 0.4em;
    letter-spacing: .1em;
    color: var(--color-text);
}

.heading-06 {
    font-size: 1.8rem;
    margin: 0 auto 1.2em;
    letter-spacing: .08em;
    font-weight: 700;
}

.heading-06 .en {
    font-size: 1.4rem;
    font-weight: 400;
    display: block;
}

.heading-box {
    position: relative;
    padding: 12.8rem 2.8rem 10.4rem 2.8rem;
    width: 17rem;
    height: 68rem;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.heading-box:before,
.heading-box:after {
    content: "";
    width: 140%;
    height: 1px;
    background: var(--color-accent-dark);
    position: absolute;
    left: -20%;
    transform: rotate(-45deg);
}

.heading-box:before {
    top: 13%;
}

.heading-box:after {
    bottom: 12%;
    left: -15%;
}

.heading-box .ttl {
    font-size: 3rem;
    height: 100%;
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    text-align: center;
}

.heading-box .en {
    position: absolute;
    right: -1.5em;
    top: 13rem;
    /* transform: rotate(90deg); */
    line-height: 1;
    display: block;
    font-size: 1.4rem;
}

.heading-box .ttl span {
    display: block;
}

.heading-box .ttl span {
    /* display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column; */
}

.heading-box .ttl span.txt-01 {}

.heading-box .ttl span.txt-02 {}

.heading-box .ttl i {
    text-align: center;
    margin: 0 0 .2em;
}

/*
---------------------------------------
btn
---------------------------------------
*/
.btn-01 {
    text-align: center;
}

.btn-01 a,
.btn-01 span {
    background: var(--color-accent-dark);
    color: var(--color-white);
    display: inline-block;
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-size: 1.6rem;
    letter-spacing: 0.1em;
    width: 240px;
    text-align: center;
    padding: 1.6rem 0;
    font-style: italic;
    position: relative;
    transition: 0.25s;
    letter-spacing: 0;
}

.btn-01 a:before,
.btn-01 span:before {
    content: "";
    background: var(--color-white);
    color: var(--color-text);
    border: 1px solid var(--color-text);
    width: 13px;
    height: 7px;
    position: absolute;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    display: block;
    transition: 0.25s;
}

.btn-01 a:hover:before,
.btn-01 span:hover:before {
    right: 1.5rem;
}

.btn-01.btn-red a {
    font-style: normal;
    background: var(--color-accent-dark);
    border: none;
}

.btn-02 {
    text-align: center;
}

.btn-02 a {
    background: #fff;
    color: var(--color-white);
    display: inline-block;
    border: 1px solid var(--color-text);
    font-size: 1.6rem;
    letter-spacing: 0.1em;
    width: 290px;
    text-align: center;
    padding: 1.6rem 0;
    font-style: italic;
    position: relative;
    transition: 0.25s;
    letter-spacing: 0;
}

.btn-02 a:before {
    content: "";
    background: var(--color-white);
    color: var(--color-text);
    width: 13px;
    height: 7px;
    position: absolute;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    display: block;
    transition: 0.25s;
}

.btn-02 a:hover:before {
    right: 1.5rem;
}

/* renewal -add */
.btn-03 a,
.btn-03 span {
    background: var(--color-accent-dark);
    border: 1px solid var(--color-accent-dark);
    color: var(--color-white);
    display: block;
    font-size: 1.66rem;
    letter-spacing: 0.1em;
    width: 323px;
    text-align: center;
    padding: 1.6rem 0;
    position: relative;
    transition: 0.25s;
    letter-spacing: 0;
}

.btn-03 a:hover,
.btn-03 span:hover {
    opacity: .7;
    color: var(--color-white);
}

.icn-reserve {
    display: inline-block;
    margin: -.3em 0 0 .5em;
    width: 1.03em;
    height: 1.03em;
    vertical-align: middle;
    background: url(../img/top/icn-cal.svg) no-repeat 50% 50%;
    background-size: contain;
}

.icn-map {
    display: inline-block;
    margin: -.3em 0 0 .5em;
    width: 1.03em;
    height: 1.03em;
    vertical-align: middle;
    background: url(../img/top/icn-map.svg) no-repeat 50% 50%;
    background-size: contain;
}

/*
---------------------------------------
header
---------------------------------------
*/
#header {
    position: absolute;
    width: 100%;
    z-index: 999;
    transition: background 0.25s;
}

#header .inner {
    max-width: 1080px;
}

#header a img:hover {
    opacity: 1;
}

#header .logo {
    line-height: 1;
}

#sp-btn {
    display: none;
}

.header-top {
    padding: 1rem 2.5rem 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

#header.is-fixed {
    position: fixed;
    top: 0;
    /*left: 0;*/
    z-index: 100;
    min-width: 1280px;
    width: 100%;
    border: none;
}

#header.is-fixed .header-top {
    border-bottom: none;
    color: var(--color-white);
}

/**/
.nav-pc li {
    font-size: 1.4rem;
    letter-spacing: 1.5px;
    position: relative;
    text-align: center;
    color: var(--color-white);
}

.nav-pc li a {
    display: block;
    margin: 0;
    line-height: 1;
    padding: 8px 16px;
    text-decoration: none;
    transition: 0.2s ease;
    /* background: var(--color-dark-gray); */
    color: var(--color-white);
}

html.no-touch .nav-pc li a:hover {
    color: #fff;
    opacity: 0.6;
}

.nav-pc .btn-contact {
    margin: 0 0 0 3.8rem;
}

.nav-pc .btn-contact a {
    font-size: 1.1rem;
    border: 1px solid var(--color-white);
    padding: 8px 1.8rem;
    color: var(--color-white);
}

.lang {
    position: absolute;
    right: 1.5rem;
    bottom: 1.6rem;
}

.lang li {
    display: inline-block;
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.4);
}

.lang li.active {
    color: var(--color-white);
    border: 1px solid var(--color-white);
}

.lang li a {
    padding: 0.75rem;
    color: var(--color-white);
}

/* renewal -add */
#header .logo {
    line-height: 1;
    position: fixed;
    left: 50px;
    top: 40px;
}

#header.is-fixed {
    background: none;
}

.header-top {
    border: none;
}

.nav-pc li {
    font-family: "Oswald", serif;
}

@media screen and (min-width: 751px) {
    #g-nav {
        position: fixed;
        right: 52px;
        top: 88px;
        z-index: 10000;
    }

    .nav-pc li {
        text-align: right;
        font-size: 1.6rem;
        margin-bottom: 1em;
    }

    .nav-pc li a {
        color: var(--color-text);
    }
}

/*
---------------------------------------
footer
---------------------------------------
*/
footer {
    width: 100%;
    /* background: url(../img/common/bg-footer.jpg) no-repeat center center / cover; */
    color: var(--color-white);
}

.footer-top {
    padding: 97px 0 46px;
}

.footer-top .inner {
    display: -ms-flexbox;
    display: flex;
    flex-direction: row-reverse;
    align-items: flex-start;
    flex-wrap: nowrap;
    justify-content: space-between;
}

.footer-top iframe {
    width: 650px;
    height: 260px;
}

.footer-top .link-list-wrap {
    display: -ms-flexbox;
    display: flex;
    align-items: flex-start;
    flex-wrap: nowrap;
    justify-content: space-between;
    padding: 0 0 0 2rem;
}

.footer-top .link-list-box {
    padding: 0 2rem 0 5rem;
}

.footer-top .link-list-box-2 {
    padding: 0 0 0 5rem;
}

.link-list-ttl {
    /*font-family: "Oswald", serif;*/
    font-style: italic;
    font-size: 1.8rem;
    color: #fff;
    padding: 0 0 3rem;
    letter-spacing: 1px;
    line-height: 1;
}

.link-list li {
    font-size: 1.4rem;
    color: #ccc;
}

.link-list li a {
    display: inline-block;
    padding: 0.8rem 0;
}

/*.totop {
  display: none;
}*/
/* renewal -add */
footer {
    background: var(--color-accent-light);
}

.footer-contents {
    padding: 105px 0 15px;
}

footer * {
    color: var(--color-text);
}

footer .menu-list li {
    padding: 0.9em 0 0.9em 2em;
    font-family: "Oswald", serif;
}

footer .f-logo {
    max-width: 200px;
    margin: 15px 0 42px;
}

footer .logo-box p {
    margin: 1.8em auto 0;
}

footer .copy {
    text-align: right;
    font-size: 1.2rem;
    margin-top: 3em;
    letter-spacing: .07em;
}

/*
---------------------------------------
#home
---------------------------------------
*/
/* mv */
@keyframes imageAnimation {
    0% {
        opacity: 0;
    }

    7% {
        opacity: 1;
    }

    25% {
        opacity: 1;
        /*100%/枚数*/
    }

    37% {
        opacity: 0;
        transform: scale(1.1);
    }

    100% {
        opacity: 0;
    }
}

@-webkit-keyframes imageAnimation {
    0% {
        opacity: 0;
    }

    6% {
        opacity: 1;
    }

    25% {
        opacity: 1;
        /*100%/枚数*/
    }

    33% {
        opacity: 0;
        transform: scale(1.1);
    }

    100% {
        opacity: 0;
    }
}

@-moz-keyframes imageAnimation {
    0% {
        opacity: 0;
    }

    6% {
        opacity: 1;
    }

    25% {
        opacity: 1;
        /*100%/枚数*/
    }

    33% {
        opacity: 0;
        transform: scale(1.1);
    }

    100% {
        opacity: 0;
    }
}

@-ms-keyframes imageAnimation {
    0% {
        opacity: 0;
    }

    6% {
        opacity: 1;
    }

    25% {
        opacity: 1;
        /*100%/枚数*/
    }

    33% {
        opacity: 0;
        transform: scale(1.1);
    }

    100% {
        opacity: 0;
    }
}

.mv {
    background-color: #444;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 100vh;
    /*padding: 95px 0 26px;*/
    padding: 17px 0 0px;
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
}

.mv {
    overflow: hidden;
}

.mv:after {
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    right: 0;
    position: absolute;
    z-index: 0;
}

.mv .bg li {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    overflow: hidden;
    z-index: 0;
}

.mv .bg li:nth-child(1) .bg-img {
    -webkit-animation-delay: 0s;
    -moz-animation-delay: 0s;
    animation-delay: 0s;
}

.mv .bg li:nth-child(2) .bg-img {
    -webkit-animation-delay: 10s;
    -moz-animation-delay: 10s;
    animation-delay: 10s;
}

.mv .bg li:nth-child(3) .bg-img {
    -webkit-animation-delay: 20s;
    -moz-animation-delay: 20s;
    animation-delay: 20s;
}

.mv .bg li:nth-child(4) .bg-img {
    -webkit-animation-delay: 30s;
    -moz-animation-delay: 30s;
    animation-delay: 30s;
}

.mv .bg li:nth-child(5) .bg-img {
    -webkit-animation-delay: 40s;
    -moz-animation-delay: 40s;
    animation-delay: 40s;
}

/*.mv .bg li:nth-child(4) .bg-img {
    -webkit-animation-delay: 30s;
    -moz-animation-delay: 30s;
    animation-delay: 30s;
}*/
@keyframes bgAnimation {
    0% {
        opacity: 0;
    }

    7% {
        opacity: 1;
    }
}

@-webkit-keyframes bgAnimation {
    0% {
        opacity: 0;
    }

    7% {
        opacity: 1;
    }
}

@-moz-keyframes bgAnimation {
    0% {
        opacity: 0;
    }

    7% {
        opacity: 1;
    }
}

@-ms-keyframes bgAnimation {
    0% {
        opacity: 0;
    }

    7% {
        opacity: 1;
    }
}

.mv .bg li:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    margin: 0 auto;
    display: block;
    animation: bgAnimation 50s linear 0s;
    -webkit-animation: bgAnimation 50s linear 0s;
    -moz-animation: bgAnimation 50s linear 0s;
    -ms-animation: bgAnimation 50s linear 0s;
    animation-fill-mode: both;
    -webkit-animation-fill-mode: both;
    -moz-animation-fill-mode: both;
    -ms-animation-fill-mode: both;
    background-color: var(--color-text);
}

.mv .bg-img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    color: transparent;
    background-size: cover;
    background-position: 50% 50%;
    background-repeat: none;
    background-color: #444;
    opacity: 0;
    z-index: -1;
    animation: imageAnimation 50s linear infinite 3s;
    -webkit-animation: imageAnimation 50s linear infinite 3s;
    -moz-animation: imageAnimation 50s linear infinite 3s;
    -ms-animation: imageAnimation 50s linear infinite 3s;
}

.mv__textarea {
    text-align: center;
    position: relative;
    width: 539px;
    background-color: var(--color-text);
}

@keyframes logoAnimation {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@-webkit-keyframes logoAnimation {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@-moz-keyframes logoAnimation {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@-ms-keyframes logoAnimation {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.mv-ttl-01 {
    opacity: 0;
    position: relative;
    z-index: 99;
    animation: logoAnimation 1s linear 3s;
    -webkit-animation: logoAnimation 1s linear 3s;
    -moz-animation: logoAnimation 1s linear 3s;
    -ms-animation: logoAnimation 1s linear 3s;
    animation-fill-mode: both;
    -webkit-animation-fill-mode: both;
    -moz-animation-fill-mode: both;
    -ms-animation-fill-mode: both;
    width: 80%;
    margin: 0 auto;
    color: var(--color-white);
}

.mv-ttl-02 {
    position: relative;
    z-index: 99;
    font-size: 1.5rem;
    color: var(--color-white);
    letter-spacing: 4.5px;
    padding: 1.8rem 0 0;
    animation: logoAnimation 1s linear 3s;
    -webkit-animation: logoAnimation 1s linear 3s;
    -moz-animation: logoAnimation 1s linear 3s;
    -ms-animation: logoAnimation 1s linear 3s;
    animation-fill-mode: both;
    -webkit-animation-fill-mode: both;
    -moz-animation-fill-mode: both;
    -ms-animation-fill-mode: both;
}

.mv-ttl-03 {
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    margin: 0 auto;
    z-index: 98;
    width: 539px;
    height: 266px;
    color: var(--color-white);
    border: 2px solid var(--color-white);
}

.mv-ttl-03 #my-svg {
    opacity: 0;
}

.mv-ttl-03 #my-svg.active {
    opacity: 1;
}

.mv__news {
    position: absolute;
    bottom: 2.5rem;
    left: 5rem;
    z-index: 99;
    background: rgba(203, 203, 203, 0.27);
    padding: 0 1.5rem;
}

.mv__news a {
    display: inline-block;
    padding: 1.5rem 3.7rem 1.5rem 0;
    color: var(--color-white);
}

.mv__news a:after {
    content: "";
    background: url(../img/top/mv-arrow-right.png);
    width: 27px;
    height: 9px;
    display: inline-block;
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    transition: 0.25s;
}

.mv__news a:hover:after {
    right: 1rem;
}

.mv__news .date {
    font-size: 1.4rem;
    color: var(--color-light-gray);
    display: inline-block;
    padding: 0 2rem 0 0;
    letter-spacing: 0.05em;
}

.mv__news .ttl {
    font-size: 1.4rem;
    color: #fff;
    letter-spacing: 0.1em;
    display: inline-block;
}

/* search-wrap */
.search-sec {
    padding: 5rem 0;
    max-width: 970px;
    margin: 0 auto;
}

.search-sec.search-sec-last {
    padding: 5rem 0 15rem;
}

.search-wrap {
    background: #0f0f0f;
    height: 6.7rem;
    display: -ms-flexbox !important;
    display: flex !important;
    align-items: center;
    flex-wrap: nowrap;
    justify-content: space-between;
}

.search-ttl {
    height: 6.7rem;
    background: #3e3e3e;
    color: var(--color-white);
    font-size: 1.5rem;
    line-height: 6.7rem;
    padding: 0 3.8rem;
    letter-spacing: 3px;
}

.search-form {
    height: 6.7rem;
    padding: 0 2rem 0 0;
    background: #0f0f0f;
    color: var(--color-white);
}

.ui-widget-content {
    background: #0f0f0f !important;
}

.ui-front {
    z-index: 90 !important;
}

.search-form-data-item {
    height: 6.7rem;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.ui-widget,
#chkpsntext,
.submit-btn-wrap .submit-btn-item {
    font-family: "游ゴシック", "游ゴシック Medium", "Yu Gothic Medium",
        "游ゴシック体", YuGothic, "Helvetica Neue", sans-serif !important;
}

.ui-corner-all {
    border-radius: 0 !important;
    border: 1px solid #fff !important;
    border-right: 0 !important;
}

.num .ui-corner-all {
    border-right: 1px solid #fff !important;
}

.ui-selectmenu-text {
    font-size: 1.4rem;
    border: 1px solid var(--color-white) !important;
}

.search-wrap label {
    font-size: 1.4rem;
    color: var(--color-white);
    border-right: 1px solid var(--color-white) !important;
}

.ui-selectmenu-button.ui-button {
    font-size: 1.4rem;
    color: var(--color-white);
}

.daynum .ui-selectmenu-button.ui-button,
.num .ui-selectmenu-button.ui-button {
    width: 6.2em;
}

.date .ui-selectmenu-button.ui-button {
    width: 10em;
}

.type .ui-selectmenu-button.ui-button {
    width: 9em;
}

.submit-btn-wrap,
.undecided {
    padding: 0 0 0 2rem;
}

.submit-btn-wrap .submit-btn-item {
    color: #aa4440;
    background: #fff;
    font-size: 1.3rem;
    text-align: center;
    padding: 0.8rem 3.3rem;
    border: none;
    border-radius: 50px;
    font-weight: bold;
    cursor: pointer;
}

.ui-button {
    margin-right: 0 !important;
    padding: 0.8rem 1.7rem !important;
    height: 39px !important;
    background: var(--color-white);
}

.ui-button:focus {
    border: 1px solid #aa4440 !important;
}

.date .ui-button {
    background: #0f0f0f url(js/jquery-ui/images/ui-icons_tri.png) right 10px top 50% no-repeat !important;
}

.ui-state-active,
.ui-widget-content .ui-state-active,
.ui-widget-header .ui-state-active,
a.ui-button:active,
.ui-button:active,
.ui-button.ui-state-active:hover {
    border: 1px solid #aa4440 !important;
    background: #aa4440 !important;
}

.ui-menu-item {
    line-height: 1.8;
    font-size: 1.4rem;
}

.ui-menu {
    height: 205px;
}

.ui-corner-all,
.ui-corner-bottom,
.ui-corner-right,
.ui-corner-br {
    border-bottom-right-radius: 0 !important;
}

.ui-corner-all,
.ui-corner-bottom,
.ui-corner-left,
.ui-corner-bl {
    border-bottom-left-radius: 0 !important;
}

.ui-corner-all,
.ui-corner-top,
.ui-corner-right,
.ui-corner-tr {
    border-top-right-radius: 0 !important;
}

.ui-corner-all,
.ui-corner-top,
.ui-corner-left,
.ui-corner-tl {
    border-top-left-radius: 0 !important;
}

.ui-selectmenu-button.ui-button:focus {
    outline: none !important;
}

.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default,
.ui-button,
html .ui-button.ui-state-disabled:hover,
html .ui-button.ui-state-disabled:active {
    background: #0f0f0f !important;
}

.ui-selectmenu-icon.ui-icon {
    margin-top: 3px !important;
}

@media screen and (min-width: 751px) {
    .ui-datepicker {
        width: 654px !important;
        z-index: 99 !important;
    }

    .ui-datepicker .ui-datepicker-title {
        font-size: 18px;
    }

    .ui-datepicker td span,
    .ui-datepicker td a {
        font-size: 16px;
    }

    .ui-corner-all.ui-datepicker-current,
    .ui-corner-all.ui-datepicker-close,
    .ui-corner-all.ui-datepicker-next,
    .ui-corner-all.ui-datepicker-prev {
        border: 1px solid #fff !important;
        font-size: 14px !important;
    }
}

/* about */
#home .about {
    background: url(../img/top/bg-about.jpg) no-repeat center center / cover;
    padding: 115px 0;
    position: relative;
}

#home .about:before {
    content: "";
    background: var(--color-accent-light);
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
}

#home .about .box {
    /*opacity: 0;*/
    width: 585px;
    padding: 6.5rem 9rem;
    color: #fff;
    border: 2px solid #fff;
    transition: 0.4s;
}

#home .about.fade .box {
    /*opacity: 1;*/
}

#home .about-ttl {
    font-size: 4.5rem;
    letter-spacing: 0.1em;
    padding: 0 0 2rem;
    -webkit-font-smoothing: auto;
}

#home .about-desc {
    font-size: 1.8rem;
    letter-spacing: 0.1em;
    padding: 0 0 2rem;
    -webkit-font-smoothing: antialiased;
}

#home .about-txt {
    font-size: 1.4rem;
    -webkit-font-smoothing: antialiased;
}

#home .about .inner {
    position: relative;
}

#home .about .about-img {
    /*opacity: 0;*/
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -30px;
}

/*#home .about.fade .about-img {
  opacity: 1;
}*/
/* room */
#home .room {
    background: #bbb;
    padding: 8rem 0 7rem;
    color: #fff;
}

#home .room .heading-01 {
    padding: 0 0 1rem;
}

#home .room .desc {
    letter-spacing: 0.1em;
    text-align: center;
    color: var(--color-white);
}

#home .room .btn-01 a {
    background: none;
    color: var(--color-text);
    border: 1px solid var(--color-text);
}

#home .room .btn-01 a:before {
    background: url(../img/common/arrow-right-bl.png);
}

/* sec-news */
#home .sec-news {
    padding: 0rem 0 8rem;
}

#home .news-list {
    padding: 5rem 0 2rem;
    margin: 0 -10px;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
}

#home .news-list-item {
    width: 33.3333%;
    padding: 0 10px 40px;
}

#home .news-list-item a {
    display: block;
    background: #fff;
    border: 1px solid #eee;
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.04), 0 3px 2px rgba(0, 0, 0, 0.02);
}

#home .news-list-item .figure-wrap {
    position: relative;
}

#home .news-list-item .cat-list {
    position: absolute;
    bottom: 0;
    left: 0;
}

#home .news-list-item figure {
    background: #343434;
    width: 100%;
    height: 232px;
    overflow: hidden;
}

#home .news-list-item img {
    width: 100%;
    height: 232px;
    object-fit: cover;
    display: block;
}

@media screen and (min-width: 750px) {
    #home .news-list-item a img {
        transition: 1s cubic-bezier(0.35, 0.75, 0.57, 1.01);
    }

    #home .news-list-item a:hover img {
        opacity: 0.7;
        transform: matrix(1.03, 0, 0, 1.03, 0, 0);
    }
}

#home .news-list-item .txt-cont {
    background: #fff;
    padding: 2rem 2.5rem 2rem;
}

#home .news-list-item .cat {
    margin: 0 0.5rem 0.5rem 0;
    background: var(--color-white);
}

#home .news-list-item .date {
    color: #999;
    background: var(--color-white);
}

#home .news-list-item .news-ttl {
    font-size: 1.8rem;
    padding: 0 0 2rem;
    letter-spacing: 0.05rem;
    line-height: 1.7;
}

#home .news-list-item .news-desc {
    font-size: 1.4rem;
    padding: 0 0 1rem;
    color: var(--color-light-gray);
}

#home .sec-news .btn-01 a {
    font-style: normal;
}

/* service */
#home .service {
    padding: 9.3rem 0 7rem;
}

#home .service .heading-01 {
    text-align: left;
    margin-bottom: 3rem;
}

/* access */
.access {
    padding: 150px 0 100px;
    position: relative;
    min-height: 640px;
}

#company .access {
    padding: 150px 0 100px;
}

.access .ttl {
    font-size: 4.6rem;
    color: #444;
    padding: 0 0 1rem;
}

.access .address {
    line-height: 1.8;
}

.access .address-tel {
    font-size: 2rem;
    color: var(--color-text);
}

.access .route {
    padding: 1rem 0 0;
}

.access .route-box {
    padding: 2.5rem 0;
}

.access .route-ttl {
    position: relative;
    z-index: 2;
}

.access .ttl-inline {
    font-size: 1.8rem;
    color: #321409;
    font-style: italic;
    display: inline-block;
    background: #fff;
    position: relative;
    z-index: 2;
    padding: 0 1.6rem 0 0;
}

.access .route-ttl:before {
    content: "";
    background: var(--color-white);
    width: 100%;
    height: 1px;
    position: absolute;
    top: 50%;
    left: 0;
    display: block;
    z-index: 1;
}

.access .route .txt {
    padding: 1rem 0 0;
    max-width: 480px;
}

.access iframe {
    background: var(--color-white);
    width: 53%;
    /*max-width: 812px;*/
    height: 475px;
    position: absolute;
    right: 0;
    top: 150px;
    z-index: 3;
    box-shadow: 0px 0px 30px 2px rgba(0, 0, 0, 0.16);
}

/*
---------------------------------------
page common
---------------------------------------
*/
.page #header .nofollow {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    width: 100%;
    min-width: 1280px;
    border: none;
}

.page.wrapper {
    padding-top: 73px;
}

.page-mv {
    padding: 2rem 0;
}

.page-mv .mv-desc {
    font-size: 1.6rem;
    text-align: center;
    padding: 1.5rem 0;
    letter-spacing: 0.1em;
}

#breadcrumbs {
    color: #999;
    font-size: 1.3rem;
    font-family: "游ゴシック", "游ゴシック Medium", "Yu Gothic Medium",
        "游ゴシック体", YuGothic, sans-serif;
    padding: 1rem 0 1.5rem;
}

#breadcrumbs svg {
    fill: var(--color-light-gray);
    width: 13px;
    height: 13px;
}

#breadcrumbs .arrow {
    transform: scale(0.6, 1);
    display: inline-block;
    padding: 0 1rem;
}

#breadcrumbs .icn-home {
    background: url(../img/common/icn-home.png) no-repeat center center;
    display: inline-block;
    width: 16px;
    height: 14px;
    /*vertical-align: text-bottom;*/
}

/*
---------------------------------------
#room-ac
---------------------------------------
*/
.simply-scroll-container {
    position: relative;
}

.simply-scroll-clip {
    position: relative;
    overflow: hidden;
}

.simply-scroll-list {
    overflow: hidden;
    margin: 0;
    padding: 0;
    height: 283px;
    font-size: 1.6rem;
}

.simply-scroll-list li {
    list-style: none !important;
    float: left;
    width: 485px;
    height: 283px;
    margin: 0;
    padding: 0 2.5rem;
}

.simply-scroll-list li img {
    display: block;
}

.simply-scroll-list li .img {
    background: #343434;
    width: 435px;
    overflow: hidden;
}

@media screen and (min-width: 750px) {
    .simply-scroll-list li a img {
        transition: 1s cubic-bezier(0.35, 0.75, 0.57, 1.01);
    }

    .simply-scroll-list li a img:hover {
        opacity: 0.7;
        transform: matrix(1.03, 0, 0, 1.03, 0, 0);
    }
}

.style-list {
    padding: 0 0 13rem;
}

.style-item {
    padding: 13rem 0 0;
}

.style-item li {
    position: relative;
}

.style-item li .room-txt {
    position: absolute;
    left: 0.5rem;
    bottom: 1rem;
    z-index: 2;
}

.style-item li .room-type {
    margin-bottom: 3px;
}

.style-item li .room-type span {
    background: var(--color-accent-dark);
    color: #fff;
    font-size: 1.8rem;
    font-family: "Oswald", serif;
    padding: 0 2.2rem;
    line-height: 1.9;
    display: inline-block;
    letter-spacing: 0;
}

.style-item li .room-ttl span {
    background: var(--color-accent-dark);
    color: #fff;
    font-size: 2.2rem;
    font-family: "Oswald", serif;
    padding: 0 2.2rem;
    line-height: 1.9;
    display: inline-block;
    letter-spacing: 0;
}

.style-ttl {
    font-size: 3.4rem;
    font-style: italic;
    font-family: "Oswald", serif;
    padding: 0 0 5rem;
}

.style-ttl:before {
    content: "";
    background: var(--color-text);
    width: calc((100% - 1080px) / 2 - 2rem);
    height: 1px;
    display: inline-block;
    transform: translateY(-10px);
    margin: 0 2rem 0 0;
}

.inline {
    line-height: 0;
    overflow: hidden;
}

.inline img {
    max-width: 100%;
    height: auto;
    max-height: 60vh;
}

#cboxLoadedContent {
    background: var(--color-white);
}

#cboxCurrent {
    display: none !important;
}

.price-tbl-pc {
    font-size: 1.6rem;
    width: 100%;
    table-layout: fixed;
    background: #fff;
    margin: 0;
}

.price-tbl-pc thead,
.price-tbl-pc tbody {
    width: 100%;
}

.price-tbl-pc thead tr,
.price-tbl-pc tbody tr {
    width: 100%;
}

.price-tbl-pc thead tr {
    border-bottom: 3px solid #707070;
    border-top: 1px solid #707070;
}

.price-tbl-pc th,
.price-tbl-pc td {
    width: 215px;
    text-align: center;
    border-bottom: 1px solid #707070;
    border-right: 1px solid #707070;
}

.price-tbl-pc tr th:nth-child(1) {
    border-right: 3px solid #707070;
    border-left: 1px solid #707070;
    padding: 0.9rem 1rem;
}

.price-tbl-pc thead tr th:nth-of-type(even),
.price-tbl-pc tbody tr td:nth-child(even) {
    background: #f0f0f0;
}

.price-tbl-pc thead tr th {
    padding: 2rem 2rem;
}

.price-tbl-pc tbody tr th {
    line-height: 1.9;
    padding: 0.9rem 2rem;
    vertical-align: middle;
}

.price-tbl-pc tbody tr th span,
.price-tbl-pc tbody tr td span {
    display: block;
    font-size: 1.3rem;
    padding: 1rem 0 0;
    letter-spacing: 0;
}

.price-tbl-pc tbody tr td {
    padding: 1.2rem 1rem;
    vertical-align: middle;
    text-align: right;
}

.txt-tax {
    text-align: right;
    padding: 5px 0;
}

.btn-01.btn-01-ja a {
    font-style: normal;
}

/*
---------------------------------------
service
---------------------------------------
*/
.service-nav {
    padding: 3rem 0 15rem;
}

.service-nav ul {
    display: -ms-flexbox;
    display: flex;
    align-items: flex-start;
    flex-wrap: nowrap;
    justify-content: space-between;
}

.service-nav .nav-en {
    display: block;
    font-size: 3.4rem;
    line-height: 1;
    padding: 0 0 0.5rem 0;
}

.service-nav .nav-en:before {
    content: "01";
    font-family: "Oswald", serif;
    font-size: 2rem;
    color: #959595;
    vertical-align: top;
    margin-right: 0.5rem;
}

.service-nav ul li:nth-of-type(1) .nav-en:before {
    content: "01";
}

.service-nav ul li:nth-of-type(2) .nav-en:before {
    content: "02";
}

.service-nav ul li:nth-of-type(3) .nav-en:before {
    content: "03";
}

.service-nav ul li:nth-of-type(4) .nav-en:before {
    content: "04";
}

.service-nav .nav-ja {
    display: block;
    font-size: 1.6rem;
    line-height: 1;
    padding: 5px 10px 5px 2.5rem;
    transition: all 0.25s ease-in;
    position: relative;
    color: #444;
    position: relative;
    display: inline-block;
    overflow: hidden;
    z-index: 1;
}

.service-nav a .nav-ja::after {
    background: var(--color-accent-dark);
    content: "";
    position: absolute;
    left: 1.5rem;
    top: 0px;
    height: 100%;
    width: 0;
    transition: all 0.25s ease-in;
    z-index: -1;
}

@media screen and (min-width: 750px) {
    .service-nav a:hover .nav-ja {
        color: #fff;
    }

    .service-nav a:hover .nav-ja::after {
        width: 100%;
        transition: all 0.25s ease-in;
    }
}

label.panel-label {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    display: block;
    width: 100%;
    cursor: pointer;
    background-color: var(--color-accent-light);
    -webkit-transition-property: background-color, color;
    transition-property: background-color, color;
    -webkit-transition-duration: 200ms;
    transition-duration: 200ms;
    color: var(--color-text);
    border-top: 3px solid var(--color-accent-light);
}

#panels {
    background-color: white;
}

#panels .container {
    margin: 0 auto;
    width: 100%;
    padding: 6rem 0 6rem;
    background-color: var(--color-white);
    color: var(--color-text);
}

#panels .price-sec header label.panel-label {
    padding: 12px 20px;
    box-sizing: border-box;
}

#panels .price-sec .main {
    box-sizing: border-box;
    max-height: 0;
    opacity: 0;
    -webkit-transition: opacity 600ms;
    transition: opacity 600ms;
    overflow-y: hidden;
}

#panel-1-ctrl:checked ~ #panels #panel-1 .main,
#panel-2-ctrl:checked ~ #panels #panel-2 .main,
#panel-3-ctrl:checked ~ #panels #panel-3 .main,
#panel-4-ctrl:checked ~ #panels #panel-4 .main,
#panel-5-ctrl:checked ~ #panels #panel-5 .main,
#panel-6-ctrl:checked ~ #panels #panel-6 .main {
    max-height: inherit;
    opacity: 1;
}

#panel-1-ctrl:checked ~ #tabs-list #li-for-panel-1,
#panel-2-ctrl:checked ~ #tabs-list #li-for-panel-2,
#panel-3-ctrl:checked ~ #tabs-list #li-for-panel-3,
#panel-4-ctrl:checked ~ #tabs-list #li-for-panel-4,
#panel-5-ctrl:checked ~ #tabs-list #li-for-panel-5,
#panel-6-ctrl:checked ~ #tabs-list #li-for-panel-6 {
    pointer-events: none;
    cursor: default;
}

#panel-1-ctrl:checked ~ #tabs-list #li-for-panel-1 label.panel-label,
#panel-2-ctrl:checked ~ #tabs-list #li-for-panel-2 label.panel-label,
#panel-3-ctrl:checked ~ #tabs-list #li-for-panel-3 label.panel-label,
#panel-4-ctrl:checked ~ #tabs-list #li-for-panel-4 label.panel-label,
#panel-5-ctrl:checked ~ #tabs-list #li-for-panel-5 label.panel-label,
#panel-6-ctrl:checked ~ #tabs-list #li-for-panel-6 label.panel-label {
    background-color: #fff;
    border-top: 3px solid var(--color-accent-dark);
    color: #444;
}

ul#tabs-list {
    display: flex;
    justify-content: flex-start;
    list-style: none;
    text-align: center;
    margin: 0;
    padding: 0;
    max-width: 1080px;
    margin: 0 auto;
}

ul#tabs-list li {
    display: flex;
    text-align: center;
    font-size: 2.2rem;
    position: relative;
    flex-basis: auto;
}

ul#tabs-list li:hover {
    -webkit-transition: none;
    transition: none;
}

ul#tabs-list li label.panel-label {
    position: relative;
    padding: 13px 3.8rem 2px;
}

ul#tabs-list li label.panel-label:hover {
    padding-top: 13px;
}

.panel-radios {
    display: none;
}

.price {
    background: var(--color-accent-light);
    padding: 6rem 0 0;
}

.price .heading-03 {
    padding: 0 0 3rem;
}

.price-tbl-pc {
    margin: 0;
}

.price .btn-01 {
    padding: 6rem 0 0;
}

.room-service {
    padding: 8rem 0 0;
}

.room-service .heading-03 {
    padding: 0 0 7rem;
}

.room-service .box-col2 {
    display: -ms-flexbox;
    display: flex;
    align-items: stretch;
    flex-wrap: nowrap;
    justify-content: flex-start;
}

.room-service .box-col2.box-col2-r {
    flex-direction: row-reverse;
}

.room-service .box-col2 figure {
    max-width: 689px;
    overflow: hidden;
}

.room-service .box-col2 img {
    width: auto;
    height: 100%;
}

.room-service .box-col2 .txt-box {
    width: 600px;
    padding: 0 3rem;
}

.room-service .service-name {
    font-size: 1.8rem;
    padding: 0 0 0.5rem;
}

.room-service .service-box {
    padding: 0 0 3rem;
}

.room-service .service-box .service-txt-btn {
    margin: 14px 0 10px;
}

.room-service .service-box .service-txt-btn a {
    font-size: 1.6rem;
    line-height: 2;
    border: 1px var(--color-accent-dark) solid;
    padding: 10px 20px;
    border-radius: 100px;
    transition: 0.25s;
    color: var(--color-accent-dark);
}

.room-service .service-box .service-txt-btn a:hover {
    background: var(--color-accent-dark);
    color: var(--color-white);
}

.room-service .service-box.last {
    padding: 0;
}

.room-service .item-list-wrap {
    padding: 0;
    display: -ms-flexbox;
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.room-service .item-list {
    width: 50%;
}

.room-service .item-list li {
    line-height: 2.4;
    font-size: 1.4rem;
}

.room-service .item-list li span {
    display: block;
    padding: 0 0 0 3rem;
    line-height: 1.5;
}

.room-service .item-list li:before {
    content: "";
    width: 20px;
    height: 1px;
    background: #707070;
    display: inline-block;
    margin: 0 1rem 0.5rem 0;
}

.room-service .item-list li.etc {
    text-align: center;
}

.room-service .item-list li.etc:before {
    content: none;
}

.room-service .item-list li .size {
    font-size: 1.2rem;
    line-height: 1.5;
}

.room-service .box-bgcol .bg-area {
    width: 86%;
    height: 415px;
}

.room-service .box-bgcol.box-03 .bg-area {
    background: url(../img/service/bg-roomservice-01.jpg) no-repeat center center / cover;
}

.room-service .box-bgcol.box-05 .bg-area {
    background: url(../img/service/bg-roomservice-02.jpg) no-repeat center center / cover;
}

.room-service .box-bgcol.box-05 .txt-box {
    display: -ms-flexbox;
    display: flex;
    align-items: flex-start;
    flex-wrap: nowrap;
    justify-content: space-between;
}

.room-service .box-bgcol .txt-box {
    width: 860px;
    margin: -200px 0 0 auto;
    background: #fff;
    padding: 3rem 14% 3rem 5rem;
}

/*.room-service .box-bgcol.box-05 .txt-box {
  margin: 0 0 0 auto;
    width: 1350px;
    padding: 0 14% 0 0;
}*/
.room-service .box-bgcol.box-05 .txt-box {
    margin: 0 auto;
    width: 100%;
    padding: 0;
}

.room-service .box-05-txt {
    width: 50%;
    padding: 4rem 8rem 3rem 4rem;
    background: #fff;
}

.room-service .box-05-txt-02 {
    margin: -120px 0 0;
    padding: 4rem 4rem 3rem 8rem;
    background: var(--color-white);
}

.room-service .box-bgcol .item-list-wrap {
    padding: 3rem 0 0;
}

.room-service .box-bgcol .item-list {
    width: auto;
    padding-right: 5rem;
}

.room-service .box-bgcol .item-list.last {
    padding-right: 0;
}

.room-service .attention {
    display: block;
    font-size: 1.4rem;
}

.room-service .box-01 {
    padding: 0 0 10rem;
}

.room-service .box-02 {
    padding: 0 0 12rem;
}

.room-service .box-03 {
    padding: 0 0 10rem;
}

.room-service .box-04 {
    padding: 0 0 12rem;
}

.room-service .box-05 {
    padding: 0 0 9rem;
}

.room-service .box-06 {
    padding: 0 0 10rem;
}

.food {
    padding: 6rem 0 0;
}

.food .food-ttl {
    color: var(--color-accent-dark);
    font-family: "Oswald", serif;
    font-size: 5.6rem;
    border-bottom: 30px solid var(--color-accent-dark);
    line-height: 1;
}

.food .food-ttl span {
    width: 480px;
    letter-spacing: 0;
}

.food .box-wrap-01 .food-ttl span {
    display: block;
    text-align: right;
    padding: 0 50px 0 0;
}

.food .box-wrap-02 .food-ttl span {
    display: block;
    text-align: right;
    padding: 0 25px 0 0;
    margin: 0 0 0 auto;
}

.food .box-wrap {
    width: 86%;
}

.food .box-wrap-01 {
    margin: 0 0 0 auto;
    padding: 21px 0 0;
}

.food .box-wrap-02 {
    margin: 0 auto 0 0;
}

.food .box {
    display: -ms-flexbox;
    display: flex;
    align-items: flex-end;
    flex-wrap: nowrap;
    justify-content: space-between;
    max-width: 1080px;
    margin: -150px auto 190px;
}

.food .box-wrap-01 .box {
    flex-direction: row-reverse;
    margin: -140px auto 190px 0;
}

.food .box-wrap-02 .box {
    margin: -140px 0 0 auto;
    padding: 0 0 9rem;
}

.food .slick-slider {
    width: 600px;
    height: 600px;
    margin: 0;
    background: #fff;
}

.food .slick-dots {
    bottom: -35px;
}

.food .slick-dots li.slick-active button:before {
    background: var(--color-white);
}

.food .slick-dots li button:before {
    color: #969696;
    opacity: 1;
}

.food .txt-box {
    width: 480px;
    padding: 0 50px 0 0;
}

.food .box-wrap-02 .txt-box {
    padding: 0 0 0 50px;
}

.food .food-txt {
    padding: 0 0 2.5rem;
}

.food .attention {
    font-size: 1.4rem;
    display: block;
}

.food .food-list li {
    line-height: 2.2;
    font-size: 1.4rem;
    width: 100%;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    justify-content: space-between;
}

.food .food-list li:before {
    content: "";
    width: 20px;
    height: 1px;
    background: #707070;
    display: inline-block;
    margin: 0 1rem 0.5rem 0;
}

.food .food-list .menu-ttl {
    margin: 0 auto 0 0;
}

.food .food-list .food-price {
    padding: 0 2rem 0 0;
}

.member {
    padding: 6rem 0 13rem;
}

.member .desc {
    padding: 1rem 0 5rem;
}

.member .card-list {
    display: -ms-flexbox;
    display: flex;
    align-items: flex-start;
    flex-wrap: nowrap;
    justify-content: space-between;
}

.member .card-name {
    display: block;
    font-size: 1.8rem;
    vertical-align: bottom;
    position: relative;
    border-bottom: 1px solid #cbc9c8;
    padding: 0px 10px 4px 0px;
}

.member .card-desc:after {
    content: " ";
    line-height: 0;
    display: block;
    overflow: hidden;
    position: absolute;
    top: -1px;
    width: 34px;
    border-bottom: 1px solid #707070;
}

.member .card-desc {
    font-size: 1.4rem;
    display: block;
    padding: 1rem 0 0;
    border-top: 1px solid #cbc9c8;
    position: relative;
}

.member .box {
    padding: 7rem 0 0;
}

.member .service-name {
    font-size: 2.4rem;
    padding: 0 0 1rem;
}

.member .item-list li {
    line-height: 2.2;
    font-size: 1.6rem;
    width: 100%;
}

.member .item-list li:before {
    content: "";
    width: 20px;
    height: 1px;
    background: #707070;
    display: inline-block;
    margin: 0 1rem 0.5rem 0;
}

.spot .heading-03 {
    margin: 10px 0;
}

.spot .heading-04 {
    font-size: 2rem;
    margin: 30px 0 0;
}

.spot .item-list-wrap {
    padding: 0;
    display: -ms-flexbox;
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin: 10px 0 30px;
}

.spot .item-list {
    width: 50%;
}

.spot .item-list li {
    line-height: 2.4;
    font-size: 1.4rem;
    margin: 10px;
}

.spot .item-list li a {
    text-decoration: underline;
}

.spot .item-list li a:hover {
    text-decoration: none;
}

.spot .item-list li span {
    display: block;
    padding: 0 0 0 3rem;
    line-height: 1.5;
}

.spot .item-list li:before {
    content: "";
    width: 20px;
    height: 1px;
    background: #707070;
    display: inline-block;
    margin: 0 1rem 0.5rem 0;
}

.spot .item-list li.etc {
    text-align: center;
}

.spot .item-list li.etc:before {
    content: none;
}

.spot .item-list li .size {
    font-size: 1.2rem;
    line-height: 1.5;
}

/*
---------------------------------------
#company
---------------------------------------
*/
#company .outline {
    padding: 6rem 0 10rem;
}

.tbl-01 {
    width: 100%;
    border-collapse: collapse;
}

.tbl-01 th {
    width: 24%;
    padding: 30px 0 25px 35px;
    border-bottom: 1px #707070 solid;
    font-weight: bold;
    vertical-align: middle;
    font-size: 1.6rem;
}

.tbl-01 tr:nth-of-type(1) th {
    border-top: 1px #707070 solid;
}

.tbl-01 td {
    width: 76%;
    padding: 30px 0 25px 30px;
    border-bottom: 1px #cbc9c8 solid;
    text-align: left;
    vertical-align: middle;
    line-height: 2em;
    font-size: 1.6rem;
}

.tbl-01 tr:nth-of-type(1) td {
    border-top: 1px #cbc9c8 solid;
}

.tbl-01 td a {
    text-decoration: underline;
}

#company .privacy {
    padding: 10rem 0 0;
}

#company .privacy .heading-03 {
    padding: 0 0 5rem;
}

#company .privacy .lead {
    padding: 0 0 4rem;
}

#company .privacy .privay-list {
    list-style: decimal;
}

#company .privacy .privay-list li {
    padding: 0 0 4rem;
    margin: 0 0 0 2.3rem;
}

#company .greeting {
    padding: 8rem 0;
}

#company .greeting .ttl {
    font-size: 4.6rem;
    color: var(--color-text);
    padding: 0 0 2.5rem;
}

#company .greeting .box {
    display: -ms-flexbox;
    display: flex;
    align-items: flex-end;
    flex-wrap: nowrap;
}

#company .greeting figure img {
    box-shadow: 0px 0px 30px 2px rgba(0, 0, 0, 0.16);
}

#company .greeting .txt {
    padding: 0 0 0 3rem;
}

#company .greeting .name {
    font-size: 2.6rem;
    padding: 0 0 1.5rem;
}

#company .greeting .greeting-post {
    font-size: 2.2rem;
    padding: 0 2rem 0 0;
}

/*
---------------------------------------
news
---------------------------------------
*/
#news-ac .page-mv .heading-01 {
    text-transform: uppercase;
}

#container.post-wrap #contents > .flex {
    max-width: 1080px;
    margin: 0 auto;
    padding: 50px 0;
    padding-bottom: 60px;
}

#container.post-wrap #contents #post-main {
    width: 75%;
    margin-bottom: 30px;
}

#contents .post {
    padding: 0 30px 20px 30px;
    border-bottom: solid 1px #ddd;
    margin-bottom: 30px;
}

#contents ul.cat-list,
#home ul.cat-list {
    -js-display: flex;
    display: -ms-flex;
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
}

#contents ul.cat-list li {
    margin: 0 5px 5px 0;
}

#home ul.cat-list li {
    margin: 0 5px 0 0;
    display: inline-block;
    padding: 2px 12px;
    background: var(--color-accent-dark);
    font-size: 1.2rem;
    color: #fff;
}

#contents ul.cat-list a {
    display: inline-block;
    padding: 2px 12px;
    background: var(--color-accent-dark);
    font-size: 1.2rem;
    color: #fff;
    transition: all 0.4s;
}

#contents .post .post-header time {
    font-size: 1.4rem;
}

#contents .post .post-header .post-ttl,
#contents .post .post-header .post-ttl a {
    line-height: 1.5;
    margin-bottom: 15px;
    font-size: 2.2rem;
}

#news-dtl #contents .post .post-header {
    padding: 0 0 2rem;
    margin: 0 0 2rem;
    border-bottom: 1px solid #ddd;
}

.post-contents h1,
.post-contents h2,
.post-contents h3,
.post-contents h4,
.post-contents h5,
.post-contents h6 {
    margin-bottom: 20px;
}

.post-contents h1 {
    font-size: 2.2rem;
    margin-bottom: 20px !important;
}

.post-contents h1 {
    position: relative;
    display: inline-block;
    width: 100%;
    color: #fff;
    box-sizing: border-box;
    padding: 10px 15px;
    text-align: left;
    background: var(--color-accent-light);
    z-index: 0;
    font-size: 2.2rem;
    margin-bottom: 40px !important;
}

.post-contents h1:after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 65px;
    margin-left: -10px;
    display: block;
    width: 0px;
    height: 0px;
    border-style: solid;
    border-width: 15px 8px 0 8px;
    border-color: var(--color-accent-light) transparent transparent transparent;
}

.post-contents h2 {
    font-size: 2.2rem;
    position: relative;
    display: inline-block;
    width: 100%;
    box-sizing: border-box;
    padding: 10px 15px 10px 20px;
    text-align: left;
    z-index: 0;
    margin-bottom: 20px !important;
    border-bottom: 1px solid var(--color-accent-light);
}

.post-contents h2:before {
    content: "";
    background: var(--color-accent-light);
    width: 5px;
    height: 1.4em;
    display: inline-block;
    position: absolute;
    top: 1rem;
    left: 0;
}

.post-contents h3 {
    font-size: 2rem;
    margin-bottom: 20px !important;
}

.post-contents blockquote {
    display: block;
    width: 100%;
    min-height: 80px;
    margin: 2rem auto;
    position: relative;
    padding: 23px 42px 23px 60px;
    box-sizing: border-box;
    background: #ebebeb url(../img/common/ico-quo.png) no-repeat 15px 18px;
    border-radius: 5px;
}

.post-contents blockquote > * {
    display: block;
    font-size: 15px;
}

.post-contents h4 {
    position: relative;
    padding: 0 0 10px 20px;
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 20px !important;
    background: #fff;
    color: #444;
}

.post-contents h4:before {
    content: "";
    width: 4px;
    height: 85%;
    background: var(--color-accent-light);
    position: absolute;
    top: 2.5%;
    left: 0;
}

.post-contents h4:after {
    content: "";
    width: 100%;
    height: 1px;
    background: #ddd;
    position: absolute;
    bottom: -4px;
    left: 0;
    border: none;
    margin-left: 0;
}

.post-contents h5 {
    position: relative;
    padding: 0 0 10px 20px;
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 20px !important;
    background: #fff;
    color: #444;
}

.post-contents h5:before {
    content: "";
    width: 4px;
    height: 60%;
    background: var(--color-accent-light);
    position: absolute;
    top: 10%;
    left: 0;
}

.post-contents h6 {
    position: relative;
    padding: 0 0 10px 10px;
    font-size: 1.6rem;
    font-weight: bold;
    margin-bottom: 20px !important;
    background: #fff;
    color: #444;
}

.post-contents h6:after {
    content: "";
    width: 100%;
    height: 1px;
    background: #ddd;
    position: absolute;
    bottom: 0;
    left: 0;
    border: none;
    margin-left: 0;
}

.post-contents p {
    margin: 0.5em 0 2.5em;
}

#news-dtl .post-contents {
    font-size: 1.6rem;
}

.post .flex {
    margin: 0;
    flex-wrap: nowrap;
}

.post .flex > .thumb {
    width: 40%;
    padding-right: 30px;
    box-sizing: border-box;
}

.post .flex > .thumb img {
    width: 100%;
    height: auto;
}

.post .flex > .post-header {
    width: 100%;
}

.post .flex > .thumb + .post-header {
    width: 60%;
}

.post .flex > .txt p {
    margin-bottom: 20px;
}

.post .more {
    text-align: right;
}

.post .more a {
    display: inline-block;
    padding: 2px 25px 2px 5px;
    border-bottom: solid 2px #444;
    position: relative;
    transition: all 0.2s;
    letter-spacing: 0;
    font-style: italic;
    color: var(--color-text);
}

.post .more a:after {
    content: "";
    background: url(../img/common/arrow-right-bl.png);
    width: 13px;
    height: 7px;
    display: inline-block;
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.25s ease;
}

.post .more a:hover:after {
    right: 0;
}

.post-contents {
    word-wrap: break-word;
    word-break: break-all;
}

.post-contents p,
.post-contents a {
    font-size: 1.5rem;
}

.post-contents img {
    max-width: 100%;
    height: auto;
}

.post-contents p {
    margin: 0 0 3rem;
}

.post-contents p.wp-caption-text {
    text-align: center;
    font-size: 1.4rem;
}

.post-contents blockquote {
    position: relative;
    background: #f2f2f2;
    padding: 2.5em 3em 1rem;
    font-size: 1.6rem;
    line-height: 1.875;
    border-radius: 3px;
    margin: 4rem 0;
}

.post-contents blockquote:before {
    content: "";
    background: url(../img/common/icn-quote.png) no-repeat;
    width: 31px;
    height: 25px;
    display: block;
    position: absolute;
    top: 10px;
    left: 10px;
}

.post-contents ul,
.post-contents ol {
    margin-bottom: 2rem;
}

.post-contents ul li {
    list-style: disc;
    margin-left: 30px;
}

.post-contents ol li {
    list-style: decimal;
    margin-left: 30px;
}

.post-contents p a {
    color: #1c5ca8;
    text-decoration: underline;
}

.post-header .post-contents p a {
    color: initial;
    text-decoration: none;
}

.post-contents strong {
    font-size: inherit;
    font-weight: bold;
}

.post-contents em {
    font-style: italic;
}

.post-contents hr {
    height: 0;
    margin: 0;
    padding: 0;
    border: 0;
    border-top: 1px dashed #bbb;
    margin: 5rem 0;
}

.post-contents table {
    margin-bottom: 30px;
}

.post-contents thead {
    background: #1c5ca8;
}

.post-contents thead * {
    color: #fff;
    text-align: center;
    padding: 0.7em 0;
    border: 1px solid #e0e0e0;
}

.post-contents th,
.post-contents td {
    font-size: 1.5rem;
}

.post-contents tbody {
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}

.post-contents tbody tr {
    border-bottom: 1px solid #e0e0e0;
}

.post-contents tbody th {
    background: #f5fbff;
    padding: 1em;
    color: #1c5ca8;
    font-weight: bold;
    text-align: center;
    border-right: 1px solid #e0e0e0;
}

.post-contents tbody tr th:first-child {
    border-left: 1px solid #e0e0e0;
}

.post-contents tbody td {
    background: #fff;
    padding: 1em;
    border-right: 1px solid #e0e0e0;
}

.post-contents tbody tr td:first-child {
    border-left: 1px solid #e0e0e0;
}

.post-contents .lkc-external-wrap {
    box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.2) !important;
}

.post-contents .aligncenter {
    display: block;
    margin: 0 auto;
}

.post-contents .alignright {
    float: right;
    margin-left: 20px;
}

.post-contents .alignleft {
    float: left;
    margin-right: 20px;
}

.post-contents img[class*="wp-image-"],
.post-contents img[class*="attachment-"] {
    height: auto;
    max-width: 100%;
}

.post-nav {
    -js-display: flex;
    display: -ms-flex;
    display: -webkit-flex;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 60px 0;
}

.post-nav .prev,
.post-nav .next {
    width: 40%;
    line-height: 1.6;
    font-size: 1.4rem;
}

.post-nav a {
    -js-display: flex;
    display: -ms-flex;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    padding: 0 0 0 3rem;
    position: relative;
    font-size: 1.4rem;
}

.post-nav .next a {
    flex-direction: row-reverse;
    padding: 0 3rem 0 0;
}

.post-nav .next a::before {
    content: "";
    background: url(../img/common/arrow-nav-right.png);
    position: absolute;
    right: 5px;
    top: 50%;
    margin-top: -0.5em;
    font-size: 2rem;
    display: inline-block;
    width: 17px;
    height: 17px;
}

.post-nav .prev a::before {
    content: "";
    background: url(../img/common/arrow-nav-left.png);
    position: absolute;
    left: 5px;
    top: 50%;
    margin-top: -0.5em;
    display: inline-block;
    width: 17px;
    height: 17px;
}

.post-nav .back-link {
    width: 16%;
}

.post-nav .back-link a {
    display: block;
    text-align: center;
    padding: 8px 5px;
    box-sizing: border-box;
    border: solid 1px #ddd;
    transition: all 0.2s;
}

.post-nav .back-link a:hover {
    background: #444;
    color: #fff;
}

.page-nav .wp-pagenavi {
    clear: both;
    text-align: center;
    margin-top: 60px;
}

.page-nav .wp-pagenavi a,
.page-nav .wp-pagenavi span {
    font-size: 1.5rem;
    padding: 10px 15px;
    margin: 3px;
    transition: all 0.4s;
}

.page-nav .wp-pagenavi a:hover,
.page-nav .wp-pagenavi span.current {
    background: #444;
    color: #fff;
}

/*
----------------------------------------
sidebar
----------------------------------------
*/
#sidebar {
    width: 25%;
    padding: 0 0 0 20px;
    box-sizing: border-box;
}

#sidebar > div {
    margin-bottom: 15px;
}

.side-menu h2 {
    font-size: 1.6rem;
    border-bottom: solid 2px #444;
    padding-bottom: 5px;
    position: relative;
}

.side-menu h2 span {
    font-size: 1.4rem;
    position: absolute;
    right: 0;
    bottom: 5px;
    letter-spacing: 1px;
}

.side-menu > ul {
    margin-bottom: 30px;
}

.side-menu > ul > li {
    border-bottom: solid 1px #ccc;
    font-size: 1.5rem;
}

.side-menu > ul > li figure {
    width: calc(40% + 15px);
    padding: 0 15px 0 0;
}

.side-menu > ul > li figure img {
    width: 100%;
    height: auto;
}

.side-menu li li {
    border-top: solid 1px #ccc;
}

.side-menu a {
    display: block;
    padding: 10px;
    position: relative;
    transition: all 0.2s;
}

.side-menu a:hover {
    background: #fafafa;
}

.side-menu a:after {
    font-family: "FontAwesome";
    content: "\f105";
    position: absolute;
    right: 15px;
    bottom: 10px;
    transition: all 0.2s;
}

.side-menu a:after {
    display: none;
    font-family: "Font Awesome 5 Light";
    content: "\f054";
}

.side-menu a .fa-chevron-right {
    position: absolute;
    right: 5px;
    top: 50%;
    margin-top: -0.5em;
    font-size: 1.3rem;
    transition: all 0.25s ease;
}

.side-menu a:hover .fa-chevron-right {
    right: 0;
}

.side-menu a:hover:after {
    right: 10px;
}

.side-menu li li a:before {
    content: "-";
    margin-right: 10px;
}

.side-menu .txt {
    line-height: 1.4;
    /*width: 60%;*/
    flex: 1;
    font-size: 1.3rem;
    letter-spacing: 0;
}

.side-menu.box-menu {
    border: solid 1px #ddd;
    padding: 20px;
}

.side-menu .flex {
    display: -ms-flex;
    display: flex;
    align-items: flex-start;
    flex-wrap: nowrap;
}

.side-menu .metadata {
    font-size: 1.2rem;
}

/*
---------------------------------------
#faq
---------------------------------------
*/
.sec-faq {
    padding: 9rem 0 4rem;
}

.sec-faq dl dt {
    font-size: 1.8rem;
    padding: 0 2rem 0.5rem;
    font-weight: bold;
    -webkit-font-smoothing: auto;
    -moz-osx-font-smoothing: auto;
}

.sec-faq dl dd {
    padding: 0 2rem 3rem;
    font-size: 1.8rem;
    margin-bottom: 40px;
    border-bottom: 1px solid #cbc9c8;
    font-weight: normal;
}

.sec-faq dl .num {
    vertical-align: middle;
    margin-right: 10px;
    background: var(--color-accent-dark);
    color: #fff;
    padding: 5px 1.5rem;
    font-weight: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.sec-faq dl dd .num {
    background: var(--color-accent-light);
    color: var(--color-text);
}

.sec-faq dl em {
    font-size: 1.6rem;
    display: block;
    padding-top: 15px;
    padding-left: 76px;
}

.sec-faq dl em span {
    font-size: 1.4rem;
}

.sec-faq dl a {
    text-decoration: underline;
    color: var(--color-accent-dark);
}

/*
---------------------------------------
#faq
---------------------------------------
*/
.page-404 .online {
    padding: 8rem 0;
}

.page-404 .online .txt {
    padding: 0 0 5rem;
}

/*
---------------------------------------
reserve banner
---------------------------------------
*/
.reserve__bnr {
    padding: 8rem 0 8rem;
}

.reserve__bnr .box-reserve {
    width: 100%;
}

.reserve__bnr .box-reserve a {
    position: relative;
    display: block;
}

.reserve__bnr .box-reserve .box-inner {
    display: -ms-flexbox;
    display: flex;
    background: #fff;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.16);
}

.reserve__bnr .box-reserve figure {
    width: 540px;
    height: 262px;
}

.reserve__bnr .box-reserve .txt-box {
    flex: 1;
    padding: 3.5rem 4rem 0;
}

.reserve__bnr .box-reserve .heading-02 {
    margin-bottom: 2.5rem;
}

.reserve__bnr .box-reserve .txt {
    line-height: 1.625;
}

.reserve__bnr .box-reserve .btn-01 {
    position: absolute;
    bottom: -29px;
    right: 145px;
}

/*
---------------------------------------
.search-sec_wide
---------------------------------------
*/
.search-sec_wide {
    padding: 7.5rem 0 5rem;
    background: #fff;
}

.search-sec_wide .search-wrap_01 {
    position: relative;
}

.search-sec_wide .search-wrap_01 .search-form {
    background: #3b3b3b;
    height: 8.8rem;
    padding: 1rem 0;
}

.search-sec_wide .submit-btn-wrap {
    padding: 0 0 0 4rem;
}

.search-sec_wide .submit-btn-wrap .submit-btn,
.search-sec_wide .submit-btn-wrap .submit-btn-item,
.search-sec_sp .submit-btn-wrap .submit-btn-item {
    background: #f25d56;
    color: #fff;
    font-size: 1.9rem;
    font-weight: bold;
    padding: 1.5rem 2.5rem;
    transition: all 0.2s;
    animation: shine 1.5s linear infinite;
}

.search-sec_wide .submit-btn-wrap .submit-btn:hover,
.search-sec_wide .submit-btn-wrap .submit-btn-item:hover,
.search-sec_sp .submit-btn-wrap .submit-btn-item:hover {
    opacity: 0.8;
}

.search-sec_wide .search-wrap_01__txtbox {
    background: #fff;
    padding: 3rem 11rem 2.5rem;
    width: 760px;
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
}

.search-sec_wide .search-wrap_01__txt {
    line-height: 1.625;
    padding-bottom: 2.5rem;
}

.search-sec_wide .slide__list {
    padding-bottom: 1rem;
}

.search-sec_wide .slide__item img {
    margin: 0 0.5rem;
}

/*客室設備*/
.facility .heading-03 {
    padding-bottom: 5rem;
}

.facility .facility__list {
    justify-content: flex-start;
    padding-bottom: 9rem;
}

.facility .facility__item:not(:last-child) {
    margin-right: 1rem;
}

/* Instagram */
.instagram .heading-01 {
    margin-bottom: 3rem;
}

/* renewal -add */
.js-animation {
    opacity: 0;
    visibility: hidden;
    transform: translateY(40px);
    transition: all 1s;
}

.js-animation.is-show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0px);
}

@media screen and (min-width: 751px) {
    .js-animation.pos-top {
        opacity: 0;
        visibility: hidden;
        transform: translateY(-40px);
        transition: all 1s;
    }

    .js-animation.pos-top.is-show {
        opacity: 1;
        visibility: visible;
        transform: translateY(0px);
    }
}

#home img {
    max-width: 100%;
    height: auto;
}

.search-wrap_02 .inner {
    max-width: 1000px;
    padding: 64px 25px;
    background: #eee url(../img/top/bg-search-wrap_02@2x.jpg) no-repeat 50% 50%;
    background-size: cover;
    color: var(--color-text);
}

.search-wrap_02 .inner p {
    text-align: center;
}

.search-wrap_02 .inner .box {
    width: 90%;
    max-width: 695px;
    margin: 28px auto 0;
    justify-content: center;
}

#home .mv__news-wrap {
    width: 100%;
    padding: 0 0 85px;
    /*height: 156.5vh;
    border:1px solid #ccc;*/
    position: relative;
    overflow-x: hidden;
}

#home .mv__news-wrap .before {
    position: absolute;
    bottom: 0;
    left: calc(50% - 295px);
    height: 72.5%;
    width: 75%;
    background: var(--color-accent-light);
    z-index: 1;
    transition: all .1s;
}

@keyframes parallax-large-anim {
    from {
        transform: translateY(50px);
    }

    to {
        transform: translateY(0px);
    }
}

#home .mv__news-wrap .before {
    animation: parallax-large-anim linear;
    animation-timeline: scroll();
}

@media screen and (max-width: 1599px) {
    #home .mv__news-wrap .before {
        left: 25%;
        width: 75%;
    }
}

#home .mv__01 {
    width: 100%;
    /*height: 114.2vh;*/
    padding: 115px 0 0;
    position: relative;
    z-index: 3;
}

@media screen and (max-width: 1599px) {
    #home .mv__01 {
        padding: 115px 14.5% 0 7%;
    }
}

#home .mv__01 .inner {
    max-width: 1190px;
}

@media screen and (max-width: 1599px) {
    #home .mv__01 .inner {
        margin-right: 0;
    }
}

#home .figure-box-wrap {
    width: 72.5%;
    max-width: 800px;
    height: 750px;
    padding: 25px 0 0;
}

#home .figure-box {
    width: 47.4%;
    max-width: 379px;
    height: 100%;
    /*border:1px solid ;*/
}

#home .figure-box.box_02 {
    align-items: flex-end;
}

#home .figure-box img {
    display: block;
    width: 379px;
    height: 601px;
    /*border:1px solid ;*/
}

#home .mv__news-box {
    margin: 0 auto 190px;
}

#home .mv__news-wrap > * {
    position: relative;
    z-index: 3;
}

#home .mv__news-box .inner {
    max-width: 1600px;
    padding: 0 40px;
}

#home .mv__news-list li * {
    display: inline-block;
}

#home .mv__news-list li {
    font-size: 1.6rem;
}

#home .mv__news-list li time {
    font-size: 2rem;
}

#home .concept-wrap {
    padding: 240px 0 305px;
    /*padding: 15% 0 31.5%;*/
    /*height: 142.3vh;*/
    position: relative;
    margin: 0 auto;
    max-width: 1600px;
}

#home .concept-wrap .img-concept-01 {
    position: absolute;
    left: 0;
    bottom: 22%;
    width: 40%;
    max-width: 631px;
    /*height: 451px;*/
    /*border:1px solid ;*/
    z-index: 1;
}

#home .concept-wrap .img-concept-02 {
    position: absolute;
    left: 22.5%;
    bottom: 0;
    width: 23.4%;
    max-width: 374px;
    /*height: 374px;*/
    /*border:1px solid ;*/
    z-index: 3;
}

#home .concept-wrap .box-inner {
    width: 52.3%;
}

#home .concept-wrap .ttl {
    margin: 0 0 1.9em;
}

#home .concept-wrap p {
    font-size: 1.6rem;
    line-height: 3;
    margin: 0 0 2.9em;
    letter-spacing: .08em;
}

#home .rooms-wrap {
    padding: 115px 0 262px;
    /*height: 110.4vh;*/
    position: relative;
    overflow-x: hidden;
}

#home .rooms-wrap .before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: var(--color-accent-light);
}

#home .rooms-wrap .inner {
    max-width: 1198px;
    padding: 0 76px 0 0;
    position: relative;
    z-index: 3;
}

@media screen and (max-width: 1198px) {
    #home .rooms-wrap .inner {
        padding: 0 30px 0;
    }
}

#home .rooms-wrap .rooms-slider-wrap {
    width: 100%;
    max-width: 825px;
    height: 595px;
    /*border:1px solid ;*/
    margin: 5px 0 0;
    position: relative;
}

#home .rooms-wrap .slick-slider {
    visibility: hidden;
    opacity: 0;
    height: 0;
    transition: opacity .3s linear;
}

#home .rooms-wrap .slick-slider.slick-initialized {
    visibility: visible;
    height: unset;
    opacity: 1;
}

#home .rooms-wrap .rooms-slider,
#home .rooms-wrap .rooms-slider .slick-track,
#home .rooms-wrap .rooms-slider .slick-list {
    height: 100%;
}

#home .rooms-wrap .rooms-slider .slick-dots li button {
    width: 100%;
    height: 100%;
    padding: 0;
}

#home .rooms-wrap .rooms-slider .slick-dots li button:before {
    display: none;
}

#home .rooms-wrap .rooms-slider .slick-dots {
    text-align: right;
    bottom: -29px;
}

#home .rooms-wrap .rooms-slider .slick-dots li {
    position: relative;
    display: inline-block;
    width: 64px;
    height: 4px;
    margin: 0 0 0 16px;
    padding: 0;
    cursor: pointer;
    background: var(--color-white);
}

#home .rooms-wrap .rooms-slider .slick-dots li.slick-active {
    background: var(--color-accent-dark);
}

#home .rooms-wrap .rooms-slider figure {
    height: 100%;
    width: 100%;
}

#home .rooms-wrap .rooms-slider figure img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

#home .rooms-wrap .img-rooms-01 {
    position: absolute;
    left: -16.8%;
    bottom: -3.5%;
    width: 33.7%;
    max-width: 252px;
    height: 364px;
    /*border:1px solid ;*/
    z-index: 3;
}

@media screen and (max-width: 1198px) {
    #home .rooms-wrap .img-rooms-01 {
        left: -3.4%;
        width: 15%;
        bottom: 0;
    }
}

#home .service-wrap {
    padding: 255px 0 410px;
    /*height: 109.4vh;*/
    position: relative;
    max-width: 1600px;
    margin: 0 auto;
}

#home .service-wrap:before {
    content: "";
    width: 100%;
    height: 1px;
    position: absolute;
    top: 327px;
    left: 0;
    background: var(--color-accent-light);
    z-index: 1;
}

#home .service-wrap .inner {
    position: relative;
    z-index: 3;
}

@media screen and (max-width: 1280px) {
    #home .service-wrap .box {
        width: 36%;
    }
}

#home .service-wrap .ttl {
    margin: 0 0 1.9em;
}

#home .service-wrap p {
    line-height: 3;
}

#home .service-wrap .img-service-01 {
    position: absolute;
    right: 0;
    top: 28.5%;
    width: 90%;
    max-width: 630px;
    /*height: 450px;*/
    /*border:1px solid ;*/
    z-index: 3;
}

#home .service-wrap .img-service-02 {
    position: absolute;
    right: 488px;
    top: 61.6%;
    width: 23%;
    max-width: 360px;
    /*height: 285px;*/
    /*border:1px solid ;*/
    z-index: 1;
}

#home .service-wrap .img-service-03 {
    position: absolute;
    right: 0;
    top: -12.8%;
    width: 59.5%;
    max-width: 947px;
    z-index: 3;
    /*height: 270px;*/
    /*border:1px solid ;*/
}

#home .news-wrap {
    padding: 120px 0 98px;
    /*height: 76.6vh;*/
    overflow-x: hidden;
    position: relative;
}

#home .news-wrap .before {
    width: 73.5%;
    height: 100%;
    max-height: 100%;
    position: absolute;
    top: 0;
    right: calc(49.8% - 290px);
    z-index: 1;
    background: var(--color-accent-light);
    transition: all .1s;
}

#home .news-wrap .inner {
    position: relative;
    z-index: 3;
}

#home .news-wrap .heading-box_news {
    position: relative;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}

#home .news-wrap .heading-box_news .heading-05 {
    margin: 0;
}

.btn-news a {
    font-size: 1.6rem;
}

.btn-news a:after {
    content: "";
    width: 71px;
    height: 7px;
    background: url(../img/top/icn-arw-01.svg) no-repeat 50% 50%;
    background-size: contain;
    display: inline-block;
    vertical-align: middle;
    margin: 0 0 0 .8em;
    position: relative;
    transition: all .3s;
}

.btn-news a:hover:after {
    left: 4px;
}

#home .news-wrap .slide-news {
    margin-right: calc(50% - 49.95vw);
    /*margin-left: 4%;*/
    margin-top: 4%;
}

@media screen and (max-width: 1280px) {
    #home .news-wrap .slide-news {
        margin-right: calc(50% - 640px);
    }
}

#home .news-wrap .slide-news-item {
    width: 500px;
    padding-right: 35px;
}

#home .news-wrap .slide-news-item a {
    display: block;
}

#home .news-wrap .slide-news-item img,
#home .news-wrap .slide-news-item figure {
    width: 100%;
}

#home .news-wrap .slide-news-item .box {
    margin: 22px 0;
}

#home .news-wrap .slide-news-item .date {
    font-size: 2rem;
}

#home .news-wrap .slide-news-item .cat {
    font-size: 1.4rem;
    display: inline-block;
    margin-left: 1.5em;
}

#home .news-wrap .slide-news-item .cat span {
    border-bottom: 1px solid var(--color-text);
}

#home .news-wrap .slide-news-item .news-ttl {
    font-size: 1.6rem;
    margin-top: 1em;
}

#home .instagram-wrap {
    /*height: 76vh;*/
    padding: 120px 0 20px;
}

#home .instagram-wrap .inner {
    max-width: 1106px;
}

#home .instagram-wrap .ttl {
    margin: 0 0 2em;
}

#home .instagram-wrap #sb_instagram #sbi_images {
    padding: 0 !important
}

#home .instagram-wrap #sb_instagram #sbi_images .sbi_item {
    width: 20% !important;
    padding: 3px !important;
}

#home .access-wrap {
    /*height: 76vh;*/
    padding: 78px 0 0;
    position: relative;
}

#home .access-wrap:before {
    content: "";
    width: 100%;
    height: 1px;
    position: absolute;
    top: 150px;
    left: 0;
    background: var(--color-accent-light);
    z-index: 1;
}

#home .access-wrap .inner {
    position: relative;
    z-index: 3;
}

#home .access-wrap .box-01 {
    margin-right: calc(50% - 49.95vw);
}

#home .access-wrap .box-02 {
    margin: 80px auto 115px;
}

#home .access-wrap .box {
    padding: 0;
    width: 29%;
}

#home .access-wrap .address {
    margin: 5em auto 1.7em;
    line-height: 3;
}

#home .access-wrap .map-box {
    position: relative;
    width: 71%;
    height: 432px;
}

#home .access-wrap .map-box iframe {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

#home .access-wrap .route-list-box {
    width: 30%;
}

#home .access-wrap .route-list-box ol li {
    line-height: 2.37;
    font-size: 1.4rem;
    text-indent: -1.5em;
    padding-left: 1.5em;
}
