@charset "UTF-8";

/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/

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

/* HTML5 display-role reset for older browsers */

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

body {
  font-size: 1.6rem;
  letter-spacing: 0.02em;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  font-family: "kozuka-gothic-pr6n", sans-serif;
  font-weight: 500;
  font-style: normal;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:after,
blockquote:before,
q:after,
q:before {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

main {
  display: block;
}

html {
  font-size: 10px;
  margin-top: 0 !important;
}

@supports (-webkit-touch-callout: none) {
  html {
    height: -webkit-fill-available;
  }
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-appearance: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  padding: 0;
  border: none;
  border-radius: 0;
  outline: none;
  background: none;
}

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

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-appearance: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  padding: 0;
  border: none;
  border-radius: 0;
  outline: none;
  background: none;
}

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

/*///////////////////////////////

bace

/////////////////////////////*/

/*///////////////////////////////

variable

/////////////////////////////*/

/*-----------------------------
ブレークポイント
-----------------------------*/

/*-----------------------------
color
-----------------------------*/

/*///////////////////////////////

mixin

/////////////////////////////*/

/*-----------------------------
font
-----------------------------*/

@font-face {
  font-family: "myfont";
  /*任意のフォントファミリー名でOK*/
  src: url("../font/imprint-mt-shadow.ttf") format("truetype");
  /*fontがあるパスを書いて、formatを指定*/
  font-display: swap;
  /*ダウンロード状況に応じてフォントの表示を変える
(「swap」はWebフォントが読み込まれるまでフォールバックフォントで表示し、読み込まれた時点で置き換えます。)*/
}

/*-----------------------------
bace
-----------------------------*/

html {
  scroll-behavior: smooth;
}

header,
main,
footer {
  font-weight: 400;
  color: #1e1e1e;
}

main {
  overflow: hidden;
}

p {
  line-height: 1.8;
}

a {
  -webkit-transition: 0.2s;
  transition: 0.2s;
  color: #333;
}

a:hover {
  opacity: 0.7;
}

.font {
  font-family: "myfont", sans-serif;
}

.header {
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 1000;
}

.header-inner {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  width: 100%;
  padding-left: 8rem;
}

.header-logo {
  width: 18rem;
  margin-right: auto;
  margin-left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.header-logo a {
  display: block;
  position: relative;
  background: none;
}

.header-logo a::before {
  -webkit-transition: opacity 0.4s cubic-bezier(0.645, 0.045, 0.355, 1) 0s;
  transition: opacity 0.4s cubic-bezier(0.645, 0.045, 0.355, 1) 0s;
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  background: url(../images/logo.png) no-repeat center center;
  background-size: contain;
  opacity: 0;
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}

.header-logo a img {
  -webkit-transition: opacity 0.4s cubic-bezier(0.645, 0.045, 0.355, 1) 0s;
  transition: opacity 0.4s cubic-bezier(0.645, 0.045, 0.355, 1) 0s;
}

.header_navList {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  margin-left: 2rem;
  margin-right: 36rem;
  padding: 2.3rem 0rem 3rem 0;
}

.header_navitem {
  position: relative;
  margin-right: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 18%;
}

.header_navitem:first-child {
  width: 8%;
}

.header_navitem:first-child img {
  width: 18%;
}

.header_navitem.rooms {
  width: 13%;
}

.header_navitem.rooms img {
  width: 18%;
}

.header_navitem.access {
  width: 12%;
}

.header_navitem.membership {
  width: 14%;
}

.header_navitem.membership img {
  width: 22%;
}

.header_navitem.language {
  width: 15%;
  font-size: 1.4rem;
}

.header_navitem.language::after {
  position: absolute;
  content: "";
  right: 1rem;
  width: 1.5rem;
  height: 3rem;
  background-image: url(../images/common/header_arrow.png);
  background-size: 1.5rem;
  background-position: center;
  background-repeat: no-repeat;
}

.header_navitem.contact {
  position: absolute;
  top: 0rem;
  right: -18rem;
  width: 18rem;
  margin-right: 0;
  cursor: pointer;
}

.header-logo.kinoshita {
  position: absolute;
  top: 0rem;
  right: 0rem;
  background: #fff;
  width: 18rem;
  justify-content: center;
  padding: 1.15rem 0;
}

.header-logo.kinoshita img {
  width: 15rem;
}

.header_navitem.contact a {
  text-align: center;
  display: block;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #333;
  padding: 2rem 0 1.5rem;
  width: 100%;
  height: 100%;
  background-color: #c1a250;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(#80633a),
    to(#927b56)
  );
  color: #fff;
}

.header_navitem img {
  width: 15%;
  height: 100%;
  margin-right: 0.5rem;
}

.header_navitem a {
  color: #fff;
  display: block;
  font-weight: bold;
  text-align: left;
  width: 100%;
  line-height: 1.2;
  font-size: 1.4rem;
}

.header_navitem a .ja {
  display: block;
  color: #65727a;
}

.header_navitem a .en {
  font-size: 1rem;
  display: block;
}

.header_navitem.menu_item--recruit a {
  border: 1px solid #fff;
  padding: 0.5rem 4rem;
  border-radius: 2.5rem;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  opacity: 1;
}

.header_navitem.menu_item--recruit:hover a {
  background-color: #fff;
  color: #333;
}

.header-btn {
  position: absolute;
  top: 2.5rem;
  right: 1rem;
  width: 7.5rem;
  height: 8rem;
  cursor: pointer;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  z-index: 10;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.header-btn span {
  display: block;
  width: 50%;
  height: 0.4rem;
  background: #fff;
  position: absolute;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  margin: 0 auto;
}

.header-btn span:nth-of-type(1) {
  top: 1rem;
}

.header-btn span:nth-of-type(2) {
  top: 2.5rem;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.header-btn span:nth-of-type(3) {
  bottom: 4rem;
}

.header-btn.active span {
  background: #fff;
}

.header-btn.active span:nth-of-type(1) {
  top: 0%;
  -webkit-transform: translateY(2rem) rotate(-45deg);
  transform: translateY(2rem) rotate(-45deg);
}

.header-btn.active span:nth-of-type(2) {
  left: 50%;
  opacity: 0;
  -webkit-animation: active-btn05-bar02 0.8s forwards;
  animation: active-btn05-bar02 0.8s forwards;
}

.header-btn.active span:nth-of-type(3) {
  bottom: 45%;
  --webkit-transform: translateY(-2rem) rotate(45deg);
  -webkit-transform: translateY(-2rem) rotate(45deg);
  transform: translateY(-2rem) rotate(45deg);
}

.header_nav {
  position: fixed;
  z-index: 2;
  top: 0;
  right: 0;
  background: #000;
  text-align: center;
  opacity: 0;
  -webkit-transition: all 0.8s;
  transition: all 0.8s;
  width: 100%;
  height: 100vh;
  visibility: hidden;
  -webkit-transform: translateX(-300%);
  transform: translateX(-300%);
}

.header_nav.active {
  -webkit-transform: translateX(0%);
  transform: translateX(0%);
  opacity: 0.8;
  -webkit-transition: 0.8s;
  transition: 0.8s;
  visibility: visible;
}

.header-menu {
  width: 100%;
  margin-right: 0;
  margin-left: auto;
  padding: 10rem 4rem 0;
}

.header-menu_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  color: #333;
}

.header-menu_item.contact {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.header-menu_item.contact a {
  display: block;
  background-color: #c1a250;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(#80633a),
    to(#927b56)
  );
  color: #fff;
  padding: 2rem;
  width: 100%;
  border-radius: 0.5rem;
}

.header-menu_item.contact a .ja{
	pointer-events: none;
}

.header-menu_item:first-of-type .header-menu_link p,
.header-menu_item:last-of-type .header-menu_link p {
  color: rgba(255, 255, 255, 0.3);
  line-height: 1;
  margin-left: 0.2rem;
  font-size: 1.3rem;
}

.header-menu_item-btn {
  width: 48%;
  margin-top: 4rem;
}

.header-menu_item span {
  display: block;
}

.header-menu_item .ja {
  font-size: 2.4rem;
}

.header-menu_link {
  color: #fff;
  font-size: 1.8rem;
  font-weight: 500;
  display: block;
  margin: 2.5rem 0;
  width: 100%;
  text-align: left;
}

.header-menu_link p {
  margin-bottom: 10px;
}

.header-menu_link p span {
  font-size: 1.2rem;
  padding: 0.4rem 0.8rem;
  border: 2px solid #fff;
}

.header.contact {
  background-color: #000;
}

.header.contact .header_navitem.contact a {
  padding: 2.8rem 0 2.5rem;
}

.persist-header {
  color: #fff;
  left: 0;
  width: 100%;
  position: fixed;
  z-index: 9999;
  background: #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: -webkit-transform 0.5s ease-in-out;
  transition: -webkit-transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out, -webkit-transform 0.5s ease-in-out;
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
  /* 初期状態では隠す */
}

.persist-header .header_navitem.contact a {
  text-align: center;
  display: block;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #333;
  padding: 2.8rem 0 2.5rem;
  width: 100%;
  height: 100%;
  color: #fff;
}

.persist-header .header-logo.kinoshita {
  padding: 2.05rem 0;
}

.persist-header .header_navList {
  padding: 2.6rem 0 2.7rem;
}

.persist-header.contact {
  display: none;
}

body.active {
  height: 100%;
  overflow: hidden;
}

.persist-header.is-visible {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  /* スクロール時に表示 */
}

.footer {
  background-color: #f5f2e9;
  padding: 6rem 0 0;
}

.footer_logo {
  width: 20rem;
  margin: 0 auto 8rem;
}

.footer_center_wrap {
  font-family: "Crimson Text", "游明朝", "Yu Mincho", "YuMincho",
    "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "ＭＳ Ｐ明朝", "MS 明朝",
    serif;
  margin-bottom: 4rem;
}

.footer_center_txt p {
  font-size: 1.8rem;
}

.footer_center_txt p span {
  display: block;
  border: 0.1rem solid #333;
  background-color: #fff;
  width: 38rem;
  margin: 1rem auto;
  padding: 1rem 0;
}

.footer_nav {
  font-family: "Crimson Text", "游明朝", "Yu Mincho", "YuMincho",
    "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "ＭＳ Ｐ明朝", "MS 明朝",
    serif;
  border-top: 0.2rem solid #333;
}

.footer_nav_list {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.footer_nav_list li {
  width: 20%;
  border-left: 0.1rem solid #333;
  margin-top: 3rem;
  font-weight: 700;
}

.footer_nav_list li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0rem 2rem;
  height: 100%;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.footer_copy {
  background-color: #000;
  margin-top: 8rem;
  padding: 2rem 0;
  font-weight: 700;
  font-size: 1.4rem;
}

.inner {
  margin-right: auto;
  margin-left: auto;
  width: 90%;
}

.inner.w-1100 {
  max-width: 1160px;
}

.inner.w-1080 {
  max-width: 1080px;
}

.inner.w-980 {
  max-width: 980px;
}

.inner.w-900 {
  max-width: 900px;
}

.inner.w-600 {
  max-width: 600px;
}

.sec-ttl {
  font-style: normal;
  letter-spacing: 0.2rem;
  text-align: center;
  line-height: 1.5;
}

.sec-ttl span {
  display: block;
}

.sec-ttl .en {
  width: 28rem;
  margin: 0 auto;
}

.sec-ttl .ja {
  font-size: 1.8rem;
  margin-top: 1rem;
  font-family: "Crimson Text", "游明朝", "Yu Mincho", "YuMincho",
    "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "ＭＳ Ｐ明朝", "ＭＳ 明朝",
    serif;
  font-weight: 600;
}

.ttl--l {
  font-weight: bold;
  font-size: 6.5rem;
}

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

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

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

.txt--b {
  display: block;
}

.txt--l {
  font-size: 2.2rem;
}

.detail--txt--l {
  font-size: 2.5rem;
  margin-bottom: 3rem;
}

.detail--txt--m {
  font-size: 2rem;
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.more_btn {
  width: 15rem;
  margin-left: auto;
}

.more_btn a {
  position: relative;
  display: block;
  color: #333;
  background-color: #d5d8d5;
  width: 100%;
  text-align: center;
  padding: 1rem 0;
}

.more_btn a::after {
  position: absolute;
  right: 2.5rem;
  content: "";
  width: 0.5rem;
  height: 2.8rem;
  background-image: url(../images/top/icon_arrow.png);
  background-size: 0.5rem;
  background-position: center;
  background-repeat: no-repeat;
}

.view_btn {
  position: relative;
  width: 28rem;
  margin-top: 10rem;
}

.view_btn a {
  padding: 3rem 0;
  width: 100%;
  background: #f6f6f4;
  line-height: 0.7rem;
  display: inline-block;
  text-align: center;
  color: #002c45;
  letter-spacing: 0.04em;
  font-family: YuGothic, "Yu Gothic", "Hiragino Kaku Gothic ProN",
    "ヒラギノ角ゴ ProN W3", "メイリオ", Meiryo, sans-serif;
  font-weight: 700;
  position: relative;
  border-left: 1rem solid #009b70;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.view_btn a span {
  position: relative;
  z-index: 5;
}

.view_btn a::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 0;
  display: block;
  background: #009b70;
  z-index: 1;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.view_btn a:hover {
  color: #fff;
}

.view_btn a:hover::before {
  width: 100%;
}

.view_btn::before {
  /* くの字の表示設定 */
  content: "";
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 5rem;
  /* ②棒が長くなった分、右へ7px移動 */
  width: 0.8rem;
  height: 0.8rem;
  border-top: 0.2rem solid #000;
  border-right: 0.2rem solid #000;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  z-index: 1;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.view_btn::after {
  /* 棒の表示設定 */
  content: "";
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 5rem;
  width: 1.5rem;
  /* ①棒の長さを15⇒20pxに変更 */
  height: 0.2rem;
  background: #000;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.view_btn:hover::before {
  right: 3rem;
  border-top: 0.2rem solid #fff;
  border-right: 0.2rem solid #fff;
}

.view_btn:hover::after {
  right: 3rem;
  background: #fff;
}

.table_content_wrap02 {
  width: 100%;
  margin-top: 6rem;
  list-style: none;
}

.table_content_inner {
  list-style: none;
  display: -ms-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.table_content_row {
  position: relative;
  border-bottom: solid 2px #d2d2d2;
}

.table_content_row::after {
  content: "";
  display: block;
  width: 18%;
  height: 2px;
  background: #009b70;
  position: absolute;
  bottom: -2px;
  left: 0;
}

.table_content_row:last-child {
  border-bottom: none;
}

.table_content_row:last-child::after {
  content: none;
}

.table_h02 {
  color: #333;
  font-weight: 500;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 30%;
  flex: 0 0 30%;
  padding: 2rem;
  line-height: 1.8;
}

.table_h02_b {
  color: #333;
  font-weight: 500;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 30%;
  flex: 0 0 30%;
  padding: 2rem;
  line-height: 2rem;
}

.table_d02 {
  color: #535353;
  font-weight: 400;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 70%;
  flex: 0 0 70%;
  padding: 2rem;
  line-height: 2rem;
}

.table_d02_b {
  color: #535353;
  font-weight: 400;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 70%;
  flex: 0 0 70%;
  padding: 2rem;
  line-height: 2;
}

.border {
  border: 1px solid #333;
}

.cmn__sec {
  position: relative;
}

#breadcrumb ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: nowrap;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  padding: 4rem 0;
}

#breadcrumb ul li {
  display: inline-block;
  color: #333;
  position: relative;
  font-size: 1.8rem;
  padding: 0 2px;
  text-transform: uppercase;
  line-height: 1.3;
}

#breadcrumb ul li a {
  color: #333;
  text-decoration: none;
}

#breadcrumb ul li + li {
  margin-left: 2.5rem;
}

#breadcrumb ul li + li::before {
  content: "＞";
  margin: 0 1rem;
  font-size: 1.2rem;
  position: absolute;
  top: 0.5rem;
  left: -2.8rem;
}

.fedein {
  opacity: 0;
  -webkit-transform: translate(0, 30px);
  transform: translate(0, 30px);
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.fedein.isAnimate {
  opacity: 1;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}

.slick-list {
  overflow: visible !important;
}

.slick-prev,
.slick-next {
  z-index: 20;
}

.slick-prev {
  top: 15rem;
  left: -8rem;
}

.slick-next {
  top: 15rem;
  right: -8rem;
}

.slick-prev:before {
  content: "\f0d9";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  font-weight: 700;
  color: #fff;
  font-size: 4rem;
  opacity: 1;
}

.slick-next:before {
  content: "\f0da";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  font-weight: 700;
  color: #fff;
  font-size: 4rem;
  opacity: 1;
}

.slick-slide {
  margin: 0 1.5rem;
}

.slick-dots {
  position: relative;
  z-index: 3;
  margin: -20px auto;
  text-align: center;
}

.slick-dots li {
  display: inline-block;
  margin: 0 0.8rem;
  width: auto;
}

.slick-dots button {
  padding: 0;
  color: transparent;
  outline: none;
  width: 1.5rem !important;
  border: unset;
  height: 1.5rem !important;
  display: block;
  background: #fff !important;
  cursor: pointer;
}

.slick-dots button::before {
  content: none !important;
}

.slick-dots .slick-active button {
  background: #8f8f8f !important;
}

.index_detail .slick-dots button {
  border: 0.1rem solid #333;
  padding: 0.8rem;
}

.js-accordion-trigger {
  position: relative;
  /* 親要素として基準を作る */
  cursor: pointer;
}

.gtranslate_wrapper {
  position: absolute;
  /* 他の要素に影響しないように */
  top: 100%;
  /* トリガーの真下に配置 */
  left: 0;
  width: 35rem;
  /* 必要な幅にする */
  overflow: hidden;
  height: 0;
  -webkit-transition: height 0.3s ease-in-out;
  transition: height 0.3s ease-in-out;
}

.persist-header .gtranslate_wrapper {
  background-color: #000;
  padding: 1rem 0 1.5rem;
}

.contact .gtranslate_wrapper {
  background-color: #000;
  padding: 1rem 0 1.5rem;
}

.gtranslate_wrapper a {
  display: block;
  margin-top: 0rem;
  padding: 0.8rem 2.2rem;
  color: #fff;
  text-decoration: none;
}

.pager_style {
  text-align: center;
  padding: 3rem 0 0 0;
}

.pager_style li {
  width: 5.5rem;
  border: 0.2rem solid #333;
  background: #fff;
  display: inline-block;
  margin: 0 0.8rem 0;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.pager_style li.next {
  background: #cdcdcd;
  border: 0.2rem solid #cdcdcd;
}

.pager_style li:hover {
  background: #666666;
}

.pager_style li:hover a {
  color: #fff !important;
}

.pager_style li.on {
  background: #666666;
  color: #fff;
}

.pager_style li a {
  font-size: 1.8rem;
  text-decoration: none;
  display: block;
  padding: 0.8rem 0;
}

.pager_style li.on a {
  color: #fff !important;
  text-align: center;
}

.pager_style li a:hover {
  color: #fff;
}

.pager_style li.prev {
  margin: 0 1rem 0 0;
}

.pager_style li.next {
  margin: 0 0 0 1rem;
}

.color-light-green {
  color: #e2eae3;
}

.color-green {
  color: #009b70;
}

.color-white {
  color: #fff;
}

.color-black {
  color: #333;
}

.color-yellow {
  color: #987b00;
}

.color-brown {
  color: #595757;
}

.back-grey {
  background-color: #405771;
}

.back-beige {
  background-color: #f5f2e9;
}

.back-light-grey {
  background-color: #e8e8e8;
}

.back-white {
  background-color: #fff;
}

.back-black {
  background-color: #000;
}

.marker-green {
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    color-stop(70%, transparent),
    color-stop(70%, rgb(235, 154, 122))
  );
  background: -webkit-linear-gradient(transparent 70%, rgb(235, 154, 122) 70%);
  background: linear-gradient(transparent 70%, rgb(235, 154, 122) 70%);
}

.line-green {
  position: relative;
  border-bottom: solid 2px #d2d2d2;
  padding-bottom: 1.5rem;
  padding-left: 1rem;
}

.line-green::after {
  content: "";
  display: block;
  width: 18%;
  height: 2px;
  background: #009b70;
  position: absolute;
  bottom: -2px;
  left: 0;
}

.index_main {
  position: relative;
  width: 100%;
  overflow: hidden;
  position: relative;
  height: 60rem;
}

.index_main.loaded .index_main_shadow {
  -webkit-transition: opacity 0.4s cubic-bezier(0.645, 0.045, 0.355, 1) 0s;
  transition: opacity 0.4s cubic-bezier(0.645, 0.045, 0.355, 1) 0s;
  opacity: 1;
}

.index_main_shadow {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0;
}

.index_main_shadow::before {
  content: "";
  display: block;
  position: sticky;
  top: 0;
  height: 14rem;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(rgba(0, 0, 0, 0.5)),
    to(rgba(0, 0, 0, 0))
  );
  background: -webkit-linear-gradient(
    top,
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0)
  );
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.index_main_video {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #000;
  z-index: 0;
}

.index_main_logo {
  width: 20rem;
  display: block;
  margin: 3rem auto 0;
}

.index_main_video #video {
  width: 100%;
  background-size: cover;
}

.index_main_video video::-webkit-media-controls {
  display: none !important;
}

.index_main_copy {
  position: absolute;
  position: absolute;
  top: 58%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  color: white;
  width: 100%;
}

.index_main_copy .bg--txt {
  font-size: 4rem;
  font-weight: 500;
  letter-spacing: 1rem;
  text-shadow: 0.2rem 0rem 0.8rem #000;
  font-family: "Crimson Text", "游明朝", "Yu Mincho", "YuMincho",
    "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "ＭＳ Ｐ明朝", "MS 明朝",
    serif;
  width: 100%;
}

.index_main_copy .bg--txt .pd--beside {
  padding: 0 1rem;
  display: inline-block;
}

.index_main_copy .bg--txt .pd-tp {
  padding-top: 15rem;
}

.index_main_copy .bg--txt .characters--l {
  text-combine-upright: all;
}

.index_main_copy .bg--txt .txt--center {
  display: block;
}

.index_main_copy .sm--txt {
  font-size: 3rem;
  letter-spacing: 0.1rem;
  text-align: center;
  text-shadow: 0.2rem 0rem 0.8rem #000;
  font-family: "Crimson Text", "游明朝", "Yu Mincho", "YuMincho",
    "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "ＭＳ Ｐ明朝", "MS 明朝",
    serif;
}

.index_main_news {
  position: absolute;
  bottom: 0;
  background-color: #fff;
  opacity: 0.8;
}

.index_main_news_content {
  padding: 2.5rem 8rem;
}

.index_main_news_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #595757;
  font-weight: 600;
}

.index_main_news_list li {
  position: relative;
}

.index_main_news_list li time {
  position: relative;
  font-size: 1.4rem;
  margin-right: 4rem;
}

.index_main_news_list li time::after {
  position: absolute;
  right: -2.5rem;
  content: "";
  width: 0.8rem;
  height: 3rem;
  background-image: url(../images/top/icon_arrow.png);
  background-size: 0.8rem;
  background-position: center;
  background-repeat: no-repeat;
}

.index_main_reservation {
  background-color: #fff;
  opacity: 0.8;
  border-radius: 1rem;
  position: fixed;
  top: 15rem;
  right: 4rem;
  z-index: 101;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}

.index_main_reservation a {
  display: block;
  font-weight: bold;
  height: 15rem;
  padding: 2rem 0.8rem;
}

.index_main_reservation a::after {
  position: absolute;
  bottom: 1.5rem;
  content: "";
  width: 3rem;
  height: 2rem;
  background-image: url(../images/common/reservation_arrow.png);
  background-size: 1.2rem;
  background-position: center;
  background-repeat: no-repeat;
}

.index_reservation {
  background-color: #fff;
  padding: 6rem 0 8rem;
}

.index_reservation .inner {
  width: 90rem;
}

.index_reservation #tripla-searching-app {
  position: relative;
}

.index_reservation .input-container-input-container-da40af label {
  color: #aa997a;
  font-size: 1.6rem;
}

.index_reservation .search-widget-input-34bba0,
.index_reservation .search-widget-select-75fb48 {
  height: 5rem;
  padding: 0 0 0 1.5rem;
  border: 0.1rem solid #d0cece !important;
  font-size: 1.6rem !important;
  width: 100% !important;
  min-width: 27.6rem;
}

.index_reservation
  .input-container-input-container-da40af
  .input-container-title-db81ec {
  margin-bottom: 1rem;
  line-height: 2;
}

.index_reservation
  .dropdown-selector-container-ef1ce2
  .dropdown-selector-input-6d2b0e {
  height: 5rem;
  min-width: 27.6rem;
  line-height: 2;
  padding: 0 1.5rem;
}

.index_reservation .search-widget-search-container-bf1818 {
  margin-top: 2rem;
  -webkit-box-shadow: none;
  box-shadow: none;
  padding: 1.5rem 2rem 1rem;
}

.index_reservation
  .search-widget-search-container-bf1818
  .search-widget-button-wrapper-d2b715 {
  width: 28rem;
  margin: 0 auto;
}

.index_reservation .button-btn-f51c1a {
  padding: 1.3rem 0;
  font-size: 1.6rem;
  width: 100%;
}

.index_navigation {
  padding: 8rem 0;
  font-family: "Crimson Text", "游明朝", "Yu Mincho", "YuMincho",
    "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "ＭＳ Ｐ明朝", "MS 明朝",
    serif;
}

.index_navigation_list {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.index_navigation_list li {
  width: 25%;
}

.index_navigation_list li + li {
  margin-left: 2rem;
}

.index_navigation_list li a {
  display: block;
  text-align: center;
  font-weight: bold;
  font-size: 1.8rem;
}

.index_navigation_list li a img {
  width: 5rem;
  margin: 0 auto 2rem;
}

.index_navigation_list li a .en {
  display: block;
  font-size: 1.4rem;
}

.index_navigation_list li a.map img {
  width: 3rem;
}

.index_news {
  padding: 15rem 0 10rem;
}

.index_news .sec-ttl img {
  width: 18rem;
  margin: 0 auto;
}

.index_newslist--wrap .more_btn {
  margin: 6rem auto 0;
  width: 20rem;
}

.index_newslist {
  list-style: none;
  padding: 8rem 0 5rem;
}

.index_news .slick-slide {
  margin: 0 1rem;
}

.index_news .slick-slide img {
  width: 100%;
  height: 100% !important;
}

.index_news--item {
  position: relative;
  z-index: 1;
}

.index_news--itemimg {
  overflow: hidden;
}

.index_news--itemtxtBox {
  color: #fff;
  padding: 2rem 0;
  font-family: "Crimson Text", "游明朝", "Yu Mincho", "YuMincho",
    "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "ＭＳ Ｐ明朝", "MS 明朝",
    serif;
}

.index_news--itemtxtBox .heading3 {
  font-size: 2rem;
  padding: 1rem 0;
}

.index_news--itemtxtBox .characters {
  font-size: 1.6rem;
}

.index_news--itemtxtBox p {
  font-size: 1.6rem;
}

.index_news--itemtxtBox a {
  color: #fff;
}

.index_concept {
  padding: 4rem 0 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #39424b;
  background-image: url(../images/top/top_concept.png);
}

.index_concept_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 50%;
  margin-right: auto;
}

.index_concept .sec-ttl {
  text-align: left;
  width: 15%;
}

.index_concept .sec-ttl .en {
  width: 6rem;
  margin: 0 !important;
}

.index_concept_txt {
  width: 80%;
  color: #fff;
  font-family: "Crimson Text", "游明朝", "Yu Mincho", "YuMincho",
    "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "MS Ｐ明朝", "MS 明朝",
    serif;
}

.index_concept_txt .heading3 {
  font-size: 2rem;
}

.index_concept_txt p {
  font-size: 1.5rem;
  padding: 3rem 0 6rem;
}

.index_concept_cont_img {
  width: 15rem;
}

.index_concept_cont_imglist01 {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

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

.index_detail {
  padding: 15rem 0;
  font-family: "Crimson Text", "游明朝", "Yu Mincho", "YuMincho",
    "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "MS Ｐ明朝", "MS 明朝",
    serif;
}

.index_detail_list {
  padding-bottom: 12rem;
  border-bottom: 0.1rem solid #333;
}

.index_detail_list.index_member .more_btn {
  width: 25rem;
}

.index_detail_list.index_member .more_btn a::after {
  position: absolute;
  right: 1.5rem;
  content: "";
  width: 0.5rem;
  height: 2.8rem;
  background-image: url(../images/top/icon_arrow.png);
  background-size: 0.5rem;
  background-repeat: no-repeat;
  background-position: center center;
}

.index_detail_list:nth-child(2n) .index_detail_item {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-flow: row-reverse;
  flex-flow: row-reverse;
}

.index_detail_list:nth-child(2n) .index_detail_item .index_detail_itemtxt {
  width: 40%;
}

.index_detail_list:nth-child(2n) .index_detail_item .index_detail_itemimgbox {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-flow: row-reverse;
  flex-flow: row-reverse;
  width: 55%;
}

.index_detail_list:nth-child(2n) .index_detail_itemimgtxt {
  margin-left: 0;
  margin-right: 1.5rem;
}

.index_detail_list + .index_detail_list {
  padding-top: 12rem;
}

.index_detail_list.index_restaurant .index_detail_itemimgbox .detail_txt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1.4rem 2rem;
}

.index_detail_list.index_restaurant .index_detail_itemtxt {
  margin-top: 15rem;
}

.index_detail_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.index_detail_itemtxt {
  width: 44%;
}

.index_detail_itemtxt .heading3 {
  font-size: 2rem;
  padding: 2rem 0;
}

.index_detail_itemtxt .heading3 .ja {
  display: block;
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.index_detail_itemtxt p {
  font-size: 1.6rem;
  margin-bottom: 8rem;
}

.index_detail_itemimg {
  position: relative;
}

.index_detail_itemimgbox {
  width: 52%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.index_detail_itemimgbox .img-slider {
  margin-bottom: 6rem;
}

.index_detail_itemimgbox .detail_img {
  position: relative;
}

.index_detail_itemimgbox .detail_img img {
  width: 100%;
}

.index_detail_itemimgbox .detail_txt {
  background-color: #fff;
  position: absolute;
  bottom: -5rem;
  right: 0;
  font-size: 1.4rem;
  padding: 1.8rem 2rem;
  -webkit-box-shadow: 0.6rem 0.6rem 0.8rem rgba(0, 0, 0, 0.4);
  box-shadow: 0.6rem 0.6rem 0.8rem rgba(0, 0, 0, 0.4);
  -webkit-box-shadow: 0.8rem 0.8rem 1rem 0.1rem rgba(89, 87, 87, 0.2);
  box-shadow: 0.8rem 0.8rem 1rem 0.1rem rgba(89, 87, 87, 0.2);
  width: 82%;
  font-weight: 700;
}

.index_detail_itemimgbox .thumbnail .thumbnail-img {
  display: none;
}

.index_detail_itemimgwrap {
  width: 88%;
}

.index_detail_itemimgtxt {
  width: 5rem;
  margin-left: 1rem;
}

.index_detail_itemimg .detail_img_list {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.index_detail_itemimg .detail_img_list li {
  width: calc(20% - 1rem);
}

.index_detail_itemimg .detail_img_list li img {
  background-color: #fff;
}

.index_detail_itemimg .detail_img_list li p {
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: -0.1rem;
  margin-top: 1rem;
}

.index_detail_itemimg .detail_img_listwrap {
  margin-top: 1.5rem;
}

.index_detail_itemimg p {
  font-size: 1.2rem;
  font-weight: 700;
  margin-top: 2rem;
}

.index_detail_itemimg .index_detail_features {
  font-size: 1.6rem;
}

.index_access {
  padding: 10rem 0 6rem;
  font-family: "Crimson Text", "游明朝", "Yu Mincho", "YuMincho",
    "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "ＭＳ Ｐ明朝", "MS 明朝",
    serif;
}

.index_access .sec-ttl .en {
  width: 20rem;
}

.index_access_desc {
  margin-bottom: 4rem;
}

.index_access_desc .color-white {
  margin-top: 2.5rem;
}

.index_access_img {
  margin: 6rem 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.index_access_img li {
  width: calc(25% - 1rem);
}

.index_access_map iframe {
  height: 45rem;
}

.index_access_map .more_btn {
  margin-right: auto;
  margin-left: 0;
  width: 38rem;
  margin: 3rem 0;
}

.index_access_map_desc {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 1rem 0 2rem;
  border-bottom: 0.1rem solid #fff;
}

.index_access_map_desc span {
  width: 3rem;
  display: inline-block;
  margin-right: 1rem;
}

.index_access_map_address {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-top: 1rem;
}

.index_access_map_address li {
  width: calc(50% - 2rem);
}

.index_access_map_address p {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0.5rem 0 0.5rem;
}

.index_access_map_address p span {
  width: 3rem;
  display: inline-block;
  margin-right: 1rem;
}

.index_information {
  font-family: "Crimson Text", "游明朝", "Yu Mincho", "YuMincho",
    "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "ＭＳ Ｐ明朝", "MS 明朝",
    serif;
  padding: 7rem 0;
}

.index_information_list {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.index_information_list li {
  border: 1px solid #333;
  width: calc(25% - 1rem);
}

.index_information_list li a {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
  padding: 1.5rem 2rem;
  font-weight: 700;
  font-size: 1.4rem;
  position: relative;
}

.index_information_list li a::after {
  content: "";
  position: absolute;
  width: 2rem;
  height: 3rem;
  top: 30%;
  right: 2rem;
  background-image: url(../images/top/arrow_right02.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 2rem;
  z-index: 1;
}

.index_information_list li a .en {
  display: block;
  font-size: 1rem;
}

.index_information_list li a img {
  width: 2.8rem;
  margin-right: 1rem;
}

.index_information_list li a img.map {
  width: 1.5rem;
}

.detail_main {
  padding: 15rem 0 25rem;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.detail_main.access {
  background-image: url("../images/access/detail_access_img.png");
}

.detail_main.rooms {
  background-image: url("../images/rooms/detail_rooms_img.png");
}

.detail_main.member {
  background-image: url("../images/member/detail_member_img.png");
}

.detail_main.archive {
  background-image: url("../images/archive/detail_archive_img.png");
}

.detail_main.archive .detail-ttl {
  opacity: 0.5;
  width: 55rem;
}

.detail_main.single {
  background-image: url("../images/archive/detail_archive_img.png");
}

.detail_main.single .detail-ttl {
  opacity: 0.5;
  width: 55rem;
}

.detail_main.info {
  background-image: url("../images/infomation/detail_info_img.png");
}

.detail_main.info .sec-ttl {
  width: 30rem;
}

.detail_main.info .detail-ttl {
  width: 90rem;
}

.detail_main .sec-ttl {
  text-align: left;
  width: 24rem;
}

.detail_main .sec-ttl .en {
  width: 100%;
}

.detail_main .sec-ttl .ja {
  text-align: center;
  margin-top: 1.5rem;
}

.detail-ttl {
  position: absolute;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: 0;
}

#access {
  font-family: "Crimson Text", "游明朝", "Yu Mincho", "YuMincho",
    "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "ＭＳ Ｐ明朝", "MS 明朝",
    serif;
}

.access_map_sec {
  padding: 10rem 0 0;
}

.access_map_content {
  text-align: center;
  margin-bottom: 8rem;
}

.access_map_content .heading3 {
  font-size: 2.2rem;
  margin-bottom: 4rem;
}

.access_map_address {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-bottom: 2rem;
}

.access_map_address span {
  display: inline-block;
  width: 1.8rem;
  margin-right: 0.5rem;
}

.access_map_address span img {
  width: 100%;
}

.access_map_frame {
  position: relative;
  margin-bottom: 3rem;
}

.access_map_frame .more_btn {
  position: absolute;
  display: block;
  color: #333;
  background-color: #d5d8d5;
  width: 20rem;
  text-align: center;
  padding: 0.5rem 0;
  top: -6rem;
  right: 0;
}

.access_map_frame iframe {
  height: 50rem;
}

.access_map_linewrap {
  margin-top: 5rem;
}

.access_map_line_ttl {
  padding: 1.5rem;
}

.access_map_linelist {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 2rem;
}

.access_map_linelist.access_map_shinkansen .access_map_line_txt::after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: -24.5rem;
  display: block;
  width: 24.5rem;
  border-top: 0.2rem solid #333;
}

.access_map_linelist.access_map_shinkansen .access_map_line_train {
  position: absolute;
  top: 3rem;
  right: -22rem;
  display: inline-block;
  width: 100%;
  font-size: 1.4rem;
}

.access_map_linelist.access_map_shinkansen .access_map_line_train::before {
  content: "";
  position: absolute;
  left: -4rem;
  background-image: url(../images/access/access_map_line_icon02.png);
  width: 3.5rem;
  height: 2rem;
  background-size: 3.5rem;
  background-repeat: no-repeat;
}

.access_map_linelist.access_map_shinkansen .access_map_line_work {
  position: absolute;
  top: 2.8rem;
  right: -18rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  width: 100%;
  font-size: 1.4rem;
}

.access_map_linelist.access_map_shinkansen .access_map_line_work::before {
  content: "";
  position: absolute;
  bottom: 0.1rem;
  left: -2rem;
  background-image: url(../images/access/access_map_line_icon01.png);
  width: 1.8rem;
  height: 3.3rem;
  background-size: 1.8rem;
  background-repeat: no-repeat;
}

.access_map_linelist.access_map_shinkansen .pd-tb {
  padding: 4rem 3rem;
}

.access_map_linelist.access_map_plane .access_map_line_txt::after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: -38.3rem;
  display: block;
  width: 38.3rem;
  border-top: 0.2rem solid #333;
}

.access_map_linelist.access_map_plane .pd-tb {
  padding: 10rem 3rem;
}

.access_map_linelist.access_map_plane .access_map_line_item:nth-child(2) {
  margin-left: 25rem;
}

.access_map_linelist.access_map_plane
  .access_map_line_item:nth-child(2)
  .access_map_line_txt:first-child {
  margin-right: 4rem;
}

.access_map_linelist.access_map_plane
  .access_map_line_item:nth-child(2)
  .access_map_line_txt
  + .access_map_line_txt {
  margin-left: 2rem;
  padding: 0.5rem 1.5rem;
}

.access_map_linelist.access_map_plane
  .access_map_line_item:nth-child(2)
  .access_map_line_txt::after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: -23.3rem;
  display: block;
  width: 23.3rem;
  border-top: 0.2rem solid #333;
}

.access_map_linelist.access_map_car {
  padding-bottom: 3rem;
}

.access_map_linelist.access_map_car .more_btn {
  position: absolute;
  bottom: -3.5rem;
  right: -24rem;
  display: block;
  line-height: 2;
  width: 18rem;
}

.access_map_linelist.access_map_car .more_btn a {
  font-size: 1.4rem;
}

.access_map_linelist.access_map_car .more_btn a::after {
  position: absolute;
  right: 2.5rem;
  content: "";
  width: 0.5rem;
  height: 3rem;
  background-image: url(../images/top/icon_arrow.png);
  background-size: 0.5rem;
  background-position: center;
  background-repeat: no-repeat;
}

.access_map_linelist_img {
  margin-top: 5rem;
}

.access_map_line_item {
  position: relative;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.access_map_line_item:last-child .access_map_line_txt::after {
  content: none;
}

.access_map_line_txt {
  border: 0.2rem solid #333;
  padding: 0.8rem 3rem;
  margin-top: 1rem;
  position: relative;
  text-align: center;
  background-color: #fff;
}
.access_map_line_txt .logo{
 display: block;
 width: 10rem;
 margin: 0 auto 1rem;
}

.access_map_line_txt::after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: -39.4rem;
  display: block;
  width: 39.4rem;
  border-top: 0.2rem solid #333;
}

.access_map_line_txt.line {
  line-height: 1.1;
}

.access_map_line_train {
  position: absolute;
  top: -0.3rem;
  right: -26rem;
  display: inline-block;
  width: 100%;
  font-size: 1.4rem;
  text-align: left;
}

.access_map_line_train::before {
  content: "";
  position: absolute;
  left: -4rem;
  background-image: url(../images/access/access_map_line_icon02.png);
  width: 3.5rem;
  height: 2rem;
  background-size: 3.5rem;
  background-repeat: no-repeat;
}

.access_map_line_work {
  position: absolute;
  top: -0.3rem;
  right: -26rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  width: 100%;
  font-size: 1.4rem;
}

.access_map_line_work::before {
  content: "";
  position: absolute;
  bottom: 0.1rem;
  left: -2rem;
  background-image: url(../images/access/access_map_line_icon01.png);
  width: 1.8rem;
  height: 3.3rem;
  background-size: 1.8rem;
  background-repeat: no-repeat;
}

.access_map_line_shinkansen {
  position: absolute;
  top: -0.3rem;
  right: -20rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  width: 100%;
  font-size: 1.4rem;
}

.access_map_line_shinkansen::before {
  content: "";
  position: absolute;
  left: -5rem;
  background-image: url(../images/access/access_map_line_icon03.png);
  width: 3.5rem;
  height: 2rem;
  background-size: 3.5rem;
  background-repeat: no-repeat;
}

.access_map_line_plane {
  position: absolute;
  top: -0.1rem;
  right: -28rem;
  width: 100%;
  font-size: 1.4rem;
  text-align: left;
}

.access_map_line_plane::before {
  content: "";
  position: absolute;
  left: -5rem;
  background-image: url(../images/access/access_map_line_icon04.png);
  width: 4.5rem;
  height: 2.2rem;
  background-size: 4.5rem;
  background-repeat: no-repeat;
}

.access_map_line_bass {
  position: absolute;
  top: -9rem;
  right: -14rem;
  display: inline-block;
  font-size: 1.4rem;
  text-align: left;
}

.access_map_line_bass::before {
  content: "";
  position: absolute;
  top: 3rem;
  left: -4.5rem;
  background-image: url(../images/access/access_map_line_icon06.png);
  width: 3.5rem;
  height: 2rem;
  background-size: 3.5rem;
  background-repeat: no-repeat;
}

.access_map_line_car {
  position: absolute;
  top: -0.3rem;
  right: -18rem;
  display: inline-block;
  width: 100%;
  font-size: 1.4rem;
  text-align: right;
  line-height: 2;
}

.access_map_line_item:nth-child(2n) .access_map_line_car {
	top: 0.8rem;
}

.access_map_line_car::before {
  content: "";
  position: absolute;
  top: 0.5rem;
  right: 6rem;
  background-image: url(../images/access/access_map_line_icon05.png);
  width: 3.5rem;
  height: 2rem;
  background-size: 3.5rem;
  background-repeat: no-repeat;
}

.access_parking {
  padding: 8rem 0 15rem;
  font-family: "Crimson Text", "游明朝", "Yu Mincho", "YuMincho",
    "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "ＭＳ Ｐ明朝", "MS 明朝",
    serif;
}

.access_parking .inner {
  background-color: #e8e8e8;
  padding: 8rem 0;
}

.access_parking .sec-ttl .en {
  width: 23rem;
}

.access_parking_list {
  padding: 0 6rem;
  margin-top: 4rem;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.access_parking_img {
  width: 61%;
}

.access_parking_content {
  width: 37%;
  font-weight: 500;
}

.access_parking_content .ttl {
  font-size: 2.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.access_parking_content .cont + .cont {
  margin-top: 4rem;
}

.access_info {
  padding: 10rem 0;
}

.access_info .sec-ttl .en {
  width: 50rem;
  margin: 0 auto;
}

.access_info .sec-ttl .ja {
  margin-top: 2rem;
}

.access_infolist--wrap {
  padding: 8rem 0 0;
}

.access_infolist {
  list-style: none;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.access_info--item {
  position: relative;
  z-index: 1;
  width: calc(25% - 1.5rem);
}

.access_info--itemimg {
  overflow: hidden;
}

.access_info--itemtxtBox {
  color: #fff;
  padding: 2rem 0;
  font-family: "Crimson Text", "游明朝", "Yu Mincho", "YuMincho",
    "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "ＭＳ Ｐ明朝", "MS 明朝",
    serif;
}

.access_info--itemtxtBox .number {
  font-size: 2rem;
}

.access_info--itemtxtBox .heading3 {
  font-size: 2rem;
  padding: 0rem 0 1rem;
}

.access_info--itemtxtBox .heading3 span {
  font-size: 1.6rem;
  display: block;
}

.access_info--itemtxtBox p {
  font-size: 1.6rem;
}

.access_oga_img_sec {
  padding: 6rem 0 2rem;
}

.access_oga_img_sec p {
  font-size: 1.8rem;
  margin-bottom: 4rem;
}

.access_oga_img_logo {
  width: 25rem;
  margin: 0 auto;
}

.access_oga_video{
	margin-top: 4rem;
}

.access_oga_video p {
  font-size: 2rem;
  margin-top: 4rem;
}



.access_oga_video iframe {
  display: block; /* margin:auto を効かせるために必要 */
  width: 100%; /* 基本は親要素の100% */
  max-width: 800px; /* 最大幅を800pxに指定（この値はお好みで調整） */
  height: auto;
  aspect-ratio: 16 / 9;
  margin: 0 auto; /* 上下のマージンは0、左右を自動にして中央寄せ */
}



#rooms {
  font-family: "Crimson Text", "游明朝", "Yu Mincho", "YuMincho",
    "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "ＭＳ Ｐ明朝", "MS 明朝",
    serif;
}

.rooms_desc {
  padding: 12rem 0 6rem;
}

.rooms_desc_list {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.rooms_desc_list_cont {
  width: 45%;
}

.rooms_desc_list_cont .heading3 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
}

.rooms_desc_list_img {
  width: 52%;
}

.rooms_desc_list_img img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.rooms_desc_list_icon {
  margin-top: 1rem;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.rooms_desc_list_icon_Img {
  width: 14rem;
}

.rooms_desc_list_icon_Img img {
  width: 100%;
}

.rooms_desc_list_icon_Img + .rooms_desc_list_icon_Img {
  margin-left: 1rem;
}

.rooms_desc_list_icon p {
  font-size: 1.6rem;
  font-weight: bold;
  text-align: center;
}

.rooms_desc_list_icon p span {
  font-size: 1.4rem;
}

.rooms_desc_facility_sec {
  margin-top: 8rem;
}

.rooms_desc_facility_sec .heading3 {
  font-size: 2.2rem;
  margin-bottom: 2rem;
}

.rooms_desc_facility_list li {
  position: relative;
  padding-right: 3rem;
  margin-left: 3rem;
}

.rooms_desc_facility_list li::after {
  content: "";
  position: absolute;
  bottom: 0.5rem;
  width: 1px;
  height: 2rem;
  background: rgba(0, 0, 0, 0.4);
  -webkit-transform: rotate(30deg);
  transform: rotate(30deg);
  right: 0;
}

.rooms_desc_facility_box {
  border: 0.1rem solid #333;
  padding: 4rem 3rem;
}

.rooms_desc_facility_txt {
  padding-left: 3rem;
  margin-top: 4rem;
}

.rooms_desc_amenities_sec {
  margin-top: 4rem;
}

.rooms_desc_amenities_sec .heading3 {
  font-size: 2.2rem;
  margin-bottom: 2rem;
}

.rooms_desc_amenities_box {
  border: 0.1rem solid #333;
  padding: 4rem 3rem;
}

.rooms_desc_amenities_list {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.rooms_desc_amenities_list li {
  position: relative;
  padding-right: 3rem;
  margin-left: 3rem;
}

.rooms_desc_amenities_list li::after {
  content: "";
  position: absolute;
  bottom: 0.5rem;
  width: 1px;
  height: 2rem;
  background: rgba(0, 0, 0, 0.4);
  -webkit-transform: rotate(30deg);
  transform: rotate(30deg);
  right: 0;
}

.rooms_desc_amenities_box {
  border: 0.1rem solid #333;
  padding: 4rem 3rem;
}

.rooms_desc_cleaning_sec {
  margin-top: 8rem;
}

.rooms_desc_cleaning_sec .heading3 {
  font-size: 2.2rem;
  margin-bottom: 2rem;
}

.rooms_desc_cleaning_box {
  border: 0.1rem solid #333;
  padding: 4rem 3rem;
}

.rooms_desc_cleaning_txt {
  padding-left: 3rem;
  margin-top: 0rem;
}

.rooms_desc_cleaning_txt + .rooms_desc_cleaning_txt {
  margin-top: 1rem;
}

.rooms_feature .inner {
  background-color: #e8e8e8;
  padding: 8rem 4rem;
}

.rooms_feature .inner .sec-ttl img {
  width: 20rem;
  margin: 0 auto;
}

.rooms_feature_list {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.rooms_feature_listWrap {
  margin-top: 4rem;
}

.rooms_feature_item {
  width: calc(33.3333333333% - 2rem);
}

.rooms_feature_item .ttl {
  font-size: 2rem;
}

.rooms_feature_item .ttl span {
  font-size: 1.6rem;
}

.rooms_feature_cont {
  margin-top: 1.5rem;
}

.rooms_intro {
  margin: 8rem 0 0rem;
}

.rooms_intro .slick-list {
  overflow: hidden !important;
}

.rooms_intro .slick-slide {
  margin: 0 0.5rem;
}

.rooms_intro_nav_list {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 4rem 0;
}

.rooms_intro_nav_item {
  width: calc(25% - 3rem);
}

.rooms_intro_nav_item a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1.2rem 3rem;
  width: 100%;
  border: 0.1rem solid #fff;
  min-height: 6rem;
}

.rooms_intro_nav_item a::after {
  content: "";
  position: absolute;
  width: 1.2rem;
  height: 1.2rem;
  top: 38%;
  right: 2rem;
  background-image: url(../images/rooms/arrow_bottom.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 1.2rem;
  z-index: 1;
}

.rooms_intro_nav_item h3 {
  line-height: 1.2;
}

.rooms_intro_nav_item h3 span {
  font-size: 1.2rem;
}

.rooms_intro_list {
  padding-bottom: 10rem;
}

.rooms_intro_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  margin-top: 10rem;
}

.rooms_intro_item:nth-child(even) {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.rooms_intro_item:nth-child(even) .rooms_intro_itemtxt {
  left: unset;
  right: 0;
}

.rooms_intro_item:nth-child(even) .rooms_intro_itemimgbox {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.rooms_intro_item:nth-child(2) .rooms_intro_itemtxt {
  top: 8rem;
}

.rooms_intro_itemtxt {
  position: absolute;
  top: 8rem;
  left: 0;
  width: 45%;
  padding: 1rem 3rem 3rem;
  z-index: 1;
}

.rooms_intro_itemtxt .heading3 {
  font-size: 2.6rem;
  padding: 1rem 0;
  line-height: 1.5;
  border-bottom: 0.1rem solid #231815;
}

.rooms_intro_itemtxt .heading3 span {
  font-size: 1.6rem;
}

.rooms_intro_itemtxt .heading3 .ja {
  display: block;
  font-size: 1.4rem;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
}

.rooms_intro_itemtxt p {
  font-size: 1.6rem;
  border-bottom: 0.1rem solid #231815;
}

.rooms_intro_itemimg {
  position: relative;
}

.rooms_intro_itemimgbox {
  width: 70%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: end;
}

.rooms_intro_itemimgbox .img-slider {
  margin-bottom: 1rem;
}

.rooms_intro_itemimgbox .main_img {
  position: relative;
}

.rooms_intro_itemimgbox .detail_img {
  position: relative;
  width: 18rem !important;
}

.rooms_intro_itemimgbox .detail_img img {
  width: 100%;
}

.rooms_intro_itemimgbox .detail_txt {
  background-color: #fff;
  position: absolute;
  bottom: 0rem;
  right: 0;
  font-size: 1.8rem;
  padding: 1.5rem 4rem;
  -webkit-box-shadow: 0.6rem 0.6rem 0.8rem rgba(0, 0, 0, 0.4);
  box-shadow: 0.6rem 0.6rem 0.8rem rgba(0, 0, 0, 0.4);
  -webkit-box-shadow: 0.8rem 0.8rem 1rem 0.1rem rgba(89, 87, 87, 0.2);
  box-shadow: 0.8rem 0.8rem 1rem 0.1rem rgba(89, 87, 87, 0.2);
  font-weight: 700;
}

.rooms_intro_itemimgwrap {
  width: 93%;
}

.rooms_intro_itemimgtxt {
  width: 5rem;
  margin-left: 1rem;
}

.rooms_intro_item_detail {
  padding: 2rem 0 2rem;
}

.rooms_intro_item_detail p {
  border-bottom: none;
}

.rooms_intro_more_btn {
  width: 25rem;
  background-color: #d5d8d5;
  padding: 1rem 2rem;
}

.rooms_intro_more_btn_cont {
  -webkit-transition: height 0.3s ease-in-out;
  transition: height 0.3s ease-in-out;
  background-color: #d5d8d5;
}

.rooms_intro_more_btn_cont p {
  border-bottom: none;
}

#restaurant {
  font-family: "Crimson Text", "游明朝", "Yu Mincho", "YuMincho",
    "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "ＭＳ Ｐ明朝", "MS 明朝",
    serif;
}

.restaurant_intro {
  margin: 8rem 0 0rem;
  padding: 8rem 0 0;
  background-color: #efefef;
}

.restaurant_intro .slick-list {
  overflow: hidden !important;
}

.restaurant_intro .slick-slide {
  margin: 0 0.5rem;
}

.restaurant_intro_list {
  padding-bottom: 10rem;
}

.restaurant_intro_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  margin-top: 10rem;
}

.restaurant_intro_item:nth-child(even) {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.restaurant_intro_item:nth-child(even) .rooms_intro_itemtxt {
  left: unset;
  right: 0;
}

.restaurant_intro_item:nth-child(even) .rooms_intro_itemimgbox {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.restaurant_intro_item:nth-child(2) .rooms_intro_itemtxt {
  top: 8rem;
}

.restaurant_intro_itemtxt {
  position: absolute;
  top: 8rem;
  right: 0;
  width: 45%;
  padding: 1rem 3rem 3rem;
  z-index: 1;
}

.restaurant_intro_itemtxt .heading3 {
  font-size: 2.6rem;
  padding: 1rem 0;
  line-height: 1.5;
  border-bottom: 0.1rem solid #231815;
}

.restaurant_intro_itemtxt .heading3 span {
  font-size: 1.6rem;
}

.restaurant_intro_itemtxt .heading3 .ja {
  display: block;
  font-size: 1.4rem;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
}

.restaurant_intro_itemtxt p {
  font-size: 1.6rem;
  border-bottom: 0.1rem solid #231815;
}

.restaurant_intro_itemimg {
  position: relative;
}

.restaurant_intro_itemimgbox {
  width: 70%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: end;
}

.restaurant_intro_itemimgbox .img-slider {
  margin-bottom: 1rem;
}

.restaurant_intro_itemimgbox .main_img {
  position: relative;
}

.restaurant_intro_itemimgbox .detail_img {
  position: relative;
  width: 18rem !important;
}

.restaurant_intro_itemimgbox .detail_img img {
  width: 100%;
}

.restaurant_intro_itemimgbox .detail_txt {
  background-color: #fff;
  position: absolute;
  bottom: 0rem;
  right: 0;
  font-size: 1.8rem;
  padding: 1.5rem 4rem;
  -webkit-box-shadow: 0.6rem 0.6rem 0.8rem rgba(0, 0, 0, 0.4);
  box-shadow: 0.6rem 0.6rem 0.8rem rgba(0, 0, 0, 0.4);
  -webkit-box-shadow: 0.8rem 0.8rem 1rem 0.1rem rgba(89, 87, 87, 0.2);
  box-shadow: 0.8rem 0.8rem 1rem 0.1rem rgba(89, 87, 87, 0.2);
  font-weight: 700;
}

.restaurant_intro_itemimgwrap {
  width: 93%;
}

.restaurant_intro_itemimgtxt {
  width: 5rem;
  margin-left: 1rem;
}

.restaurant_intro_item_detail {
  padding: 2rem 0 2rem;
}

.restaurant_intro_item_detail p {
  border-bottom: none;
}

/* .restaurant_intro_more_btn {
  width: 25rem;
  background-color: #d5d8d5;
  padding: 1rem 2rem;
}

.restaurant_intro_more_btn_cont {
  -webkit-transition: height 0.3s ease-in-out;
  transition: height 0.3s ease-in-out;
  background-color: #d5d8d5;
}

.restaurant_intro_more_btn_cont p {
  border-bottom: none;
} */

.restaurant_guide {
  margin: 10rem 0;
}

.restaurant_guide .heading3 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
}

.restaurant_guide_table table {
  width: 100%;
  margin-top: 5rem;
}

.restaurant_guide_table table th {
  width: 24%;
  font-size: 1.8rem;
}

.restaurant_guide_table table td {
  line-height: 2;
  font-size: 1.8rem;
  width: 80%;
}

#contact {
  font-family: "Crimson Text", "游明朝", "Yu Mincho", "YuMincho",
    "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "ＭＳ Ｐ明朝", "MS 明朝",
    serif;
}

.contact_sec {
  margin-top: 15rem;
}

.contact_sec p {
  margin-top: 6rem;
}

.contact_form_sec {
  margin-top: 10rem;
}

.contact_form_step {
  position: relative;
  width: calc(33.3333333333% - 10rem);
  text-align: center;
  border-left: 0.1rem solid #333;
  border-right: 0.1rem solid #333;
  color: rgb(204, 204, 204);
}

.contact_form_step_list {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.contact_form_step::after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: -14rem;
  display: block;
  width: 13rem;
  border-top: 0.1rem solid #333;
}

.contact_form_step:last-child::after {
  content: none;
}

.contact_form_step.active {
  color: #333;
  font-weight: bold;
}

.contact_form_wrapper {
  position: relative;
  margin-top: 2rem;
}

.contact_form_wrapper table {
  width: 100%;
}

.contact_form_wrapper table tr {
  margin-top: 2rem;
  display: block;
}

.contact_form_wrapper table th {
  vertical-align: middle;
  font-weight: bold !important;
  border-width: 1px 0px 1px 1px !important;
  text-align: left;
}

.contact_form_wrapper table th,
.contact_form_wrapper table td {
  /* border: #ddd solid !important; */
  padding: 1rem 0;
  line-height: 1.2em;
  vertical-align: top;
  font-weight: bold;
  display: block;
  font-size: 2rem;
}

.contact_form_wrapper .name-list td {
  display: block;
}

.contact_form_wrapper td input[type="text"],
.contact_form_wrapper td input[type="email"],
.contact_form_wrapper td input[type="tel"],
.contact_form_wrapper td input[type="number"],
.contact_form_wrapper td textarea {
  color: #333;
  display: inline-block;
  width: 100%;
  height: auto;
  padding: 2rem 3rem 2rem 2rem;
  -webkit-appearance: none;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: 0.1rem solid #a4a4a4;
  font-size: 1.8rem;
  background: #fff;
  font-family: "Crimson Text", "游明朝", "Yu Mincho", "YuMincho",
    "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "ＭＳ Ｐ明朝", "MS 明朝",
    serif;
}

.contact_form_wrapper td select {
  color: #333;
  display: inline-block;
  height: auto;
  padding: 2rem 3rem 2rem 2rem;
  -webkit-appearance: none;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: 1px solid #a4a4a4;
  background: #fff;
  font-size: 1.8rem;
  font-family: "Crimson Text", "游明朝", "Yu Mincho", "YuMincho",
    "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "ＭＳ Ｐ明朝", "MS 明朝",
    serif;
}

.contact_form_wrapper td .note {
  color: #969696;
  display: block;
  margin-top: 1.5rem;
  font-size: 1.4rem;
}

.contact_form_wrapper .remaining p {
  display: block;
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 0;
  color: #de0000;
  line-height: 1.4em;
  text-align: center;
}

.contact_form_wrapper .number {
  font-size: 1.8rem;
  line-height: 1.4em;
}

.items {
  font-size: 1.8rem;
}

.essential {
  background: #ff462e;
  color: #fff;
  font-size: 1.6rem;
  padding: 0.3rem 1.2rem;
  font-weight: normal;
  border-radius: 0.5rem;
  margin-left: 2rem;
}

.contact_form_wrapper .wpcf7-list-item {
  display: block;
  margin: 0;
  border-radius: 5px;
  padding: 0 10px;
  position: relative;
  cursor: pointer;
}

.wpcf7-list-item + .wpcf7-list-item {
  margin-top: 3rem;
}

input[type="checkbox"] {
  display: none;
}

.wpcf7-list-item-label {
  position: relative;
  height: 2rem;
  line-height: 2rem;
  padding-left: 2.5rem;
  display: inline-block;
}

.wpcf7-list-item-label::before {
  content: "";
  display: block;
  width: 2rem;
  height: 2rem;
  border: 2px solid;
  background: #fff;
  position: absolute;
  left: 0;
  top: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.contact_form_wrapper .btn-wrapper {
  text-decoration: none;
  position: relative;
  display: block;
  width: 20rem;
  letter-spacing: 0.2rem;
  text-align: center;
  border: none;
  margin: 3rem auto 8rem;
}

.privacy a {
  color: #4d4df5;
  text-decoration: underline;
}

.form-input .btn {
  background-color: #000;
  width: 100%;
  height: 100%;
  padding: 1.5rem 0;
  border-radius: 0.5rem;
  border: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  color: #fff;
}

.btn-confirm:disabled {
  background-color: #ccc;
  cursor: not-allowed;
}

.agreeTxt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

#kiyaku-checkbox {
  border: 0.1rem solid #333;
  -webkit-appearance: auto !important;
  -moz-appearance: auto !important;
  appearance: auto !important;
}

#kiyaku-checkbox {
  display: inline-block !important;
  width: 2rem;
  height: 2rem;
  margin-right: 0.5rem;
  vertical-align: middle;
}

.agreeTxt input {
  width: 2rem;
  height: 2rem;
}

.error-message {
  display: block;
  margin-top: 0.5rem;
  font-size: 1.6rem !important;
  color: red;
}

.form-confirm .btn-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  /* 両端配置（または center でも可） */
  gap: 1rem;
  /* ボタン間の隙間 */
  margin: 5rem auto;
  width: 100%;
  max-width: 400px;
  /* レスポンシブでちょうど良いサイズ */
}

.form-confirm .btn-wrapper .btn {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  /* 均等幅 */
  width: auto;
  /* 上書きして100%を解除 */
  background-color: #000;
  width: 100%;
  height: 100%;
  padding: 1.5rem 0;
  border-radius: 0.5rem;
  border: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  color: #fff;
}

.form-confirm .btn-back {
  background-color: #666 !important;
}

.form-confirm .btn-back:hover {
  background-color: #444;
}

.wpcf7-not-valid-tip {
  font-size: 1.6rem;
}

#member {
  font-family: "Crimson Text", "游明朝", "Yu Mincho", "YuMincho",
    "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "ＭＳ Ｐ明朝", "MS 明朝",
    serif;
}

.member_desc {
  padding: 6rem 0;
}

.member_desc .heading3 {
  font-size: 2.2rem;
  margin-bottom: 4rem;
}

.member_desc p span {
  font-size: 1.4rem;
}

.member_benefits .inner {
  background-color: #efefef;
  padding: 6rem 0;
}

.member_benefits .sec-ttl .en {
  width: 33rem;
}

.member_benefits_list {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.member_benefits_listwrap {
  padding: 0rem 3rem 2rem;
}

.member_benefits_item {
  width: calc(33.3333333333% - 1.5rem);
  margin-top: 6rem;
}

.member_benefits_item .heading3 {
  font-size: 2rem;
  margin-top: 2rem;
}

.member_benefits_item p {
  margin-top: 1.5rem;
}

.member_benefits .more_btn {
  width: 50rem;
  margin: 8rem auto 0;
}

.member_benefits .more_btn a {
  padding: 2.5rem 0;
  font-size: 1.8rem;
}

.member_flow {
  padding: 10rem 0;
}

.member_flow::before {
  content: "";
  position: absolute;
  top: -38rem;
  width: 100%;
  height: 70rem;
  background-color: #405771;
  z-index: -1;
}

.member_flow .sec-ttl {
  margin-bottom: 4rem;
}

.member_flow .sec-ttl .en {
  width: 20rem;
}

.member_flow .heading3 {
  font-size: 2.2rem;
  margin-top: 2rem;
}

.member_flow_list {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.member_flow_list li {
  width: calc(33.3333333333% - 2rem);
  margin-top: 4rem;
}

.member_flow_list li p {
  margin-top: 1rem;
}

#info {
  font-family: "Crimson Text", "游明朝", "Yu Mincho", "YuMincho",
    "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "ＭＳ Ｐ明朝", "MS 明朝",
    serif;
}

.info_desc {
  padding: 10rem 0;
}

.info_desc_list {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.info_desc_listwrap p {
  margin: 3rem 0;
}

.info_desc_listwrap_sp {
  margin-top: 6rem;
}

.info_desc_listwrap_sp .slick-list {
  overflow: hidden !important;
}

.info_desc_listwrap_sp .thumbnail {
  position: relative;
  bottom: 14rem;
}

.info_desc_listwrap_sp .main_img {
  position: relative;
}

.info_desc_listwrap_sp .detail_img {
  position: relative;
  width: 19rem !important;
}

.info_desc_listwrap_sp .detail_img img {
  width: 100%;
}

.info_desc_listwrap_sp_cont {
  position: relative;
  top: -8rem;
  width: 95%;
  margin: 0 auto;
}

.info_desc_listwrap_sp_cont_list {
  margin-top: 3rem;
}

.info_desc_listwrap_sp_cont_list dt {
  position: relative;
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

.info_desc_listwrap_sp_cont_list dt::after {
  position: absolute;
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 0rem;
  width: 44rem;
  height: 0.2rem;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  background-color: #666;
}

.info_desc_listwrap_sp_cont_list dd {
  font-size: 2rem;
}

.info_desc_listwrap_sp_cont_list dd span{
	width: 22rem;
	display: inline-block;
}

.info_desc_list_img {
  width: 38%;
  position: relative;
}

.info_desc_list_img .detail_txt {
  background-color: #fff;
  position: absolute;
  bottom: 29rem;
  right: 0;
  font-size: 1.8rem;
  padding: 1.5rem 4rem;
  -webkit-box-shadow: 0.6rem 0.6rem 0.8rem rgba(0, 0, 0, 0.4);
  box-shadow: 0.6rem 0.6rem 0.8rem rgba(0, 0, 0, 0.4);
  -webkit-box-shadow: 0.8rem 0.8rem 1rem 0.1rem rgba(89, 87, 87, 0.2);
  box-shadow: 0.8rem 0.8rem 1rem 0.1rem rgba(89, 87, 87, 0.2);
  font-weight: 700;
  margin: 0;
}

.info_desc_list_cont {
  width: 65%;
  margin-left: 1rem;
}

.info_desc_list_cont dl {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 3rem;
}

.info_desc_list_cont dl dt {
  width: 17%;
  padding-right: 2rem;
}

.info_desc_list_cont dl dd {
  border-left: 0.2rem solid #333;
  padding-left: 1.5rem;
}
/* 
.info_desc_list_cont dl:last-child dd {
  border: none;
}
 */

.info_desc_list_cont dl dd span{
	display: inline-block;
	width: 18rem;
}


.info_desc_img {
  position: relative;
}

.info_desc_imglist {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin: 5rem 0;
}

.info_desc_img:nth-child(2) {
  margin-left: 3rem;
}

.info_desc_img:nth-child(2) .detail_txt {
  bottom: 6rem;
}

.info_desc_img .detail_txt {
  background-color: #fff;
  position: absolute;
  bottom: 0rem;
  right: 0;
  font-size: 1.8rem;
  padding: 1.5rem 4rem;
  -webkit-box-shadow: 0.6rem 0.6rem 0.8rem rgba(0, 0, 0, 0.4);
  box-shadow: 0.6rem 0.6rem 0.8rem rgba(0, 0, 0, 0.4);
  -webkit-box-shadow: 0.8rem 0.8rem 1rem 0.1rem rgba(89, 87, 87, 0.2);
  box-shadow: 0.8rem 0.8rem 1rem 0.1rem rgba(89, 87, 87, 0.2);
  font-weight: 700;
  margin: 0;
}

.info_feature {
  background-color: #efefef;
  padding: 12rem 0;
}

.info_feature .sec-ttl img {
  width: 20rem;
  margin: 0 auto;
}

.info_feature_listwrap {
  margin-top: 8rem;
}

.info_feature_listwrap_sp {
  margin-top: 6rem;
  height: 60rem;
}

.info_feature_listwrap_sp .slick-list {
  overflow: hidden !important;
}

.info_feature_listwrap_sp .thumbnail {
  position: relative;
  bottom: 16rem;
}

.info_feature_listwrap_sp .main_img {
  position: relative;
}

.info_feature_listwrap_sp .detail_img {
  position: relative;
  width: 19rem !important;
}

.info_feature_listwrap_sp .detail_img img {
  width: 100%;
}

.info_feature_list_imgBox {
  width: 30%;
}

.info_feature_list_img + .info_feature_list_img {
  margin-top: 3rem;
}

.info_feature_list_cont {
  width: 80%;
  margin-left: 3rem;
  font-family: "Crimson Text", "游明朝", "Yu Mincho", "YuMincho",
    "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "ＭＳ Ｐ明朝", "MS 明朝",
    serif;
}

.info_feature_list_cont dl {
  margin-bottom: 2rem;
}

.info_feature_list_cont dl dt {
  width: 24%;
  font-size: 1.8rem;
}

.info_feature_list_cont dl dd {
  line-height: 2;
  font-size: 1.8rem;
  width: 80%;
}

.info_feature_list_sp {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.info_feature_list_spwrap {
  margin-top: 4rem;
}

.info_feature_list_sp li {
  width: calc(50% - 1.5rem);
  margin-top: 5rem;
}

.info_feature_list_sp li h3 {
  font-size: 2.3rem;
  padding: 1.5rem 0 1rem;
  border-bottom: 0.1rem solid #333;
}

.info_feature_list_sp li p {
  padding-top: 1.5rem;
}

.info_feature_list_sp_img.flex img + img {
  margin-left: 3rem;
}

.info_feature_item_sp.rooms .info_feature_list_sp_cont {
  width: 60rem;
}

.info_feature_item_sp.rooms .info_feature_list_sp_cont h3 {
  border: none;
}

.info_feature_item_sp.rooms .info_feature_list_sp_cont p {
  padding-top: 0;
}

#archive {
  font-family: "Crimson Text", "游明朝", "Yu Mincho", "YuMincho",
    "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "ＭＳ Ｐ明朝", "MS 明朝",
    serif;
}

#archive li {
  list-style: none;
}

.archive_sec_inner {
  padding: 4rem 0 10rem;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.archive_sec_sidebar {
  margin-top: 6rem;
  width: 18%;
}

.archive_sec_sidebar .sidebar .widget + .widget {
  margin-top: 8rem;
}

.archive_sec_sidebar .sidebar .widget.widget_archive li {
  border-left: 0.1rem solid #333;
  border-right: 0.1rem solid #333;
  padding: 0 3rem;
  margin-top: 3rem;
}

.archive_sec_sidebar .sidebar .widgettitle {
  border-bottom: 0.3rem solid #333;
  font-size: 2rem;
}

.archive_sec_sidebar .sidebar .cat-item {
  margin-top: 3rem;
}

.archive_sec_sidebar .sidebar .current-cat a {
  position: relative;
  padding-left: 3rem;
}

.archive_sec_sidebar .sidebar .current-cat a::before {
  content: "";
  display: inline-block;
  width: 0.08rem;
  height: 3rem;
  background-color: #333;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
}

.archive_sec_sidebar .sidebar .current-cat a::after {
  content: "";
  display: inline-block;
  width: 0.08rem;
  height: 3rem;
  background-color: #333;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: -14.6rem;
}

.archive_sec_sidebar .sidebar .children {
  margin-top: 3rem;
}

.archive_sec_sidebar .sidebar .children .cat-item {
  border-left: 0.1rem solid #333;
  border-right: 0.1rem solid #333;
  padding: 0 3rem;
}

.archive_sec_sidebar .sidebar .children .cat-item a {
  padding-left: 0;
}

.archive_sec_sidebar .sidebar .children .cat-item a::before {
  content: none;
}

.archive_sec_sidebar .sidebar .children .cat-item a::after {
  content: none;
}

.archive_sec_sidebar-wrapsp {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border: 0.1rem solid #333;
  width: 48%;
}

.archive_sec_sidebar-wrapsp_list {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.archive_sec_sidebar-wrapsp select {
  width: 100%;
  padding: 2rem 3rem 2rem;
  color: #333;
  font-weight: bold;
  cursor: pointer;
  text-overflow: ellipsis;
  z-index: 1;
  border: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  background: transparent;
}

.archive_sec_sidebar-wrapsp + .archive_sec_sidebar-wrapsp {
  margin-left: 3rem;
}

.archive_sec_content {
  width: 78%;
}

.archive_sec_content_list {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.archive_sec_content_item {
  width: calc(50% - 3rem);
  margin-top: 6rem;
}

.archive_sec_content_item a {
  display: block;
}

.archive_sec_content_item_txtBox {
  margin-top: 1rem;
}

.archive_sec_content_item .heading3 {
  font-size: 2rem;
  padding: 0.5rem 0;
}

.archive_sec_content_item_characters {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 2rem 0;
}

.archive_sec_content_item .category {
  margin-left: 1rem;
}

.archive_sec_content_item .category li {
  background-color: #efefef;
  padding: 0.4rem 1rem;
  width: 13rem;
}

.archive_sec_content_item .category li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

#single {
  font-family: "Crimson Text", "游明朝", "Yu Mincho", "YuMincho",
    "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "ＭＳ Ｐ明朝", "MS 明朝",
    serif;
}

#single li {
  list-style: none;
}

.single_sec_inner {
  padding: 10rem 0 6rem;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.single_sec_sidebar {
  width: 18%;
}

.single_sec_sidebar .sidebar .widget + .widget {
  margin-top: 8rem;
}

.single_sec_sidebar .sidebar .widget.widget_archive li {
  border-left: 0.1rem solid #333;
  border-right: 0.1rem solid #333;
  padding: 0 3rem;
  margin-top: 3rem;
}

.single_sec_sidebar .sidebar .widgettitle {
  border-bottom: 0.3rem solid #333;
  font-size: 2rem;
}

.single_sec_sidebar .sidebar .cat-item {
  margin-top: 3rem;
}

.single_sec_sidebar .sidebar .current-cat a {
  position: relative;
  padding-left: 3rem;
}

.single_sec_sidebar .sidebar .current-cat a::before {
  content: "";
  display: inline-block;
  width: 0.08rem;
  height: 3rem;
  background-color: #333;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
}

.single_sec_sidebar .sidebar .current-cat a::after {
  content: "";
  display: inline-block;
  width: 0.08rem;
  height: 3rem;
  background-color: #333;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: -14.6rem;
}

.single_sec_sidebar .sidebar .children {
  margin-top: 3rem;
}

.single_sec_sidebar .sidebar .children .cat-item {
  border-left: 0.1rem solid #333;
  border-right: 0.1rem solid #333;
  padding: 0 3rem;
}

.single_sec_sidebar .sidebar .children .cat-item a {
  padding-left: 0;
}

.single_sec_sidebar .sidebar .children .cat-item a::before {
  content: none;
}

.single_sec_sidebar .sidebar .children .cat-item a::after {
  content: none;
}

.single_sec_content {
  width: 78%;
  background-color: #efefef;
  padding: 6rem;
}

.single_sec_content_desc {
  margin-top: 3rem;
}

.single_sec_content p {
  margin-top: 2rem;
  font-size: 1.8rem;
}

.single_sec_content h1 {
  font-size: 3.3rem;
}

.single_sec_content h2 {
  font-size: 2.6rem;
}

.single_sec_content h3 {
  font-size: 2.3rem;
}

.single_sec_content h4 {
  font-size: 2.2rem;
}

.single_sec_heading {
  font-size: 2.4rem;
  padding: 0.5rem 0;
}

.single_sec_tag_list {
  margin: 1rem 0 3rem;
  font-size: 1.8rem;
}

.single_sec_tag_time {
  display: inline-block;
}

.single_sec_tag_category {
  background-color: #cdcdcd;
  padding: 0.5rem 1rem;
  width: 18rem;
  margin-left: 1rem;
  display: inline-block;
}

.single_sec_tag_category a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.single_sec .topics_links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-left: 0.1rem solid #333;
  border-right: 0.1rem solid #333;
  margin-bottom: 6rem;
}

.single_sec .topics_links .links_move {
  width: 50%;
  padding: 0 4rem;
  text-align: center;
}

.single_sec .topics_links .links_move + .links_move {
  border-left: 0.1rem solid #333;
}

.single_sec .topics_links .links_move.prev {
  position: relative;
}

.single_sec .topics_links .links_move.prev::before {
  position: absolute;
  left: 3rem;
  content: "";
  width: 0.8rem;
  height: 2.8rem;
  background-image: url(../images/common/icon_arrow02.png);
  background-size: 0.8rem;
  background-position: center;
  background-repeat: no-repeat;
}

.single_sec .topics_links .links_move.prev a {
  position: relative;
}

.single_sec .topics_links .links_move.next {
  position: relative;
}

.single_sec .topics_links .links_move.next::after {
  position: absolute;
  right: 3rem;
  content: "";
  width: 0.8rem;
  height: 2.8rem;
  background-image: url(../images/common/icon_arrow.png);
  background-size: 0.8rem;
  background-position: center;
  background-repeat: no-repeat;
}

.single_sec .more_btn {
  width: 26rem;
  margin: 0 auto;
}

.single_sec .more_btn a {
  padding: 2rem 0;
}

.sp-none {
  display: none;
}

@media (min-width: 769px) {
  .header.is-hidden {
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity 0.3s ease, visibility 0.3s ease;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }

  .color-white-pc {
    color: #fff;
  }

  .rooms_intro_itemimgbox .detail_img {
    width: 24rem !important;
  }

  .pc-none {
    display: none;
  }

  .sp-none {
    display: block;
  }
}

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

@media only screen and (max-width: 992px) {
  .index_reservation .inner {
    width: 85%;
  }

  .index_reservation .search-widget-search-container-bf1818 {
    width: 100% !important;
    position: relative;
  }

  .index_reservation
    .search-widget-search-container-bf1818
    .search-widget-button-wrapper-d2b715 {
    position: absolute;
    bottom: -5rem;
    width: 102rem;
  }

  .index_reservation .input-container-input-container-da40af {
    margin-bottom: 2rem;
  }
}

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

@media (max-width: 768px) {
  p {
    font-size: 2.2rem;
  }

  .header {
    -webkit-transition: 0.3s ease all;
    transition: 0.3s ease all;
  }

  .header-logo.kinoshita {
    top: 2rem;
    right: 26rem;
    background: none;
  }

  .header.change-color {
    background-color: #000;
    -webkit-transition: 0.3s ease all;
    transition: 0.3s ease all;
  }

  .header.change-color .gtranslate_wrapper {
    background-color: #000;
    width: 25rem;
  }

  .header.change-color .header-logo.kinoshita {
    background-color: #fff;
    height: 9.5rem;
    top: 0;
    right: 26rem;
  }

  .header-inner {
    padding: 3rem 0rem 3rem 3rem;
  }

  .header-logo {
    width: 13rem;
    padding-top: 0;
  }

  .header_navitem.language {
    width: 23%;
    margin-right: 8rem;
    font-size: 1.8rem;
  }

  .header_navitem img {
    width: 18%;
  }

  .header_navitem a {
    font-size: 1.6rem;
  }

  .footer {
    padding: 5rem 0 0;
  }

  .footer_content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .footer_content_contact {
    border: 0.2rem solid #333;
    border-radius: 2rem;
    font-weight: 700;
    padding: 0.8rem 2.5rem;
    font-size: 1.4rem;
  }

  .footer_logo {
    margin: 0 auto 3rem;
  }

  .footer_center_wrap {
    width: 33%;
    margin-bottom: 0;
  }

  .footer_nav {
    border: none;
  }

  .footer_nav {
    width: 60%;
    margin-left: 4rem;
  }

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

  .footer_nav_list li {
    width: 50%;
    border-left: none;
    margin-top: 2rem;
  }

  .footer_nav_list li a {
    padding: 0;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    font-size: 2rem;
  }

  .footer_copy {
    margin-top: 6rem;
  }

  .sec-ttl .ja {
    font-size: 2.4rem;
    margin-top: 1.5rem;
  }

  .ttl--l {
    font-size: 6rem;
  }

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

  .txt--l {
    font-size: 2.4rem;
  }

  .detail--txt--l {
    font-size: 2.8rem;
    margin-bottom: 5rem;
  }

  .detail--txt--m {
    font-size: 2.2rem;
  }

  .flex-sp {
    display: block;
  }

  .more_btn {
    width: 23rem;
  }

  .more_btn a {
    padding: 1.5rem;
    font-size: 2.2rem;
  }

  .more_btn a::after {
    width: 0.8rem;
    height: 3rem;
    background-size: 0.8rem;
  }

  .slick-dots li {
    margin: 0 1rem;
  }

  .slick-dots button {
    width: 2rem !important;
    height: 2rem !important;
  }

  .gtranslate_wrapper {
    padding: 1rem 0 1.5rem;
  }

  .gtranslate_wrapper a {
    padding: 1.2rem 2.8rem;
  }

  .color-white-pc {
    color: #000;
  }

  .index_main {
    height: 120rem;
  }

  .index_main_video #video {
    min-width: 100%;
    min-height: 100%;
    width: auto;
  }

  .index_main_copy {
    top: 45%;
  }

  .index_main_copy .bg--txt {
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .index_main_copy .bg--txt {
    font-size: 5rem;
    line-height: 2;
  }

  .index_main_copy .bg--txt .txt--center {
    display: none;
  }

  .index_main_copy .sm--txt {
    font-size: 3.3rem;
    margin-top: 3rem;
  }

  .index_main_logo {
    width: 24rem;
  }

  .index_main_newssp {
    position: absolute;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.8);
  }

  .index_main_newssp_wrap {
    padding: 3rem 0;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .index_main_newssp_ttl {
    width: 20%;
  }

  .index_main_newssp_ttl .sec-ttl .en {
    width: 100%;
  }

  .index_main_newssp_ttl .sec-ttl .ja {
    font-size: 1.6rem;
  }

  .index_main_newssp_ttl .more_btn {
    width: 100%;
    margin-top: 2rem;
    background-color: #fff;
  }

  .index_main_newssp_ttl .more_btn a {
    background-color: unset;
    font-size: 1.2rem;
    padding: 0.8rem 1.5rem;
  }

  .index_main_newssp_ttl .more_btn a::after {
    position: absolute;
    right: 1.5rem;
    content: "";
    width: 0.5rem;
    height: 2rem;
  }

  .index_main_newssp_listwrap {
    width: 75%;
  }

  .index_main_newssp_item {
    border-bottom: 0.1rem solid #333;
    font-weight: 700;
  }

  .index_main_newssp_item a {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 1.5rem 0;
  }

  .index_main_newssp_item a h3 {
    width: 35%;
    font-size: 1.6rem;
    text-align: center;
    border: 0.1rem solid #333;
    padding: 0.3rem 0;
  }

  .index_main_newssp_item a p {
    margin-left: 2rem;
    font-size: 1.8rem;
    width: 62%;
  }

  .index_main_reservation a {
    height: 20rem;
    padding: 3rem 1.2rem;
    font-size: 2rem;
    letter-spacing: 0.4rem;
  }

  .index_reservation {
    padding: 10rem 0 5rem;
  }

  .index_reservation .inner {
    width: 90%;
  }

  .index_reservation .search-widget-search-container-bf1818 {
    padding: 1.5rem 0 1rem;
  }

  .index_reservation
    .search-widget-search-container-bf1818
    .search-widget-button-wrapper-d2b715 {
    bottom: -6rem;
    width: 100%;
  }

  .index_reservation .button-btn-f51c1a {
    padding: 1.5rem 0;
    font-size: 1.8rem;
  }

  .index_reservation
    .index_reservation
    .input-container-input-container-da40af
    label {
    font-size: 1.8rem;
  }

  .index_reservation .search-widget-input-34bba0,
  .index_reservation .search-widget-select-75fb48 {
    font-size: 1.8rem !important;
  }

  .index_news {
    padding: 10rem 0 5rem;
  }

  .index_news .slick-slide img {
    height: auto !important;
  }

  .index_news--itemtxtBox .heading3 {
    font-size: 2.5rem;
  }

  .index_news--itemtxtBox .characters {
    font-size: 2.2rem;
  }

  .index_news--itemtxtBox p {
    font-size: 1.8rem;
  }

  .index_concept {
	background-image: url(../images/top/top_concept_sp.png);
    padding: 10rem 0;
  }

  .index_concept_inner {
    width: 82%;
  }

  .index_concept .sec-ttl {
    width: 25rem;
  }

  .index_concept .sec-ttl .en {
    width: 100%;
  }

  .index_concept_txt {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-flow: column-reverse;
    flex-flow: column-reverse;
  }

  .index_concept_txt .heading3 {
    font-size: 2.4rem;
    margin-top: 2rem;
  }

  .index_concept_txt p {
    padding: 2rem 0 0;
    font-size: 1.8rem;
  }

  .index_concept_cont_imglist_wrap {
    margin-bottom: 7rem;
  }

  .index_detail {
    padding: 12rem 0;
  }

  .index_detail_list {
    padding-bottom: 6rem;
  }

  .index_detail_list.index_member .more_btn {
    width: 28rem;
  }

  .index_detail_list.index_member .more_btn a::after {
    width: 0.8rem;
    height: 3rem;
    background-size: 0.8rem;
  }

  .index_detail_list:nth-child(2n) .index_detail_item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-flow: column-reverse;
    flex-flow: column-reverse;
  }

  .index_detail_list:nth-child(2n) .index_detail_item .index_detail_itemtxt {
    width: 90%;
    margin: 8rem auto 0;
  }

  .index_detail_list:nth-child(2n) .index_detail_item .index_detail_itemimgbox {
    width: 72rem;
  }

  .index_detail_list:nth-child(2n) .index_detail_itemimgtxt {
    margin-right: 2rem;
  }

  .index_detail_list + .index_detail_list {
    padding-top: 10rem;
  }

  .index_detail_list.index_restaurant .index_detail_itemimgbox {
    margin-left: -4rem;
    width: 72rem;
  }

  .index_detail_list.index_restaurant .index_detail_itemimgbox .detail_txt {
    width: 48rem;
    right: -10rem;
    padding: 2rem 2rem;
    bottom: -10rem;
  }

  .index_detail_list:first-child .index_detail_itemimgtxt {
    width: 6rem;
  }

  .index_detail_item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-flow: column-reverse;
    flex-flow: column-reverse;
  }

  .index_detail_item .slick-track {
    left: -6rem;
  }

  .index_detail_item .slick-dots {
    position: absolute;
    left: -23rem;
    bottom: 4rem;
    margin: 0;
  }

  .index_detail_itemtxt {
    width: 95%;
    margin: 5rem auto 0;
  }

  .index_detail_itemtxt .heading3 {
    padding: 0 0 2rem;
    font-size: 2.4rem;
  }

  .index_detail_itemtxt .heading3 .ja {
    font-size: 4rem;
    margin-bottom: 1.8rem;
  }

  .index_detail_itemtxt p {
    font-size: 1.8rem;
    margin-bottom: 3rem;
  }

  .index_detail_itemimgbox {
    width: 100%;
  }

  .index_detail_itemimgbox .img-slider {
    margin-bottom: 2rem;
  }

  .index_detail_itemimgbox .detail_img img {
    width: 65rem;
  }

  .index_detail_itemimgbox .detail_txt {
    right: -23rem;
    bottom: -4rem;
    font-size: 1.8rem;
    width: 100%;
    padding: 3rem;
  }

  .index_detail_itemimgtxt {
    width: 6rem;
    margin-left: 2rem;
  }

  .index_detail_itemimg .detail_img_list {
    position: absolute;
    bottom: -8rem;
  }

  .index_detail_itemimg .detail_img_list li p {
    font-size: 1.5rem;
  }

  .index_detail_itemimg .detail_img_listwrap {
    margin-top: 4rem;
  }

  .index_access .sec-ttl .en {
    width: 20rem;
    margin-left: 0 !important;
  }

  .index_access_desc {
    margin-top: 3rem;
  }

  .index_access_desc .color-white {
    font-size: 1.6rem;
  }

  .index_access_desc .more_btn {
    width: 18rem;
  }

  .index_access_desc .more_btn a {
    font-size: 1.6rem;
    padding: 1.2rem;
  }

  .index_access_img {
    margin-top: 3rem;
  }

  .index_access_flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-flow: column-reverse;
    flex-flow: column-reverse;
  }

  .index_access_map {
    width: 50%;
  }

  .index_access_map iframe {
    height: 40rem;
  }

  .index_access_map .more_btn {
    width: 45rem;
    margin: 4rem 0 0;
  }

  .index_access_mapwrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-bottom: 0.1rem solid #fff;
    padding-bottom: 8rem;
  }

  .index_access_map_desc {
    display: none;
  }

  .index_access_maptxt {
    width: 46%;
  }

  .index_access_map_address {
    display: block;
    padding-top: 3rem;
  }

  .index_access_map_address li {
    width: 100%;
  }

  .index_access_map_address p {
    font-size: 1.6rem;
  }

  .index_information {
    padding: 5rem 0 6rem;
  }

  .index_information_list {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .index_information_list li {
    width: calc(50% - 3rem);
    margin-top: 1rem;
  }

  .index_information_list li:nth-child(2n) {
    margin-left: 1rem;
  }

  .index_information_list li a p {
    font-size: 2.2rem;
  }

  .index_information_list li a .en {
    font-size: 1.8rem;
  }

  .index_information_list li a img {
    width: 3.5rem;
    margin-right: 2rem;
  }

  .index_information_list li a img.map {
    width: 2.5rem;
  }

  .detail_main {
    padding: 20rem 0 30rem;
  }

  .detail_main.rooms {
    background-image: url("../images/rooms/detail_rooms_sp_img.png");
  }

  .detail_main.info .detail-ttl {
    width: 66rem;
  }

  .detail_main .sec-ttl {
    text-align: center;
    margin: 0 auto;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }

  .detail_main .sec-ttl .ja {
    font-size: 2.4rem;
    margin-top: 1rem;
  }

  .access_map_sec {
    padding: 8rem 0 0;
  }

  .access_map_content {
    margin-bottom: 6rem;
  }

  .access_map_content .heading3 {
    font-size: 2.8rem;
  }

  .access_map_frame .more_btn {
    position: unset;
    margin-left: auto;
    margin-right: auto;
    width: 24rem;
    margin: 3rem auto 4rem;
  }

  .access_map_frame .more_btn a {
    padding: 1rem 1.5rem;
  }

  .access_map_frame iframe {
    height: 60rem;
  }

  .access_map_line_ttl {
    font-size: 2rem;
  }

  .access_map_linelist {
    display: none;
  }

  .access_parking {
    background-color: #e8e8e8;
    padding: 0;
    margin: 10rem 0;
  }

  .access_parking_list {
    display: block;
    padding: 0;
  }

  .access_parking_img {
    width: 100%;
    margin-top: 5rem;
  }

  .access_parking_content {
    width: 100%;
  }

  .access_parking_content .ttl {
    position: relative;
    font-size: 2.6rem;
    width: 34%;
    text-align: center;
  }

  .access_parking_content .ttl::after {
    position: absolute;
    top: -6rem;
    left: 100%;
    content: "";
    width: 0.3rem;
    height: 16rem;
    background-color: #333;
  }

  .access_parking_content .cont {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 4rem;
  }

  .access_parking_content .cont p {
    width: 63%;
    padding-left: 2rem;
  }

  .access_infolist--wrap {
    padding: 0rem 0;
  }

  .access_infolist {
    display: block;
  }

  .access_info--item {
    width: 100%;
    margin-top: 8rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .access_info--itemimg {
    width: 48%;
  }

  .access_info--itemtxtBox .number {
    font-size: 2.4rem;
  }

  .access_info--itemtxtBox .heading3 {
    font-size: 2.5rem;
    padding: 0rem 0 1rem;
  }

  .access_info--itemtxtBox p {
    font-size: 2rem;
  }

  .access_info--itemtxtBox {
    width: 48%;
    padding: 0;
  }

  .access_oga_img_sec {
    padding: 6rem 0 0;
  }

  .access_oga_img_sec p {
    font-size: 2rem;
  }
	
	
  .access_oga_video {
    margin-top: 6rem;
  }

  .access_oga_video p {
    font-size: 2.2rem;
    margin-top: 6rem;
  }

  .rooms_desc {
    padding: 8rem 0 6rem;
  }

  .rooms_desc_list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-flow: column-reverse;
    flex-flow: column-reverse;
  }

  .rooms_desc_list_cont {
    width: 100%;
    margin-top: 5rem;
  }

  .rooms_desc_list_cont .heading3 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
  }

  .rooms_desc_list_img {
    width: 100%;
  }

  .rooms_desc_list_icon {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    margin-top: 4rem;
  }

  .rooms_desc_list_icon_Img {
    width: 16rem;
  }

  .rooms_desc_list_icon p {
    font-size: 1.8rem;
  }

  .rooms_desc_list_icon p span {
    font-size: 1.6rem;
  }

  .rooms_desc_facility_sec .heading3 {
    font-size: 2.8rem;
    margin-bottom: 0rem;
  }

  .rooms_desc_facility_list li {
    margin-left: 0;
    padding-right: 0;
    width: calc(33.3333333333% - 1rem);
    text-align: center;
    border: 0.1rem solid #333;
    padding: 1.5rem;
    min-height: 11rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 3rem;
  }

  .rooms_desc_facility_list li::after {
    content: none;
  }

  .rooms_desc_facility_list {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .rooms_desc_facility_box {
    padding: 0;
    border: none;
  }

  .rooms_desc_facility_txt {
    padding-left: 0;
    margin-top: 3rem;
    font-size: 2rem;
  }

  .rooms_desc_amenities_sec {
    margin-top: 6rem;
  }

  .rooms_desc_amenities_sec .heading3 {
    font-size: 2.8rem;
    margin-bottom: 0rem;
  }

  .rooms_desc_amenities_list li {
    margin-left: 0;
    padding-right: 0;
    width: calc(33.3333333333% - 1rem);
    text-align: center;
    border: 0.1rem solid #333;
    padding: 1.5rem;
    min-height: 11rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 3rem;
  }

  .rooms_desc_amenities_list li::after {
    content: none;
  }

  .rooms_desc_amenities_list {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .rooms_desc_amenities_box {
    padding: 0;
    border: none;
  }

  .rooms_desc_cleaning_sec .heading3 {
    font-size: 2.8rem;
    margin-bottom: 0rem;
  }

  .rooms_desc_cleaning_box {
    padding: 0;
    border: none;
  }

  .rooms_desc_cleaning_txt {
    padding-left: 0;
    font-size: 2rem;
    margin-top: 1.5rem;
  }

  .rooms_feature .inner {
    padding: 8rem 3rem;
  }

  .rooms_feature_list {
    display: block;
    margin-top: 7rem;
  }

  .rooms_feature_item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
  }

  .rooms_feature_item:nth-child(2) {
    margin: 5rem 0;
  }

  .rooms_feature_item .ttl {
    font-size: 2.4rem;
    margin-bottom: 2rem;
  }

  .rooms_feature_item .ttl span {
    font-size: 1.8rem;
  }

  .rooms_feature_img {
    width: 45%;
  }

  .rooms_feature_cont {
    margin-top: 0;
    margin-left: 2rem;
    width: 55%;
  }

  .rooms_intro {
    margin: 10rem 0 0;
    padding: 0 0 4rem;
  }

  .rooms_intro_nav_list {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 2rem 0 4rem;
  }

  .rooms_intro_nav_item {
    width: calc(50% - 1rem);
    margin-top: 2rem;
  }

  .rooms_intro_nav_item a {
    font-size: 2.2rem;
    min-height: 7rem;
  }

  .rooms_intro_nav_item h3 span {
    font-size: 1.6rem;
  }

  .rooms_intro_item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-flow: column-reverse;
    flex-flow: column-reverse;
  }

  .rooms_intro_item .slick-track {
    left: -6rem;
  }

  .rooms_intro_item .slick-dots {
    position: absolute;
    left: -23rem;
    bottom: 4rem;
    margin: 0;
  }

  .rooms_intro_itemtxt {
    position: unset;
    width: 99%;
    margin: 0 auto;
    padding: 1rem 4rem 3rem;
  }

  .rooms_intro_itemtxt .heading3 {
    padding: 1.5rem 0 2rem;
    font-size: 3rem;
  }

  .rooms_intro_itemtxt .heading3 span {
    font-size: 2.2rem;
    margin-bottom: 1rem;
  }

  .rooms_intro_itemtxt .heading3 .ja {
    font-size: 4rem;
    margin-bottom: 1.8rem;
  }

  .rooms_intro_itemtxt p {
    font-size: 2.2rem;
    margin-bottom: 3rem;
  }

  .rooms_intro_itemimgbox {
    width: 100%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .rooms_intro_itemimgbox .img-slider {
    margin-bottom: 0rem;
  }

  .rooms_intro_itemimgbox .thumbnail {
    position: relative;
    width: 85%;
    margin: 0 auto;
    z-index: 1;
    margin-top: -13rem;
  }

  .rooms_intro_itemimgbox .main_img::after {
    position: absolute;
    content: "";
    bottom: 0;
    width: 100%;
    height: 14rem;
    background-color: #000;
    opacity: 0.5;
  }

  .rooms_intro_itemimgbox .detail_txt {
    right: 0rem;
    top: 0rem;
    height: 6.5rem;
    font-size: 2rem;
  }

  .rooms_intro_itemimgwrap {
    width: 100%;
  }

  .rooms_intro_itemimgtxt {
    width: 6rem;
    margin-left: 2rem;
  }

  .rooms_intro_more_btn {
    width: 33rem;
    padding: 1.5rem 2rem;
    font-size: 2rem;
  }
	
	  .restaurant_intro {
    margin: 10rem 0 0;
    padding: 4rem 0;
  }

  .restaurant_guide .heading3 {
    font-size: 2.8rem;
  }

  .restaurant_guide_table table th,
  td {
    font-size: 2.2rem;
    text-align: left;
  }

  .restaurant_intro_item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-flow: column-reverse;
    flex-flow: column-reverse;
  }

  .restaurant_intro_item .slick-track {
    left: -6rem;
  }

  .restaurant_intro_item .slick-dots {
    position: absolute;
    left: -23rem;
    bottom: 4rem;
    margin: 0;
  }

  .restaurant_intro_itemtxt {
    position: unset;
    width: 99%;
    margin: 0 auto;
    padding: 1rem 4rem 3rem;
  }

  .restaurant_intro_itemtxt .heading3 {
    padding: 1.5rem 0 2rem;
    font-size: 3rem;
  }

  .restaurant_intro_itemtxt .heading3 span {
    font-size: 2.2rem;
    margin-bottom: 1rem;
  }

  .restaurant_intro_itemtxt .heading3 .ja {
    font-size: 4rem;
    margin-bottom: 1.8rem;
  }

  .restaurant_intro_itemtxt p {
    font-size: 2.2rem;
    margin-bottom: 3rem;
  }

  .restaurant_intro_itemimgbox {
    width: 100%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .restaurant_intro_itemimgbox .img-slider {
    margin-bottom: 0rem;
  }

  .restaurant_intro_itemimgbox .thumbnail {
    position: relative;
    width: 85%;
    margin: 0 auto;
    z-index: 1;
    margin-top: -13rem;
  }

  .restaurant_intro_itemimgbox .main_img::after {
    position: absolute;
    content: "";
    bottom: 0;
    width: 100%;
    height: 14rem;
    background-color: #000;
    opacity: 0.5;
  }

  .restaurant_intro_itemimgbox .detail_txt {
    right: 0rem;
    top: 0rem;
    height: 6.5rem;
    font-size: 2rem;
  }

  .restaurant_intro_itemimgwrap {
    width: 100%;
  }

  .restaurant_intro_itemimgtxt {
    width: 6rem;
    margin-left: 2rem;
  }


  .contact_form_step {
    width: calc(33.3333333333% - 2rem);
    font-size: 1.8rem;
    border: none;
  }

  .contact_form_step::after {
    right: -5rem;
    display: block;
    width: 4rem;
  }

  .contact_form_wrapper .btn-wrapper {
    width: 25rem;
  }

  .member_desc .heading3 {
    font-size: 2.8rem;
  }

  .member_desc p {
    font-size: 2rem;
  }

  .member_benefits .inner {
    padding: 8rem 0 6rem;
  }

  .member_benefits .sec-ttl .en {
    width: 38rem;
  }

  .member_benefits_list {
    display: block;
  }

  .member_benefits_listwrap {
    padding: 0rem 0 4rem;
  }

  .member_benefits_item {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 8rem;
  }

  .member_benefits_item:nth-child(even) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-flow: row-reverse;
    flex-flow: row-reverse;
  }

  .member_benefits_item:nth-child(even) .member_benefits_item_cont {
    padding-right: 0;
    padding-left: 3rem;
    margin-right: 3rem;
    margin-left: 0;
  }

  .member_benefits_item_img {
    width: 50%;
  }

  .member_benefits_item_cont {
    width: 58%;
    padding-right: 3rem;
    margin-left: 3rem;
  }

  .member_benefits_item .heading3 {
    margin-top: 0;
    font-size: 2.4rem;
  }

  .member_benefits_item p {
    font-size: 1.8rem;
  }

  .member_benefits .more_btn a {
    font-size: 2rem;
  }

  .member_flow {
    padding: 8rem 0;
  }

  .member_flow .sec-ttl .en {
    width: 18rem;
  }

  .member_flow .heading3 {
    font-size: 2.8rem;
  }

  .member_flow_list {
    display: block;
  }

  .member_flow_list li {
    width: 100%;
    margin-top: 5rem;
  }

  .member_flow_list li p {
    font-size: 2.2rem;
  }

  .info_desc {
    padding: 10rem 0 6rem;
  }

  .info_desc_listwrap_sp .main_img {
    margin: 0 !important;
  }

  .info_desc_listwrap_sp .main_img::after {
    position: absolute;
    content: "";
    bottom: 0;
    width: 100%;
    height: 16rem;
    background-color: #000;
    opacity: 0.5;
  }

  .info_desc_listwrap_sp .main_img .detail_txt {
    background-color: #fff;
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.8rem;
    padding: 1.5rem 4rem;
    -webkit-box-shadow: 0.6rem 0.6rem 0.8rem rgba(0, 0, 0, 0.4);
    box-shadow: 0.6rem 0.6rem 0.8rem rgba(0, 0, 0, 0.4);
    -webkit-box-shadow: 0.8rem 0.8rem 1rem 0.1rem rgba(89, 87, 87, 0.2);
    box-shadow: 0.8rem 0.8rem 1rem 0.1rem rgba(89, 87, 87, 0.2);
    font-weight: 700;
    margin: 0;
  }

  .info_desc_list_img .detail_txt {
    right: 0rem;
    top: 0rem;
    height: 6.5rem;
    font-size: 2rem;
  }

  .info_desc_img .detail_txt {
    right: 0rem;
    top: 0rem;
    height: 6.5rem;
    font-size: 2rem;
  }

  .info_feature {
    padding: 8rem 0;
  }

  .info_feature_list {
    display: block;
  }

  .info_feature_listwrap_sp .main_img {
    margin: 0 !important;
  }

  .info_feature_listwrap_sp .main_img::after {
    position: absolute;
    content: "";
    bottom: 0;
    width: 100%;
    height: 18rem;
    background-color: #000;
    opacity: 0.5;
  }

  .info_feature_list_cont {
    width: 100%;
    margin-left: 0;
  }

  .info_feature_list_cont dl dt {
    width: 30%;
  }

  .info_feature_list_cont dl dd {
    width: 70%;
  }

  .archive_sec_inner {
    display: block;
  }

  .archive_sec_content {
    width: 100%;
  }

  .archive_sec_content_item {
    width: calc(50% - 1.5rem);
  }

  .archive_sec_content_item .heading3 {
    font-size: 2.5rem;
  }

  .single_sec_inner {
    display: block;
  }

  .single_sec_content {
    width: 100%;
    margin-top: 5rem;
    padding: 6rem 4rem;
  }

  .single_sec_content h2 {
    font-size: 2.8rem;
  }

  .single_sec_content h3 {
    font-size: 2.5rem;
  }

  .single_sec_heading {
    font-size: 2.8rem;
  }

  .single_sec_tag_list {
    font-size: 2.2rem;
    margin: 2rem 0 3rem;
  }

  .single_sec .topics_links {
    border: none;
  }

  .single_sec .topics_links .links_move {
    padding: 0 1.5rem;
  }

  .single_sec .topics_links .links_move.prev::before {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 0rem;
    width: 0.6rem;
    background-size: 0.6rem;
  }

  .single_sec .topics_links .links_move.prev a {
    font-size: 1.6rem;
  }

  .single_sec .topics_links .links_move.next::after {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 0rem;
    width: 0.6rem;
    background-size: 0.6rem;
  }

  .single_sec .topics_links .links_move.next a {
    font-size: 1.8rem;
  }

  .single_sec .more_btn {
    width: 30rem;
  }
}

@media (max-width: 768px) and (max-width: 768px) {
  .rooms_intro_item .slick-track {
    left: 0;
  }

  .rooms_intro_item .slick-dots {
    display: none !important;
  }
}
