@charset "UTF-8";

/*
Theme Name: sorahama
Description: This is sorahama site original theme.
Author: BookingResort
*/
html {
  font-size: 16px;
}

* {
  box-sizing: border-box;
}

body {
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-feature-settings: "palt";
  position: relative;
  line-height: 1.6;
}

.eng {
  font-family: "Lexend", sans-serif;
}

html,
body {
  width: 100%;
}

h1 {
  font-size: 3.2rem;
}

h2 {
  font-size: 3.6rem;
  color: #222;
  text-align: center;
}

h4 {
  font-size: 2rem;
  color: #222;
  text-align: center;
  margin-bottom: 20px;
}

.color_w {
  color: #fff;
}

@media screen and (max-width:980px) {
  h2 {
    font-size: 2.6rem;
  }
}

h3 {
  font-size: 1.8rem;
  color: #222;
}

p {
  line-height: 1.6;
}

p.image-text {
  color: #818181;
  padding: 10px 0;
  text-align: center;
}

p.p_bold {
  font-weight: bold;
}

/* ul li {
	font-size: 1.5rem;
	color: #333;
} */
a {
  color: #333;
  text-decoration: none;
  transition: all 0.3s;
}

a:hover {
  opacity: 0.8;
}

a:hover>img {
  opacity: 0.8;
}

img {
  display: block;
  /* テンプレートの画像には width / height 属性を付けています（読み込み前の
     場所を確保して、レイアウトが崩れるのを防ぐため）。
     その属性のせいで、CSSで幅だけ指定した画像が縦に潰れないようにします。 */
  height: auto;
}

@media screen and (max-width:980px) {
  img {
    display: block;
    max-width: 100%;
  }
}

i.fa {
  display: inline;
}

.top_slid .n2-ss-slider .n2-ss-slider-wrapper-inside .n2-ss-slider-controls {
  display: none;
}

.bold {
  font-weight: 600;
}

/* ページ内リンク（#access など）の着地位置。
   ヘッダーが固定表示なので、その分だけ下げないと見出しが隠れます。 */
html {
  scroll-behavior: smooth;
}

[id="access"] {
  scroll-margin-top: 100px;
}

@media screen and (max-width: 980px) {
  [id="access"] {
    scroll-margin-top: 70px;
  }
}

/* ヘッダー　start */
header {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 400;
  transition: all 0.3s ease-in-out;
}

header.is-fixed {
  background: #fff;
}

.header_warp {
  width: 1200px;
  max-width: 100%;
  padding: 24px 0;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.logo_area {
  /* ロゴの大きさはここで調整します（画像の幅がこの値になります） */
  width: 200px;
  margin-left: 20px;
}

@media screen and (max-width: 980px) {
  .logo_area {
    width: 150px;
  }
}

.logo_area img {
  width: 100%;
  filter: brightness(0) invert(1);
  transition: all 0.3s ease-in-out;
}

.is-fixed .logo_area img {
  filter: none;
}

.nav_wrap {
  width: 800px;
  margin-left: auto;
}

.nav_wrap nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.nav_wrap nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.nav_wrap nav ul li a {
  display: inline-block;
  color: #fff;
  padding: 10px;
}

.is-fixed .nav_wrap nav ul li a {
  color: #333;
  padding: 10px;
}

.nav_wrap nav ul li:first-of-type {
  display: none;
}

.nav_wrap nav ul li:last-of-type a {
  padding: 10px 20px;
  background: var(--sh-accent);
  color: #fff;
}

.menu-top-container {
  width: 600px;
}

/* ヘッダーメニューを必ず1行に収める（PC表示）
   もとは .nav_wrap 800px / .menu-top-container 600px の固定幅で、
   項目が増えると「予約・料金」だけ2行目に落ちていました。
   幅を内容に合わせ、項目の折り返しを禁止しています。
   項目をさらに増やして窮屈になったら、下の padding か font-size を詰めてください。 */
@media screen and (min-width: 981px) {
  .nav_wrap,
  .menu-top-container {
    width: auto;
  }

  .nav_wrap {
    margin-left: auto;
  }

  .nav_wrap nav ul {
    flex-wrap: nowrap;
    justify-content: flex-end;
    align-items: center;
  }

  .nav_wrap nav ul li a {
    padding: 10px 13px;
    white-space: nowrap;
  }

  .nav_wrap nav ul li:last-of-type a {
    margin-left: 8px;
    padding: 10px 20px;
  }
}

/* ヘッダー　end */
/*ナビボタン*/
#nav_toggle {
  display: none;
  width: 2rem;
  height: 1.5rem;
  padding: 0.5rem;
  position: fixed;
  top: 1.25rem;
  right: 1rem;
  z-index: 99;
}

#nav_toggle span {
  display: inline-block;
  width: 100%;
  height: 2px;
  background: #fff;
  position: absolute;
  transform: translateY(-50%);
  transition: ease 0.3s;
}

#nav_toggle span:nth-of-type(1) {
  top: 0;
  left: 0;
}

#nav_toggle span:nth-of-type(2) {
  top: 50%;
  left: 0;
}

#nav_toggle span:nth-of-type(3) {
  top: 100%;
  left: 0;
}

/* #nav_toggle:before {
  content: "";
  display: block;
  width: 3rem;
  height: 3rem;
  background: #2a2a2a;
  position: absolute;
  top: -0.75rem;
  left: -0.5rem;
} */
.is-fixed #nav_toggle span {
  background: #333;
}

.nav_wrap.open nav {
  opacity: 1;
  visibility: visible;
  animation: navAnim 0.7s;
}

.nav_wrap.open #nav_toggle span {
  background: #333;
}

.nav_wrap.open #nav_toggle span:nth-of-type(1) {
  top: 50%;
  transform: translateY(-50%) rotate(-135deg);
}

.nav_wrap.open #nav_toggle span:nth-of-type(2) {
  width: 0;
  opacity: 0;
}

.nav_wrap.open #nav_toggle span:nth-of-type(3) {
  top: 50%;
  transform: translateY(-50%) rotate(135deg);
}

@media all and (max-width: 980px) {
  .nav_wrap {
    width: 100%;
  }

  .nav_wrap nav {
    display: block;
    width: 100%;
    height: 100vh;
    margin: auto;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 98;
    background-image: linear-gradient(23deg, rgba(202, 202, 202, 0.02) 0%, rgba(202, 202, 202, 0.02) 13%, transparent 13%, transparent 80%, rgba(11, 11, 11, 0.02) 80%, rgba(11, 11, 11, 0.02) 100%), linear-gradient(42deg, rgba(98, 98, 98, 0.02) 0%, rgba(98, 98, 98, 0.02) 36%, transparent 36%, transparent 77%, rgba(252, 252, 252, 0.02) 77%, rgba(252, 252, 252, 0.02) 100%), linear-gradient(286deg, rgba(173, 173, 173, 0.02) 0%, rgba(173, 173, 173, 0.02) 2%, transparent 2%, transparent 12%, rgba(59, 59, 59, 0.02) 12%, rgba(59, 59, 59, 0.02) 100%), linear-gradient(77deg, rgba(87, 87, 87, 0.02) 0%, rgba(87, 87, 87, 0.02) 18%, transparent 18%, transparent 55%, rgba(247, 247, 247, 0.02) 55%, rgba(247, 247, 247, 0.02) 100%), linear-gradient(90deg, white, white);
    opacity: 0;
    visibility: hidden;
    transition: 0.5s ease-in-out;
  }

  .menu-top-container {
    width: 100%;
  }

  .nav_wrap nav {
    padding: 60px 20px;
  }

  .nav_wrap nav ul {
    display: block;
    text-align: center;
  }

  .nav_wrap nav ul li a {
    display: block;
    color: #333;
    padding: 16px 0;
    border-bottom: 1px solid var(--sh-ink);
  }

  .nav_wrap nav ul li:last-of-type {
    margin-top: 2rem;
  }

  .nav_wrap nav ul li:last-of-type a {
    padding: 16px;
  }

  #nav_toggle {
    display: block;
  }
}

/* メニューボタン */
.bg_gray {
  position: relative;
  background-image: linear-gradient(23deg, rgba(202, 202, 202, 0.02) 0%, rgba(202, 202, 202, 0.02) 13%, transparent 13%, transparent 80%, rgba(11, 11, 11, 0.02) 80%, rgba(11, 11, 11, 0.02) 100%), linear-gradient(42deg, rgba(98, 98, 98, 0.02) 0%, rgba(98, 98, 98, 0.02) 36%, transparent 36%, transparent 77%, rgba(252, 252, 252, 0.02) 77%, rgba(252, 252, 252, 0.02) 100%), linear-gradient(286deg, rgba(173, 173, 173, 0.02) 0%, rgba(173, 173, 173, 0.02) 2%, transparent 2%, transparent 12%, rgba(59, 59, 59, 0.02) 12%, rgba(59, 59, 59, 0.02) 100%), linear-gradient(77deg, rgba(87, 87, 87, 0.02) 0%, rgba(87, 87, 87, 0.02) 18%, transparent 18%, transparent 55%, rgba(247, 247, 247, 0.02) 55%, rgba(247, 247, 247, 0.02) 100%), linear-gradient(90deg, white, white);
}

.bg_gray2 {
  background: var(--sh-tint-soft);
}

.bg_beige {
  background: var(--sh-tint);
}

/*タイトル*/
.h_ttl {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 30px;
}

.h_ttl span {
  font-size: 40px;
  display: block;
  color: var(--sh-ink);
  font-weight: 600;
}

.h_ttl.white {
  color: #fff;
}

.h_ttl.white span {
  color: #fff;
}

.h_ttl_m {
  font-size: 1.5rem;
  padding-bottom: 10px;
  margin-bottom: 20px;
  border-bottom: 3px solid #333;
  position: relative;
}

.h_ttl_m::before {
  content: '';
  display: inline-block;
  width: 120px;
  height: 2px;
  background: var(--sh-ink);
  position: absolute;
  bottom: -3px;
  left: 0;
}

.h_ttl_line {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.h_ttl_line::before,
.h_ttl_line::after {
  content: '';
  display: block;
  width: calc(50% - 80px);
  height: 1px;
  background: var(--sh-ink);
}

.h_ttl_line span {
  display: block;
  width: 160px;
  padding: 1rem;
  font-size: 24px;
}

.h_ttl_btm {
  position: relative;
  font-size: 18px;
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
  border-bottom: 2px solid #333;
}

.h_ttl_btm::before {
  content: '';
  display: inline-block;
  width: 60px;
  height: 2px;
  background: var(--sh-ink);
  position: absolute;
  bottom: -2px;
  left: 0;
}

.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 var(--sh-line);
  padding-top: 1%;
  font-size: 1.6rem;
}

.menu_list li a {
  display: block;
  padding: 30px;
}

@media screen and (max-width:980px) {
  .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:980px) {
  .menu_list.open {
    top: 60px;
  }
}

/* 共通項目 */
.container {
  /*max-width: 1060px;*/
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 10px;
}

.container2 {
  width: calc(100% - 200px);
  margin: auto;
}

.br_sp {
  display: none;
}

.br_pc {
  display: block;
}

@media screen and (max-width:980px) {
  .container {
    width: 94%;
  }

  .container2 {
    width: 100%;
  }

  .br_sp {
    display: block;
  }

  .br_pc {
    display: none;
  }
}

a.a_link {
  text-decoration: underline;
}

a.scroll_point {
  height: 1px;
  margin-top: -80px;
  padding-top: 80px;
  display: block;
}

@media screen and (max-width: 980px) {
  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: 4px;
}

h2.btm_border:before {
  left: 50%;
  margin-left: -51px;
  background: var(--sh-accent);
}

h2.btm_border:after {
  right: 50%;
  margin-right: -51px;
  background: var(--sh-line);
}

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;
}

.mincho {
  font-family: "游明朝", YuMincho, "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HG明朝E", "MS P明朝", "MS 明朝", serif;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.1em;
}

h2.top {
  font-size: 2.6rem;
  margin: 45px 0 30px;
  line-height: 1.4;
  color: #fff;
}

h2.color {
  font-size: 3rem;
  margin: 0 0 30px;
  line-height: 1.4;
  color: #333;
}

.sml_gl {
  font-size: 1.3rem;
  color: #424242;
  text-align: center;
}

span.en {
  letter-spacing: 0.1em;
  font-family: 'Yu Gothic UI', "游ゴシック", YuGothic, "ヒラギノゴシック Pro W3", "Hiragino Gothic Pro", "HGゴシックE", "MS Pゴシック", "MS ゴシック", sans-serif;
  font-weight: normal;
  font-size: 1.5rem;
  color: #787878;
}

span.tax_in {
  font-size: 1.4rem;
  color: #555;
}

.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: var(--sh-accent-dark);
  border-radius: 24px;
  padding: 12px 30px;
  display: block;
  transition: all 0.2s;
  /*  border: 1px solid #6A5FA0;*/
}

.btn_link p a {
  width: 320px;
  background: #fff;
  border-radius: 24px;
  padding: 12px 30px;
  display: block;
  transition: all 0.2s;
  text-align: center;
  margin: 0 auto;
  border: 1px solid var(--sh-line);
}

.btn_link p a::before {
  content: 'f0da';
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f0da";
  margin-right: 5px;
}

.btn_link_color p a {
  width: 185px;
  padding: 7px 25px;
  display: block;
  transition: all 0.2s;
  text-align: center;
  margin: 0 auto;
  border-radius: 27px;
  border: var(--sh-line) 1px solid;
  color: #fff;
  background: var(--sh-accent-dark);
}

.btn_link_color p a:hover {
  background: none;
  color: #fff;
  opacity: 1;
}

.pad_80 {
  padding: 80px 0;
}

.pl_25 {
  padding-left: 25px;
}

.mt_10 {
  margin-top: 10px;
}

.mt_20 {
  margin-top: 20px;
}

.mt_30 {
  margin-top: 30px;
}

.mt_40 {
  margin-top: 40px;
}

.mt_50 {
  margin-top: 50px;
}

.mt_80 {
  margin-top: 80px;
}

.mt_120 {
  margin-top: 120px;
}

.mb_10 {
  margin-bottom: 10px;
}

.mb_20 {
  margin-bottom: 20px;
}

.mb_25 {
  margin-bottom: 25px;
}

.mb_30 {
  margin-bottom: 30px;
}

.mb_40 {
  margin-bottom: 40px;
}

.mb_60 {
  margin-bottom: 60px;
}

.mb_80 {
  margin-bottom: 80px;
}

.mb_120 {
  margin-bottom: 120px;
}

.mb_200 {
  margin-bottom: 200px;
}

.ta_c {
  text-align: center;
}

@media screen and (max-width:980px) {
  .sp_mb_40 {
    margin-bottom: 40px;
  }

  .ta_c {
    text-align: left;
  }
}

/*リゾグラ*/
#resort-rg {
  background: #ADADAD;
  padding: 10px 0 40px;
}

.rg_group h3 {
  font-size: 20px;
  color: #fff;
}

.rg_group h3 span.en {
  color: #fff;
}

.rg_group h4.rg_group {
  color: var(--sh-line);
  font-size: 1.6rem;
  text-align: left;
  margin-bottom: 0;
}

.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:980px) {
  .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:980px) {
  .rg_group .box li {
    width: 100%;
  }
}

.rg_group .box li img {
  width: 65px;
  height: 65px;
  object-fit: cover;
}

.rg_group .box li .txt {
  padding: 20px 20px 0 10px;
  width: 100%;
}

.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:980px) {
  .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:980px) {
  .rg_group .rg_details dl {
    width: 100%;
  }
}

.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: #fff;
}

.rg_group .rg_details dd {
  color: #fff;
}

@media screen and (max-width:980px) {
  .rg_group .rg_details dt {
    text-align: left;
  }
}

.rg_group .rg_details dd {
  margin-left: 0px;
}

/* フッター　start */
/* ==========================================================================
   トップの周辺観光スライダー（.area_slider）

   ・中央のカードが真ん中に来て、左右に前後がのぞきます
   ・端まで行くと先頭に戻る無限ループです
   ・動きの設定は header.php の $('.area_slider').slick(...) にあります
     （PC 3枚 / スマホ 1枚＋左右のぞき）

   ※ slick を使っています。Swiper 5 はループと小数の slidesPerView を
     併用できず送りが止まるため、この箇所だけ slick にしています。
   ========================================================================== */
.area_slider {
  margin: 0;
  padding-bottom: 10px;
}

/* カードの高さを揃えます */
.area_slider .slick-track {
  display: flex;
  align-items: stretch;
}

/* top.css の「.top_gf ul li { width:32%; height:400px; margin:30px 10px }」を
   打ち消します（slick が幅を管理するため） */
.area_slider .slick-slide,
.area_slider .area_card {
  width: auto;
  height: auto;
  margin: 0;
  padding: 0 10px;
  background: none;
  list-style: none;
  float: none;
}

.area_slider .slick-slide > div {
  height: 100%;
}

.area_card > a {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  border-radius: 4px;
  background: #fff;
  color: var(--sh-ink);
  box-shadow: 0 2px 14px rgba(0, 0, 0, .12);
  transition: transform .35s ease, box-shadow .35s ease;
}

.area_card > a:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, .2);
  opacity: 1;
}

.area_card_img {
  display: block;
  overflow: hidden;
  background: var(--sh-tint);
}

/* top.css の「.top_gf ul li img { height: 200px }」より強い指定で
   3:2 の比率に固定します */
.area_slider .area_card .area_card_img img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  transition: transform .5s ease;
}

.area_card > a:hover .area_card_img img {
  transform: scale(1.05);
}

.area_card_body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  align-items: flex-start;
  padding: 20px 22px 22px;
}

.area_card_cat {
  display: inline-block;
  margin-bottom: 10px;
  padding: 3px 12px;
  border: 1px solid var(--sh-accent);
  border-radius: 2px;
  color: var(--sh-accent-dark);
  font-size: 11px;
  letter-spacing: .04em;
}

.area_card_ttl {
  display: block;
  margin-bottom: 8px;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.6;
}

.area_card_access {
  display: block;
  margin-bottom: 10px;
  color: var(--sh-accent-dark);
  font-size: 13px;
}

.area_card_txt {
  display: block;
  margin-bottom: 16px;
  color: var(--sh-text-light, #6f6a62);
  font-size: 14px;
  line-height: 1.8;
  text-align: left;
}

.area_card_more {
  display: inline-block;
  margin-top: auto;
  padding-right: 18px;
  position: relative;
  color: var(--sh-accent-dark);
  font-size: 13px;
  letter-spacing: .06em;
}

.area_card_more::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  width: 6px;
  height: 6px;
  border-top: 1px solid var(--sh-accent-dark);
  border-right: 1px solid var(--sh-accent-dark);
  transform: translateY(-50%) rotate(45deg);
}

/* 前へ / 次へ の矢印 */
.area_slider .slick-prev,
.area_slider .slick-next {
  width: 40px;
  height: 40px;
  z-index: 3;
}

.area_slider .slick-prev { left: -6px; }
.area_slider .slick-next { right: -6px; }

.area_slider .slick-prev::before,
.area_slider .slick-next::before {
  font-size: 32px;
  color: #fff;
  opacity: .9;
}

/* ページ送りの丸 */
.area_slider .slick-dots {
  position: static;
  margin-top: 22px;
}

/* ⚠ 消さないでください。
   top.css の「.top_gf ul li { width:32%; height:400px; background:#fff }」は
   ul の中の li すべてに効くため、ページ送りの丸（.slick-dots li）まで
   400px の白い箱になってしまいます（スライダーの下に白い四角が並ぶ症状）。
   スマホでは同じ指定が width:100% になるので、白い箱が縦に3つ並びます。
   ここで slick 本来の大きさに戻しています。 */
.top_gf .area_slider .slick-dots li,
.area_slider .slick-dots li {
  width: 20px;
  height: 20px;
  margin: 0 5px;
  padding: 0;
  background: none;
}

/* 1ページに収まりきっているとき（PCで3件以下）は、丸が1つだけ出ても
   意味がないので隠します。件数が増えれば自動で出てきます。 */
.area_slider .slick-dots li:only-child {
  display: none;
}

.area_slider .slick-dots li button::before {
  font-size: 10px;
  color: #fff;
  opacity: .5;
}

.area_slider .slick-dots li.slick-active button::before {
  color: #fff;
  opacity: 1;
}

@media screen and (max-width: 980px) {
  .area_slider .slick-slide,
  .area_slider .area_card {
    padding: 0 7px;
  }
  .area_card_body {
    padding: 16px 18px 18px;
  }
  .area_card_ttl {
    font-size: 1rem;
  }
  .area_slider .slick-prev,
  .area_slider .slick-next {
    display: none !important;   /* スマホはスワイプで操作します */
  }
}


/* ==========================================================================
   リゾートグランピングドットコム 掲載施設（フッターの上）
   施設の追加・削除は footer.php の <li> を増減してください。
   ========================================================================== */
.group_sites {
  padding: 70px 0;
  background: var(--sh-tint-soft);
}

.group_sites_en {
  margin-bottom: 6px;
  color: var(--sh-muted);
  font-size: 14px;
  letter-spacing: .08em;
  text-align: center;
}

.group_sites_ttl {
  margin-bottom: 40px;
  color: var(--sh-ink);
  font-size: 1.375rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-align: center;
}

.group_sites_list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 2%;
}

.group_sites_list li {
  width: 32%;
}

.group_sites_list a {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--sh-ink);
  font-size: 14px;
  line-height: 1.6;
}

.group_sites_img {
  flex: 0 0 110px;
  overflow: hidden;
}

.group_sites_img img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  transition: transform .4s var(--sh-ease, ease);
}

.group_sites_list a:hover .group_sites_img img {
  transform: scale(1.06);
}

.group_sites_name {
  flex: 1 1 auto;
}

@media screen and (max-width: 980px) {
  .group_sites {
    padding: 48px 0;
  }
  .group_sites_ttl {
    margin-bottom: 28px;
    font-size: 1.125rem;
  }
  .group_sites_list {
    gap: 16px 3%;
  }
  .group_sites_list li {
    width: 48.5%;
  }
  .group_sites_img {
    flex: 0 0 88px;
  }
  .group_sites_list a {
    font-size: 13px;
    gap: 10px;
  }
}

/* ポータルサイトの案内3つ（施設リストの下）*/
.rg_details {
  display: flex;
  flex-wrap: wrap;
  gap: 28px 2%;
  margin-top: 48px;
  padding-top: 36px;
  border-top: 1px solid var(--sh-line);
}

.rg_details dl {
  width: 32%;
  margin: 0;
}

.rg_details dt {
  margin-bottom: 10px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.6;
}

.rg_details dt a {
  color: var(--sh-accent-dark);
  text-decoration: underline;
}

.rg_details dt i {
  margin-left: 4px;
  font-size: 12px;
}

.rg_details dd {
  margin: 0;
  color: var(--sh-text-light, #6f6a62);
  font-size: 13px;
  line-height: 1.9;
}

@media screen and (max-width: 980px) {
  .rg_details {
    gap: 22px 3%;
    margin-top: 32px;
    padding-top: 26px;
  }
  .rg_details dl {
    width: 48.5%;
  }
}

@media screen and (max-width: 560px) {
  .group_sites_list li {
    width: 100%;
  }
  .rg_details dl {
    width: 100%;
  }
}

/* ==========================================================================
   画面右に固定されるバナー（PCのみ）
   位置や大きさはここで調整します。980px以下では非表示になります。
   ========================================================================== */
.reserve_pc {
  position: fixed;
  right: 0;
  bottom: 60px;
  z-index: 50;
  width: 210px;
  padding: 16px 14px;
  border-radius: 6px 0 0 6px;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 3px 18px rgba(0, 0, 0, .16);
  text-align: center;
}

.reserve_pc_ttl {
  margin-bottom: 12px;
  color: var(--sh-ink);
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: .04em;
}

.reserve_pc_ttl .eng {
  display: block;
  margin-bottom: 2px;
  color: var(--sh-accent-dark);
  font-size: 15px;
  letter-spacing: .1em;
}

.reserve_pc_tel {
  display: block;
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--sh-line);
  color: var(--sh-ink);
  line-height: 1.4;
}

.reserve_pc_tel .eng {
  font-size: 17px;
  font-weight: 600;
}

.reserve_pc_tel i {
  margin-right: 5px;
  color: var(--sh-accent-dark);
  font-size: 13px;
}

.reserve_pc_tel small {
  display: block;
  margin-top: 3px;
  color: var(--sh-muted);
  font-size: 11px;
}

/* ボタン2つ。is-fill を付けると塗りつぶしになります */
.reserve_pc_btn {
  display: block;
  padding: 11px 8px;
  border: 1px solid var(--sh-accent-dark);
  border-radius: 24px;
  background: #fff;
  color: var(--sh-accent-dark);
  font-size: 13px;
  letter-spacing: .04em;
  transition: background-color .3s ease, color .3s ease;
}

.reserve_pc_btn + .reserve_pc_btn {
  margin-top: 8px;
}

.reserve_pc_btn i {
  margin-right: 6px;
  font-size: 12px;
}

.reserve_pc_btn:hover {
  background: var(--sh-accent-dark);
  color: #fff;
  opacity: 1;
}

.reserve_pc_btn.is-fill {
  background: var(--sh-accent-dark);
  color: #fff;
}

.reserve_pc_btn.is-fill:hover {
  background: var(--sh-ink);
  border-color: var(--sh-ink);
}

@media screen and (max-width: 980px) {
  .reserve_pc {
    display: none;
  }
}

footer {
  background: var(--sh-ink);
  padding: 60px 0;
  color: #fff;
}

.f_menu {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.info {
  width: 320px;
  padding-right: 20px;
}

.f_address {
  padding: 20px;
}

.f_address .mail_btn {
  margin-top: 20px;
  width: 120px;
  text-align: center;
  padding: 6px 10px;
  border: 1px solid #fff;
}

.f_address .mail_btn a {
  color: #fff;
}

#footer-menu {
  width: 100%;
  padding: 20px;
}

.f_logo {
  width: 100%;
  filter: brightness(0) invert(1);
  margin-bottom: 1rem;
}

/* フッターのロゴ。
   大きすぎると隣の住所とのバランスが崩れるので、
   住所ブロックと近い高さになる幅にしています。
   大きさを変えたいときはこの width を調整してください。 */
.f_logo img {
  width: 150px;
  margin: auto;
}

@media screen and (max-width: 980px) {
  /* スマホでは縦積みになるため、ロゴ・住所・ボタンを中央で揃えます */
  .f_logo img {
    width: 130px;
  }

  /* PC用の右余白が残っているとロゴだけ左にずれます */
  footer .info {
    width: 100%;
    padding-right: 0;
  }

  .f_address {
    padding: 20px 0 0;
    text-align: center;
  }

  .f_address .mail_btn {
    margin-inline: auto;
  }
}

.f_tel a {
  color: #fff;
}

/* フッターメニュー
   管理画面でメニューを割り当てると ul の id が変わるため、
   id ではなく親の #footer-menu を起点に指定しています。
   （id 決め打ちだと、未割り当てのとき文字が暗いままになり読めません） */
#footer-menu ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

#footer-menu li {
  margin: 0 10px;
  flex: 1;
  text-align: center;
}

#footer-menu a {
  color: #fff;
}

#footer-menu a:hover {
  opacity: .7;
}

/* 下段：規約類。上段と分けて、小さめ・中央寄せで表示します */
#footer-menu .menu-legal {
  justify-content: center;
  gap: 8px 28px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, .18);
  font-size: 13px;
}

#footer-menu .menu-legal li {
  flex: none;
  margin: 0;
  white-space: nowrap;
}

footer .company {
  text-align: center;
  margin-top: 30px;
}

/* フッター end */


@media screen and (max-width:980px) {
  
}


.reserve_pc p span {
  display: block;
  font-size: 60%;
}

#footer_sp {
  display: none;
}

@media screen and (max-width:980px) {
  #footer_sp {
    display: block;
  }

  .reserve_sp {
    width: 100%;
    height: 60px;
    display: flex;
    position: fixed;
    bottom: 0;
    right: 0;
    z-index: 100;
    background: var(--sh-accent-dark);
    color: #fff;
    text-align: center;
  }

  .reserve_sp p {
    padding-top: 6px;
    text-align: center;
  }

  .reserve_sp p a {
    color: #fff;
    display: block;
  }

  .reserve_web,
  .reserve_tel,
  .reserve_btn {
    width: 33.33%;
  }

  .reserve_web,
  .reserve_tel,
  .reserve_btn {
    border-right: #fff solid 1px;
  }

  .reserve_btn:last-of-type {
    border-right: none;
  }

  .reserve_btn {
    background: var(--sh-tint);
  }

  .reserve_btn p a {
    color: var(--sh-ink);
  }

  .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: #e2e2e2;
    -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;
  }
}

/* 下層ページ */
/* パンくず（メインビジュアルの下端に重ねて表示）
   幅が足りないと項目が何行にも折り返してしまうため、
   1行に並べて、入りきらないときは横スクロールさせています。 */
.pankuzu {
  width: 90%;
  max-width: 1200px;
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  text-align: center;
}

.pankuzu .breadcrumbs {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 4px;
  overflow-x: auto;
  padding: 0;
  font-size: 12px;
  line-height: 1.5;
  white-space: nowrap;
  scrollbar-width: none;
}

.pankuzu .breadcrumbs::-webkit-scrollbar {
  display: none;
}

.pankuzu span {
  display: inline-block;
  margin: 0;
}

.pankuzu .pankuzu_sep {
  margin: 0 2px;
  opacity: .6;
}

.pankuzu a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 2px;
}

@media screen and (max-width: 980px) {
  .pankuzu {
    width: 92%;
    bottom: 10px;
  }
  .pankuzu .breadcrumbs {
    justify-content: flex-start;
    font-size: 11px;
  }
}

.wrapper {
  background: #fff;
}

.page_top_view {
  width: 100%;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.top_view_img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.top_view_img::before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 0;
  left: 0;
}

.top_view_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page_ttl {
  font-size: 1.5rem;
  color: #fff;
  padding-bottom: 1.5rem;
}

.page_ttl span {
  display: block;
  font-size: 4rem;
}

.page_ttl span::first-letter {
  color: #fff;
}

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 var(--sh-line);
  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;
  padding: 50px 0 30px;
}

@media screen and (max-width:980px) {
  h3.stripe {
    font-size: 2rem;
  }
}

h3.border {
  color: var(--sh-accent-dark);
  position: relative;
  text-align: center;
  font-size: 2.6rem;
  margin-bottom: 20px;
}

@media screen and (max-width:980px) {
  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 var(--sh-line);
  top: 0;
  bottom: 0;
  margin: auto;
  z-index: 10;
}

#group_plan {
  padding: 80px 0;
}

ul.plan_list {
  display: flex;
  justify-content: space-between;
}

ul.plan_list li {
  width: 100%;
}

.plan_item {
  width: 478px;
  margin-bottom: 50px;
}

.plan_item .photo {
  position: relative;
}

.plan_item .photo img {
  object-fit: cover;
  width: 100%;
  height: 240px;
}

.plan_item .photo p.plan_num {
  background: #648bb8;
  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 var(--sh-accent-dark);
  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: #648bb8;
}

.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 {
  background: #fff;
  padding: 80px 0px 100px;
  min-height: 500px;
}

@media screen and (max-width:980px) {
  .container.news_single {
    background: #fff;
    padding: 10% 5%;
    min-height: 300px;
    box-sizing: border-box;
  }
}

.container.news_single p.date {
  text-align: center;
}

.container.news_single h2 {
  padding: 15px 0 25px;
  margin-bottom: 55px;
  font-size: 2.4rem;
}

.container.news_single .article_content img {
  margin: 0 auto 45px;
  max-width: 100%;
  height: auto;
}

@media screen and (max-width:980px) {
  .container.news_single h2 {
    padding: 15px 0 25px;
    font-size: 2.0rem;
  }

  .container.news_single .article_content img {
    height: 240px;
    object-fit: cover;
  }
}

.container.news_single .article_content p {
  line-height: 2.0;
  word-break: break-word;
}

.container.news_list p.news_list {
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
}

ul.news_list li {
  border-bottom: 1px solid var(--sh-line);
  line-height: 1.5;
}

ul.news_list li .cate {
  color: #fff;
  background: var(--sh-accent-dark);
  padding: 6px 10px;
  margin-right: 10px;
  font-size: 12px;
  display: inline-block;
}

.qa_dl {
  font-size: 1.6rem;
  line-height: 1.7em;
  margin-bottom: 50px;
}

.qa_dl dd {
  text-indent: 1em;
}

@media screen and (max-width:980px) {
  .qa_dl dd {
    text-indent: 0;
  }
}

.qa_green_text {
  color: var(--sh-accent-dark);
  font-size: 2.0rem;
  font-weight: bold;
}

.qa_orange_text {
  color: var(--sh-accent-dark);
  font-size: 2.0rem;
  font-weight: bold;
}

.qa_mb {
  margin-bottom: 20px;
}

/* ------------------------------
   20190428追記
------------------------------ */
/* フッタ
--------------------------- */
footer .info {
  margin-bottom: 2em;
}

footer p.checkin a {
  color: #fff;
  padding-right: 1em;
}

.checkin_box {
  margin-bottom: 1em;
}

/* 矢印アイコン
--------------------------- */
.arrow {
  position: relative;
  display: inline-block;
  padding: 0 0 0 16px;
  color: #000;
  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: var(--sh-accent-dark);
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}

.external::after {
  right: 1px;
  width: 8px;
  height: 8px;
  border-top: 2px solid var(--sh-accent-dark);
  border-right: 2px solid var(--sh-accent-dark);
}

.wrapper_video {
  margin: 0 auto;
  width: 800px;
  text-align: left;
  position: relative;
  visibility: hidden;
}

#video {
  width: 100%;
  margin: 0 auto;
  padding: 0;
  background-color: #000;
}

.video_box {
  width: 800px;
  height: auto;
  margin: 0 auto;
  text-align: center;
}

.video_box video {
  width: 100%;
  height: auto;
  margin: 0 auto;
}

/* TOPへ戻るボタン */
#fixedTop {
  position: fixed;
  bottom: 0;
  right: 0;
}

#fixedTop:hover {
  background: rgba(50, 50, 50, 1);
}

/* 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;
}

/*全てのリスト・リンク共通*/
.language li {
  list-style: none;
  position: relative;
}

.language li p.lan-ja,
.language li a {
  background: var(--sh-tint);
  display: block;
  text-align: center;
  text-decoration: none;
  width: 100%;
  padding: 5px 0;
  border-radius: 18px;
}

/*子階層以降共通*/
.language li li {
  height: 0;
  overflow: hidden;
  transition: .5s;
  margin-top: 1px;
  margin-bottom: 6px;
}

.language li:hover>ul>li {
  height: 2rem;
  overflow: visible;
}

/* セクションの最後がボタンのとき、次のセクションやフッターに
   くっついて見えないよう下に余白をつけます。
   .pd1 / .pd2 はもともと下余白を持っているので対象外にしています。 */
section > .container:not(.pd1):not(.pd2) > .btn_link:last-child {
  margin-bottom: 60px;
}

@media screen and (max-width: 980px) {
  section > .container:not(.pd1):not(.pd2) > .btn_link:last-child {
    margin-bottom: 40px;
  }
}

.pd1 {
  padding: 0 0 50px;
}

.pd2 {
  padding: 50px 0;
}

.activity_list {
  display: flex;
  flex-wrap: wrap;
}

.activity_list_img {}

.activity_list_img img {
  width: 100%;
}

.activity_list li {
  width: 32%;
  margin-right: calc((100% - (32%*3))/2);
  margin-bottom: 30px;
  background: #fff;
}

.activity_list li:nth-of-type(3n) {
  margin-right: 0;
}

.activity_txt {
  padding: 1rem;
}

.activity_list_ttl {
  margin-bottom: 1rem;
  font-size: 16px;
  font-weight: 600;
}

@media screen and (max-width:980px) {
  .language {
    left: 12px;
    top: 10px;
    width: 110px;
  }

  .activity_list li {
    width: 48%;
    margin-bottom: 1rem;
    margin-right: 4%;
  }

  .activity_list li:nth-of-type(3n) {
    margin-right: 4%;
  }

  .activity_list li:nth-of-type(2n) {
    margin-right: 0;
  }

  .activity_list_img img {
    height: auto;
  }

  .page_ttl span {
    font-size: 3rem;
  }

  #footer-menu {
    padding: 20px 0;
  }

  #footer-menu ul {
    justify-content: center;
  }

  #footer-menu li {
    flex: none;
    width: 30%;
    padding: 5px;
  }
}

.thumbnail_full {
  width: 100%;
  margin-bottom: 1rem;
}

.thumbnail_full img {
  width: 100%;
}

.meal_wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
  margin-bottom: 100px;
}

.meal_wrap:last-of-type {
  margin-bottom: 0;
}

.meal_img {
  width: 60%;
}

.meal_img.reverse {
  margin-left: auto;
}

.meal_img img {
  width: 100%;
}

.meal_txt {
  width: 50%;
  padding: 40px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background: #fff;
}

.meal_txt.reverse {
  right: inherit;
  left: 0;
}

.list_disc li {
  display: flex;
  align-items: center;
}

.list_disc li::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  background: var(--sh-ink);
  border-radius: 50%;
  margin-right: 5px;
}

.tcenter {
  text-align: center;
}

@media screen and (max-width:980px) {
  .meal_wrap {
    margin-bottom: 50px;
  }

  .meal_img {
    width: 100%;
  }

  .meal_txt {
    width: 95%;
    padding: 20px;
    position: relative;
    top: inherit;
    right: inherit;
    transform: none;
    margin: -30px auto 0;
  }

  .meal_txt.reverse {
    left: inherit;
  }
}

#sb_instagram {
  padding: 0 1rem !important;
}

#sb_instagram::-webkit-scrollbar {
  overflow: hidden;
  width: 2px;
  background: var(--sh-tint-soft);
}

#sb_instagram::-webkit-scrollbar:horizontal {
  height: 3px;
}

#sb_instagram::-webkit-scrollbar-button {
  display: none;
}

#sb_instagram::-webkit-scrollbar-piece {
  background: var(--sh-tint);
}

#sb_instagram::-webkit-scrollbar-piece:start {
  background: var(--sh-tint);
}

#sb_instagram::-webkit-scrollbar-thumb,
.scrollbar::-webkit-scrollbar-corner {
  background: var(--sh-ink);
}

/*インスタボタン*/
.insta_btn {
  display: inline-flex;
  text-align: center;
  /*中央揃え*/
  align-items: center;
  color: #fff;
  /*文字色*/
  font-size: 20px;
  /*文字サイズ*/
  text-decoration: none;
  /*下線消す*/
  width: 100%;
  margin: 0 auto;
  justify-content: center;
}

.insta_btn:hover {
  /*ホバー時*/
  color: #fff;
  /*文字色*/
  transition: .5s;
  /*ゆっくり変化*/
}

.insta_btn.v2 {
  color: #333;
  justify-content: center;
}

.insta_btn.v2:hover {
  color: #333;
}

.insta_btn .insta {
  /*アイコンの背景*/
  position: relative;
  /*相対配置*/
  display: inline-block;
  width: 40px;
  /*幅*/
  height: 40px;
  /*高さ*/
  background: -webkit-linear-gradient(135deg, #427eff 0%, #f13f79 70%) no-repeat;
  background: linear-gradient(135deg, #427eff 0%, #f13f79 70%) no-repeat;
  /*グラデーション①*/
  overflow: hidden;
  /*はみ出た部分を隠す*/
  border-radius: 8px;
  /*角丸に*/
}

.insta_btn .insta:before {
  /*グラデーションを重ねるため*/
  content: '';
  position: absolute;
  /*絶対配置*/
  top: 23px;
  /*ずらす*/
  left: -18px;
  /*ずらす*/
  width: 50px;
  /*グラデーションカバーの幅*/
  height: 50px;
  /*グラデーションカバーの高さ*/
  background: -webkit-radial-gradient(#ffdb2c 10%, rgba(255, 105, 34, 0.65) 55%, rgba(255, 88, 96, 0) 70%);
  background: radial-gradient(#ffdb2c 10%, rgba(255, 105, 34, 0.65) 55%, rgba(255, 88, 96, 0) 70%);
  /*グラデーション②*/
}

.insta_btn .fa-instagram {
  /*アイコン*/
  color: #FFF;
  /*白に*/
  position: relative;
  /*z-indexを使うため*/
  z-index: 2;
  /*グラデーションより前に*/
  font-size: 35px;
  /*アイコンサイズ*/
  line-height: 40px;
  /*高さと合わせる*/
}

.account_name {
  display: inline-block;
  margin-left: 5px;
}

.h_insta .account_name {
  display: none;
}

.h_insta {
  margin-left: 20px;
}

@media screen and (max-width:980px) {
  .h_insta {
    position: static;
    margin-top: 20px;
    margin-left: 0;
  }

  .h_insta .account_name {
    display: inline-block;
  }
}

/* swiper */
/* 全体のスタイル */
.swiper-wrapper {
  width: 100%;
  height: 250px;
}

/* 全スライド共通スタイル */
.swiper-slide {
  width: 100%;
  height: 100%;
}

.swiper-slide img {
  width: 100%;
  height: 850px;
  object-fit: cover;
}

@media screen and (max-width:896px) {
  .swiper-slide img {
    height: 50vh;
  }
}

/*ページネーション*/
.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
  color: #000;
}

.qa_bk a,
.checkin_table a,
.main_contents a {
  text-decoration: underline;
}

/* TOPページ　チェックイン */
.top_access .checkin_table {
  border-collapse: separate;
  border-spacing: 5px 10px;
}

.top_access .checkin h2 {
  margin: 40px 0 20px 0;
}

.checkin_table th,
h3.col_base_dark {
  font-size: 1.2rem;
  font-weight: bold;
}

.checkin_table h3 {
  color: var(--sh-accent);
}

.checkin_table th {
  width: 24%;
  background-color: var(--sh-tint);
  vertical-align: middle;
}


.checkin_table td {
  padding: 20px;
  border: 1px solid var(--sh-tint);
}

@media screen and (max-width:980px) {

  .top_access th,
  .top_access td {
    display: block;
    width: 100%;
  }
}

/* TOPページ　チェックイン END */
.bg_beige1 {
  background-color: var(--sh-tint-soft);
}