@charset "utf-8";
/*基本フォント設定*/
@import url(http://fonts.googleapis.com/earlyaccess/notosansjp.css);

/* common */
html,
body {
  position: relative;
  height: 100%;
}
body {
  background: #fff;
  font-family: "Noto Sans Japanese", sans-serif;
  font-size: 14px;
  color: #000;
  margin: 0;
  padding: 0;
}

p {
  padding-bottom: 1em;
}

.center {
  text-align: center;
}
.right,
.pc_right {
  text-align: right;
}
.left {
  text-align: left;
}
a.button {
  display: inline-block;
  padding: 10px 50px;
  color: #0e5679;
  border: 1px solid #0e5679;
  text-decoration: none;
  text-align: center;
  margin: auto;
  cursor: pointer;
}
a.button:hover {
  background: #0e5679;
  color: #fff;
}
h2,
h3,
h4,
.mincho {
  font-family:
    "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝",
    "ＭＳ 明朝", serif;
}
.small {
  font-size: 0.8em;
}
.big {
  font-size: 1.2em;
}
.mt30 {
  margin-top: 30px;
}
.mt0 {
  margin-top: 0;
}

/* header */
#navToggle {
  display: none; /*通常時は非表示にしておきます*/
  position: absolute; /*bodyに対しての絶対位置指定です*/
  right: 13px;
  top: 20px;
  width: 30px;
  height: 25px;
  cursor: pointer;
  z-index: 1000;
}
#navToggle div {
  position: relative;
}
#navToggle span {
  display: block;
  position: absolute; /*#navToggle div に対して*/
  width: 100%;
  border-bottom: solid 3px #999;
  -webkit-transition: 0.35s ease-in-out;
  -moz-transition: 0.35s ease-in-out;
  transition: 0.35s ease-in-out;
}
#navToggle span:nth-child(1) {
  top: 0;
}
#navToggle span:nth-child(2) {
  top: 11px;
}
#navToggle span:nth-child(3) {
  top: 22px;
}

@media screen and (min-width: 1024px) {
  .sp {
    display: none;
  }
}
@media screen and (max-width: 1024px) {
  /* nav for mobile */
  .mv_over_container {
    display: none;
  }
  .sp_nav {
    position: absolute; /*bodyに対しての絶対位置*/
    left: 0;
    top: -700px; /*通常時はビュー外*/
    width: 100%;
    min-height: 550px;
    background-image: url("../images/common/bg_sp_menu_area.jpg");
    background-size: cover;
    background-position: bottom;
    -webkit-transition: 0.5s ease-in-out; /*transitionで動きを*/
    -moz-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
    z-index: 10000;
  }
  .sp_logo {
    width: 50%;
    margin: 20px auto;
  }
  .sp_nav_menu {
    width: 80%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .sp_nav_menu .menu,
  .sp_nav_menu .menu2 {
    width: 145px;
    margin-bottom: 20px;
  }
  .sp_nav_menu .menu {
    background: url("../images/common/bg_sp_menu.png");
    background-size: cover;
  }
  .sp_nav_menu .menu2 {
    background: url("../images/common/bg_sp_menu2.png");
    background-size: cover;
  }
  .sp_nav_menu .menu3 {
    background: url("../images/common/bg_sp_menu3.png");
    background-size: cover;
    width: 300px;
    margin-bottom: 20px;
  }

  .sp_nav_menu .menu a,
  .sp_nav_menu .menu2 a {
    display: block;
    text-decoration: none;
    height: 30px;
    line-height: 30px;
    text-align: center;
    color: #333;
  }
  .sp_nav_menu .menu3 a {
    display: block;
    text-decoration: none;
    height: 30px;
    width: calc(300px - 20px);
    padding-left: 10px;
    line-height: 30px;
    text-align: left;
    color: #333;
  }
  .sp_nav_menu2 a {
    display: block;
    width: 60%;
    height: 30px;
    line-height: 30px;
    text-align: center;
    margin: 10px auto;
    text-decoration: none;
    color: #333;
    background: rgba(255, 255, 255, 0.5);
  }
  .sp_nav_menu3 {
    width: 60%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
  }
  .sp_nav_menu3 a.link_access {
    position: relative;
    color: #3c5d50;
    text-decoration: none;
    padding-left: 25px;
  }
  .sp_nav_menu3 .link_access:before {
    content: "";
    width: 25px;
    height: 25px;
    background-image: url("../images/common/sp_menu_access_icon.png");
    background-size: 25px;
    position: absolute;
    top: 0;
    left: 0;
  }
  #closeMenu {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 52px;
  }

  /* Toggle(Button) */
  #navToggle {
    display: block;
  }
  .openNav #navToggle span:nth-child(1) {
    top: 11px;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  .openNav #navToggle span:nth-child(2),
  .openNav #navToggle span:nth-child(3) {
    top: 11px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
  }

  /*header menu*/
  header.openNav .sp_nav {
    -moz-transform: translateY(770px);
    -webkit-transform: translateY(770px);
    transform: translateY(770px);
    z-index: 1000;
  }
}

header {
  position: static;
}
/* top */
#top_mv,
#sub_mv {
  /* mv */
  width: 100%;
  height: 500px;
  position: relative;
}
.swiper-container {
  width: 100%;
  height: 100%;
}
nav {
  background: url("../images/common/bg_Gmenu.png");
  background-size: cover;
  height: 70px;
  width: 100%;
}
.sns_head {
  height: 50px;
  max-width: 400px;
  margin-left: auto;
  margin-right: 50px;
  padding-top: 10px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.sns_head p {
  font-size: 20px;
  padding-bottom: 0;
  margin-right: 10px;
}
.sns_head p a.btn_head_book {
  display: block;
  background-color: #fafbe4;
  color: #2e908f;
  border: 1px solid #fafbe4;
  border-radius: 5px;
  padding: 3px 10px;
  font-size: 12px;
  text-decoration: none;
}
.sns_head p a.btn_head_book:hover {
  background-color: #2e908f;
  color: #fafbe4;
  border: 1px solid #fafbe4;
}

.sns_head p a.btn_head_en {
  display: block;
  color: #fff;
  font-size: 12px;
  text-decoration: none;
  background: url("../images/common/icon_jp.jpg") no-repeat left top;
  background-size: 18px;
  padding-left: 26px;
}
.sns_head i.fab {
  font-size: 36px;
}
.sns_head a i.fab {
  color: #000;
  text-decoration: none;
}
.sns_head a:hover i.fab {
  color: #000;
  text-decoration: none;
}
.mv_over_container {
  z-index: 1000;
  position: absolute;
  width: 100%;
  height: 50px;
  bottom: 0px;
  left: 0px;
}
.mv_bn {
  position: absolute;
  bottom: 50px;
  right: 30px;
  z-index: 100;
}
.mv_bn img {
  width: 300px;
  height: auto;
}
.mv_over_container ul.main_nav {
  width: calc(100% - 100px);
  height: 50px;
  margin: 0 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mv_over_container ul.main_nav li {
  text-align: center;
}
.mv_over_container ul.main_nav li a {
  display: inline-block;
  text-decoration: none;
  color: #fff;
  height: 50px;
  width: 100%;
  line-height: 50px;
  font-size: 1.2em;
  font-weight: bold;
  text-shadow: 2px 2px 20px #000;
  font-family:
    "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝",
    "ＭＳ 明朝", serif;
}
.mv_over_container ul.main_nav li a:hover {
  text-decoration: none;
  background-color: rgba(255, 255, 255, 0.5);
  color: #333;
  text-shadow: 2px 2px 20px #fff;
}

@media screen and (max-width: 700px) {
  #top_mv {
    /* mv */
    width: 100%;
    height: 50%;
  }
}

/* column style */
img {
  max-width: 100%;
}
.col_2,
.col_3,
.col_4 {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
}
.col_2 > div {
  width: 48%;
}
.col_3 div {
  width: 30%;
  margin-bottom: 30px;
}
.col_4 div {
  width: 23%;
}
hr.hr_bg {
  background: url("../images/common/hr.png");
  height: 3px;
  border: none;
  width: 100%;
  margin: 10px 0 50px 0;
}
.ls03 {
  letter-spacing: 0.3em;
}

.top_nav,
.sub_nav {
  background: url("../images/common/bg_Gmenu2.jpg");
  backbround-size: cover;
  height: 100px;
  width: 100%;
  z-index: 1000;
}
.top_nav {
  opacity: 0;
}
.sub_nav {
  opacity: 1;
  margin-bottom: 50px;
}
.top_nav_box {
  display: flex;
  justify-content: space-between;
  width: 1000px;
  height: 100%;
  margin: 0 auto;
  align-items: center;
}
.top_nav_box a {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: #333;
  text-align: center;
  font-weight: bold;
  letter-spacing: 0.2em;
  font-size: 0.8em;
  font-family:
    "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝",
    "ＭＳ 明朝", serif;
}
.top_nav_box a.nav_reserve {
  background-color: #2e908f;
  color: #fff;
  border-radius: 5px;
  padding: 5px 10px;
}
.top_nav_box > div:first-child img {
  width: 180px;
}

.fixed {
  opacity: 1;
  position: fixed;
  top: 0;
  z-index: 1000;
}

/* top contents aera */
main {
  background: url("../images/common/bg_contents.jpg");
  padding-bottom: 50px;
}
.reserve_area {
  background-image: url("../images/top/bg_reserve.jpg");
  background-size: cover;
  background-position: top center;
  width: 100%;
  height: 400px;
}
.mv_btn {
  width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  padding-top: 200px;
}
.mv_btn .date_box,
.mv_btn .select {
  background-color: rgba(255, 255, 255, 0.8);
  background-image: url("../images/top/search_btn_arrow.png");
  background-position: 50% 40px;
  background-repeat: no-repeat;
  height: 50px;
  width: 150px;
  font-size: 1.2em;
  font-family:
    "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝",
    "ＭＳ 明朝", serif;
  text-align: center;
  position: relative;
}
.mv_btn .date_box > input {
  height: 50px;
  width: 150px;
  position: absolute;
  top: 0;
  left: 0;
  cursor: pointer;
}
.select_txt {
  height: 50px;
  width: 150px;
  position: absolute;
  top: 0;
  left: 0;
  text-align: center;
}
.day_txt_box {
  height: 50px;
  width: 150px;
  position: absolute;
  top: 10px;
  left: 0;
  text-align: center;
}
.day_txt_box #day_txt,
.select_txt > span {
  font-size: 1.5em;
  margin-right: 10px;
}
.mv_btn .select > select {
  width: 150px;
  height: 50px;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  cursor: pointer;
}
.mv_btn .search_btn_box a {
  display: block;
  background-color: rgba(255, 255, 255, 0.8);
  height: 50px;
  width: 90px;
  font-size: 1.2em;
  font-family:
    "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝",
    "ＭＳ 明朝", serif;
  text-align: center;
  text-decoration: none;
  color: #333;
  cursor: pointer;
  line-height: 50px;
}
.search_plan {
  display: flex;
  justify-content: space-around;
  width: 500px;
  margin: 50px auto 0 auto;
}
.search_plan a {
  display: block;
  width: 300px;
  margin-bottom: 30px;
  font-size: 1.4em;
  padding: 10px 0;
  background-color: rgba(255, 255, 255, 0.8);
  text-align: center;
  font-family:
    "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝",
    "ＭＳ 明朝", serif;
  text-decoration: none;
  color: #333;
}
.availability a {
  line-height: 55px;
}

.col_2 > div.w650 {
  width: 650px;
}
.col_2 > div.w500 {
  width: 500px;
}
.col_2_top {
  align-items: start;
}
.contents_area {
  width: 1200px;
  margin: 0 auto;
  padding-bottom: 50px;
}
.contents_area_thin {
  width: 1000px;
  margin: 30px auto;
}
.contents_area_thin2 {
  width: 800px;
  margin: 30px auto;
}

.ta_latest {
  display: flex;
  flex-wrap: wrap;
  max-width: 500px;
  margin: 0 auto;
  justify-content: center;
  gap: 3vw;
  padding-bottom: 60px;
}
.ta_latest_item {
  width: calc(100% / 3 - 2vw);
}
.ta_latest_item:hover {
  opacity: 0.8;
}
.ta_latest_item > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.top_concept_area {
  display: flex;
  justify-content: space-between;
}
.top_concept_area div.top_concept_text {
  width: 400px;
  font-size: 16px;
}
.top_concept_area div.top_concept_pict {
  width: 580px;
}
.top_concept_img {
  width: 800px;
  margin: 50px auto;
  display: flex;
  justify-content: space-between;
}
.top_concept_img img {
  width: 200px;
  height: auto;
}
¥h2.concept {
  font-size: 1.5em;
  margin-bottom: 20px;
}

h2 {
  height: 75px;
  background: url("../images/common/bg_h2.png") no-repeat center center;
  text-align: center;
  font-size: 2em;
  line-height: 75px;
  margin: 50px 0;
  color: #2f433e;
  font-weight: bold;
}
h3 {
  font-size: 1.7em;
  margin: 1em 0;
  font-weight: bold;
  color: #2f433e;
}
h4 {
  font-size: 1.4em;
  color: #2f433e;
}
.top_service {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.top_service::after {
  display: block;
  width: 150px;
  content: "";
}
.top_service .icon_box {
  width: 150px;
  margin-right: 50px;
  text-align: center;
  margin-bottom: 50px;
  font-size: 0.9em;
  font-weight: bold;
  color: #232323;
}
.top_service .icon_box:nth-child(5n) {
  margin-right: 0px;
}
.top_service .icon_box img {
  margin-bottom: 1em;
}

.contents_mv {
  margin-bottom: 50px;
}
.contents_mv img {
  width: 100%;
}
.top_plan_area {
  margin: 50px 0;
}
.top_plan_box hr,
.around_shops div hr {
  background-image: url("../images/top/border_plan_box.png");
  background-size: cover;
  height: 3px;
  width: 100%;
  border: none;
}
.top_facility_container {
}
.top_facility_box {
  background-image: url("../images/common/hr_50.png");
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: 100%;
  margin-bottom: 50px;
}
.top_facility_container .top_facility_box {
  align-items: flex-start;
  height: 100%;
  min-height: 280px;
}
.top_facility_box p {
  font-size: 0.9em;
  margin-top: 1em;
}

.top_room_pic > div {
  margin-top: 60px;
}

.top_around {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.top_around div {
  width: 30%;
  text-align: center;
  padding-bottom: 1em;
  margin-bottom: 50px;
  background-image: url("../images/common/hr_30.png");
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: 100%;
}

.top_access {
  align-items: start;
}
h3.access_h3 {
  text-align: center;
  margin-top: 50px;
  font-size: 1.5em;
}
.top_access div {
  height: 100%;
  padding-bottom: 1em;
  background-image: url("../images/common/hr_30.png");
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: 100%;
}

h2.top_faq_h2 {
  background: url("../images/top/bg_faq.jpg") no-repeat;
  background-size: cover;
  height: 200px;
  line-height: 200px;
}
dl.top_faq dt {
  background-image: url("../images/top/faq_q.png");
  background-repeat: no-repeat;
  background-position: top left;
  background-size: 75px 75px;
  height: 45px;
  padding-left: 100px;
  font-family:
    "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝",
    "ＭＳ 明朝", serif;
  font-weight: bold;
  font-size: 1.2em;
  cursor: pointer;
  padding-top: 30px;
  margin-top: 30px;
}
dl.top_faq dd {
  background-image: url("../images/top/faq_a.png");
  background-repeat: no-repeat;
  background-position: top left;
  background-size: 75px 75px;
  min-height: 75px;
  margin-left: 75px;
  padding-left: 90px;
  margin-bottom: 50px;
  padding-top: 35px;
}

.top_bn_area {
  margin: 100px 0;
}
.foot_tripad2 {
  display: flex;
  justify-content: space-between;
  row-gap: 50px;
  margin-bottom: 50px;
}
.foot_tripad2.foot_tripad2--left::before {
  content: "";
  display: block;
  width: 148px;
  order: 1;
}
.foot_tripad2.foot_tripad2--left::after {
  content: "";
  display: block;
  width: 148px;
}
.foot_tripad2 #CDSWIDCOE {
  margin: 0;
}
.foot_tripad {
  width: 100%;
}
.foot_tripad #CDSSCROLLINGRAVE.wide {
  width: calc(100% - 14px);
}

/* Contents PAGE Style */
.mv_concept {
  background: url("../images/concept/mv.jpg");
  background-size: cover;
}
.mv_room {
  background: url("../images/room/mv.jpg");
  background-size: cover;
}
.mv_plan {
  background: url("../images/plan/mv.jpg");
  background-size: cover;
}
.mv_facility {
  background: url("../images/facility/mv.jpg");
  background-size: cover;
}
.mv_contact {
  background: url("../images/contact/mv.jpg");
  background-size: cover;
}
.mv_around {
  background: url("../images/around/mv.jpg");
  background-size: cover;
}

/* room */
.room_info {
  margin: 50px 0;
}
.room_thumb_area {
}
.room_thumb_area .room_thumb_box {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  justify-content: space-between;
}
.room_thumb_area .room_thumb_box div {
  width: 30%;
  margin-bottom: 20px;
}
.room_img_area img,
.room_thumb_area img {
  width: 100%;
}
.room_thumb_area img {
  cursor: pointer;
}
.room_spec {
  width: 100%;
  min-height: 50px;
  padding: 50px 0;
  margin: 50px 0;
  background: url("../images/room/bg_spec.png");
  display: flex;
  align-items: start;
  justify-content: space-between;
}
.room_spec h4.spec_h {
  background: #2e908f;
  color: #fff;
  border-radius: 20px;
  padding: 0px 10px;
  text-align: center;
  font-family:
    "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝",
    "ＭＳ 明朝", serif;
  font-size: 1em;
}
.room_spec div.spec_h {
  margin: 0 50px;
  width: 20%;
}
.room_spec div.spec_d {
  margin-right: 50px;
  width: 80%;
}
a.btn_room {
  display: inline-block;
  padding: 5px 50px;
  background: #2e908f;
  border: 1px solid #2e908f;
  color: #fff;
  text-decoration: none;
  margin-bottom: 50px;
}
a.btn_room:hover {
  background: #fff;
  color: #2e908f;
  border: 1px solid #2e908f;
}
.room_bath {
  text-align: center;
}
.room_bath p {
  text-align: left;
}
a.room_bn_food,
a.room_bn_facility {
  display: block;
  height: 250px;
  width: 100%;
  color: #fff;
  line-height: 250px;
  text-align: center;
  font-size: 2em;
  text-decoration: none;
}
a.room_bn_food {
  background: url("../images/room/bn_food_off.jpg");
}
a.room_bn_food:hover {
  background: url("../images/room/bn_food_on.jpg");
  color: #333;
  text-shadow:
    2px 2px 2px #fff,
    2px -2px 2px #fff,
    -2px -2px 2px #fff,
    -2px 2px 2px #fff;
}
a.room_bn_facility {
  background: url("../images/room/bn_facility_off.jpg");
}
a.room_bn_facility:hover {
  background: url("../images/room/bn_facility_on.jpg");
}

/* contact */
.contact_bn {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.contact_bn div:first-child {
  margin-right: 50px;
}

/* concept */
.concept_p_text {
  font-size: 16px;
}
.concept_photo {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.concept_photo div {
  width: 33%;
}
div.concept_torikumi {
  background: url("../images/concept/bg_torikumi.png");
  padding: 50px calc((100% - 700px) / 2);
  width: 700px;
}
h4.concept_torikumi {
  background: #2e908f;
  color: #fff;
  border-radius: 20px;
  padding: 5px 10px;
  text-align: center;
  margin-bottom: 1em;
}
table.torikumi_list {
  width: 700px;
  margin: 0 auto;
  font-size: 0.9em;
}
table.torikumi_list tr td:first-child {
  width: 90px;
}
table.torikumi_list tr td img {
  margin: 0 20px;
}
table.torikumi_list tr td {
  border-bottom: 1px dotted #2f433e;
  padding: 20px 0;
}

/* plan */
.plan_col2,
.plan2_col2 {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin: 50px 0;
  align-items: start;
}
.plan_col2 div:first-child {
  width: 600px;
}
.plan_col2 div:last-child {
  width: 370px;
}
.plan2_col2 div:first-child {
  width: 400px;
}
.plan2_col2 div:last-child {
  width: 570px;
}
.plan_col2 > div > h3,
.plan2_col2 > div > h3 {
  margin-top: 0;
}
span.plan_name {
  display: inline-block;
  text-align: center;
  color: #fff;
  background: #a0e0c1;
  padding: 4px 20px;
  margin-right: 20px;
}
a.btn_break_fast {
  display: inline-block;
  color: #fff;
  background-image: url(../images/plan/bg_breakfast_arrow.png);
  background-size: 110px 27px;
  width: 90px;
  height: 27px;
  padding-left: 20px;
  margin-right: 20px;
  line-height: 27px;
  text-decoration: none;
}
.plan_link {
  background: url("../images/plan/bg_plan.png");
  padding: 10px;
}
.plan_link .plan_link_box {
  border: 1px solid #2f433e;
  padding: 30px;
}
.plan_link .plan_link_box div {
  padding: 10px 30px;
  border-bottom: 1px dotted #2f433e;
}
.plan_link .plan_link_box div:last-child {
  border-bottom: none;
}
a.btn_reserve {
  display: block;
  margin-left: auto;
  padding: 5px;
  background: #2e908f;
  color: #fff;
  text-decoration: none;
  width: 3em;
  margin-top: -20px;
  text-align: center;
}
.btn_plan {
  display: inline-block;
  padding: 5px 1em;
  background: #a0e0c1;
  color: #fff;
  text-decoration: none;
  font-size: 0.9em;
}
.plan_chef {
  display: flex;
  width: 100%;
}
.plan_chef div:first-child {
  flex: 1;
}
.plan_chef div:last-child {
  flex: 2;
}
.plan_col2_2 {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin: 50px 0;
  align-items: flex-end;
}
.plan_col2_3 {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: start;
}
.plan_col2_3 div {
  width: 45%;
}
.plan_drink_area {
  display: flex;
  justify-content: space-between;
  align-items: start;
  flex-wrap: wrap;
  margin: 50px 0;
}
.plan_drink_area div {
  background: url("../images/plan/bg_circle.png") no-repeat;
  width: 45%;
  margin: 30px 0;
}
.plan_drink_area div.plan_drink_dl {
  background: none;
  margin-top: auto;
}

/* cuisine */
.cuisine_col_2 {
  margin: 50px 0;
}
.cuisine_col_2 > div:first-child {
  width: 60%;
}
.cuisine_col_2 > div:last-child {
  width: 30%;
}

/* facility */
.party_text {
  display: flex;
  width: 100%;
}
.party_text div:first-child {
  flex: 1;
}
.party_text div:last-child {
  flex: 4;
}

/* around */
.btn_area {
  display: flex;
  justify-content: space-between;
  padding: 30px 0;
  flex-wrap: wrap;
}
.btn_area a.btn_bg {
  width: 300px;
  height: 60px;
  color: #333;
  text-align: center;
  text-decoration: none;
  display: block;
  background: url("../images/common/btn_bg.png");
  line-height: 60px;
  margin-bottom: 20px;
}
.oasaji {
  background: url("../images/around/bg_oasaji.png");
  background-size: cover;
  width: 1200px;
  margin: 50px auto;
}
.oasaji h3.h3_oasaji {
  padding: 20px 0;
  border-bottom: 1px dotted #666;
  text-align: center;
}
.oasaji_text {
  width: 600px;
  margin: 0 auto;
}
.oasaji .col_2 img {
  width: 100%;
}
.left_text_col2,
.nishihon_col2 {
  display: flex;
  justify-content: space-between;
}
.left_text_col2 > div:first-child,
.nishihon_col2 > div:last-child {
  width: 30%;
}
.left_text_col2 > div:last-child,
.nishihon_col2 > div:first-child {
  width: 60%;
}
.h4_around_g {
  background: #2e908f;
  color: #fff;
  border-radius: 20px;
  padding: 5px 10px;
  width: 50%;
  text-align: center;
  font-family:
    "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝",
    "ＭＳ 明朝", serif;
  margin: 0 auto;
}
.around_shops {
  display: flex;
  justify-content: space-between;
}
.around_shops div {
  width: calc(33% - 12px);
  margin-bottom: 30px;
  position: relative;
}
.around_shops div:first-child {
  border-right: 1px solid #ccc;
  padding-right: 10px;
}
.around_shops div:nth-child(2n) {
  padding-left: 10px;
  padding-right: 10px;
}
.around_shops div:nth-child(3n) {
  border-left: 1px solid #ccc;
  padding-left: 10px;
}
.around_shops div h3 {
  font-family: "Noto Sans Japanese", sans-serif;
  font-size: 1.2em;
  font-weight: normal;
}
.around_shops_info {
  font-size: 0.9em;
  color: #2e908f;
}
.around_shops_info strong {
  font-weight: bold;
}
.around_shops div:after {
  content: "";
  display: block;
  height: 3px;
  width: calc(100% - 20px);
  background-image: url("../images/top/border_plan_box.png");
  background-size: cover;
  position: absolute;
  bottom: 0;
}
.around_icon {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 50px;
}
.around_icon_text {
  display: flex;
  width: calc(33% - 20px);
  padding: 10px;
  border-bottom: 1px dotted #666;
}
.around_icon_text > div:first-child {
  width: 100px;
}
.around_icon_text > div:last-child {
  width: calc(100% - 90px);
}
.around_icon_text h4 {
  margin-bottom: 1em;
  color: #000;
  font-weight: bold;
}
.around_icon_text p {
  font-size: 0.9em;
  padding-bottom: 5px;
}

/* pageTop */
#pageTop {
  position: fixed;
  bottom: 20px;
  right: 20px;
}

#pageTop a {
  display: block;
  z-index: 999;
  padding: 0 8px 15px 8px;
  border-radius: 30px;
  width: 35px;
  height: 35px;
  background-color: #fff;
  color: #ccc;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
  font-size: 30px;
}

#pageTop a:hover {
  text-decoration: none;
  opacity: 0.7;
}

/* footer */
.foot_sns .fb_container {
  width: 100%;
}
.foot_contact {
  height: 150px;
  background: url("../images/common/bg_footer_01.jpg");
  background-position: center;
}
.foot_contact .contact_list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 1200px;
  height: 150px;
  margin: 0 auto;
}
.foot_contents {
  background: url("../images/common/bg_footer_02.jpg");
  background-position: bottom;
  background-size: cover;
}
.foot_contents .sitemap,
.foot_contents .foot_link_list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 1000px;
  margin: 0 auto;
  padding: 50px 0;
}
.foot_contents .sitemap > div {
  flex: 1;
  width: 200px;
  margin-left: 20px;
}
.foot_contents .sitemap ul {
  margin-left: 20px;
}
.foot_contents .sitemap ul li {
  list-style: circle;
  margin-bottom: 0.5em;
}
.foot_contents .sitemap h3 {
  font-weight: bold;
}
.foot_contents .sitemap a {
  color: #2f433e;
  text-decoration: none;
}
.foot_contents .sitemap a:hover {
  text-decoration: none;
}
.foot_link {
  width: 550px;
}
.foot_link_list h3 {
  background: #a0e0c1;
  color: #fff;
  text-align: center;
  padding: 10px 0;
}
table.foot_link_table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 15px;
  font-size: 0.9em;
}
table.foot_link_table tr td:first-child {
  background: #a0e0c1;
  color: #fff;
  text-align: center;
  padding: 2px 6px;
}
table.foot_link_table tr td:last-child {
  padding-left: 10px;
}
table.foot_link_table tr td {
}
table.foot_link_table tr td a {
  color: #2e908f;
  text-decoration: none;
}
.foot_dl {
  width: 400px;
}
.foot_dl a {
  color: #2e908f;
  text-decoration: none;
}
hr.hr_foot {
  border: 0;
  height: 5px;
  width: 1000px;
  background: url("../images/common/foot_hr.png");
}
.foot_bn {
  display: flex;
  margin-right: auto;
  margin-top: 50px;
}
.foot_bn div {
  width: 200px;
  margin-right: 10px;
  font-size: 0.9em;
}
.foot_bn a {
  color: #2e908f;
  text-decoration: none;
}
.copyright {
  background-image: url("../images/common/bg_footer_03.jpg");
  background-size: cover;
  height: 110px;
  line-height: 110px;
  color: #fff;
  text-align: center;
}

.link-t-a {
  position: relative;
  top: -200px;
  display: block;
}
.pc_center {
  text-align: center;
}

@media screen and (max-width: 1024px) {
  .pc {
    display: none;
  }
  main {
    padding: 10px;
  }
  header {
    position: fixed;
    width: 100%;
    z-index: 10000;
  }
  h2 {
    font-size: 1.8em;
  }
  .pc_right {
    text-align: left;
    font-size: 0.8em;
  }
  .contents_area,
  .col_3,
  .top_concept_img,
  .foot_link,
  .foot_dl,
  hr.hr_foot,
  .foot_contact .contact_list,
  .col_2 div,
  .col_2 > div.w650,
  .col_2 > div.w500,
  .col_3 div,
  .mv_btn,
  .search_plan,
  .left_text_col2 > div:first-child,
  .nishihon_col2 > div:last-child,
  .left_text_col2 > div:last-child,
  .nishihon_col2 > div:first-child,
  .around_shops div,
  table.torikumi_list,
  .plan2_col2 div:first-child,
  .plan2_col2 div:last-child,
  .top_concept_area div.top_concept_text,
  .top_concept_area div.top_concept_pict,
  .cuisine_col_2 > div:first-child,
  .cuisine_col_2 > div:last-child {
    width: 100%;
  }
  .contents_area_thin,
  .contents_area_thin2 {
    margin: 0 10px;
    width: calc(100% - 20px);
  }

  .ta_latest {
    padding-bottom: 0;
  }

  .col_2,
  .col_3,
  .col_4,
  .foot_contact .contact_list,
  .nishihon_col2,
  .around_shops,
  .around_icon,
  .room_spec,
  .plan_drink_area,
  .plan2_col2,
  .party_text,
  .top_concept_area {
    flex-direction: column;
  }
  .foot_contact .contact_list {
    align-items: start;
    justify-content: center;
  }
  .foot_contact .contact_list > div:first-child {
    display: none;
  }
  .foot_contents .foot_link_list,
  .left_text_col2 {
    flex-direction: column-reverse;
  }
  .foot_dl_contents {
    flex-direction: row;
  }
  .foot_dl_contents > div {
    margin-left: 50px;
  }
  .contact_list > div {
    width: 100%;
  }
  .sp_foot_contact_logo {
    display: flex;
    justify-content: space-between;
    height: 130px;
    background: url(../images/common/bg_footer_01.jpg);
    background-position: center;
    align-items: center;
    padding: 10px 0;
  }
  .sp_foot_contact_logo > div {
    flex: 1;
    margin: 0 10px;
  }
  .col_4 div {
    width: 60%;
    margin: 0 auto;
  }
  .contents_area_thin {
    margin-bottom: 20px;
  }
  .contents_area {
    padding-bottom: 20px;
  }
  .reserve_area {
    background-size: auto;
    height: 200px;
  }
  .search__article {
    width: 100%;
    position: fixed;
    bottom: 0;
    z-index: 1000;
  }
  .mv_btn,
  .search_plan {
    align-items: center;
  }
  .search_plan {
    flex-direction: column;
    margin: 20px auto 0 auto;
    padding-top: 80px;
  }
  .mv_btn {
    padding-top: 150px;
    justify-content: center;
    z-index: 10000;
  }
  .mv_btn .date_box,
  .mv_btn .select {
    margin-bottom: 10px;
    /*		margin-right: 5px;
		margin-left: 5px;*/
    border: 1px solid #333;
    background-color: #fff;
  }
  .mv_btn .date_box,
  .mv_btn .select,
  .mv_btn .date_box > input,
  .day_txt_box,
  .select_txt,
  .mv_btn .select > select {
    width: 90px;
  }
  .mv_btn .search_btn_box a {
    width: 300px;
    background: #a0e0c1;
  }
  .search_plan a {
    height: 50px;
    margin-bottom: 10px;
    width: 90%;
  }
  .mv_bn {
    bottom: -130px;
    left: 0;
    right: 0;
  }
  .mv_bn img {
    width: 100%;
    height: auto;
  }
  .reserve_area {
    margin-top: 120px;
  }
  #top_mv,
  #sub_mv {
    height: 400px;
    padding-top: 70px;
  }
  .top_plan_area div.top_plan_box {
    width: 80%;
  }
  .top_plan_box img {
    display: block;
    text-align: center;
  }
  .top_plan_box p {
    font-weight: bold;
  }
  .top_service::after {
    width: 30%;
  }
  .top_service .icon_box {
    width: 30%;
    justify-content: space-between;
    margin-right: 0;
  }
  .col_2 > div.top_facility_box {
    width: 300px;
    margin: 0 auto 50px auto;
  }
  .foot_contents .sitemap {
    display: none;
  }
  .foot_contents .sitemap div {
    width: 40%;
    margin-left: 0;
    flex: 0 1 auto;
    margin-left: 30px;
  }
  .oasaji {
    width: 100%;
    background: url("../images/around/bg_oasaji_sp.png");
    background-size: cover;
  }
  .oasaji .contents_area {
    width: 90%;
    margin: 0 auto;
  }
  .oasaji_text {
    width: 100%;
  }
  .btn_area {
    justify-content: center;
  }
  .btn_area > div:first-child {
    margin-right: 20px;
  }
  .btn_area a.btn_bg {
    width: 150px;
    height: 40px;
    line-height: 40px;
  }
  .h4_around_g {
    width: 90%;
  }
  .around_shops div:first-child,
  .around_shops div:nth-child(2n),
  .around_shops div:nth-child(3n) {
    border-left: none;
    border-right: none;
    padding-left: 0;
    padding-right: 0;
  }
  .around_icon_text {
    width: calc(100% - 20px);
  }
  div.concept_torikumi {
    padding: 50px 0;
    width: 100%;
    background: url("../images/concept/bg_torikumi_sp.png");
    background-size: cover;
    border-radius: 15px;
  }
  h4.concept_torikumi {
    width: calc(90% - 20px);
    margin: 1em 5%;
    border-radius: 30px;
  }
  .room_spec div.spec_h,
  .room_spec div.spec_d {
    margin: 0 0 20px 0;
    width: 90%;
    padding: 0 5%;
  }
  .anchor_menu div {
    text-align: center;
  }
  .plan_col2,
  .plan_col2_3 {
    flex-direction: column;
  }
  .plan_col2 div,
  .plan_col2 div:first-child,
  .plan_col2_3 div {
    width: 100%;
    text-align: center;
  }
  .plan_col2 div:last-child {
    width: 100%;
  }
  span.plan_name {
    padding: 4px 10px;
    font-size: 0.9em;
  }
  .btn_plan {
    margin-right: 20px;
    padding: 4px 10px;
  }
  .mb0 {
    margin: 0 auto;
  }
  .plan_drink_area div {
    width: 100%;
    margin: 0 auto;
  }
  .room_info {
    flex-direction: column-reverse;
    margin: 0;
  }
  .room_img_area {
    margin-bottom: 15px;
  }
  a.btn_break_fast {
    background-size: 90px 27px;
    width: 85px;
    height: 27px;
    padding-left: 5px;
    margin-right: 0;
    text-align: left;
  }
  hr.hr_bg {
    margin-bottom: 10px;
  }
  .facility_items {
    flex-direction: column-reverse;
  }
  .concept_photo div {
    width: 48%;
    margin-bottom: 10px;
  }
  table.torikumi_list tr td:first-child,
  table.torikumi_list tr td:last-child {
    width: calc(100% - 40px);
    padding: 10px 20px;
    display: block;
  }
  table.torikumi_list tr td:first-child {
    text-align: center;
    border-bottom: none;
  }
  .concept_torikumi > p {
    padding: 0 20px 20px 20px;
  }
  .column_reverse {
    frex-direction: column-reverse;
  }
  .around_shops_info {
    font-weight: bold;
  }
  .top_room_pic > div {
    margin-top: 20px;
  }
  .sp_cneter {
    text-align: center;
  }
  .pc_center {
    text-align: left;
  }
  .top_around div {
    width: 48%;
    text-align: center;
    padding-bottom: 0em;
    margin-bottom: 20px;
    background-image: url("../images/common/hr_30.png");
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: 100%;
  }
  h2.top_faq_h2 {
    background: url("../images/top/bg_faq_sp.png") no-repeat;
    background-size: cover;
    height: 200px;
    line-height: 200px;
  }
  dl.top_faq dt {
    height: 65px;
    padding-top: 10px;
  }
  .foot_contents .foot_link_list {
    width: calc(100% - 20px);
    padding: 0 10px;
  }
  .foot_tripad #CDSSCROLLINGRAVE.wide {
    width: calc(100% - 16px);
  }
  .foot_tripad2 {
    flex-wrap: wrap;
    width: 100%;
  }
  .foot_tripad2 #CDSWIDCOE {
    margin: 0;
  }

  /* Contents PAGE Style */
  .mv_concept {
    background: url("../images/concept/mv_sp.jpg");
    background-size: cover;
  }
  .mv_room {
    background: url("../images/room/mv_sp.jpg");
    background-size: cover;
  }
  .mv_plan {
    background: url("../images/plan/mv_sp.jpg");
    background-size: cover;
  }
  .mv_facility {
    background: url("../images/facility/mv_sp.jpg");
    background-size: cover;
  }
  .mv_contact {
    background: url("../images/contact/mv_sp.jpg");
    background-size: cover;
  }
  .mv_around {
    background: url("../images/around/mv_sp.jpg");
    background-size: cover;
  }
  .top_concept_area div.top_concept_text,
  .concept_p_text {
    font-size: 1em;
  }
  .sp_plan_detail_L {
    font-family:
      "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝",
      "ＭＳ 明朝", serif;
    font-size: 1.5em;
  }
  .plan_link .plan_link_box {
    padding: 30px 0;
  }
  a.btn_reserve {
    margin-top: 0;
    padding: 5px 30px;
  }
  .foot_bn {
    width: calc(100% - 20px);
    padding: 0 10px;
    justify-content: space-between;
  }
  .foot_bn div:last-child {
    margin-right: 0;
  }
  .sns_head p a.btn_head_book {
    line-height: 1em;
  }
  .cuisine_col_2 {
    flex-direction: column-reverse;
  }
  .cuisine_col_2 > div {
    text-align: center;
  }
  .cuisine_sp_col > div:last-child {
    margin: 10px 0;
  }
  .top_facility_box p {
    margin: 0;
  }
  .top_facility_box h3 {
    margin-bottom: 0;
  }
}

p.center img {
  width: 50%;
  height: 50%;
}
@media screen and (max-width: 767px) {
  p.center img {
    width: 100%;
    height: 100%;
  }
}

@media screen and (max-width: 767px) {
  .sns_head {
    max-width: 300px;
  }
  .sns_head p a.btn_head_book {
    text-align: center;
  }
}
