@charset "utf-8";
/* CSS Document */
html {
  font-size: 62.5%;
}
body {
  font-family: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", sans-serif;
  font-size: 1.5rem;
  line-height: 1.8;
  color: #dad2ba;
  background-color: #151d27;
}
#wrapper {
  width: 100%;
}
#header {
  position: fixed;
  z-index: 100;
  top: 0px;
  width: 100%;
  height: 76px;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: #002f5e;
  background-color: #151d27;
}
#header #header-inner {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  align-items: center;
}
#header #header-inner .logo {
  height: 60px;
  margin-right: auto;
}
/* pc版言語切り替えボタン */
#header #header-inner .lang {
  width: 52px;
  margin-right: 15px;
}
#header #header-inner .lang li {
  font-size: 1.4rem;
  float: left;
}
#header #header-inner .lang li span {
  padding-right: 5px;
  padding-left: 5px;
}
/* sp版言語切り替えボタン */
#header #header-inner .sp_lang {
  display: none;
  position: absolute;
  top: 50%;
  right: 10px;
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
#header #header-inner .sp_lang a {
  display: block;
  padding: 6px 15px;
  background-color: #2C4363;
  font-size: 1.4rem;
  border-radius: 2px;
  color: #fff;
}
/* pc_予約ボタン */
#header #header-inner .reserve-btn {
  width: 166px;
  margin-right: 15px;
}
#header #header-inner .reserve-btn a {
  display: block;
  text-align: center;
  padding: 10px 0;
  color: #dad2ba;
  font-family: 'Sawarabi Mincho', sans-serif;
  background-color: #383c70;
  border-radius: 3px;
  letter-spacing: .05em;
}
#header #header-inner .reserve-btn a:hover {
  background-color: #31355E;
}
#header #header-inner .reserve-btn a i {
  margin-left: 5px;
  font-size: 1.4rem;
}
/* pc_メニュー */
#header #header-inner #btn {
  display: block;
  width: 75px;
  height: 76px;
  cursor: pointer;
  background-color: #333;
}
#header #header-inner .open {
  position: relative;
}
#header #header-inner .open::before {
  content: '';
  position: absolute;
  top: 30%;
  right: 50%;
  -webkit-transform: translate(50%, -50%);
  -moz-transform: translate(50%, -50%);
  -ms-transform: translate(50%, -50%);
  -o-transform: translate(50%, -50%);
  transform: translate(50%, -50%);
  width: 3px;
  height: 30px;
  background-color: #a18e5f;
  transform: rotate(135deg);
}
#header #header-inner .open::after {
  content: '';
  position: absolute;
  top: 30%;
  right: 50%;
  -webkit-transform: translate(50%, -50%);
  -moz-transform: translate(50%, -50%);
  -ms-transform: translate(50%, -50%);
  -o-transform: translate(50%, -50%);
  transform: translate(50%, -50%);
  width: 3px;
  height: 30px;
  background-color: #a18e5f;
  transform: rotate(-135deg);
}
#header #header-inner .open img {
  display: none;
}
#overlay {
  position: fixed;
  z-index: 100;
  top: 0;
  display: none;
  width: 100%;
  margin-top: 76px;
  padding-top: 40px;
  padding-bottom: 55px;
  background-color: rgba(0, 0, 0, .8);
}
#overlay .inner {
  display: flex;
}
/*PCナビゲーションメニュー*/
.nav {
  width: 33.333%;
  padding: 0 32px;
  border-left-width: 1px;
  border-left-style: solid;
  border-left-color: #666;
}
.nav:last-child {
  border-right-width: 1px;
  border-right-style: solid;
  border-right-color: #666;
}
.nav li {
  padding-top: 7px;
  padding-bottom: 5px;
}
.nav li a {
  color: #dad2ba;
  font-family: 'Sawarabi Mincho', sans-serif;
  font-size: 18px;
}
.nav li a:hover {
  color: #FFFFFF;
}
.nav li a i {
  font-size: 14px;
  margin-right: 5px;
  color: #a18e5f;
}
/* sp版メニュー */
.headerbar {
  display: none;
  background-color: #242D3B;
  margin-top: 0px;
}
.headerbar ul {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  width: 100%;
}
.headerbar ul li {
  width: 33.33%;
  border-right: 2px solid #151d27;
}
.headerbar ul li a {
  display: block;
  text-align: center;
  font-size: 14px;
  padding: 10px 0;
  color: #fff;
}
.headerbar ul li a i {
  display: block;
}
.drawer-nav {
  position: fixed;
  right: -65%;
  z-index: 2;
  overflow: hidden;
  width: 65%;
  height: 100%;
  background-color: rgba(47, 47, 47, .9);
  transition: all .3s;
  overflow-y: scroll;
  height: 85vh;
}
.open_sp {
  right: 0%;
  transition: all .3s;
}
.drawer-menu-item {
  font-size: 14px;
  border-bottom: 1px solid #5E5E5E;
  display: block;
  padding: 9px 0 9px 20px;
}
.sub_menu {
  position: relative;
}
.sub_menu::before {
  content: "\f078";
  font-family: FontAwesome;
  position: absolute;
  color: #fff;
  top: 50%;
  right: 15px;
  -webkit-transform: translate(50%, 0);
  -moz-transform: translate(50%, 0);
  -ms-transform: translate(50%, 0);
  -o-transform: translate(50%, 0);
  transform: translate(0%, -50%);
}
.sub_menu.active::before {
  content: "\f077";
  color: #fff;
}
/* ========= パンくず ========= */
.bread {
  background-color: #212F41;
  padding: 3px 0 5px 0;
}
.breadcrumb li {
  display: inline;
  font-size: 1.3rem;
}
.breadcrumb li:after {
  content: '>';
  padding: 0 3px;
  color: #fff;
}
.breadcrumb li:last-child:after {
  content: '';
}
.breadcrumb li a {
  text-decoration: none;
  color: #fff;
}
.breadcrumb li a:hover {
  text-decoration: underline;
}
.inner {
  position: relative;
  z-index: 1;
  width: 1120px;
  margin: 0 auto;
}
.content {
  background-image: url(../images/darkblue_bg400.jpg);
}
.content .inner .pc_tit {
  font-size: 2.4rem;
  font-weight: bold;
  margin-bottom: 35px;
  text-align: center;
  font-family: 'Sawarabi Mincho', sans-serif;
  line-height: 1.5;
}
.content .inner .pc_tit b {
  font-size: 1.4rem;
  margin: 0 5px;
}
.content .inner .pc_tit span {
  display: block;
  font-size: 1.3rem;
  letter-spacing: 0.05em;
  font-weight: bold;
  line-height: 2;
}
.content .inner .pc_tit img {
  width: 139px;
  display: block;
  margin: 10px auto 0;
}
.content .inner .subcopy {
  width: 736px;
  margin: 0 auto 50px;
}
.subcontent h4 {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 15px;
  color: #304358;
  font-family: 'Sawarabi Mincho', sans-serif;
}
.content h3 {
  font-size: 1.8rem;
  font-weight: 300;
  margin: 15px 0;
  color: #dad2ba;
  font-family: 'Sawarabi Mincho', sans-serif;
  position: relative;
  letter-spacing: .1em;
}
.content h3 span {
  font-family: serif;
  letter-spacing: .05em;
}
.content h3 span b {
  font-size: 1.3rem;
}
.content h3::before {
  content: '';
  position: absolute;
  top: -1em;
  left: 0;
  width: 1em;
  height: 1px;
  background-color: #a18e5f;
}
.content .sub_tit {
  color: #304358;
}
.body-text {
  margin-bottom: 30px;
}
.bodycopy-m {
  color: #151d27;
}
.subcontent {
  overflow: hidden;
  width: 100%;
  padding-top: 50px;
  padding-bottom: 50px;
  color: #304358;
  background-image: url(../images/kinari_bg.jpg);
}
.subcontent .subcontent-inner {
  width: 1120px;
  margin: 0 auto;
}
.subcontent .subcontent-inner li {
  line-height: 1.4em;
  float: left;
  width: 159px;
  margin-right: 1px;
  text-align: center;
}
/*共通コンタクトエリア*/
.contact-area {
  padding: 40px 0;
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: #d8d8d8;
  background-color: #e7e7e7;
}
.contact-area .contact-inner {
  display: flex;
  flex-wrap: wrap;
  width: 600px;
  margin-right: auto;
  margin-left: auto;
  color: #151d4a;
}
.contact-area .contact-inner img {
  width: 40px;
  margin-bottom: 10px;
}
.contact-area .contact-inner a {
  color: #151d4a;
}
.contact-area .contact-inner a:hover {
  color: #039;
}
.contact-area .contact-inner .contact {
  width: 49%;
  text-align: center;
  border-right: 1px solid #151d4a;
}
.contact-area .contact-inner .contact a {
  display: block;
}
.contact-area .contact-inner .contact:last-child {
  border-right-style: none;
}
#footer {
  clear: both;
  overflow: hidden;
  width: 100%;
  background-color: #151d27;
}
#footer #footer-inner {
  overflow: hidden;
  width: 1120px;
  margin-right: auto;
  margin-left: auto;
  padding-top: 50px;
  padding-bottom: 30px;
}
#footer #footer-inner .subnav {
  float: left;
  margin-right: 45px;
}
#footer #footer-inner .subnav li {
  font-size: 12px;
}
#footer #footer-inner .f-box {
  float: right;
  width: 220px;
  padding-top: 64px;
  text-align: center;
  background-image: url(../images/f-logo.png);
  background-repeat: no-repeat;
  background-position: center 0;
}
#footer #footer-inner .f-box h3 {
  font-size: 14px;
  margin-top: 10px;
}
#footer #footer-inner .f-box address {
  font-size: 13px;
  line-height: 1.6em;
  margin-top: 10px;
}
/* sp_footer */
.footerbar {
  background-color: #242D3B;
  margin-bottom: 20px;
}
.footerbar ul {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
}
.footerbar ul li {
  width: 33.33%;
  border-right: 2px solid #151d27;
}
.footerbar ul li a {
  display: block;
  text-align: center;
  font-size: 14px;
  padding: 10px 0 5px;
  color: #fff;
}
.footerbar ul li a i {
  display: block;
}
.sp-footer {
  display: none;
}
.sp-footer address {
  text-align: center;
  font-size: 12px;
  padding: 0 0 15px;
}
#footer #footer-inner .copyright {
  font-size: x-small;
  clear: both;
  padding-top: 30px;
  text-align: center;
}
.subcontent .comment-inner {
  width: 1024px;
  margin: 0 auto;
  padding: 48px;
  background-image: url("../images/messe_bg-min.jpg");
  background-color: #FFFFFF;
  background-position: top center;
  background-size: cover;
}
/*各ページ共通*/
.sp {
  display: none !important;
}
.pc {
  display: block !important;
}
section {
  width: 100%;
  padding: 70px 0;
}
.inner_con {
  position: relative;
  z-index: 1;
  width: 1120px;
  margin: 0 auto;
}
.sp-br {
  display: none;
}
.pc-br {
  display: block;
}
.slick-slide img {
  width: 100%;
  height: auto;
}
/*コメントメッセージ部分*/
.flex-box {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.caption {
  font-size: 1.4rem;
  line-height: 1.6;
  margin-top: 8px;
}
.clearfix::after, .row::after {
  display: block;
  visibility: hidden;
  clear: both;
  height: 0;
  content: '.';
}
/*nako*/
.row-flex {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
  align-items: flex-start;
}
/*nako*/
.col2 {
  width: 14.285%;
}
.col3 {
  width: 22.857%
}
.col4 {
  width: 31.428%;
}
.col5 {
  width: 40%;
}
.col6 {
  width: 48.571%;
}
.col7 {
  width: 57.142%;
}
.col8 {
  width: 65.714%;
}
.col9 {
  width: 74.286%;
}
.col10 {
  width: 82.857%
}
.col11 {
  width: 91.696%;
}
.col12 {
  width: 100%;
}
.margin-bottom-0 {
  margin-bottom: 0 !important;
}
.margin-bottom-5 {
  margin-bottom: 5px !important;
}
.margin-bottom-10 {
  margin-bottom: 10px !important;
}
.margin-bottom-15 {
  margin-bottom: 15px !important;
}
.margin-bottom-20 {
  margin-bottom: 20px !important;
}
.margin-bottom-25 {
  margin-bottom: 25px !important;
}
.margin-bottom-30 {
  margin-bottom: 30px !important;
}
.margin-bottom-40 {
  margin-bottom: 40px !important;
}
.margin-bottom-50 {
  margin-bottom: 50px !important;
}
.margin-bottom-60 {
  margin-bottom: 60px !important;
}
.margin-bottom-70 {
  margin-bottom: 70px !important;
}
.margin-bottom-80 {
  margin-bottom: 80px !important;
}
.pb-0 {
  padding-bottom: 0;
}
.pb-20 {
  padding-bottom: 20px;
}
#wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* height: 100vh; */
}
#slider-list {
  width: 100%;
  margin: 0 auto 20px;
}
#slider-list-sub {
  width: 100%;
  margin: 0 auto 20px;
}
.slide-item img {
  width: 100%;
  height: auto;
}
#thumbnail-list {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
/*
#thumbnail-list li {
  height: 80px;
}
#thumbnail-list li img {
  height: 80px;
}
*/
#thumbnail-list-sub {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
}
#thumbnail-list-sub li {
  height: 98px;
}
.thumbnail-item {
  width: 18%;
  flex-wrap: wrap;
  box-sizing: border-box;
  position: relative;
  margin: 0 10px 10px 0;
}
.thumbnail-item:last-child {
  margin-right: 0;
  margin-bottom: 0;
}
/*
.thumbnail-item {
  flex: 0 1 18%;
  flex-wrap: wrap;
  box-sizing: border-box;
  position: relative;
  margin: 0 5px 10px;
}
*/
.thumbnail-item img {
  width: 100%;
  margin: 0 auto;
}
.thumbnail-item::after {
  content: '';
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
  transition: .3s opacity linear;
}
.thumbnail-item.thumbnail-current::after {
  opacity: 0;
}
/* 画像・テキスト変更 */
.name {
  font-size: 2rem;
  font-family: 'Sawarabi Mincho', sans-serif;
}
.name span {
  display: block;
  font-size: 1.4rem;
}
.name b {
  font-size: 1.4rem;
  margin-right: 10px;
}
.sub_name {
  font-size: 1.3rem;
  line-height: 1.5;
  font-weight: bold;
  font-family: 'Sawarabi Mincho', sans-serif;
  letter-spacing: .05em;
}
.sub_name span {
  font-size: 1.6rem;
  margin-left: 5px;
}
.sub_name b {
  font-family: serif;
}
/*h2*/
.d_lead {
  font-size: 2.4rem;
  font-weight: 300;
  font-family: 'Sawarabi Mincho', sans-serif;
  margin-bottom: 60px;
  line-height: 1.5;
}
.single {
  display: block;
  padding: 10px 0;
  margin: 10px 0;
  text-align: center;
  width: 100%;
  font-size: 14px;
  font-weight: bold;
  color: #4b4f50 !important;
  background-color: #c4bfac;
  font-family: 'Sawarabi Mincho', sans-serif;
  border-radius: 3px;
  position: relative;
}
.single i {
  color: #3b61a8;
  position: absolute;
  top: 50%;
  right: 15px;
  -webkit-transform: translate(50%, 0);
  -moz-transform: translate(50%, 0);
  -ms-transform: translate(50%, 0);
  -o-transform: translate(50%, 0);
  transform: translate(0, -50%);
}
.booking_btn {
    display: block;
    padding: 10px 0;
    color: #fff !important;
    background-color: #A48135;
    text-align: center;
    font-family: 'Sawarabi Mincho', sans-serif;
    border-radius: 3px;
}
/*youtube*/
#wrapper .video .inner ul {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
#wrapper .video .inner ul li {
  width: 48%;
}
#wrapper .video .topics {
  line-height: 1;
  width: 180px;
  margin-right: auto;
  margin-bottom: 18px;
  margin-left: auto;
  padding-top: 9px;
  padding-right: 7px;
  padding-bottom: 8px;
  padding-left: 7px;
  text-align: center;
  color: #dad2ba;
  border: 1px solid #dad2ba;
}
/*youtube*/
.movie-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}
.movie-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
/*FlaxBox順番*/
.first {
  order: 1;
}
.second {
  order: 2;
}
.third {
  order: 3;
}
/*共通メインビジュアル*/
#main-visual {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom center;
  display: flex;
  align-items: center;
  height: 50vh;
}
/*客室のご案内*/
.rooms #main-visual {
  background-image: url("../room/images/room_pc.jpg");
}
.oce #main-visual {
  background-image: url("../room/images/oce_pc.jpg");
}
.prem #main-visual {
  background-image: url("../room/images/208main.jpg");
}
.pres #main-visual {
  background-image: url("../room/images/pres_pc.jpg");
}
.luxury #main-visual {
  background-image: url("../room/images/205main.jpg");
}
.pool #main-visual {
  background-image: url("../room/images/105main.jpg");
}
.dx #main-visual {
  background-image: url("../room/images/107main.jpg");
}
.relax #main-visual {
  background-image: url("../room/images/relax_pc.jpg");
}
.mais #main-visual {
  background-image: url("../room/images/mais_pc.jpg");
}
/*お料理*/
.dish #main-visual {
  background-image: url("../dish/images/dish_pc.jpg");
}
/*温泉*/
.spa #main-visual {
  background-image: url("../spa/images/spa_pc.jpg");
}
/*エステ*/
.esthe #main-visual {
  background-image: url("../esthe/images/esthe_pc.jpg");
}
/*館内案内*/
.public #main-visual {
  background-image: url("../public/images/publ_pc.jpg");
}
/*リラクゼーション*/
.chiro #main-visual {
  background-image: url("../public/images/chiro_pc.jpg");
}
/*マリアージュ*/
.mariage #main-visual {
  background-image: url("../mariage/images/mari_pc.jpg");
}
.marage-sub_tit {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 15px;
  font-family: 'Sawarabi Mincho', sans-serif;
}
/*演出家たち*/
.concept #main-visual {
  background-image: url("../concept/images/con_pc.jpg");
}
/*交通*/
.access #main-visual {
  background-image: url("../access/images/acc_pc.jpg");
}
/*スタッフ紹介*/
.staff #main-visual {
  background-image: url("../staff/images/stt_pc.jpg");
}
/*スタッフ紹介*/
.faq #main-visual {
  background-image: url("../faq/images/faq_pc.jpg");
}
/*遊歩道*/
.promenade #main-visual {
  background-image: url("../promenade/images/promenade_pc.jpg");
}
.prome ul {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-wrap: wrap;
  margin: 0 -16px;
}
.prome ul li {
  width: calc(25% - 32px);
  margin: 0 16px;
}
.prome li img {
  margin-bottom: 15px;
}
.prome li h4 {
  font-size: 1.8rem;
  margin-bottom: 10px;
}
.prome .trekking li {
  width: calc(50% - 32px);
  margin: 0 16px;
}
.prome .trekking li p {
  margin-bottom: 25px;
}
.prome .trekking li:last-child, .prome .trekking li p:last-child {
  margin-bottom: 0;
}
/*イベント情報・問い合わせ・ご利用・個人情報*/
.event #main-visual, .inq #main-visual, .guide #main-visual, .policy #main-visual, .not #main-visual {
  background-image: url("../event/images/eve_pc.jpg");
}
/*ｈ1ホワイトタイトル共通*/
#main-visual h1 span {
  display: block;
}
.rooms #main-visual h1, .dish #main-visual h1, .spa #main-visual h1, .public #main-visual h1, .mariage #main-visual h1, .concept #main-visual h1, .access #main-visual h1, .staff #main-visual h1, .event #main-visual h1, .inq #main-visual h1, .guide #main-visual h1, .faq #main-visual h1, .esthe #main-visual h1, .promenade #main-visual h1 {
  font-size: 2.4rem;
  font-family: 'Sawarabi Mincho', sans-serif;
  padding: 10px 40px;
  border-bottom: solid 1px #fff;
  width: 180px;
  text-align: center;
}
#main-visual h1 span {
  display: block;
  line-height: 1.6;
}
.chiro #main-visual h1, .policy #main-visual h1, .not #main-visual h1, .environment #main-visual h1 {
  font-size: 2.4rem;
  font-family: 'Sawarabi Mincho', sans-serif;
  padding: 10px 40px;
  border-bottom: solid 1px #fff;
  width: 230px;
  text-align: center;
}
.concept #main-visual h1, .staff #main-visual h1, .faq #main-visual h1, .promenade #main-visual h1, .environment #main-visual h1 {
  text-shadow: 0 0 4px #000, 0 0 6px #000, 0 0 10px #000;
}
.esthe #main-visual h1 {
  text-shadow: 0 0 2px #555555, 0 0 4px #555555, 0 0 4px #555555;
}
/*よくあるご質問*/
.accordion_dl {
  margin-bottom: 40px;
}
.accordion_dl:last-child {
  margin-bottom: 0;
}
.faq h5 {
  margin-bottom: 10px;
}
.faq dt {
  position: relative;
  margin-bottom: 1px;
  padding-top: 10px;
  padding-right: 24px;
  padding-bottom: 10px;
  padding-left: 24px;
  cursor: pointer;
  color: #e3decc;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: #333768;
  background-color: #383d72;
}
.faq dt:before {
  position: absolute;
  top: 50%;
  right: 15px;
  display: block;
  width: 10px;
  height: 10px;
  margin-top: -8px;
  content: '';
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  background-color: #e3decc;
}
.faq dt:after {
  position: absolute;
  top: 50%;
  right: 15px;
  display: block;
  width: 10px;
  height: 10px;
  margin-top: -13px;
  content: '';
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  background-color: #383d72;
}
.faq dt.active:before {
  margin-top: -2px;
}
.faq dt.active:after {
  margin-top: 3px;
}
.faq dd {
  padding-top: 10px;
  padding-right: 24px;
  padding-bottom: 10px;
  padding-left: 24px;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: #666;
  background-color: #333;
}
/*お問い合わせ*/
.inq_frame {
  margin-bottom: 10px;
  display: flex;
  line-height: 1;
}
.inq_frame-left {
  background-color: #244367;
  width: 25%;
  padding: 15px;
}
.inq_frame-right {
  width: 75%;
  padding: 10px;
  background-color: #dad2ba;
}
.inq_frame-right .text_box {
  padding: 13px 10px 15px 10px;
  border-radius: 0px;
  border: 1px solid #ddd;
  line-height: 1;
}
.inq_box {
  display: flex;
  padding-top: 10px;
}
.inq_box .submit_btn {
  width: 50%;
  padding: 14px 0;
  font-size: 1.5rem;
  border-radius: 3px;
  background-color: #383C70;
  color: #FFFFFF;
  border: none;
  box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.3);
  margin-right: 8px;
  cursor: pointer;
}
.inq_box .reset_btn {
  width: 50%;
  padding: 14px 0;
  font-size: 1.5rem;
  border-radius: 3px;
  background-color: #FFFFFF;
  color: #333333;
  border: solid 1px #CCCCCC;
  box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.3);
  margin-left: 8px;
  cursor: pointer;
}
.submit_btn:hover, .reset_btn:hover {
  opacity: .8;
}
.inq .other {
  line-height: 2.5;
  text-align: center;
}
input[type=text] {
  width: 50%;
  box-sizing: border-box;
  color: #8F8F8F;
}
textarea {
  width: 100%;
  box-sizing: border-box;
}
input::-webkit-input-placeholder {
  color: #8F8F8F;
  font-size: 1.5rem;
}
input:-moz-placeholder {
  color: #8F8F8F;
  font-size: 1.5rem;
}
input:-ms-input-placeholder {
  color: #8F8F8F;
  font-size: 1.5rem;
}
textarea::-webkit-input-placeholder {
  color: #8F8F8F;
  font-size: 1.5rem;
}
textarea:-moz-placeholder {
  color: #8F8F8F;
  font-size: 1.5rem;
}
textarea:-ms-input-placeholder {
  color: #8F8F8F;
  font-size: 1.5rem;
}
/*pagetopボタン*/
#page_top {
  width: 44px;
  height: 44px;
  position: fixed;
  right: 10px;
  bottom: 15px;
  background: #888888;
  opacity: 0.6;
  z-index: 100000;
  border-radius: 50%;
}
#page_top a {
  position: relative;
  display: block;
  width: 44px;
  height: 44px;
  text-decoration: none;
  border-radius: 50%;
}
#page_top a::after {
  content: '▲';
  font-size: 1.4rem;
  font-weight: bold;
  color: #fff;
  position: absolute;
  top: 10px;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
}
/*404*/
.nottxt {
  font-size: 2rem;
  margin-bottom: 20px;
}
.not .menu {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.not .menu ul {
  width: 33.333%;
}
.not .menu ul li {
  font-size: 1.8rem;
  line-height: 2.4;
}
/*お知らせGoTo*/
.outlink {
  margin-bottom: 30px;
}
.outlink a {
  text-decoration: underline;
}
.news-top h3 {
  font-size: 2rem;
}
.news-top ol {
  counter-reset: number; /*数字をリセット*/
  margin-bottom: 10px;
}
.news-top ol li {
  position: relative;
  line-height: 2em;
  padding: 0.5em 0.5em 0.8em 32px;
}
.news-top ol li:before {
  /* 以下数字をつける */
  position: absolute;
  counter-increment: number;
  content: counter(number);
  /*以下数字のデザイン変える*/
  display: inline-block;
  background: #014A99;
  color: #FFFFFF;
  font-family: 'Avenir', 'Arial', sans-serif;
  font-size: 14px;
  border-radius: 50%;
  left: 0;
  width: 25px;
  height: 25px;
  line-height: 25px;
  text-align: center;
}
.note {
  color: #F4B1B2;
}
/*QRコード用*/
.map-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
}
.map-list_item {
  margin: 30px 0;
  width: 90%;
}
.map-list_item a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
  padding: 1em 2em;
  color: #333;
  font-size: 18px;
  font-weight: bold;
  background-color: #DFDFDF;
  transition: 0.3s;
}
.map-list_item a::after {
  content: '';
  width: 5px;
  height: 5px;
  border-top: 3px solid #333333;
  border-right: 3px solid #333333;
  transform: rotate(45deg);
}
.map-list_item a:hover {
  text-decoration: none;
  background-color: #bbbbbb;
}
/*環境*/
.environment #main-visual {
  background-image: url("../promenade/images/promenade_pc.jpg");
}
.commit {
  margin-bottom: 30px;
}
.commit .commit-item {
  font-size: 1.8rem;
  margin-bottom: 10px;
}
.commitment {
  text-align: right;
}
.commitment span {
  display: block;
  font-size: 1.6rem;
}
.project {
  display: flex;
  margin-bottom: 20px;
}
.project-copy {
  width: 50%;
  margin-right: 20px;
}
.project-photo {
  width: 25%;
  margin-right: 10px;
}
.project-photo:last-child {
  margin-right: 0;
}
.sdgs .sdgs-tit {
  font-size: 2.4rem;
  font-weight: 300;
  font-family: 'Sawarabi Mincho', sans-serif;
  margin-bottom: 40px;
}
.sdgs .sdgs-sub_tit {
  line-height: 1.6;
}
.sdgs ul li {
  margin-bottom: 40px;
}
.sdgs-smalllist {
  display: flex;
  flex-wrap: wrap;
}
.youtube-wrap {
  width: 100%;
  aspect-ratio: 16 / 9;
  margin-bottom: 40px;
}
.youtube-wrap iframe {
  width: 100%;
  height: 100%;
}
.translation {
  display: flex;
  padding-bottom: 80px;
  margin-bottom: 80px;
  border-bottom: 1px solid #CCC;
}
.translation-txt {
  width: calc(100% / 2);
  margin-right: 40px;
}
.translation-txt:last-child {
  margin-right: 0
}
.sdgs-smalllist_item {
  width: calc((100% - (40px * 2)) / 3);
  margin-right: 40px;
  display: flex;
  flex-direction: column;
}
.sdgs-smalllist_item:last-child {
  margin-right: 0;
}
.sdgs-smalllist_item p {
  margin-bottom: 30px;
}
.sdgs-smalllist_item .diagram {
  display: block;
  margin-top: auto;
}
.diagram {
  margin-bottom: 80px;
}
/*new予約サーチ*/
.page_tit {
	font-size: 2.2rem;
	margin-bottom: 30px;
	text-align: center;
	font-weight: bold;
}
.page_subtit {
	font-size: 2rem;
	margin-bottom: 20px;
	line-height: 1.6;
}
#booking {
	text-align: center;
	margin: 0 auto;
}
#booking section {
	padding: 10px 0;
}
@media (max-width: 768px) {
  .pc {
    display: none !important;
  }
  .sp {
    display: block !important;
  }
  .room_guide {
    display: none;
  }
  .sp-room-gallery {
    display: block;
  }
  .pc_data {
    display: none;
  }
  .sp_data {
    display: block !important;
  }
  .pc-br {
    display: none;
  }
  #header {
    border-bottom: none;
  }
  #header #header-inner {
    width: 100%;
    padding: 8px 10px;
  }
  #header #header-inner .lang {
    display: none;
  }
  #header #header-inner .sp_lang {
    display: block;
  }
  #header #header-inner .reserve-btn {
    display: none;
  }
  #header #header-inner #btn {
    display: none;
  }
  .headerbar {
    display: block;
  }
  .inner {
    width: 100%;
  }
  .content {
    background-image: none;
  }
  .content .inner .subcopy {
    width: 100%;
    box-sizing: border-box;
    padding: 0 15px;
    margin-bottom: 40px;
  }
  .subcontent .inner {
    width: 96%;
    margin: 0 auto;
  }
  .contact-area {
    display: none;
  }
  #footer .pagetop, #footer #footer-inner {
    display: none;
  }
  .sp-footer {
    display: block;
  }
  section {
    width: 100%;
    padding: 40px 0;
  }
  .inner_con {
    width: 94%;
  }
  .subcontent .comment-inner {
    padding: 30px 0;
    width: 100%;
    box-sizing: border-box;
    background-repeat: repeat;
  }
  /*nako*/
  .row-flex {
    padding: 0 15px;
    flex-direction: column;
  }
  /*nako*/
  .col-s2 {
    width: 14.285%;
  }
  .col-s3 {
    width: 22.857%
  }
  .col-s4 {
    width: 31.428%
  }
  .col-s5 {
    width: 40%;
  }
  .col-s6 {
    width: 48.571%;
  }
  .col-s7 {
    width: 57.142%;
  }
  .col-s8 {
    width: 65.714%
  }
  .col-s9 {
    width: 74.286%;
  }
  .col-s10 {
    width: 82.857%
  }
  .col-s11 {
    width: 91.696%;
  }
  .col-s12 {
    width: 100%;
  }
  .sp_mb-0 {
    margin-bottom: 0 !important;
  }
  .sp_mb-5 {
    margin-bottom: 5px !important;
  }
  .sp_mb-10 {
    margin-bottom: 10px !important;
  }
  .sp_mb-15 {
    margin-bottom: 15px !important;
  }
  .sp_mb-20 {
    margin-bottom: 20px !important;
  }
  .sp_mb-25 {
    margin-bottom: 25px !important;
  }
  .sp_mb-30 {
    margin-bottom: 30px !important;
  }
  .sp_mb-40 {
    margin-bottom: 40px !important;
  }
  .sp_mb-50 {
    margin-bottom: 50px !important;
  }
  .sp_mb-60 {
    margin-bottom: 60px !important;
  }
  .single {
    width: 50%;
  }
  /*h2*/
  .d_lead {
    text-align: center;
  }
  /*FlaxBox順番*/
  .first {
    order: 0;
  }
  .second {
    order: 0;
  }
  .third {
    order: 0;
  }
  .person {
    margin: 40px auto 0;
  }
  .messe {
    margin: 40px auto 0;
  }
  /*youtube*/
  #wrapper .video .inner ul li {
    width: 90%;
    margin: 0 auto;
  }
  /*共通メインビジュアル*/
  #main-visual {
    height: 30vh;
  }
  /*客室のご案内*/
  .rooms #main-visual {
    background-image: url("../room/images/room_sp.jpg");
  }
  .oce #main-visual {
    background-image: url("../room/images/oce_sp.jpg");
  }
  .pres #main-visual {
    background-image: url("../room/images/pres_sp.jpg");
  }
  .prem #main-visual {
    background-image: url("../room/images/208main_sp.jpg");
  }
  .pool #main-visual {
    background-image: url("../room/images/105main_sp.jpg");
  }
  .luxury #main-visual {
    background-image: url("../room/images/205main_sp.jpg");
  }
  .dx #main-visual {
    background-image: url("../room/images/107main_sp.jpg");
  }
  .relax #main-visual {
    background-image: url("../room/images/relax_sp.jpg");
  }
  .mais #main-visual {
    background-image: url("../room/images/mais_sp.jpg");
  }
  /*温泉*/
  .spa #main-visual {
    background-image: url("../spa/images/spa_sp.jpg");
  }
  /*お料理*/
  .dish #main-visual {
    background-image: url("../dish/images/dish_sp.jpg");
  }
  /*エステ*/
  .esthe #main-visual {
    background-image: url("../esthe/images/esthe_sp.jpg");
  }
  /*館内案内*/
  .public #main-visual {
    background-image: url("../public/images/publ_sp.jpg");
  }
  /*リラクゼーション*/
  .chiro #main-visual {
    background-image: url("../public/images/chiro_sp.jpg");
  }
  /*マリアージュ*/
  .mariage #main-visual {
    background-image: url("../mariage/images/mari_sp.jpg");
  }
  /*演出家*/
  .concept #main-visual {
    background-image: url("../concept/images/con_sp.jpg");
  }
  /*交通*/
  .access #main-visual {
    background-image: url("../access/images/acc_sp.jpg");
  }
  /*スタッフ*/
  .staff #main-visual {
    background-image: url("../staff/images/stt_sp.jpg");
  }
  /*スタッフ*/
  .faq #main-visual {
    background-image: url("../faq/images/faq_sp.jpg");
  }
  /*イベント情報・問い合わせ・ご利用・個人情報*/
  .event #main-visual, .inq #main-visual, .guide #main-visual, .policy #main-visual, .not #main-visual {
    background-image: url("../event/images/eve_sp.jpg");
  }
  /*遊歩道*/
  .promenade #main-visual {
    background-image: url("../promenade/images/promenade_sp.jpg");
  }
  /*環境*/
  .environment #main-visual {
    background-image: url("../promenade/images/promenade_sp.jpg");
  }
  .prome {
    padding: 0 15px;
  }
  .prome ul {
    margin: 0 -15px;
  }
  .prome ul li {
    width: calc(50% - 30px);
    margin: 0 15px 40px;
  }
  .prome li:nth-child(n+3) {
    margin-bottom: 0;
  }
  .prome .trekking li {
    width: 100%;
    margin-bottom: 20px;
  }
  /*h1ホワイトタイトル*/
  .rooms #main-visual .inner_con h1, .dish #main-visual .inner_con h1, .spa #main-visual .inner_con h1, .public #main-visual .inner_con h1, .mariage #main-visual .inner_con h1, .concept #main-visual .inner_con h1, .access #main-visual .inner_con h1, .staff #main-visual .inner_con h1, .event #main-visual .inner_con h1, .inq #main-visual .inner_con h1, .faq #main-visual .inner_con h1, .promenade #main-visual .inner_con h1 {
    font-size: 1.8rem;
    width: 130px;
    padding-left: 20px;
    padding-right: 20px;
  }
  .chiro #main-visual .inner_con h1, .guide #main-visual .inner_con h1, .policy #main-visual .inner_con h1, .not #main-visual .inner_con h1, .environment #main-visual .inner_con h1 {
    font-size: 1.8rem;
    width: 170px;
    padding-left: 20px;
    padding-right: 20px;
  }
  /*h1ブラックタイトル*/
  .esthe #main-visual .inner_con h1 {
    font-size: 2rem;
    width: 120px;
    padding-left: 20px;
    padding-right: 20px;
  }
  /*ワインマリアージュ・スタッフページ*/
  .mariage .content .inner .row-flex, .mariage .content .inner .flex-box, .staff .content .inner .flex-box {
    flex-direction: row;
    display: flex;
  }
  .mariage .d_lead {
    margin-bottom: 40px;
    font-size: 2rem;
  }
  .mariage .subcontent .d_lead {
    text-align: center;
  }
  /*お問い合わせ*/
  .inq_frame {
    flex-direction: column;
  }
  .inq_frame-left, .inq_frame-right {
    width: auto;
  }
  .inq_frame-right .text_box {
    width: 100%;
  }
  /*プライバシーポリシー*/
  .policy {
    margin-bottom: 30px;
  }
  /*404*/
  .not .menu ul li {
    font-size: 1.6rem;
  }
  /*お知らせGoTo*/
  .news-top h3 {
    line-height: 1.6;
  }
  /*環境*/
  .translation {
    padding-bottom: 40px;
    margin-bottom: 40px;
    flex-direction: column
  }
  .translation-txt {
    width: 100%;
    margin-right: 0;
    margin-bottom: 40px;
  }
  .translation-txt:last-child {
    margin-bottom: 0;
  }
  .project {
    flex-direction: column;
    margin-bottom: 20px;
  }
  .project-copy {
    width: 100%;
  }
  .project-photo {
    width: 100%;
    margin-bottom: 10px;
  }
  .project-photo:last-child {
    margin-bottom: 0;
  }
  .sdgs .sdgs-tit {
    line-height: 1.8;
  }
  .sdgs-smalllist_item {
    width: calc((100% - 15px) / 2);
    margin-right: 15px;
  }
  .sdgs-smalllist_item:nth-of-type(even) {
    margin-right: 0;
  }
  .sdgs-smalllist_item p {
    margin-bottom: 20px;
  }
  .diagram {
    margin-bottom: 50px;
  }
}
@media (max-width: 480px) {
  /*nako*/
  .col-xs3 {
    width: 22.857%
  }
  .col-xs4 {
    width: 31.428%
  }
  .col-xs5 {
    width: 40%;
  }
  .col-xs6 {
    width: 48.571%;
  }
  .col-xs7 {
    width: 57.142%;
  }
  .col-xs8 {
    width: 65.714%
  }
  .col-xs9 {
    width: 74.286%;
  }
  .col-xs10 {
    width: 82.857%
  }
  .col-xs11 {
    width: 91.696%;
  }
  .col-xs12 {
    width: 100%;
  }
  .col-xs12:last-child {
    margin-bottom: 0;
  }
  .content h4 img {
    width: 60%;
  }
  .sp-br {
    display: block;
  }
  /*h2*/
  .content .inner .pc_tit, .d_lead {
    font-size: 2rem;
  }
  .content .inner .pc_tit b {
    display: block;
  }
  /*コメントメッセージ部分*/
  .flex-box {
    display: block;
  }
  .thumbnail-item {
    width: 30%;
  }
  .single {
    width: 60%;
  }
  /*ワインマリアージュページ*/
  .mariage .subcontent .comment-inner .col-xs8, .mariage .subcontent .comment-inner .col-s8 {
    margin: 0 auto;
  }
  /*コンセプト*/
  .concept .subcontent .sub_name {
    margin-bottom: 30px;
  }
  .inq .other {
    text-align: left;
  }
  /*404*/
  .not .menu {
    flex-direction: column;
  }
  .not .menu ul {
    width: 100%;
  }
  .not .menu ul li {
    line-height: 2;
  }
  /*遊歩道*/
  .prome ul li {
    width: 100%;
  }
  .prome ul li:nth-child(3) {
    margin-bottom: 40px;
  }
}
