@charset "UTF-8";

/*
Theme Name: breezeanddog
Description: This is breezeanddog site original theme.
Author: BookingResort
*/
html {
  font-size: 62.5%;
}

body {
  font-family: "Zen Old Mincho", serif;
  position: relative;
}

html,
body {
  width: 100%;
}

h1,
h2 {
  font-size: 3.6rem;
  color: #3E3E3E;
  text-align: center;
  font-family: "Zen Old Mincho", serif;
  letter-spacing: 0.5rem;
}

@media screen and (max-width:896px) {
  html {
    overflow-x: hidden;
  }

  h1,
  h2 {
    font-size: 2.6rem;
  }
}

h3 {
  font-size: 2.0rem;
  color: #222;
}

p {
  color: #222222;
  font-size: 14px;
  font-style: normal;
  letter-spacing: 3px;
  line-height: 1.8;
  /*margin-top: 1px;
  padding-top: 4px;
  padding-left: 1px;
  padding-right: 2px;*/
  border-bottom-width: 1px;
  border-top-left-radius: 1px;
  border-top-right-radius: 4px;
}

ul li {
  font-size: 1.5rem;
  color: #333;
}

a {
  color: #222;
  text-decoration: none;
  transition: all 0.3s;
}

a.a_link {
  text-decoration: underline;
}

a:hover {
  opacity: 0.8;
}

a:hover>img {
  opacity: 1;
}

.ta-c {
  text-align: center;
}

img {
  display: block;
}

@media screen and (max-width:896px) {
  img {
    display: block;
    max-width: 100%;
  }
}

i.fa {
  display: inline;
}

header {
  display: block;
  justify-content: space-between;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 3333;
}

.header {
  position: fixed;
  top: 0;
  width: 100%;
  background: #fff;
  transition: all 0.5s ease;
}

/*.hidden {
  background: #222222;
  transition: all 0.5s ease;
}*/
.cl_white {
  color: #fff;
}

.btn_tp {
  position: relative;
  display: inline-block;
}

.btn_tp::before {
  content: '';
  width: 6px;
  height: 6px;
  border: 0px;
  border-top: solid 1px #fff;
  border-right: solid 1px #fff;
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  top: 50%;
  right: 23px;
  margin-top: -4px;
}

@media screen and (max-width:896px) {
  header {
    display: flex;
    height: 60px;
  }
}

header h1,
header .u_logo {
  max-width: 1400px;
  margin: 0 auto;
  height: 80px;
}

header h1 {
  font-size: 1.4rem;
  text-align: center;
  margin-top: 8px;
}

@media screen and (max-width:896px) {

  header h1,
  header .u_logo {
    height: 60px;
  }

  header h1 {
    font-size: 1.2rem;
    margin-top: 0;
  }
}

header h1 img,
header .u_logo img {
  margin: 0 10px;
  width: 102px;
  height: auto;
  display: inline;
}

header h1 .logo_image,
header .u_logo .logo_image {
  position: relative;
}

header h1 .logo_image a,
header .u_logo .logo_image a {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  z-index: 9999;
}

@media screen and (max-width:896px) {

  header h1 img,
  header .u_logo img {
    width: 63px;
    margin: 2% 0 1%;
    vertical-align: center;
  }

  header h1 .logo_image,
  header .u_logo .logo_image {
    position: static;
  }

  header h1 .logo_image a,
  header .u_logo .logo_image a {
    position: static;
  }
}

/* メニューボタン */
nav {
  position: absolute;
  right: 0;
  top: 0;
}

/* 250604 */

.drawer-menu_pc {
  max-width: 1000px;
  margin: 0 auto;
  padding: 13px 5px 0 0;
  height: auto;
}

.drawer-menu_pc ul {
  display: flex;
  float: right;
  margin-right: 75px;
}

.drawer-menu_pc ul ul {
  display: block;
}

.drawer-menu_pc ul li {
  position: relative;
}

.drawer-menu_pc ul li a {
  display: block;
  text-decoration: none;
  padding: 20px 15px;
  transition: all .3s;
  border-radius: 10px;
}
li.orangebtn a {
  display: block;
  text-decoration: none;
  padding: 10px 15px;
  transition: all .3s;
  background-color: #eda44a;
}
.drawer-menu_pc ul li.has-child::before {
  content: '';
  position: absolute;
  left: 12px;
  top: 25px;
  width: 6px;
  height: 6px;
  border-top: 2px solid #333;
  border-right: 2px solid #333;
  transform: rotate(135deg);
}

.drawer-menu_pc ul li.has-child {
  padding: 20px 30px;
  margin-right: 20px;
  background-color: #eda44a;
  height: 16px;
}

.drawer-menu_pc li.has-child ul {
  /*絶対配置で位置を指定*/
  position: absolute;
  left: 0;
  top: 62px;
  z-index: 9999;
  background: #77979A;
  width: 200px;
  /*はじめは非表示*/
  visibility: hidden;
  opacity: 0;
  transition: all .3s;
}

.drawer-menu_pc li.has-child:hover>ul,
.drawer-menu_pc li.has-child ul li:hover>ul,
.drawer-menu_pc li.has-child:active>ul,
.drawer-menu_pc li.has-child ul li:active>ul {
  visibility: visible;
  opacity: 1;
}

.drawer-menu_pc li.has-child ul li a {
  color: #fff;
  border-bottom: solid 1px rgba(255, 255, 255, 0.6);
  line-height: 1.5;
}

.drawer-menu_pc li.has-child ul li:last-child a {
  border-bottom: none;
}

.drawer-menu_pc li.has-child ul li a:hover,
.drawer-menu_pc li.has-child ul li a:active {
  background: #fff;
  color: #77979A;
}


.insta {
  width: 40px;
  margin: 9px 5px auto;
}

.insta img {
  width: 100%;
}

@media screen and (min-width: 897px) {
  .drawer-menu_pc {
    width: 80%;
  }
}

@media screen and (max-width: 896px) {
  .insta {
    margin: 0px auto;
  }

  .hamburger_menu_btn .btn_link p a {
    width: 203px;
  }

  .br_sp .insta {
    margin-top: 20px;
  }
}

/* 250604 END*/
/*.menu_btn {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	position: relative;
	height: 100px;
	padding: 0 2em;
	background: #595757;
	margin-left: auto;
	cursor: pointer;
}

@media screen and (max-width:896px) {
.menu_btn {
	height: 60px;
}
}*/
.navbar_toggle {
  z-index: 20;
}

.navbar_toggle_icon {
  position: relative;
  display: block;
  height: 2px;
  width: 52px;
  background: #fff;
  -webkit-transition: ease .5s;
  transition: ease .5s;
}

@media screen and (max-width:896px) {
  .navbar_toggle_icon {
    width: 30px;
  }
}

.navbar_toggle_icon:nth-child(1) {
  top: 0;
}

.navbar_toggle_icon:nth-child(2) {
  margin: 14px 0;
}

.navbar_toggle_icon:nth-child(3) {
  top: 0;
}

.navbar_toggle.open .navbar_toggle_icon:nth-child(1) {
  top: 15px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.navbar_toggle.open .navbar_toggle_icon:nth-child(2) {
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  opacity: 0;
}

.navbar_toggle.open .navbar_toggle_icon:nth-child(3) {
  top: -15px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.menu_list {
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
  -webkit-transition: ease .5s;
  transition: ease .5s;
  z-index: 250;
  width: 100%;
  background: #fff;
  position: absolute;
  top: 0;
}

.menu_list li {
  border-bottom: 1px solid #ccc;
  font-size: 1.6rem;
}

.menu_list li a {
  display: block;
  padding: 30px;
}

@media screen and (max-width:896px) {
  .menu_list li a {
    padding: 24px;
  }
}

.menu_list.open {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  top: 100px;
}

@media screen and (max-width:896px) {
  .menu_list.open {
    top: 60px;
  }
}

/*スクロール*/
.scrolldown {
  /*描画位置※位置は適宜調整してください*/
  position: absolute;
  bottom: 13%;
  right: 3%;
  z-index: 900;
}

/*Scrollテキストの描写*/
.scrolldown span {
  /*描画位置*/
  position: absolute;
  left: -7px;
  bottom: 70px;
  /*テキストの形状*/
  color: #eee;
  font-size: 1rem;
  letter-spacing: 0.05em;
  /*縦書き設定*/
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
}

/* 矢印の描写 */
.scrolldown:before {
  content: "";
  /*描画位置*/
  position: absolute;
  bottom: 0;
  right: 2px;
  /*矢印の形状*/
  width: 2px;
  height: 7px;
  border-radius: 5px;
  background: #eee;
  transform: skewX(-140deg);
}

.scrolldown:after {
  content: "";
  /*描画位置*/
  position: absolute;
  bottom: 0;
  right: 0;
  /*矢印の形状*/
  width: 1px;
  height: 60px;
  background: #eee;
}

/* 共通項目 */
.container {
  max-width: 1400px;
  margin: 0 auto;
}

.foot_container {
  max-width: 1120px;
  margin: 0 auto;
}

.br_sp {
  display: none;
}

.br_pc {
  display: block;
}

@media screen and (max-width:896px) {
  .br_sp {
    display: block;
  }

  .br_pc {
    display: none;
  }

  .container {
    width: 96%;
  }
}

a.scroll_point {
  height: 1px;
  margin-top: -80px;
  padding-top: 80px;
  display: block;
  color: #fff;
}

@media screen and (max-width: 896px) {
  a.scroll_point {
    display: block;
    margin-top: 0;
    padding-top: 0;
  }
}

h2.btm_border {
  position: relative;
}

h2.btm_border:before,
h2.btm_border:after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 51px;
  height: 3px;
}

h2.btm_border:before {
  left: 50%;
  margin-left: -51px;
  background: #2D2D2D;
}

h2.btm_border:after {
  right: 50%;
  margin-right: -51px;
  background: #b4b5b5;
}

h2.btm_stripe {
  position: relative;
}

h2.btm_stripe:after {
  position: absolute;
  content: "";
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  width: auto;
  height: 8px;
  background: url(img/stripe.png) no-repeat;
}

.h_bar {
  position: relative;
  margin-bottom: 1em;
  text-align: center;
}

.h_bar:before {
  content: '';
  position: absolute;
  bottom: -18px;
  display: inline-block;
  width: 50px;
  height: 2px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: black;
  border-radius: 10px;
}

.h_bar_w {
  position: relative;
  margin-bottom: 1em;
  text-align: center;
}

.h_bar_w:before {
  content: '';
  position: absolute;
  bottom: -18px;
  display: inline-block;
  width: 50px;
  height: 3px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: white;
  border-radius: 10px;
}

.bk_gr {
  background-color: #EDEDED;
}

.mincho {
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
}

h2.top {
  font-size: 2.6rem;
  margin: 45px 0 60px;
  line-height: 1.7;
  color: #333;
}

@media screen and (max-width: 896px) {
  h2.top {
    margin: 10px 0 30px;
    font-size: 2rem;
  }
}

span.en {
  letter-spacing: 0.1em;
  font-weight: normal;
  font-size: 1.5rem;
  color: #CFD8E6;
  font-family: "Zen Old Mincho", serif;
  font-weight: thin100;
}

span.tax_in {
  font-size: 1.4rem;
  color: #555;
}

p.p_caution {
  margin: 20px auto;
  text-align: center;
}

.btn_orange {
  text-align: center;
}

.btn_orange p {
  text-align: center;
  display: inline-block;
  margin: 25px auto 0;
  line-height: 1.5 !important;
}

.btn_orange p a {
  color: #fff;
  background: #b4b5b5;
  border-radius: 24px;
  padding: 12px 30px;
  display: block;
  transition: all 0.2s;
  /*  border: 1px solid #595757;*/
}

.btn_link p a {
  width: 190px;
  color: #595757;
  background: #fff;
  border-radius: 24px;
  padding: 4px 30px;
  display: block;
  transition: all 0.2s;
  text-align: center;
  margin: 0 auto;
  font-weight: bold;
}

.btn_link.in_room p a {
  width: 290px;
  color: #fff;
  background: #222222;
  border-radius: 24px;
  padding: 4px 30px;
  display: block;
  transition: all 0.2s;
  text-align: center;
  margin: 0 auto;
  font-weight: bold;
}

.btn_link p a.terr_chiba {
  width: 170px;
  padding: 8px 30px;
  position: absolute;
  right: 0;
}

@media screen and (max-width:896px) {
  .btn_link p a.terr_chiba {
    width: 170px;
    padding: 8px 30px;
    position: static;
    margin: 0 auto;
  }
}

.terr_chiba::before {
  content: '';
  width: 6px;
  height: 6px;
  border: 0px;
  border-top: solid 1px #A7A7A7;
  border-right: solid 1px #A7A7A7;
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  top: 50%;
  right: 20px;
  margin-top: -4px;
}

.btn_link p a {
  background-color: #a38564;
  color: #fff;
  font-weight: 300;
  border: 1px solid #a38564;
}

.btn_link p a:hover {
  background-color: #EFEFEF;
  color: #666;
  border: 1px solid #a7c2c0;
  opacity: 1;
}

.btn_bw p a {
  color: #fff;
  background-color: #333;
  font-weight: 500;
}

.btn_bw p a:hover {
  background-color: #fff;
  color: #333;
  opacity: 1;
}

.btn_link_color p a {
  width: 170px;
  color: #555;
  background: rgba(225, 225, 225, 0.9);
  border-radius: 24px;
  padding: 12px 30px;
  display: block;
  transition: all 0.2s;
  text-align: center;
  font-weight: 500;
  margin: 0 auto;
}

.btn_link_color p a:hover {
  color: #fff;
  border: 1px solid #fff;
}

.btn_link_color2 p a {
  width: 150px;
  color: #555;
  background: rgba(225, 225, 225, 0.95);
  border-radius: 24px;
  padding: 12px 30px;
  display: block;
  transition: all 0.2s;
  text-align: center;
  font-weight: 500;
  margin: 0 auto;
}

.btn_link_color2 p a:hover {
  background-color: rgba(109, 109, 109, 1.00);
  color: #fff;
  border: 1px solid #fff;
}

.pad_80 {
  padding: 80px 0;
}

.pl_25 {
  padding-left: 25px;
}

.mt_10 {
  margin-top: 10px;
}

.mt_10 {
  margin-top: 10px;
}

.mt_15 {
  margin: 15px;
}

.mt_20 {
  margin-top: 20px;
}

.mt_25 {
  margin-top: 25px;
}

.mt_30 {
  margin-top: 30px;
}

.mt_40 {
  margin-top: 40px;
}

.mt_50 {
  margin-top: 50px;
}

.mt_60 {
  margin-top: 60px;
}

.mt_80 {
  margin-top: 16px;
}

.mt_120 {
  margin-top: 120px;
}

.mb_10 {
  margin-bottom: 10px;
}

.mb_15 {
  margin-bottom: 15px;
}

.mb_20 {
  margin-bottom: 20px;
  font-famiy: 'Josefin Sans', sans-serif;
}

.mb_25 {
  margin-bottom: 25px;
}

.mb_30 {
  margin-bottom: 30px;
}

.mb_40 {
  margin-bottom: 40px;
}

.mb_50 {
  margin-bottom: 50px;
}

.mb_60 {
  margin-bottom: 60px;
}

.mb_80 {
  margin-bottom: 80px;
}

.mb_120 {
  margin-bottom: 60px;
}

.ta_c {
  text-align: center;
}

.wid_ful {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

@media screen and (max-width:896px) {
  .sp_mb_40 {
    margin-bottom: 40px;
  }

  .sp_mt_30 {
    margin-top: 30px;
  }

  .sp_mb_30 {
    margin-bottom: 30px;
  }
}

/* フッター  */
.top_dogfacility h2 {
  margin-bottom: 30px;
}

.top_dogfacility .cate {
  text-align: center;
}

.top_dogfacility .cate p {
  position: relative;
  text-align: center;
  font-size: 2.0rem;
  margin: 0 auto;
  display: inline-block;
  padding: 0 30px;
}

.top_dogfacility .cate p span {
  background: #f1f4f4;
  padding: 0 30px;
  z-index: 20;
  position: relative;
}

.top_dogfacility .cate p:before {
  content: "";
  height: 1px;
  background: #ccc;
  width: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}

.top_dogfacility ul {
  justify-content: space-between;
  margin-bottom: 50px;
  display: -webkit-box;
  /* old Android */
  display: -webkit-flex;
  /* Safari etc. */
  display: -ms-flexbox;
  /* IE10        */
  display: flex;
  -webkit-flex-wrap: wrap;
  /* Safari etc. */
  -ms-flex-wrap: wrap;
  /* IE10        */
  flex-wrap: wrap;
}

.top_dogfacility ul li {
  display: flex;
  width: 48%;
  background: #fff;
  position: relative;
  margin-bottom: 20px;
}

@media screen and (max-width:896px) {
  .top_dogfacility ul {
    display: flex;
    margin-bottom: 20px;
    -webkit-flex-wrap: wrap;
    /* Safari etc. */
    -ms-flex-wrap: wrap;
    /* IE10        */
    flex-wrap: wrap;
  }

  .top_dogfacility ul li {
    flex-direction: column;
    margin-bottom: 30px;
  }
}

.top_dogfacility ul li img {
  width: 100%;
  min-width: 200px;
}

@media screen and (max-width:896px) {
  .top_dogfacility ul li img {
    min-width: 100%;
  }
}

.top_dogfacility ul li h3 {
  padding: 30px 14px 14px;
  text-align: center;
  margin-bottom: 6px;
  font-size: 1.6rem;
  font-weight: bold;
}

.top_dogfacility ul li p {
  padding: 0 14px 14px;
  font-size: 1.4rem;
  line-height: 1.8;
}

.top_dogfacility ul li p.comingsoon {
  font-size: 2rem;
  font-weight: bold;
  color: #fff;
  position: absolute;
  top: 70px;
  left: 15px;
}

@media screen and (max-width:896px) {
  .top_dogfacility ul li p.comingsoon {
    font-size: 1.8rem;
    top: 50px;
    left: 5px;
  }
}

/*リゾグラ*/
#resort-rg {
  background: #ebddce;
  padding: 80px 0 40px;
}

.rg_group h3 {
  text-align: center;
  font-size: 2.6rem;
  margin-bottom: 30px;
  color: #fff;
  line-height: 2;
  font-weight: 500;
}

.rg_group h3 span {
  color: #fff;
  font-size: 16px;
}

.rg_group h4 {
  color: #333;
}

.rg_group p {
  color: #fff;
}

.rg_group .box {
  display: flex;
  flex-direction: column;
}

.rg_group .box ul {
  display: flex;
  -webkit-flex-wrap: wrap;
  /* Safari etc. */
  -ms-flex-wrap: wrap;
  /* IE10        */
  flex-wrap: wrap;
}

@media screen and (max-width:896px) {
  .rg_group .box ul {
    flex-direction: column;
  }
}

.rg_group .box p.type {
  text-align: center;
  padding: 8px 0;
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: #fff;
}

.rg_group .box li {
  display: flex;
  margin-bottom: 32px;
  margin-left: 8px;
  width: 32%;
}

@media screen and (max-width:896px) {
  .rg_group .box li {
    width: 96%;
  }
}

.rg_group .box li img {
  width: 65px;
  height: 45px;
  object-fit: cover;
}

.rg_group .box li .txt {
  padding: 5px 0 0 10px;
  width: 96%;
}

.rg_group .box li .txt p {
  font-size: 1.3rem;
  line-height: 1.4;
  margin-bottom: 5px;
  color: #fff;
}

.rg_group .box li .txt h3 {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.5;
  color: #fff;
}

.rg_group .rg_details {
  display: flex
}

@media screen and (max-width:896px) {
  .rg_group .rg_details {
    flex-direction: column;
  }
}

.rg_group .rg_details dl {
  float: left;
  padding-right: 3%;
  width: 32%;
  font-size: 14px;
  line-height: 1.5;
}

@media screen and (max-width:896px) {
  .rg_group .rg_details dl {
    width: 96%;
    margin: 0 auto;
  }
}

.rg_group .rg_details dl:last-child {
  padding-right: 0;
}

.rg_group .rg_details dt {
  height: 1.6em;
  font-weight: bold;
  text-align: center;
  padding: 20px 0 10px;
  font-size: 16px;
  text-decoration-line: underline;
  color: #333;
}

.rg_group .rg_details dd {
  color: #333;
}

@media screen and (max-width:896px) {
  .rg_group .rg_details dt {
    text-align: left;
  }
}

.rg_group .rg_details dd {
  margin-left: 0px;
}

.grande {
  width: 90%;
  margin: 0 auto 60px;
}

.grande img {
  width: 100%;
  height: 100%;
}

footer {
  text-align: right;
  padding: 80px 10px 0;
  background-color: #fff;
  background-position: top;
  background-size: cover;
}

footer .f_menu {
  display: flex;
  justify-content: space-between;
  padding-bottom: 60px;
}

@media screen and (max-width:896px) {
  footer {
    text-align: center;
    padding: 68px 0 68px;
  }

  footer .f_menu {
    flex-direction: column;
  }
}

#footer-menu a {
  color: #222222;
  display: block;
  font-size: 15px;
}

.menu-item-1266:hover {
  background: #80756f;
  border: 1px solid #80756f;
}

footer h2 img {
  text-align: left;
  font-size: 32px;
}

footer p {
  text-align: left;
  color: #222222;
}

footer .form_btn {
  border: solid 1px #555;
  padding: 3px 15px;
  width: 220px;
}

/*footer p.company {
    color: #ffffff;
  }*/
#footer-menu ul {
  max-width: 800px;
}

@media screen and (max-width:896px) {
  footer h2 {
    text-align: center;
  }

  footer p {
    text-align: center;
  }

  footer .form_btn {
    margin: 30px auto;
  }

  #footer-menu ul {
    max-width: 800px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

  #footer-menu ul li {
    padding: 10px;
    margin-bottom: 10px;
  }
}

footer .info {
  margin-bottom: 50px;
}

footer .info img {
  width: 300px;
}

footer .info p.tel {
  font-size: 2.2rem;
}

footer .info p.time {
  font-size: 1.4rem;
  font-weight: 200;
}

footer .info p.checkin {
  font-size: 1.4rem;
  font-weight: 200;
}

footer .info .btn_orange a {
  border-radius: 0;
  padding: 12px 50px;
}

footer p.address {
  margin-bottom: 20px;
}

footer a {
  color: #333;
}

footer p.tel>a {
  color: #222222;
}

footer p.company {
  font-size: 13px;
  padding-right: 15px;
  text-align: center;
}

footer .form_btn {
  border: solid 1px #222;
  padding: 3px 15px;
  width: 220px;
}

@media screen and (max-width:896px) {
  footer .form_btn {
    margin: 0 auto;
    margin-bottom: 5px;
  }
}

.ftt_rese {
  text-align: left;
}

.ftt_rese:hover {
  transform: scale(1.1, 1.1);
}

.ftt_rese a {
  font-size: 1.5rem;
  text-align: center;
  background: #eda44a;
  border-radius: 5px;
  margin-left: 8px;
  padding: 10px 28px;
}

.reserve_pc {
  position: fixed;
  bottom: 50px;
  right: 0;
  width: 200px;
  height: 132px;
  padding: 8px;
  z-index: 3333;
  background: #222222;
  color: #fff;
  text-align: center;
}

@media screen and (max-width:896px) {
  footer p.company {
    padding-right: 0;
    text-align: center;
  }

  .reserve_pc {
    display: none;
  }

  .ftt_rese {
    margin: 0 auto 20px;
  }
}

.reserve_pc p {
  font-size: 1.8rem;
  color: #fff;
  margin-bottom: 5px;
  margin-top: 5px;
}

.reserve_pc a {
  font-size: 1.6rem;
  color: #fff;
  padding: 8px;
}

.reserve_pc .reserve_text .telbox {
  border: 1px solid #fff;
  padding: 8px 5px 7px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 162px;
  margin: 0 auto;
}

.reserve_pc .reserve_text .telbox a {
  padding: 0;
}

.reserve_pc .reserve_text a.reserve_teltxt {
  font-size: 1.4rem;
  padding-right: 4px;
}

.reserve_pc a.to489,
a.to489-1 {
  font-size: 1.4rem;
  color: #222222;
  margin-top: 7px;
  padding: 8px 31px;
  background-color: #eda44a;
  border-radius: 5px;
}

a.to489-1 {
  padding: 8px 18px;
  background-color: #5dc0c1;
}

.reserve_pc .reserve_to489 {
  padding: 10px 0;
  margin-top: 12px;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.reserve_pc p span {
  display: block;
  font-size: 60%;
}

.reserve_to489:hover {
  transform: scale(1.1, 1.1);
}

#footer_sp {
  display: none;
}

@media screen and (max-width:896px) {
  #footer_sp {
    display: block;
  }

  footer .info p.tel {
    line-height: 1.5;
    font-size: 2.3rem;
  }

  footer .info img {
    margin: 10px auto;
  }

  footer .info p.time {
    font-size: 1.4rem;
    padding: 10px 14px;
  }

  .reserve_sp {
    width: 100%;
    height: 60px;
    display: flex;
    position: fixed;
    bottom: 0;
    right: 0;
    z-index: 100;
    background: #eda44a;
    text-align: center;
  }

  .reserve_sp p {
    padding-top: 12px;
    text-align: center;
  }

  .reserve-2 p {
    padding-top: 2px;
  }

  .reserve_sp p a {
    color: #333;
    display: block;
    line-height: 1.4;
    font-size: 1.4rem;
  }

  /*.reserve_web, .reserve_tel, .reserve_btn {width: 20%;}QA増えたらこっち*/
  .reserve_web,
  .reserve_tel,
  .reserve_btn {
    width: 50%;
  }

  .reserve-2 {
    background-color: #f6d2a0;
  }

  .reserve_btn:last-of-type {
    border-right: none;
  }

  .reserve_btn {
    background: #f1f1f1;
  }

  .drawer-menu {
    box-sizing: border-box;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 30%;
    min-width: 300px;
    height: 100%;
    padding: 50px 0;
    background: #daebea;
    -webkit-transition-property: all;
    transition-property: all;
    -webkit-transition-duration: .5s;
    transition-duration: .5s;
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
    -webkit-transform-origin: right center;
    -ms-transform-origin: right center;
    transform-origin: right center;
    -webkit-transform: perspective(500px) rotateY(-90deg);
    transform: perspective(500px) rotateY(-90deg);
    opacity: 0;
    z-index: 999 !important;
  }

  .drawer-menu .menu {
    overflow-y: auto;
    height: 100%;
  }

  .menu-item {
    display: block;
  }

  .drawer-menu li {
    text-align: center;
  }

  #menu-item-155 {
    background-color: #eda44a;
  }

  #menu-item-13354 {
    background-color: #5dc0c1;
  }

  .drawer-menu li a {
    display: block;
    height: 40px;
    line-height: 40px;
    font-size: 15px;
    -webkit-transition: all .8s;
    transition: all .8s;
    color: #333;
  }

  .drawer-menu li a:hover {
    color: #1a1e24;
    background: #fff;
  }

  /* ------------------------------------------------ checkbox */
  .check {
    display: none;
  }

  /* ------------------------------------------------ menu button スマホ版メニューの位置*/
  .menu-btn {
    position: fixed;
    display: block;
    top: 18px;
    right: 6%;
    width: 30px;
    height: 10px;
    font-size: 10px;
    text-align: center;
    cursor: pointer;
    z-index: 9999;
  }

  .bar {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 30px;
    height: 2px;
    background: #a7c2c0;
    /*box-shadow: 1px 1px 1px #666;*/
    -webkit-transition: all .5s;
    transition: all .5s;
    -webkit-transform-origin: left top;
    -ms-transform-origin: left top;
    transform-origin: left top;
  }

  .bar.middle {
    top: 10px;
    opacity: 1;
  }

  .bar.bottom {
    top: 20px;
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
  }

  .menu-btn:hover .bar {
    background: #999;
  }

  .close-menu {
    position: fixed;
    top: 0;
    right: 30%;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0);
    -webkit-transition-property: all;
    transition-property: all;
    -webkit-transition-duration: .3s;
    transition-duration: .3s;
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
    visibility: hidden;
    opacity: 0;
  }

  /* ------------------------------------------------ checked */
  .check:checked~.drawer-menu {
    -webkit-transition-delay: .3s;
    transition-delay: .3s;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    opacity: 1;
    z-index: 2;
  }

  .check:checked~.contents {
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
    -webkit-transform: translateX(-300px);
    -ms-transform: translateX(-300px);
    transform: translateX(-300px);
  }

  .check:checked~.menu-btn .bar.top {
    width: 43px;
    top: -7px;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }

  .check:checked~.menu-btn .bar.middle {
    opacity: 0;
  }

  .check:checked~.menu-btn .bar.bottom {
    width: 43px;
    top: 22px;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }

  .check:checked~.close-menu {
    -webkit-transition-duration: 1s;
    transition-duration: 1s;
    -webkit-transition-delay: .3s;
    transition-delay: .3s;
    background: rgba(0, 0, 0, .5);
    visibility: visible;
    opacity: 1;
    z-index: 3;
  }
}

/*注意！！以下PC用ヘッダーメニュー*/
@media screen and (min-width:897px) {
  .drawer-menu {
    width: 100%;
    height: 80px;
  }

  .menu {
    max-width: 700px;
    float: right;
    padding-left: 30px;
  }

  .menu-top-container {
    max-width: 1400px;
    margin: 0 auto;
  }

  #menu-item-155 {
    background: #eda44a;
    border-radius: 5px;
    border: 1px solid #eda44a;
    margin-left: 8px;
    padding: 22px 70px 7px;
    -webkit-transition: all .3s;
    transition: all .3s;
  }

  #menu-item-13354 {
    background: #5dc0c1;
    border-radius: 5px;
    border: 1px solid #5dc0c1;
    margin-left: 8px;
    padding: 22px 70px 7px;
    -webkit-transition: all .3s;
    transition: all .3s;
  }

  #menu-item-155 {
    padding: 22px 50px 7px;
  }

  #menu-item-155:hover {
    background: #eda44a;
    border: 1px solid #eda44a;
    transform: scale(1.1, 1.1);
  }

  #menu-item-13354:hover {
    background: #5dc0c1;
    border: 1px solid #5dc0c1;
    transform: scale(1.1, 1.1);
  }

  #menu-item-155 a,
  #menu-item-13354 a {
    color: #333;
  }

  #menu-item-10090 a {
    top: -3px;
  }

  #menu-item-8539,
  #menu-item-2085,
  #menu-item-3952 {
    padding: 20px 30px 10px;
  }

  .menu-item {
    display: inline-block;
    padding: 20px 23px 10px;
    text-align: center;
    margin: 10px 7px 0px 9px;
    position: relative;
  }

  .menu-item a {
    color: #222222;
    font-family: "Zen Old Mincho", serif;
    font-size: 15px;
    display: block;
    position: absolute;
    top: 7px;
    left: 0;
    width: 100%;
    height: 100%;
  }

  .check,
  .menu-btn {
    display: none;
  }

  #menu-item-2084 {
    padding: 20px 60px 10px;
  }

  #menu-item-2086 {
    padding: 20px 35px 10px;
  }

  #menu-item-10422 {
    padding: 20px 28px 10px;
  }
}

@media screen and (min-width:1300px) {
  .menu {
    max-width: 1200px;
    float: right;
    margin-top: 20px;
  }

  .menu-item {
    padding: 20px 28px 10px;
  }

  .menu-item a {
    font-size: 15px;
    letter-spacing: 0.2rem;
  }

  #menu-item-8539,
  #menu-item-2085,
  #menu-item-3952 {
    padding: 20px 34px 10px;
  }

  #menu-item-10090 a {
    top: -2px;
  }

  #menu-item-2085 {
    padding: 20px 34px 10px;
  }
}

#menu-footer-menu .menu-item {
  padding: 20px 80px 10px;
}

@media screen and (max-width:896px) {
  #menu-footer-menu .menu-item {
    padding: 10px 30px;
  }

  /*#menu-footer-menu #menu-item-1984 {
    padding: 20px 40px 10px;
  }
  #menu-footer-menu #menu-item-1263 {
    padding: 20px 85px 10px;
  }
  #menu-footer-menu #menu-item-1487 {
    padding: 20px 85px 10px;
  }
  #menu-footer-menu #menu-item-1988 {
    padding: 20px 87px 10px;
  }
  #menu-footer-menu #menu-item-1989 {
    padding: 20px 61px 10px;
  }*/
}

/* 下層ページ */
.pankuzu {
  background: #ebebeb;
  padding: 12px 0 12px 8px;
  font-size: 1.2rem;
  border-bottom: 1px solid #DBDBDB;
}

.pankuzu a {
  color: #222;
}

.wrapper {
  /*background: url(img/top/cork_1.png)repeat;*/
}

/*.page_top_view {
	padding: 45px 0 60px;
}*/
@media screen and (max-width:896px) {
  /*.page_top_view {
      padding: 0 0 8%;
    }*/
}

.page_top_view img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}

.page_top_view img.page_pet {
  object-position: 50% 70%;
}

@media screen and (max-width:896px) {
  .page_top_view img {
    width: 100%;
    height: 150px;
  }
}

.single_top img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

@media screen and (max-width:896px) {
  .single_top img {
    width: 100%;
    height: 200px;
  }
}

.page_top_view .ttl_area {
  text-align: center;
}

.page_top_view .ttl_area p.msg {
  margin-top: 50px;
  font-size: 1.6rem;
}

ul.room_slide li img {
  margin-bottom: 15px;
}

ul.cate_btn {
  margin: 45px 0 0;
  display: flex;
  justify-content: space-around;
}

ul.cate_btn li {
  text-align: center;
}

ul.cate_btn li a {
  background: #fff;
  border: 1px solid #ccc;
  padding: 18px 0 16px;
  display: block;
}

ul.cate_btn li.btn_2 {
  width: 346px;
}

ul.cate_btn li.btn_3 {
  width: 310px;
}

ul.cate_btn li.btn_4 {
  width: 240px;
}

h3.stripe {
  position: relative;
  text-align: center;
  font-size: 2.6rem;
}

@media screen and (max-width:896px) {
  h3.stripe {
    font-size: 2rem;
  }
}

h3.stripe span {
  padding: 0 25px;
  position: relative;
  z-index: 20;
}

@media screen and (max-width:896px) {
  h3.stripe span {
    padding: 0 0;
  }
}

h3.border {
  color: #b4b5b5;
  position: relative;
  text-align: center;
  font-size: 2.6rem;
  margin-bottom: 50px;
}

@media screen and (max-width:896px) {
  h3.border {
    font-size: 2rem;
  }
}

h3.border span {
  background: #f1f4f4;
  padding: 0 25px;
  position: relative;
  z-index: 20;
}

h3.border:before {
  content: "";
  display: block;
  position: absolute;
  height: 8px;
  width: 100%;
  border-top: 1px solid #ccc;
  top: 0;
  bottom: 0;
  margin: auto;
  z-index: 10;
}

/* #group_plan {
  padding: 80px 0;
}

ul.plan_list {
  display: flex;
  justify-content: space-between;
}

.plan_item {
  width: 478px;
  margin-bottom: 50px;
}

.plan_item .photo {
  position: relative;
}

.plan_item .photo img {
  object-fit: cover;
  width: 100%;
  height: auto;
}

.plan_item .photo p.plan_num {
  background: #198080;
  color: #fff;
  font-size: 1.4rem;
  padding: 4px 25px;
  position: absolute;
  bottom: 0;
  left: 0;
}

.plan_item .txt {
  background: #fff;
  padding: 2% 4% 3%;
}

.plan_item .txt .ttl {
  border-bottom: 1px solid #595757;
  padding: 10px 0 20px;
  text-align: center;
}

.plan_item .txt .ttl h4 {
  font-size: 2.4rem;
  margin: 15px 0 0;
}

.plan_item .txt .sub p {
  font-size: 1.4rem;
  margin-top: 15px;
}

.plan_item .txt .sub p.gray {
  background: #ededed;
  padding: 2%;
}

.plan_item .txt .sub .btn_orange {
  margin-top: 5px;
}

.plan_large {
  width: 100%;
  margin-bottom: 65px;
} */

#check_place {
  padding: 40px 0;
}

#check_place p.msg {
  margin-bottom: 40px;
  font-size: 1.6rem;
  color: #222;
  text-align: center;
}

#check_place p.caution {
  color: #444;
  text-align: center;
  margin-bottom: 60px;
}

#without_meals {
  padding: 80px 0;
}

.detail {
  width: 776px;
  margin: 0 auto;
}

.name {
  display: flex;
  margin-bottom: 30px;
}

.name p {
  font-size: 1.6rem;
}

.name p.green {
  background: #19a495;
  border: 1px solid #19a495;
  color: #fff;
  width: 25%;
  text-align: center;
  padding: 25px 0;
}

.name p.white {
  background: #fff;
  border: 1px solid #999;
  width: 75%;
  padding: 25px;
  box-sizing: border-box;
}

#with_meals {
  padding: 80px 0;
}

#day_plan {
  padding: 80px 0;
}

#option {
  padding: 80px 0;
}

.plan_content p.msg {
  text-align: center;
  margin-bottom: 40px;
  font-size: 1.6rem;
  color: #222;
}

#menu .menu_detail {
  width: 800px;
  margin: 0 auto;
}

#menu .menu_detail .txt {
  background: #fff;
  padding: 5px;
}

#menu .menu_detail .inner {
  border: 1px solid #a5c9c2;
  padding: 30px 0;
}

#menu .menu_detail li {
  text-align: center;
  margin-bottom: 25px;
  color: #222;
  font-size: 1.6rem;
}

#menu .menu_detail p {
  text-align: center;
}

.glamping_content p.msg {
  text-align: center;
  margin-bottom: 40px;
  font-size: 1.6rem;
  color: #222;
}

.glamping_content .sche_head {
  display: flex;
  justify-content: space-around;
  margin-bottom: 70px;
}

.glamping_content .sche_head .txt {
  background: #fff;
  width: 554px;
  padding: 5px;
}

.glamping_content .sche_head .txt .inner {
  border: 1px solid #eec9af;
  padding: 40px 50px 35px;
  box-sizing: border-box;
  height: 100%;
}

.glamping_content .sche_head .txt .inner.night {
  border: 1px solid #adc2d5;
}

.glamping_content .sche_head .txt .inner.morning {
  border: 1px solid #a0c7b5;
}

.glamping_content .sche_head .txt h3 {
  font-size: 4.0rem;
  text-align: center;
}

.glamping_content .sche_head .txt h3.day {
  color: #bd806c;
}

.glamping_content .sche_head .txt h3.night {
  color: #6c808e;
}

.glamping_content .sche_head .txt h3.morning {
  color: #198080;
}

.glamping_content .sche_head .txt .time {
  text-align: center;
  margin: 10px auto 20px;
  width: 200px;
}

.glamping_content .sche_head .txt .time p {
  padding: 5px 0;
}

.glamping_content .sche_head .txt .time p.en {
  border-bottom: 2px solid #eec9af;
}

.glamping_content .sche_head .txt .time p.en.night {
  border-bottom: 2px solid #adc2d5;
}

.glamping_content .sche_head .txt .time p.en.morning {
  border-bottom: 2px solid #a0c7b5;
}

.glamping_content .sche_head .txt p.under {
  line-height: 2.0;
}

.glamping_content .sche_head.reverse {
  flex-direction: row-reverse;
}

.glamping_content .slides {
  width: 900px;
  margin: 0 auto;
}

.glamping_content .slides .slide {
  margin-bottom: 20px;
}

.glamping_content .slides ul.slide_pager {
  display: flex;
}

.container.news_single {
  min-height: 500px;
  width: 60%;
}

@media screen and (max-width:896px) {
  .container.news_single {
    min-height: 300px;
    box-sizing: border-box;
    width: 95%;
  }
}

.container.news_single p.date {
  text-align: left;
}

.container.news_single span.bigfont {
  font-size: 18px;
  font-weight: bold;
}

.container.news_single h2 {
  padding: 15px 30px;
  margin-bottom: 50px;
  line-height: 1.5;
  text-align: left;
  font-size: 30px;
}

.container.news_single .article_content img {
  margin: 0 auto 45px;
  max-width: 100%;
  height: auto;
}

@media screen and (max-width:896px) {
  .container.news_single h2 {
    padding: 15px 0;
    margin-bottom: 30px;
    font-size: 18px;
  }

  .container.news_single .article_content img {
    height: auto;
    object-fit: cover;
  }
}

.container.news_single .article_content p {
  text-align: left;
  line-height: 2.0;
}

@media screen and (max-width:896px) {
  .container.news_single .article_content p {
    text-align: left;
  }
}

ul.news_list li {
  padding: 20px;
  border-bottom: 1px solid #ccc;
  line-height: 1.5;
}

ul.news_list li .cate {
  color: #595757;
  font-size: 1.4rem;
}

.qa_dl {
  font-size: 1.6rem;
  line-height: 1.7em;
  margin-bottom: 50px;
}

.qa_dl dd {
  text-indent: 1em;
}

@media screen and (max-width:896px) {
  .qa_dl dd {
    text-indent: 0;
  }
}

.qa_green_text {
  color: #595757;
  font-size: 2.0rem;
  font-weight: bold;
}

.qa_orange_text {
  color: #b4b5b5;
  font-size: 2.0rem;
  font-weight: bold;
}

.qa_mb {
  margin-bottom: 20px;
}

/* ------------------------------
   20190428追記
------------------------------ */
/* フッタ
--------------------------- */
footer .info {
  margin-bottom: 2em;
  min-width: 350px;
}

footer p.checkin a {
  color: #fff;
  padding-right: 1em;
}

.checkin_box {
  margin-bottom: 1em;
}

.ft_link {
  text-decoration: underline;
}

/* 矢印アイコン
--------------------------- */
.arrow {
  position: relative;
  display: inline-block;
  padding: 0 0 0 16px;
  color: #222222;
  vertical-align: middle;
  text-decoration: none;
  font-size: 15px;
}

.arrow::before,
.arrow::after {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  content: "";
  vertical-align: middle;
}

.external::before {
  width: 12px;
  height: 2px;
  background: #595757;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}

.external::after {
  right: 1px;
  width: 8px;
  height: 8px;
  border-top: 2px solid #595757;
  border-right: 2px solid #595757;
}

.wrapper_video {
  margin: 0 auto;
  width: 800px;
  text-align: left;
  position: relative;
  visibility: hidden;
}

#video {
  width: 100%;
  margin: 0 auto;
  padding: 0;
  background-color: #222222;
}

.video_box {
  width: 800px;
  height: auto;
  margin: 0 auto;
  text-align: center;
}

.video_box video {
  width: 100%;
  height: auto;
  margin: 0 auto;
}

/* TOPへ戻るボタン */
#fixedTop {
  right: 0;
  bottom: 198px;
  color: #fff;
  text-align: center;
  line-height: 60px;
  text-decoration: none;
  vertical-align: middle;
  display: none;
  width: 60px;
  height: 60px;
  background: rgba(0, 0, 0, 0.4);
  position: fixed;
  z-index: 99;
  font-size: 18px;
}

#fixedTop:hover {
  background: #222222;
}

.article_title {
  color: #333;
}

.contents_mainimg p {
  color: #333;
}

.table-dot dd a {
  color: #333;
  word-break: break-all;
}

@media screen and (max-width:896px) {
  #fixedTop {
    display: none !important;
  }
}

/* 404
=============*/
#content h2 {
  font-size: 4rem;
  text-align: center;
  padding: 10rem 0 6rem;
  margin: 0 auto;
}

#content p {
  text-align: center;
  padding: 3rem 0;
}

.pc {
  display: none !important;
}

.psnkuzumg {
  margin-top: 68px;
}

.nw_cate {
  background-color: rgba(225, 225, 225, 0.95);
  padding: 3px;
}

@media screen and (max-width:896px) {
  .psnkuzumg {
    margin-top: 60px;
  }
}

.pickup_single p {
  color: #222222;
}

/* instagram */
.top_instagram {
  padding: 80px 0;
  background-color: #f4f4f4;
}

@media screen and (max-width:896px) {
  .top_instagram {
    padding: 10% 0;
  }
}

.top_instagram h2 {
  margin-bottom: 30px;
}

/*.top_instagram_img {
  padding: 1%;
}*/
.top_instagram_img img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  /*padding: 1%;*/
  height: auto;
  margin: 0 auto;
}

.slick-slide h3 {
  padding-left: 5% !important;
  padding-top: 2%;
}

.top_instagram .link a {
  color: #222;
  border: #222 1px solid;
}

.instagram-box h2 {
  margin-top: 6%;
}

@media screen and (max-width:896px) {
  .instagram-box h2 {
    margin-top: 25%;
  }

  .instagram-box p {
    padding: 4%;
  }
}

.instagram_slides {
  margin: 0 auto;
  padding-bottom: 20px;
  padding-top: 10px;
  width: 100%;
}

.top_instagram li p {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  padding: 0 5% 1.5%;
}

.instagram_archive p {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  margin-left: 1%;
  margin-bottom: 2%
}

@media screen and (max-width:896px) {
  .instagram_archive li {
    width: 98%;
  }
}

.top_instagram_li {
  width: 93%;
  background: white;
  margin: 0 auto;
}

.instagram_contents p {
  white-space: pre-wrap;
}

.instagram_contents h2 {
  text-align: left;
  padding: 0 0 1% 1% !important;
  margin-top: 2%;
}

.instagram_archive li {
  text-align: left;
  background: #f8f8f8;
}

.instagram_archive h3 {
  text-align: left;
  margin: 2% 0 1% 1%;
}

/* ポップアップ*/
.instagram_main_contents .content_width {
  background: #fff;
}

.instagram_contents {
  display: flex;
}

.instagram_contents .content {
  padding-left: 2%;
  width: 95%;
}

@media screen and (max-width:896px) {
  .instagram_contents {
    display: block;
  }
}

@media screen and (max-width:896px) {
  .top_instagram ul.sp_instagram_ul {
    display: grid !important;
    width: 100%;
    grid-template-columns: repeat(auto-fit, calc(50% - 10px));
    gap: 20px;
    padding: 10px;
  }

  .top_instagram_li {
    width: 100%;
  }

  .sp_instagram_ul h3 {
    padding-left: 5%;
    padding-top: 2%;
  }
}

/*.swiper-container{
  text-align: center;
}
.swiper-container .swiper-slide img{
  max-width: 100%;
  width: 100%;
  height: auto;
}
.swiper-container .swiper-slide {
  position: relative;
  width: 100%;
}
.swiper-container .swiper-slide:before {
  content:"";
  display: block;
  padding-top: 56.25%;
}
*/
.swiper .swiper-slide video {
  width: 100%;
}

.swiper-button-prev,
.swiper-container-rtl,
.swiper-button-next {
  color: #fff !important;
}

@media screen and (min-width:896px) {

  .swiper-button-prev,
  .swiper-container-rtl,
  .swiper-button-next {
    top: 20% !important;
  }
}

span {
  display: inline-block;
}

/*top　バナー*/
/*閉じるバナー*/
.callout-container {
  position: fixed;
  width: 17%;
  max-width: 400px;
  z-index: 4;
  background-color: #fff;
  padding: 5px;
  z-index: 3333;
  right: 0;
  bottom: 260px;
}

.callout-container img {
  width: 100%;
}

.bnr_close {
  position: absolute;
  top: -14px;
  right: 12px;
  color: white;
  font-size: 50px;
  padding: 10px;
  line-height: 1;
  cursor: pointer;
  z-index: 1;
}

.bnr_close:hover {
  color: lightgrey;
}

@media only screen and (max-width: 768px) {

  /*閉じるバナー*/
  .callout-container {
    position: fixed;
    width: calc(50% - 4px);
    z-index: 4;
    bottom: 60px;
    background-color: #fff;
    padding: 2px;
  }

  .callout-container img {
    width: 100%;
  }

  .bnr_close {
    position: absolute;
    top: -13px;
    right: 13px;
    color: #ffffff;
    font-size: 43px;
    padding: 10px;
    line-height: 1;
    cursor: pointer;
    z-index: 1;
  }

  .bnr_close:hover {
    color: lightgrey;
  }
}

/*施設マップ*/
.facmap {
  width: 60%;
  margin: 0 auto;
}

.facmap img {
  width: 80%;
  margin: 20px auto;
}

@media only screen and (max-width: 1000px) {
  .facmap {
    width: 90%;
    margin: 0 auto;
  }

  .facmap img {
    width: 100%;
    margin: 20px auto;
  }
}

.room-img {
  width:
  @media only screen and (max-width: 1000px) {
    width: 95%;
    margin: 0 auto;
  }
}
.madori {
  width: 65%;
}