@charset "UTF-8";
@import url("../css/reset.css");
@import url("../css/aos.css");
/*-------------------------------------------/
    ページ共通要素
/-------------------------------------------*/
/* 表示切替 ----------------------------- */
/*sp*/
@media screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }

  .tab {
    display: none !important;
  }
}
@media screen and (max-width: 1023px) {
  .pc_only {
    display: none !important;
  }
}
@media screen and (min-width: 768px) {
  .sp {
    display: none !important;
  }

  .tab_vertical {
    -ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
  }
}
@media screen and (min-width: 1024px) {
  .tab {
    display: none !important;
  }

  .pc_none {
    display: none !important;
  }

  .pc_vertical {
    -ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
  }
}
/* 縦書き */
.vertical {
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
}

.text-combine {
  text-combine-upright: all;
  -webkit-text-combine: horizontal;
  /*Safari */
  -ms-text-combine-horizontal: all;
  /*IE用*/
}

/* 横書き */
.horizontal {
  -ms-writing-mode: horizontal-tb;
  -webkit-writing-mode: horizontal-tb;
  writing-mode: horizontal-tb;
}

/*-------------------------------------------/
    ローディング画面
/-------------------------------------------*/
#loading {
  background: #6c272d;
  position: fixed;
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99999;
}
#loading .logo_box img {
  width: 375px;
}
#loading .logo_box p {
  color: #fff;
  text-align: center;
  margin-top: 1em;
}
@media screen and (max-width: 767px) {
  #loading .logo_box img {
    width: 50vw;
  }
  #loading .logo_box p {
    font-size: 1.8666666667vw;
  }
}

/*=====================================================

		メイン設定

======================================================*/
body {
  font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
  font-size: 16px;
  line-height: 1.6;
  max-width: 100%;
  color: #000000;
  -webkit-animation: fadeIn 2s;
  animation: fadeIn 2s;
  position: relative;
}
@media screen and (max-width: 767px) {
  body {
    font-size: 4vw;
  }
}

.wrapper {
  overflow-x: hidden;
}

/*=================================================

		共通設定

==================================================*/
img {
  image-rendering: -webkit-optimize-contrast;
}

img, object, embed {
  max-width: 100%;
  height: auto;
  *width: inherit;
  vertical-align: middle;
}

a {
  text-decoration: none;
  color: inherit;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  cursor: pointer;
}

a:hover {
  color: inherit;
}

a img {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  display: block;
  vertical-align: middle;
}

.indent {
  text-indent: -1em;
  padding-left: 1em;
}

/* フォント */
/* カラー */
.white {
  color: #fff;
}

.red {
  color: #e46969;
}

/* 背景 */
.bg_01 {
  background: url("../images/common/bg.jpg") top center repeat-y;
  background-size: 100% auto;
}

.bg_02 {
  background: url("../images/common/bg_07.jpg") top center repeat-y;
  background-size: 100% auto;
}

/*=================================================

		レイアウト

==================================================*/
.content {
  padding-left: 25px;
  padding-right: 25px;
}
.content .content__inner {
  width: 1300px;
  max-width: 100%;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 767px) {
  .content {
    padding-left: 3.3333333333vw;
    padding-right: 3.3333333333vw;
  }
  .content .content__inner {
    width: 100%;
  }
}

.content_wide {
  padding-left: 25px;
  padding-right: 25px;
}
.content_wide .content__inner {
  width: 1700px;
  max-width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .content_wide {
    padding-left: 3.3333333333vw;
    padding-right: 3.3333333333vw;
  }
  .content_wide .content__inner {
    width: 100%;
  }
}

.content_full .content__inner {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .content_full .content__inner {
    width: 100%;
  }
}

/*=================================================

	Googlemap 

==================================================*/
.gmap {
  position: relative;
  z-index: 0;
  overflow: hidden;
}

.gmap iframe {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: block;
}

/*=================================================

		tel　リンク

==================================================*/
@media screen and (min-width: 769px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
/*=================================================

		ヘッダー

==================================================*/
/* トグルボタン ------------------------------------*/
.nav-toggle {
  position: absolute;
  right: 0;
  top: 0;
  padding: 0;
  width: 120px;
  height: 120px;
  background: #432f2f;
  /*#282828*/
  text-align: center;
  font-size: 0px;
  letter-spacing: 0;
  box-sizing: border-box;
  pointer-events: auto;
  cursor: pointer;
  z-index: 99999;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}
.nav-toggle div {
  position: absolute;
  width: 50px;
  height: 25px;
  top: 47.5px;
  left: 50%;
  transform: translateX(-50%);
}
.nav-toggle div span {
  position: absolute;
  height: 2px;
  width: 50px;
  background: #fff;
  left: 0;
  -webkit-transition: .3s ease-in-out;
  -moz-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}
.nav-toggle div span:nth-child(1) {
  top: 0;
}
.nav-toggle div span:nth-child(2) {
  top: 11px;
  background: #6c272d;
}
.nav-toggle div span:nth-child(3) {
  top: 22px;
}
@media screen and (max-width: 767px) {
  .nav-toggle {
    right: 0;
    top: 0;
    padding: 0;
    width: 14.6666666667vw;
    height: 10.6666666667vw;
  }
  .nav-toggle div {
    position: absolute;
    width: 6.6666666667vw;
    height: 3.3333333333vw;
    top: 3.6666666667vw;
    left: 50%;
    transform: translateX(-50%);
  }
  .nav-toggle div span {
    position: absolute;
    height: 0.2666666667vw;
    width: 6.6666666667vw;
    background: #fff;
    left: 0;
    -webkit-transition: .3s ease-in-out;
    -moz-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
  }
  .nav-toggle div span:nth-child(1) {
    top: 0;
  }
  .nav-toggle div span:nth-child(2) {
    top: 1.4666666667vw;
  }
  .nav-toggle div span:nth-child(3) {
    top: 2.9333333333vw;
  }
}

header.open .nav-toggle div, header.fixed.open .nav-toggle div {
  position: absolute;
  width: 50px;
  height: 25px;
  top: 37.5px;
  left: 50%;
  transform: translateX(-50%);
}
header.open .nav-toggle div span, header.fixed.open .nav-toggle div span {
  position: absolute;
  height: 2px;
  width: 50px;
  background: #fff;
  left: 0;
  -webkit-transition: .3s ease-in-out;
  -moz-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}
header.open .nav-toggle div span:nth-child(1), header.fixed.open .nav-toggle div span:nth-child(1) {
  top: 6px;
  -webkit-transform: rotate(315deg);
  -moz-transform: rotate(315deg);
  transform: rotate(315deg);
}
header.open .nav-toggle div span:nth-child(2), header.fixed.open .nav-toggle div span:nth-child(2) {
  display: none;
}
header.open .nav-toggle div span:nth-child(3), header.fixed.open .nav-toggle div span:nth-child(3) {
  top: 6px;
  -webkit-transform: rotate(-315deg);
  -moz-transform: rotate(-315deg);
  transform: rotate(-315deg);
}
@media screen and (max-width: 767px) {
  header.open .nav-toggle div, header.fixed.open .nav-toggle div {
    position: absolute;
    width: 6.6666666667vw;
    height: 2.6666666667vw;
    background: rgba(40, 40, 40, 0);
    top: 3.3333333333vw;
    right: 2.6666666667vw;
  }
  header.open .nav-toggle div span, header.fixed.open .nav-toggle div span {
    position: absolute;
    height: 0.2666666667vw;
    width: 6.6666666667vw;
    background: #fff;
    left: 0;
    -webkit-transition: .3s ease-in-out;
    -moz-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
  }
  header.open .nav-toggle div span:nth-child(1), header.fixed.open .nav-toggle div span:nth-child(1) {
    top: 3.3333333333vw;
    -webkit-transform: rotate(315deg);
    -moz-transform: rotate(315deg);
    transform: rotate(315deg);
  }
  header.open .nav-toggle div span:nth-child(2), header.fixed.open .nav-toggle div span:nth-child(2) {
    display: none;
  }
  header.open .nav-toggle div span:nth-child(3), header.fixed.open .nav-toggle div span:nth-child(3) {
    top: 3.3333333333vw;
    -webkit-transform: rotate(-315deg);
    -moz-transform: rotate(-315deg);
    transform: rotate(-315deg);
  }
}

/* グローバルナビ */
header {
  position: relative;
  width: 100%;
  height: 120px;
  top: 0;
  left: 0;
  z-index: 9999;
  background: url("../images/common/bg_header.jpg") left top no-repeat;
  background-size: cover;
}
header.fixed {
  position: fixed;
}
header .main-navigation .main-navigation_inner {
  width: 1810px;
  max-width: 98.9583333333%;
  margin: 0 0 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
header .main-navigation .main-navigation_inner .logo {
  width: 375px;
  max-width: 19.53125vw;
  margin-right: auto;
}
header .main-navigation .main-navigation_inner .navigation {
  width: 1000px;
  max-width: calc(100% - 375/1920*100vw - 200px);
  margin: 0 auto;
}
header .main-navigation .main-navigation_inner .navigation .navigation_inner ul.main-menu {
  width: 100%;
  height: 100px;
  display: flex;
  justify-content: space-around;
  align-items: center;
}
header .main-navigation .main-navigation_inner .navigation .navigation_inner ul.main-menu li a {
  display: inline-block;
  padding: 0.5em;
  color: #fff;
  text-align: center;
}
header .main-navigation .main-navigation_inner .navigation .navigation_inner ul.main-menu li a span.jp {
  font-size: min(18 / 1300 * 100vw, 18px);
  display: block;
}
header .main-navigation .main-navigation_inner .navigation .navigation_inner ul.main-menu li a span.en {
  font-size: min(14 / 1300 * 100vw, 14px);
  color: #dcd99f;
  display: block;
}
header .main-navigation .main-navigation_inner .navigation .navigation_inner ul.main-menu li a:hover {
  opacity: 0.8;
  transform: scale(1.05);
}
header .main-navigation .main-navigation_inner .sns {
  display: none;
}
header .main-navigation .main-navigation_inner .contact-us {
  color: #fff;
  margin-left: auto;
  width: 200px;
  height: 120px;
  background: #6c272d;
}
header .main-navigation .main-navigation_inner .contact-us a {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
header .main-navigation .main-navigation_inner .contact-us a span {
  display: inline-block;
}
header .main-navigation .main-navigation_inner .contact-us a span.ttl {
  font-size: 0.9375rem;
}
header .main-navigation .main-navigation_inner .contact-us a span.tel {
  font-size: 1.375rem;
  font-weight: bold;
  padding-left: 1.5em;
  background: url("../images/common/icon_tel.png") left center no-repeat;
  background-size: 1.5625rem 1.5625rem;
}
header .main-navigation .main-navigation_inner .nav-toggle {
  display: none;
}
@media screen and (max-width: 1023px) {
  header .main-navigation {
    width: 100%;
    max-width: 100%;
    padding-left: 25px;
  }
  header .main-navigation .main-navigation_inner {
    max-width: 100%;
  }
  header .main-navigation .main-navigation_inner .logo {
    max-width: 36.62109375%;
  }
  header .main-navigation .main-navigation_inner .navigation {
    display: none;
  }
  header .main-navigation .main-navigation_inner .contact-us {
    margin-right: 120px;
  }
  header .main-navigation .main-navigation_inner .nav-toggle {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  header {
    position: relative;
    height: 10.6666666667vw;
  }
  header.fixed {
    position: fixed;
  }
  header .main-navigation {
    padding-left: 3.3333333333vw;
  }
  header .main-navigation .main-navigation_inner {
    padding-top: 0;
    align-items: center;
    height: 10.6666666667vw;
  }
  header .main-navigation .main-navigation_inner .logo {
    display: block;
    width: 50vw;
    max-width: 50vw;
  }
  header .main-navigation .main-navigation_inner .contact-us {
    display: none;
  }
  header .main-navigation .main-navigation_inner .nav-toggle {
    position: fixed;
  }
}

/* グローバルナビ オープンメニュー */
@media screen and (max-width: 1023px) {
  header.open, header.fixed.open {
    position: fixed;
    top: 0;
    left: 0;
    background: url("../images/common/bg_menu.jpg") top center no-repeat;
    background-size: cover;
    width: 100%;
    height: 100vh;
  }
  header.open .main-navigation, header.fixed.open .main-navigation {
    position: relative;
    height: 100%;
    overflow-y: auto;
    padding-left: 0;
    padding-bottom: 4.8828125vw;
  }
  header.open .main-navigation .main-navigation_inner, header.fixed.open .main-navigation .main-navigation_inner {
    height: 100%;
    padding-left: 0;
    padding-right: 0;
    z-index: 2;
    flex-direction: column;
    height: auto;
  }
  header.open .main-navigation .main-navigation_inner .logo, header.fixed.open .main-navigation .main-navigation_inner .logo {
    display: block;
    width: 36.62109375vw;
    max-width: 100%;
    margin-bottom: 4.8828125vw;
    padding: 10px 0;
  }
  header.open .main-navigation .main-navigation_inner .logo a, header.fixed.open .main-navigation .main-navigation_inner .logo a {
    display: block;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
  }
  header.open .main-navigation .main-navigation_inner .navigation, header.fixed.open .main-navigation .main-navigation_inner .navigation {
    display: block;
    width: 100%;
    position: relative;
    z-index: -1;
  }
  header.open .main-navigation .main-navigation_inner .navigation .navigation_inner, header.fixed.open .main-navigation .main-navigation_inner .navigation .navigation_inner {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  header.open .main-navigation .main-navigation_inner .navigation ul.main-menu, header.fixed.open .main-navigation .main-navigation_inner .navigation ul.main-menu {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 0 auto 5.859375vw;
    color: #fff;
    height: auto;
  }
  header.open .main-navigation .main-navigation_inner .navigation ul.main-menu li, header.fixed.open .main-navigation .main-navigation_inner .navigation ul.main-menu li {
    position: relative;
    height: 100%;
    margin: 0;
    width: 100%;
  }
  header.open .main-navigation .main-navigation_inner .navigation ul.main-menu li a, header.fixed.open .main-navigation .main-navigation_inner .navigation ul.main-menu li a {
    display: flex;
    justify-content: center;
    padding: 0.5em;
    color: #fff;
    text-align: center;
  }
  header.open .main-navigation .main-navigation_inner .navigation ul.main-menu li a span.jp, header.fixed.open .main-navigation .main-navigation_inner .navigation ul.main-menu li a span.jp {
    font-size: 3.125vw;
    display: inline-block;
  }
  header.open .main-navigation .main-navigation_inner .navigation ul.main-menu li a span.en, header.fixed.open .main-navigation .main-navigation_inner .navigation ul.main-menu li a span.en {
    font-size: 2.734375vw;
    color: #dcd99f;
    display: inline-block;
  }
  header.open .main-navigation .main-navigation_inner .navigation ul.main-menu li a:hover, header.fixed.open .main-navigation .main-navigation_inner .navigation ul.main-menu li a:hover {
    opacity: 0.8;
    transform: scale(1.05);
  }
  header.open .main-navigation .main-navigation_inner .sns, header.fixed.open .main-navigation .main-navigation_inner .sns {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
  }
  header.open .main-navigation .main-navigation_inner .sns a, header.fixed.open .main-navigation .main-navigation_inner .sns a {
    margin: 0.5em;
  }
  header.open .main-navigation .main-navigation_inner .contact-us, header.fixed.open .main-navigation .main-navigation_inner .contact-us {
    color: #fff;
    margin-left: auto;
    margin-right: auto;
    width: 36.1328125vw;
    height: 11.71875vw;
    background: #6c272d;
  }
  header.open .main-navigation .main-navigation_inner .contact-us a, header.fixed.open .main-navigation .main-navigation_inner .contact-us a {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  header.open .main-navigation .main-navigation_inner .contact-us a span, header.fixed.open .main-navigation .main-navigation_inner .contact-us a span {
    display: inline-block;
  }
  header.open .main-navigation .main-navigation_inner .contact-us a span.ttl, header.fixed.open .main-navigation .main-navigation_inner .contact-us a span.ttl {
    font-size: 2.734375vw;
  }
  header.open .main-navigation .main-navigation_inner .contact-us a span.tel, header.fixed.open .main-navigation .main-navigation_inner .contact-us a span.tel {
    font-size: 3.90625vw;
    font-weight: bold;
    padding-left: 1.5em;
    background: url("../images/common/icon_tel.png") left center no-repeat;
    background-size: 0.8928571429em auto;
  }
  header.open .main-navigation .main-navigation_inner .nav-toggle, header.fixed.open .main-navigation .main-navigation_inner .nav-toggle {
    background: rgba(108, 39, 45, 0);
    position: fixed;
  }
}
@media screen and (max-width: 767px) {
  header.open .main-navigation, header.fixed.open .main-navigation {
    position: fixed;
    height: 100%;
    overflow-y: auto;
    padding: 0 3.3333333333vw 6.6666666667vw;
  }
  header.open .main-navigation .main-navigation_inner, header.fixed.open .main-navigation .main-navigation_inner {
    height: auto;
    padding-left: 0;
    padding-right: 0;
    width: 100%;
    flex-direction: column;
    justify-content: center;
    z-index: 2;
  }
  header.open .main-navigation .main-navigation_inner .logo, header.fixed.open .main-navigation .main-navigation_inner .logo {
    display: block;
    width: 50vw;
    max-width: 100%;
    margin-bottom: 6.6666666667vw;
    padding: 1.3333333333vw 0;
  }
  header.open .main-navigation .main-navigation_inner .logo a, header.fixed.open .main-navigation .main-navigation_inner .logo a {
    display: block;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
  }
  header.open .main-navigation .main-navigation_inner .navigation, header.fixed.open .main-navigation .main-navigation_inner .navigation {
    display: block;
    width: 100%;
    max-width: 100%;
    position: relative;
    z-index: -1;
  }
  header.open .main-navigation .main-navigation_inner .navigation .navigation_inner, header.fixed.open .main-navigation .main-navigation_inner .navigation .navigation_inner {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  header.open .main-navigation .main-navigation_inner .navigation ul.main-menu, header.fixed.open .main-navigation .main-navigation_inner .navigation ul.main-menu {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 0 auto 8vw;
    color: #fff;
    height: auto;
  }
  header.open .main-navigation .main-navigation_inner .navigation ul.main-menu li, header.fixed.open .main-navigation .main-navigation_inner .navigation ul.main-menu li {
    position: relative;
    height: 100%;
    margin: 0;
    width: 100%;
  }
  header.open .main-navigation .main-navigation_inner .navigation ul.main-menu li a, header.fixed.open .main-navigation .main-navigation_inner .navigation ul.main-menu li a {
    display: flex;
    justify-content: center;
    padding: 0.5em;
    color: #fff;
    text-align: center;
  }
  header.open .main-navigation .main-navigation_inner .navigation ul.main-menu li a span.jp, header.fixed.open .main-navigation .main-navigation_inner .navigation ul.main-menu li a span.jp {
    font-size: 4.2666666667vw;
    display: inline-block;
    margin-right: 1em;
  }
  header.open .main-navigation .main-navigation_inner .navigation ul.main-menu li a span.en, header.fixed.open .main-navigation .main-navigation_inner .navigation ul.main-menu li a span.en {
    font-size: 3.7333333333vw;
    color: #dcd99f;
    display: inline-block;
  }
  header.open .main-navigation .main-navigation_inner .navigation ul.main-menu li a:hover, header.fixed.open .main-navigation .main-navigation_inner .navigation ul.main-menu li a:hover {
    opacity: 0.8;
    transform: scale(1);
  }
  header.open .main-navigation .main-navigation_inner .sns, header.fixed.open .main-navigation .main-navigation_inner .sns {
    display: flex;
    justify-content: center;
    margin-bottom: 6.6666666667vw;
  }
  header.open .main-navigation .main-navigation_inner .sns a, header.fixed.open .main-navigation .main-navigation_inner .sns a {
    width: 4.2666666667vw;
    margin: 0.5em;
  }
  header.open .main-navigation .main-navigation_inner .contact-us, header.fixed.open .main-navigation .main-navigation_inner .contact-us {
    display: flex;
    color: #fff;
    margin-left: auto;
    margin-right: auto;
    width: 49.3333333333vw;
    height: 16vw;
    background: #6c272d;
  }
  header.open .main-navigation .main-navigation_inner .contact-us a, header.fixed.open .main-navigation .main-navigation_inner .contact-us a {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  header.open .main-navigation .main-navigation_inner .contact-us a span, header.fixed.open .main-navigation .main-navigation_inner .contact-us a span {
    display: inline-block;
  }
  header.open .main-navigation .main-navigation_inner .contact-us a span.ttl, header.fixed.open .main-navigation .main-navigation_inner .contact-us a span.ttl {
    font-size: 3.7333333333vw;
  }
  header.open .main-navigation .main-navigation_inner .contact-us a span.tel, header.fixed.open .main-navigation .main-navigation_inner .contact-us a span.tel {
    font-size: 5.3333333333vw;
    font-weight: bold;
    padding-left: 1.5em;
    background: url("../images/common/icon_tel.png") left center no-repeat;
    background-size: 0.8928571429em auto;
  }
  header.open .main-navigation .main-navigation_inner .nav-toggle, header.fixed.open .main-navigation .main-navigation_inner .nav-toggle {
    position: fixed;
    background: rgba(108, 39, 45, 0);
  }
}

/*=================================================

		フッター

==================================================*/
footer {
  position: relative;
  z-index: 0;
  color: #fff;
  width: 100%;
  height: 100%;
  background: url("../images/common/bg_footer.jpg") center center no-repeat;
  background-size: cover;
  padding-top: 5.2083333333vw;
  padding-bottom: 2.6041666667vw;
  padding-left: 25px;
  padding-right: 25px;
}
footer .footer__inner {
  width: 1700px;
  max-width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  padding-left: 10.4166666667vw;
}
footer .footer__inner .footer-logo {
  margin-bottom: 4.6875vw;
}
footer .footer__inner .footer-logo img {
  width: 170px;
  max-width: 8.8541666667vw;
}
footer .footer__inner .f-navigation {
  width: 440px;
  position: absolute;
  right: 0;
  top: 0;
}
footer .footer__inner .f-navigation .f-menu {
  margin: 0 auto 35px;
  color: #fff;
  text-align: left;
  color: #fff;
}
footer .footer__inner .f-navigation .f-menu li {
  position: relative;
}
footer .footer__inner .f-navigation .f-menu li a {
  display: flex;
  align-items: center;
  padding: 0.5em 0;
}
footer .footer__inner .f-navigation .f-menu li a span {
  height: 100%;
}
footer .footer__inner .f-navigation .f-menu li a span.jp {
  font-size: 1.125rem;
  margin-right: 1em;
}
footer .footer__inner .f-navigation .f-menu li a span.en {
  font-size: 0.875rem;
  color: #dcd99f;
}
footer .footer__inner .f-navigation .f-menu li a:hover {
  opacity: 0.8;
}
footer .footer__inner .f-navigation .sns {
  display: flex;
  justify-content: flex-start;
}
footer .footer__inner .f-navigation .sns a {
  margin-right: 1em;
}
footer .footer__inner .footer-info {
  margin-bottom: 4.6875vw;
  max-width: 50%;
}
footer .footer__inner .footer-info .info_text {
  padding-top: 1em;
}
footer .footer__inner .footer-info .info_text p {
  font-size: 1rem;
  line-height: 1.6;
}
footer .footer__inner .footer-info .info_text p.name {
  margin-bottom: 1em;
}
footer .footer__inner .copyright {
  max-width: 100%;
  margin: 0 auto;
}
footer .footer__inner .copyright p {
  font-size: 0.875rem;
  color: #fff;
  margin: 0.5em;
}
footer .footer__inner .copyright p a {
  margin-left: 1em;
  display: inline-block;
}
@media screen and (max-width: 1023px) {
  footer .footer__inner {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    padding-left: 0;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  footer .footer__inner .footer-logo {
    width: 100%;
    order: 1;
  }
  footer .footer__inner .footer-logo img {
    max-width: 16.6015625vw;
  }
  footer .footer__inner .f-navigation {
    width: 350px;
    max-width: 45%;
    margin-bottom: 4.8828125vw;
    position: relative;
    right: 0;
    top: 0;
    order: 3;
  }
  footer .footer__inner .footer-info {
    margin-bottom: 4.8828125vw;
    max-width: 55%;
    order: 2;
  }
  footer .footer__inner .copyright {
    max-width: 100%;
    margin: 0 auto;
    order: 3;
  }
  footer .footer__inner .copyright p {
    font-size: 0.875rem;
    color: #fff;
    margin: 0.5em 0;
  }
  footer .footer__inner .copyright p a {
    margin-left: 1em;
    display: inline-block;
  }
}
@media screen and (max-width: 767px) {
  footer {
    background: url("../images/common/bg_footer_sp.jpg") center bottom no-repeat;
    background-size: cover;
  }
  footer .footer__inner {
    padding-top: 10vw;
    padding-bottom: 3.3333333333vw;
    padding-left: 3.3333333333vw;
    padding-right: 3.3333333333vw;
    z-index: 1;
  }
  footer .footer__inner .footer-logo {
    width: 100%;
    max-width: 100%;
    margin: 0 auto 10vw;
    order: 1;
  }
  footer .footer__inner .footer-logo img {
    display: block;
    width: 22.6666666667vw;
    margin: 0 auto;
  }
  footer .footer__inner .f-navigation {
    width: 100%;
    max-width: 100%;
    position: relative;
    margin-bottom: 66.6666666667vw;
    order: 2;
  }
  footer .footer__inner .f-navigation .f-menu {
    margin: 0 auto 4vw;
    color: #fff;
    text-align: center;
  }
  footer .footer__inner .f-navigation .f-menu li {
    position: relative;
  }
  footer .footer__inner .f-navigation .f-menu li a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5em 0;
  }
  footer .footer__inner .f-navigation .f-menu li a span {
    height: 100%;
  }
  footer .footer__inner .f-navigation .f-menu li a span.jp {
    font-size: 4.2666666667vw;
    margin-right: 1em;
  }
  footer .footer__inner .f-navigation .f-menu li a span.en {
    font-size: 3.7333333333vw;
    color: #dcd99f;
  }
  footer .footer__inner .f-navigation .sns {
    display: flex;
    justify-content: center;
    margin-bottom: 6.6666666667vw;
  }
  footer .footer__inner .f-navigation .sns a {
    width: 4.2666666667vw;
    margin: 0.5em;
  }
  footer .footer__inner .footer-info {
    max-width: 100%;
    text-align: center;
    margin-bottom: 6.6666666667vw;
    flex-wrap: wrap;
    order: 2;
  }
  footer .footer__inner .footer-info .info_text {
    width: 100%;
    padding-top: 1em;
    padding-left: 0;
  }
  footer .footer__inner .footer-info .info_text p {
    font-size: 4vw;
    line-height: 1.6;
  }
  footer .footer__inner .footer-info .info_text p.name {
    margin-bottom: 0.5em;
  }
  footer .footer__inner .copyright {
    text-align: center;
    order: 4;
  }
  footer .footer__inner .copyright p {
    font-size: 2.8vw;
    color: #fff;
    margin: 0.5em;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  footer .footer__inner .copyright p a {
    margin-left: 1em;
    display: inline-block;
  }
}

/* ページトップへ */
#pagetop {
  display: none;
  width: 80px;
  max-width: 80px;
  height: 80px;
  position: fixed;
  top: auto;
  bottom: 30px;
  right: 70px;
  z-index: 9999;
}
#pagetop.stop {
  position: absolute;
  bottom: auto;
  top: -40px;
}
#pagetop a {
  width: 80px;
  height: 80px;
}
@media screen and (max-width: 767px) {
  #pagetop {
    display: none;
    width: 10.6666666667vw;
    max-width: 10.6666666667vw;
    height: 10.6666666667vw;
    position: fixed;
    top: auto;
    bottom: 3.3333333333vw;
    right: 1.6666666667vw;
    z-index: 9998;
  }
  #pagetop.stop {
    position: absolute;
    bottom: auto;
    top: -5.3333333333vw;
  }
  #pagetop a {
    width: 10.6666666667vw;
    height: 10.6666666667vw;
  }
}

body.fixed #pagetop {
  display: none !important;
}

/*=================================================

		kv

==================================================*/
#kv {
  position: relative;
  margin: 0 auto;
  z-index: 2;
  background: #432f2f;
}
#kv .kv_in {
  position: relative;
  display: block;
  width: 100%;
  padding-bottom: 56.25%;
  margin: 0 auto;
  z-index: 1;
  overflow: hidden;
}
#kv .kv_in video {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#kv.page .kv_in {
  position: relative;
  display: block;
  width: 100%;
  height: 0;
  padding-bottom: 36.4583333333%;
  margin: 0 auto;
  z-index: 1;
  overflow: hidden;
}
#kv.page .kv_in img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 2;
}
#kv.page .kv_in .kv-title {
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 4.1666666667vw;
  z-index: 3;
}
#kv.page .kv_in .kv-title .page-title {
  width: 100%;
  text-align: center;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  line-height: 1.5;
  font-weight: normal;
}
#kv.page .kv_in .kv-title .page-title span {
  width: 100%;
  display: block;
  text-align: center;
}
#kv.page .kv_in .kv-title .page-title span.jp {
  font-size: 36px;
  color: #fff;
}
#kv.page .kv_in .kv-title .page-title span.en {
  font-size: 18px;
  color: #dcd99f;
}
#kv.page .kv_in .kv-title .page-title::before {
  position: absolute;
  content: "";
  background: url("../images/common/deco_01.png") no-repeat;
  background-size: contain;
  width: 75px;
  height: 75px;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}
@media screen and (max-width: 767px) {
  #kv .kv_in {
    position: relative;
    display: block;
    width: 100%;
    padding-bottom: 56.25%;
    margin: 0 auto;
    z-index: 1;
    overflow: hidden;
  }
  #kv .kv_in video {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  #kv.page .kv_in {
    position: relative;
    display: block;
    width: 100%;
    height: 0;
    padding-bottom: 36.4%;
    margin: 0 auto;
    z-index: 1;
    overflow: hidden;
  }
  #kv.page .kv_in img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 100%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 2;
  }
  #kv.page .kv_in .kv-title {
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 3.3333333333vw;
    z-index: 3;
  }
  #kv.page .kv_in .kv-title .page-title {
    width: 100%;
    text-align: center;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    line-height: 1.5;
    font-weight: normal;
  }
  #kv.page .kv_in .kv-title .page-title span {
    width: 100%;
    display: block;
    text-align: center;
  }
  #kv.page .kv_in .kv-title .page-title span.jp {
    font-size: 5.3333333333vw;
    color: #fff;
  }
  #kv.page .kv_in .kv-title .page-title span.en {
    font-size: 3.7333333333vw;
    color: #dcd99f;
  }
  #kv.page .kv_in .kv-title .page-title::before {
    position: absolute;
    content: "";
    background: url("../images/common/deco_01.png") no-repeat;
    background-size: contain;
    width: 10vw;
    height: 10vw;
    top: -3.7333333333vw;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
  }
}

/*=================================================

		見出し/テキスト

==================================================*/
.sec-title {
  width: 100%;
  padding-top: 0.5em;
  margin: 0 auto 1.5em;
  font-size: min(36 / 1920 * 100vw, 36px);
  line-height: 1.2;
  font-weight: 500;
  text-align: center;
  position: relative;
  z-index: 0;
}
.sec-title span {
  display: inline-block;
  position: relative;
}
.sec-title span::before {
  position: absolute;
  content: "";
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 75px;
  height: 75px;
  background: url("../images/common/deco_01.png") center center no-repeat;
  background-size: contain;
  z-index: -1;
}
.sec-title.white {
  color: #fff;
}
@media screen and (max-width: 1023px) {
  .sec-title {
    font-size: min(36 / 1024 * 100vw, 36px);
  }
}
@media screen and (max-width: 767px) {
  .sec-title {
    font-size: 5.3333333333vw;
  }
  .sec-title span {
    display: inline-block;
    position: relative;
  }
  .sec-title span::before {
    position: absolute;
    content: "";
    top: -4vw;
    left: 50%;
    transform: translateX(-50%);
    width: 10vw;
    height: 10vw;
    background: url("../images/common/deco_01.png") center center no-repeat;
    background-size: contain;
    z-index: -1;
  }
}

.sec-title_v {
  font-size: min(30 / 1700 * 100vw, 30px);
  line-height: 1.6666666667;
  padding-right: 1.3333333333em;
  position: relative;
  z-index: 0;
}
.sec-title_v::before {
  position: absolute;
  content: "";
  top: 1.3333333333em;
  right: -1.3333333333em;
  transform: translateX(-50%);
  width: 2.5em;
  height: 2.5em;
  background: url("../images/common/deco_01.png") center center no-repeat;
  background-size: contain;
  z-index: -1;
}
.sec-title_v.white {
  color: #fff;
}
@media screen and (max-width: 1023px) {
  .sec-title_v {
    font-size: min(30 / 1024 * 100vw, 30px);
  }
}
@media screen and (max-width: 767px) {
  .sec-title_v {
    font-size: 4.8vw;
    line-height: 1.3888888889;
  }
}

.sec-title_v2 {
  font-size: min(30 / 1500 * 100vw, 30px);
  line-height: 1.6666666667;
  padding-right: 1.3333333333em;
  position: relative;
  z-index: 0;
}
.sec-title_v2::before {
  position: absolute;
  content: "";
  top: 1.3333333333em;
  right: -1.3333333333em;
  transform: translateX(-50%);
  width: 2.5em;
  height: 2.5em;
  background: url("../images/common/deco_01.png") center center no-repeat;
  background-size: contain;
  z-index: -1;
}
.sec-title_v2.white {
  color: #fff;
}
@media screen and (max-width: 1023px) {
  .sec-title_v2 {
    font-size: min(30 / 1024 * 100vw, 30px);
  }
  .sec-title_v2::before {
    position: absolute;
    content: "";
    top: -0.5em;
    right: auto;
    left: -1.3333333333em;
    transform: unset;
    width: 2.5em;
    height: 2.5em;
    background: url("../images/common/deco_01.png") center center no-repeat;
    background-size: contain;
    z-index: -1;
  }
}
@media screen and (max-width: 767px) {
  .sec-title_v2 {
    font-size: 4.8vw;
    line-height: 1.3888888889;
  }
}

.sec-title_l {
  width: 100%;
  margin: 0 auto 1.5em;
  line-height: 1.2;
  font-weight: 500;
  text-align: left;
  position: relative;
  z-index: 1;
  font-size: min(30 / 1500 * 100vw, 30px);
}
.sec-title_l span {
  display: inline-block;
  font-size: min(24 / 1500 * 100vw, 24px);
}
.sec-title_l.white {
  color: #fff;
}
.sec-title_l::before {
  position: absolute;
  content: "";
  top: -0.75em;
  left: calc(-40/30*1em);
  width: calc(75/30*1em);
  height: calc(75/30*1em);
  background: url("../images/common/deco_01.png") center center no-repeat;
  background-size: contain;
  z-index: -1;
}
@media screen and (max-width: 1023px) {
  .sec-title_l {
    font-size: min(30 / 1024 * 100vw, 30px);
  }
  .sec-title_l span {
    font-size: min(24 / 1024 * 100vw, 24px);
  }
}
@media screen and (max-width: 767px) {
  .sec-title_l {
    font-size: 4.8vw;
  }
  .sec-title_l span {
    font-size: 4vw;
  }
  .sec-title_l::before {
    position: absolute;
    content: "";
    top: -0.75em;
    left: calc(-40/30*1em);
    width: calc(75/30*1em);
    height: calc(75/30*1em);
    background: url("../images/common/deco_01.png") center center no-repeat;
    background-size: contain;
    z-index: -1;
  }
}

.sec-smalltitle {
  text-align: center;
  font-size: min(30 / 1500 * 100vw, 30px);
  margin-bottom: 1.5em;
}
.sec-smalltitle span.small {
  font-size: min(18 / 1500 * 100vw, 18px);
}
@media screen and (max-width: 1023px) {
  .sec-smalltitle {
    font-size: min(30 / 1024 * 100vw, 30px);
  }
  .sec-smalltitle span.small {
    font-size: min(18 / 1024 * 100vw, 18px);
  }
}
@media screen and (max-width: 767px) {
  .sec-smalltitle {
    font-size: 4.8vw;
  }
  .sec-smalltitle span.small {
    font-size: 4.2666666667vw;
  }
}

p {
  font-size: 1.125rem;
  line-height: 1.8;
}
p.small {
  font-size: 1rem;
}
@media screen and (max-width: 767px) {
  p {
    font-size: 4.2666666667vw;
    line-height: 1.5;
  }
  p.small {
    font-size: 4vw;
  }
}

h3 {
  font-size: 2rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  h3 {
    font-size: 8vw;
  }
  h3 .img-ttl {
    height: 5.6vw;
    width: auto;
  }
}

h4 {
  font-size: 1.625rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  h4 {
    font-size: 4.8vw;
  }
}

/* 余白調整 */
.mb1 {
  margin-bottom: 1em;
}

/*=================================================

		ボタン

==================================================*/
.btn {
  cursor: pointer;
}
.btn:hover {
  opacity: 0.8;
}

.btn_detail {
  margin-left: auto;
}
.btn_detail a {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  color: #dcd99f;
  font-size: min(20 / 1920 * 100vw, 20px);
}
.btn_detail a::before {
  content: "";
  width: 8.5em;
  height: 2px;
  background: #dcd99f;
  margin-right: 0.5em;
  transition: 0.3s all;
}
.btn_detail a:hover::before {
  content: "";
  width: 10px;
  height: 2px;
  background: #dcd99f;
  margin-right: 0.5em;
}
@media screen and (max-width: 1023px) {
  .btn_detail a {
    font-size: min(20 / 1024 * 100vw, 20px);
  }
}
@media screen and (max-width: 767px) {
  .btn_detail a {
    font-size: 4.2666666667vw;
  }
  .btn_detail a::before {
    width: 22.6666666667vw;
  }
  .btn_detail a:hover::before {
    width: 1.3333333333vw;
  }
}

/*=================================================

		トップページ

==================================================*/
/* ごあいさつ */
#sec-greeting .content__inner {
  padding-top: 100px;
  padding-bottom: 100px;
}
#sec-greeting .message-box {
  position: relative;
  width: 100%;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  margin: 0 0 0 auto;
}
#sec-greeting .message-box .text_box {
  position: relative;
  z-index: 2;
}
#sec-greeting .message-box .text_box h2 {
  position: relative;
  font-size: 1.875rem;
  font-weight: normal;
  margin-left: 1.5em;
  letter-spacing: 0.2em;
}
#sec-greeting .message-box .text_box h2 span {
  font-size: 1.375rem;
  line-height: 2;
  display: inline-block;
}
#sec-greeting .message-box .text_box p {
  font-size: 1.125rem;
  font-weight: normal;
  line-height: 2;
  letter-spacing: 0.2em;
}
#sec-greeting .message-box .text_box p:not(:last-child) {
  margin-left: 2em;
}
@media screen and (max-width: 1023px) {
  #sec-greeting {
    padding-left: 4.8828125vw;
    padding-right: 4.8828125vw;
  }
  #sec-greeting .message-box .text_box {
    position: relative;
    z-index: 2;
  }
  #sec-greeting .message-box .text_box h2 {
    position: relative;
    font-size: 1.625rem;
    margin-left: 0;
    margin-bottom: 1em;
  }
  #sec-greeting .message-box .text_box p {
    font-size: 1.375rem;
    line-height: 1.7;
  }
  #sec-greeting .message-box .text_box p:not(:last-child) {
    margin-left: 0;
    margin-bottom: 1em;
  }
}
@media screen and (max-width: 767px) {
  #sec-greeting {
    padding-left: 9.3333333333vw;
    padding-right: 9.3333333333vw;
  }
  #sec-greeting .content__inner {
    padding-top: 13.3333333333vw;
    padding-bottom: 13.3333333333vw;
  }
  #sec-greeting .message-box .text_box {
    position: relative;
    z-index: 2;
  }
  #sec-greeting .message-box .text_box h2 {
    position: relative;
    font-size: 5.6vw;
    margin-left: 0;
    margin-bottom: 1em;
    letter-spacing: normal;
  }
  #sec-greeting .message-box .text_box h2 span {
    font-size: 4.2666666667vw;
  }
  #sec-greeting .message-box .text_box p {
    font-size: 4.2666666667vw;
    line-height: 1.7;
    letter-spacing: normal;
    text-align: justify;
  }
  #sec-greeting .message-box .text_box p:not(:last-child) {
    margin-left: 0;
    margin-bottom: 1em;
  }
}

/* ピックアップ */
#sec-pick-up .pickup-wrap .pickup_box {
  width: 100%;
  color: #fff;
  background: url("../images/common/bg_00.jpg") top center no-repeat;
  background-size: cover;
  display: flex;
  position: relative;
}
#sec-pick-up .pickup-wrap .pickup_box .pic {
  width: 1112px;
  max-width: 57.9166666667%;
}
#sec-pick-up .pickup-wrap .pickup_box .ttl_box {
  margin-top: 4.6875vw;
  width: 7.8125%;
}
#sec-pick-up .pickup-wrap .pickup_box .text_box {
  width: 390px;
  max-width: 20.3125%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#sec-pick-up .pickup-wrap .pickup_box .text_box p {
  font-size: min(18 / 1500 * 100vw, 18px);
  line-height: 2.7777777778em;
}
#sec-pick-up .pickup-wrap .pickup_box .text_box .btn_detail {
  margin-top: 2.0833333333vw;
}
#sec-pick-up .pickup-wrap .pickup_box#pickup_cuisine {
  padding-left: 0;
  padding-right: 25px;
}
#sec-pick-up .pickup-wrap .pickup_box#pickup_cuisine .sub-pic_01 {
  position: absolute;
  width: 250px;
  max-width: 13.0208333333%;
  top: -4.4270833333vw;
  right: 0;
}
#sec-pick-up .pickup-wrap .pickup_box#pickup_cuisine .sub-pic_02 {
  position: absolute;
  top: 29.9479166667vw;
  left: 50%;
  width: 400px;
  max-width: 20.8333333333%;
}
#sec-pick-up .pickup-wrap .pickup_box#pickup_hot-spring {
  justify-content: flex-end;
  padding-right: 0;
  padding-left: 25px;
}
#sec-pick-up .pickup-wrap .pickup_box#pickup_hot-spring .ttl_box {
  order: 1;
  margin-right: 0;
  margin-left: auto;
}
#sec-pick-up .pickup-wrap .pickup_box#pickup_hot-spring .text_box {
  order: 2;
}
#sec-pick-up .pickup-wrap .pickup_box#pickup_hot-spring .pic {
  order: 3;
}
#sec-pick-up .pickup-wrap .pickup_box#pickup_hot-spring .sub-pic_01 {
  position: absolute;
  width: 250px;
  max-width: 13.0208333333%;
  top: 21.875vw;
  left: 0;
}
#sec-pick-up .pickup-wrap .pickup_box#pickup_facilities {
  padding-left: 0;
  padding-right: 25px;
}
#sec-pick-up .pickup-wrap .pickup_box#pickup_facilities .text_box {
  max-width: 29.6875vw;
}
#sec-pick-up .pickup-wrap .pickup_box#pickup_facilities .sub-pic_01 {
  position: absolute;
  width: 400px;
  max-width: 20.8333333333%;
  top: 29.1666666667vw;
  right: 0;
}
#sec-pick-up .pickup-wrap .pickup_sep_1 {
  width: 100%;
  height: 9.375vw;
  background: url("../images/common/bg_02.jpg") center center no-repeat;
  background-size: cover;
}
#sec-pick-up .pickup-wrap .pickup_sep_2 {
  width: 100%;
  height: 9.375vw;
  background: url("../images/common/bg_03.jpg") center center no-repeat;
  background-size: cover;
}
@media screen and (max-width: 1499px) {
  #sec-pick-up .pickup-wrap .pickup_box .pic {
    max-width: 56.6666666667%;
  }
  #sec-pick-up .pickup-wrap .pickup_box .ttl_box {
    margin-top: 4.6875vw;
    width: 8%;
  }
  #sec-pick-up .pickup-wrap .pickup_box .text_box {
    width: 390px;
    max-width: 26%;
  }
  #sec-pick-up .pickup-wrap .pickup_box .text_box p {
    font-size: pc_s_vw(18);
    line-height: 1.8;
  }
  #sec-pick-up .pickup-wrap .pickup_box#pickup_cuisine {
    padding-left: 0;
    padding-right: 25px;
  }
  #sec-pick-up .pickup-wrap .pickup_box#pickup_cuisine .sub-pic_01 {
    position: absolute;
    width: 250px;
    max-width: calc(160/1500*100%);
    top: -4.4270833333vw;
    right: 0;
  }
  #sec-pick-up .pickup-wrap .pickup_box#pickup_cuisine .sub-pic_02 {
    position: absolute;
    top: 29.9479166667vw;
    left: 50%;
    width: 400px;
    max-width: calc(300/1500*100%);
  }
  #sec-pick-up .pickup-wrap .pickup_box#pickup_hot-spring {
    justify-content: flex-end;
    padding-right: 0;
    padding-left: 25px;
  }
  #sec-pick-up .pickup-wrap .pickup_box#pickup_hot-spring .ttl_box {
    order: 1;
    margin-right: 0;
    margin-left: auto;
  }
  #sec-pick-up .pickup-wrap .pickup_box#pickup_hot-spring .text_box {
    order: 2;
  }
  #sec-pick-up .pickup-wrap .pickup_box#pickup_hot-spring .pic {
    order: 3;
  }
  #sec-pick-up .pickup-wrap .pickup_box#pickup_hot-spring .sub-pic_01 {
    position: absolute;
    width: 250px;
    max-width: 13.0208333333%;
    top: 21.875vw;
    left: 0;
  }
  #sec-pick-up .pickup-wrap .pickup_box#pickup_facilities {
    padding-left: 0;
    padding-right: 25px;
  }
  #sec-pick-up .pickup-wrap .pickup_box#pickup_facilities .text_box {
    max-width: 29.6875vw;
  }
  #sec-pick-up .pickup-wrap .pickup_box#pickup_facilities .sub-pic_01 {
    position: absolute;
    width: 400px;
    max-width: 20.8333333333%;
    top: 29.1666666667vw;
    right: 0;
  }
  #sec-pick-up .pickup-wrap .pickup_sep_1 {
    width: 100%;
    height: 9.375vw;
    background: url("../images/common/bg_02.jpg") center center no-repeat;
    background-size: cover;
  }
  #sec-pick-up .pickup-wrap .pickup_sep_2 {
    width: 100%;
    height: 9.375vw;
    background: url("../images/common/bg_03.jpg") center center no-repeat;
    background-size: cover;
  }
}
@media screen and (max-width: 1023px) {
  #sec-pick-up .pickup-wrap .pickup_box {
    width: 100%;
    color: #fff;
    background: url("../images/common/bg_00.jpg") top bottom no-repeat, #432f2f;
    background-size: cover;
    display: flex;
    flex-wrap: wrap;
    position: relative;
  }
  #sec-pick-up .pickup-wrap .pickup_box .pic {
    width: 100%;
    max-width: 85.3515625%;
    order: 1;
  }
  #sec-pick-up .pickup-wrap .pickup_box .ttl_box {
    margin-top: 8.7890625vw;
    width: 14.6484375%;
    order: 2;
  }
  #sec-pick-up .pickup-wrap .pickup_box .text_box {
    width: 100%;
    max-width: 100%;
    padding-top: 4.8828125%;
    padding-left: 4.8828125%;
    padding-right: 4.8828125%;
    padding-bottom: 19.53125vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    order: 3;
  }
  #sec-pick-up .pickup-wrap .pickup_box .text_box p {
    font-size: min(18 / 1024 * 100vw, 18px);
    line-height: 2.7777777778em;
  }
  #sec-pick-up .pickup-wrap .pickup_box .text_box .btn_detail {
    margin-top: 3.90625vw;
  }
  #sec-pick-up .pickup-wrap .pickup_box#pickup_cuisine .sub-pic_01 {
    position: absolute;
    width: 250px;
    max-width: 24.4140625%;
    top: auto;
    bottom: -24.4140625vw;
    right: 0;
  }
  #sec-pick-up .pickup-wrap .pickup_box#pickup_cuisine .sub-pic_02 {
    position: absolute;
    top: auto;
    bottom: -14.6484375vw;
    left: auto;
    right: 29.296875vw;
    width: 400px;
    max-width: 39.0625%;
  }
  #sec-pick-up .pickup-wrap .pickup_box#pickup_hot-spring {
    justify-content: flex-end;
  }
  #sec-pick-up .pickup-wrap .pickup_box#pickup_hot-spring .ttl_box {
    order: 1;
    margin-right: 0;
    margin-left: auto;
  }
  #sec-pick-up .pickup-wrap .pickup_box#pickup_hot-spring .text_box {
    order: 3;
  }
  #sec-pick-up .pickup-wrap .pickup_box#pickup_hot-spring .pic {
    order: 2;
  }
  #sec-pick-up .pickup-wrap .pickup_box#pickup_hot-spring .sub-pic_01 {
    position: absolute;
    width: 250px;
    max-width: 24.4140625%;
    top: auto;
    bottom: -24.4140625vw;
    left: 0;
  }
  #sec-pick-up .pickup-wrap .pickup_box#pickup_facilities .text_box {
    max-width: 100%;
  }
  #sec-pick-up .pickup-wrap .pickup_box#pickup_facilities .sub-pic_01 {
    position: absolute;
    width: 400px;
    max-width: 39.0625%;
    top: auto;
    bottom: -14.6484375vw;
    right: 0;
  }
  #sec-pick-up .pickup-wrap .pickup_sep_1 {
    width: 100%;
    height: 29.296875vw;
    background: url("../images/common/bg_02.jpg") center center no-repeat;
    background-size: cover;
  }
  #sec-pick-up .pickup-wrap .pickup_sep_2 {
    width: 100%;
    height: 29.296875vw;
    background: url("../images/common/bg_03.jpg") center center no-repeat;
    background-size: cover;
  }
}
@media screen and (max-width: 767px) {
  #sec-pick-up .pickup-wrap .pickup_box {
    width: 100%;
    color: #fff;
    background: url("../images/common/bg_00_sp.jpg") top bottom no-repeat, #432f2f;
    background-size: cover;
    display: flex;
    flex-wrap: wrap;
    position: relative;
    padding-right: 0;
    padding-left: 0;
  }
  #sec-pick-up .pickup-wrap .pickup_box .pic {
    width: 100%;
    max-width: 86.6666666667%;
    order: 1;
  }
  #sec-pick-up .pickup-wrap .pickup_box .ttl_box {
    position: absolute;
    top: 0;
    right: 3.3333333333vw;
    margin-top: 8vw;
    width: 6.5em;
    order: 2;
    display: flex;
    justify-content: flex-end;
  }
  #sec-pick-up .pickup-wrap .pickup_box .text_box {
    width: 100%;
    max-width: 100%;
    padding-top: 6.6666666667vw;
    padding-left: 6.6666666667vw;
    padding-right: 6.6666666667vw;
    padding-bottom: 33.3333333333vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    order: 3;
  }
  #sec-pick-up .pickup-wrap .pickup_box .text_box p {
    font-size: 4.2666666667vw;
    line-height: 1.5625em;
    text-align: justify;
  }
  #sec-pick-up .pickup-wrap .pickup_box .text_box .btn_detail {
    margin-top: 1.5em;
  }
  #sec-pick-up .pickup-wrap .pickup_box#pickup_cuisine {
    padding-right: 0;
    padding-left: 0;
  }
  #sec-pick-up .pickup-wrap .pickup_box#pickup_cuisine .sub-pic_01 {
    position: absolute;
    width: 250px;
    max-width: 33.3333333333%;
    top: auto;
    bottom: -29.3333333333vw;
    right: 3.3333333333vw;
  }
  #sec-pick-up .pickup-wrap .pickup_box#pickup_cuisine .sub-pic_02 {
    position: absolute;
    top: auto;
    bottom: -16vw;
    left: 3.3333333333vw;
    right: auto;
    width: 400px;
    max-width: 53.3333333333%;
  }
  #sec-pick-up .pickup-wrap .pickup_box#pickup_hot-spring {
    padding-right: 0;
    padding-left: 0;
    justify-content: flex-end;
  }
  #sec-pick-up .pickup-wrap .pickup_box#pickup_hot-spring .ttl_box {
    order: 1;
    position: absolute;
    top: 0;
    left: 6.6666666667vw;
    margin-right: auto;
    margin-left: 0;
    z-index: 2;
    justify-content: flex-start;
  }
  #sec-pick-up .pickup-wrap .pickup_box#pickup_hot-spring .text_box {
    order: 3;
  }
  #sec-pick-up .pickup-wrap .pickup_box#pickup_hot-spring .pic {
    order: 2;
  }
  #sec-pick-up .pickup-wrap .pickup_box#pickup_hot-spring .sub-pic_01 {
    position: absolute;
    width: 250px;
    max-width: 33.3333333333%;
    top: auto;
    bottom: -29.3333333333vw;
    left: auto;
    right: 3.3333333333vw;
  }
  #sec-pick-up .pickup-wrap .pickup_box#pickup_facilities {
    padding-right: 0;
    padding-left: 0;
  }
  #sec-pick-up .pickup-wrap .pickup_box#pickup_facilities .text_box {
    max-width: 100%;
  }
  #sec-pick-up .pickup-wrap .pickup_box#pickup_facilities .sub-pic_01 {
    position: absolute;
    width: 400px;
    max-width: 53.3333333333%;
    top: auto;
    bottom: -16vw;
    right: auto;
    left: 3.3333333333vw;
  }
  #sec-pick-up .pickup-wrap .pickup_sep_1 {
    width: 100%;
    height: 40vw;
    background: url("../images/common/bg_02_sp.jpg") center center no-repeat;
    background-size: cover;
  }
  #sec-pick-up .pickup-wrap .pickup_sep_2 {
    width: 100%;
    height: 40vw;
    background: url("../images/common/bg_02_sp.jpg") center center no-repeat;
    background-size: cover;
  }
}

/*  コロナウイルス感染症対策について　-------------------*/
#sec-coronavirus-measures .content__inner {
  padding-top: 190px;
  padding-bottom: 100px;
}
#sec-coronavirus-measures .aco-box {
  width: 1300px;
  max-width: 100%;
  margin: 0 auto;
  font-feature-settings: "palt";
}
#sec-coronavirus-measures .aco-box .aco_title {
  display: block;
  line-height: 2.5;
  padding: 0.5em 1.5em;
  position: relative;
  cursor: pointer;
  border-bottom: 1px solid #000;
}
#sec-coronavirus-measures .aco-box .aco_title h3 {
  font-size: 1.375rem;
}
#sec-coronavirus-measures .aco-box .aco_title::before, #sec-coronavirus-measures .aco-box .aco_title::after {
  content: '';
  display: block;
  background-color: #222222;
  position: absolute;
  top: 50%;
  width: 20px;
  height: 1px;
  right: 20px;
}
#sec-coronavirus-measures .aco-box .aco_title::before {
  transform: rotate(90deg);
  transition-duration: .3s;
}
#sec-coronavirus-measures .aco-box .aco_title.active-aco_content::before {
  transform: rotate(0);
  transition-duration: .3s;
}
#sec-coronavirus-measures .aco-box .aco_title.active-aco_content::after {
  opacity: 0;
}
#sec-coronavirus-measures .aco-box .aco_content {
  padding: 2em;
  color: #000;
}
#sec-coronavirus-measures .aco-box .aco_content h4 {
  margin: 1.25em auto 0.75em;
  font-size: 1.25rem;
  padding: 0.25em 0;
}
#sec-coronavirus-measures .aco-box .aco_content .mb-1em {
  margin-bottom: 1em;
}
@media screen and (max-width: 767px) {
  #sec-coronavirus-measures .content__inner {
    padding-top: 26.6666666667vw;
    padding-bottom: 10.6666666667vw;
  }
  #sec-coronavirus-measures .aco-box {
    width: 100%;
  }
  #sec-coronavirus-measures .aco-box .aco_title {
    display: block;
    line-height: 2;
    padding: 0.5em 1em;
  }
  #sec-coronavirus-measures .aco-box .aco_title h3 {
    font-size: 4vw;
  }
  #sec-coronavirus-measures .aco-box .aco_title::before, #sec-coronavirus-measures .aco-box .aco_title::after {
    width: 3.3333333333vw;
    right: 3.3333333333vw;
  }
  #sec-coronavirus-measures .aco-box .aco_content {
    padding: 1em;
  }
  #sec-coronavirus-measures .aco-box .aco_content h4 {
    font-size: 4vw;
    margin-top: 1em;
    padding: 0.5em 0;
    margin-bottom: 0;
  }
}

/*  空室検索 */
.search {
  width: 100%;
  max-width: 100%;
  margin: 100px auto 0;
  position: relative;
  background: #291e19;
}
.search .search_in {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .search {
    margin: 6.6666666667vw auto;
    padding: 0 0 11.3333333333vw;
  }
}

/* おすすめ宿泊プラン */
#recommended {
  background: url("../images/common/bg_01.jpg") center top no-repeat;
  background-size: cover;
}
#recommended .content__inner {
  padding-top: 80px;
  padding-bottom: 80px;
}
@media screen and (max-width: 767px) {
  #recommended {
    background: url("../images/common/bg_01_sp.jpg") center top repeat-y;
    background-size: 100% auto;
  }
  #recommended .content__inner {
    padding-top: 10.6666666667vw;
    padding-bottom: 8vw;
  }
  #recommended #plan-list {
    padding-left: 3.3333333333vw;
    padding-right: 3.3333333333vw;
  }
}

#sec-information_02 .content__inner {
  padding-bottom: 100px;
}
#sec-information_02 .col2-box {
  display: flex;
  justify-content: space-between;
  font-feature-settings: "palt";
  margin-bottom: 80px;
}
#sec-information_02 .col2-box .calendar_box {
  width: 50%;
  padding-right: 6.1538461538%;
}
#sec-information_02 .col2-box .calendar_box .text_box p.date {
  line-height: 1.5;
}
#sec-information_02 .col2-box .calendar_box .text_box p.date span {
  display: inline-block;
  min-width: 4em;
  text-align: center;
  background: #a1c29c;
  color: #fff;
  margin-right: 1em;
  border-radius: 1.5em;
  margin-bottom: 0.5em;
}
#sec-information_02 .col2-box .calendar_box .text_box p.bottom_text {
  margin-top: 1.5em;
}
#sec-information_02 .col2-box .press_box {
  width: 50%;
  padding-left: 6.1538461538%;
}
#sec-information_02 .col2-box .press_box .press-list-wrap .press-list p {
  font-size: 1rem;
  padding: 0.25em 0;
  text-indent: -1.25em;
  margin-left: 1.25em;
  position: relative;
}
#sec-information_02 .col2-box .press_box .press-list-wrap .press-list p::after {
  position: absolute;
  content: "";
  left: -1.25em;
  bottom: 0;
  width: calc(100% + 1.25em);
  height: 1px;
  background: #a1c29c;
}
#sec-information_02 .bnr-terms a.btn_link {
  width: 570px;
  height: 80px;
  background: #a1c29c;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.625rem;
  margin: 0 auto;
  transition: 0.3s linear;
}
#sec-information_02 .bnr-terms a.btn_link:hover {
  border: 3px solid #a1c29c;
  color: #a1c29c;
  background: rgba(255, 255, 255, 0.5);
}
@media screen and (max-width: 1023px) {
  #sec-information_02 .col2-box {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    font-feature-settings: "palt";
    width: 600px;
    margin: 0 auto 80px;
  }
  #sec-information_02 .col2-box .calendar_box {
    width: 100%;
    padding-right: 0;
    margin-bottom: 80px;
  }
  #sec-information_02 .col2-box .calendar_box .text_box p.date {
    line-height: 1.5;
  }
  #sec-information_02 .col2-box .calendar_box .text_box p.date span {
    display: inline-block;
    min-width: 4em;
    text-align: center;
    background: #a1c29c;
    color: #fff;
    margin-right: 1em;
    border-radius: 1.5em;
    margin-bottom: 0.5em;
  }
  #sec-information_02 .col2-box .calendar_box .text_box p.bottom_text {
    margin-top: 1.5em;
  }
  #sec-information_02 .col2-box .press_box {
    width: 100%;
    padding-left: 0;
  }
  #sec-information_02 .col2-box .press_box .press-list-wrap .press-list p {
    font-size: 1rem;
    padding: 0.25em 0;
  }
}
@media screen and (max-width: 767px) {
  #sec-information_02 .content__inner {
    padding-bottom: 13.3333333333vw;
    padding-left: 3.3333333333vw;
    padding-right: 3.3333333333vw;
  }
  #sec-information_02 .col2-box {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    font-feature-settings: "palt";
    width: 100%;
    margin: 10.6666666667vw auto;
  }
  #sec-information_02 .col2-box .calendar_box {
    width: 100%;
    padding-right: 0;
    margin-bottom: 10.6666666667vw;
  }
  #sec-information_02 .col2-box .calendar_box .text_box p.date {
    font-size: 4.2666666667vw;
    line-height: 1.5;
  }
  #sec-information_02 .col2-box .calendar_box .text_box p.date span {
    display: inline-block;
    min-width: 4em;
    text-align: center;
    background: #a1c29c;
    color: #fff;
    margin-right: 1em;
    border-radius: 1.5em;
    margin-bottom: 0.5em;
  }
  #sec-information_02 .col2-box .calendar_box .text_box p.bottom_text {
    font-size: 4.2666666667vw;
    margin-top: 1.5em;
  }
  #sec-information_02 .col2-box .press_box {
    width: 100%;
    padding-left: 0;
  }
  #sec-information_02 .col2-box .press_box .press-list-wrap .press-list p {
    font-size: 4.2666666667vw;
    padding: 0.25em 0;
  }
  #sec-information_02 .bnr-terms a.btn_link {
    width: 76vw;
    height: 10.6666666667vw;
    background: #a1c29c;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 4.8vw;
    margin: 0 auto;
    transition: 0.3s linear;
  }
  #sec-information_02 .bnr-terms a.btn_link:hover {
    border: 3px solid #a1c29c;
    color: #a1c29c;
    background: rgba(255, 255, 255, 0.5);
  }
}

/*=================================================

		下層ページ共通部分

==================================================*/
/* 宿泊プラン　バナー */
#bnr-area .bnr-box {
  padding-top: 4.4270833333vw;
  padding-bottom: 4.6875vw;
  width: 100%;
  background: rgba(108, 39, 45, 0.1);
}
#bnr-area .bnr-box .col2-box {
  display: flex;
  justify-content: center;
}
#bnr-area .bnr-box .col2-box a {
  width: 250px;
  margin: 0 50px;
}
#bnr-area .bnr-plan a {
  width: 100%;
  max-width: 100%;
}
#bnr-area .bnr-plan a:hover {
  opacity: 0.8;
}
#bnr-area .bnr-plan a img {
  width: 100%;
  vertical-align: middle;
}
@media screen and (max-width: 767px) {
  #bnr-area .bnr-box {
    padding-top: 10.6666666667vw;
    padding-bottom: 10.6666666667vw;
    padding-left: 6.6666666667vw;
    padding-right: 6.6666666667vw;
    width: 100%;
    background: rgba(108, 39, 45, 0.1);
  }
  #bnr-area .bnr-box .col2-box {
    display: flex;
    justify-content: space-between;
  }
  #bnr-area .bnr-box .col2-box a {
    width: 250px;
    max-width: 46.1538461538%;
    margin: 0;
  }
}

/* レイアウトボックス */
.col2-box_1 {
  position: relative;
  z-index: 0;
  width: 1920px;
  max-width: 100%;
  margin: 3.125vw auto 6.25vw;
  padding-left: 5.7291666667%;
  padding-right: 5.7291666667%;
  padding-top: 5.7291666667vw;
  display: flex;
  justify-content: center;
  align-items: center;
}
.col2-box_1 .bg_box {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  width: 76.0416666667vw;
  height: calc(635/770*100%);
  background: url("../images/common/bg_00.jpg") right top no-repeat;
  z-index: -1;
}
.col2-box_1 .pic_main {
  width: 850px;
  max-width: 44.2708333333vw;
}
.col2-box_1 .text_box {
  width: 44.2708333333vw;
  padding-left: 6.7708333333vw;
  color: #fff;
}
.col2-box_1 .text_box .text_box_in {
  width: 100%;
  max-width: 100%;
  min-height: 18.2291666667vw;
}
.col2-box_1 .text_box p.description {
  width: 520px;
  max-width: 100%;
  margin-right: auto;
  margin-bottom: 2em;
  line-height: 2.2222222222;
  font-size: min(18 / 1500 * 100vw, 18px);
}
.col2-box_1 .text_box .caution_box {
  margin-top: 2em;
  margin-bottom: 2em;
}
.col2-box_1 .text_box .pic_sub {
  display: flex;
  justify-content: flex-end;
}
.col2-box_1 .text_box .pic_sub .pic {
  width: 310px;
  max-width: 36.4705882353%;
  margin-left: 3.5294117647%;
}
@media screen and (max-width: 1023px) {
  .col2-box_1 {
    width: 100%;
    max-width: 100%;
    margin: 5.859375vw auto 11.71875vw;
    padding-left: 4.8828125%;
    padding-right: 4.8828125%;
    padding-top: 4.8828125vw;
    flex-wrap: wrap;
  }
  .col2-box_1 .bg_box {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    width: 90.234375vw;
    height: calc(75%);
    background: url("../images/common/bg_00.jpg") right top no-repeat;
    z-index: -1;
  }
  .col2-box_1 .pic_main {
    width: 850px;
    max-width: 83.0078125vw;
    margin-right: auto;
    margin-bottom: calc(270/1024*100vw);
    order: 2;
  }
  .col2-box_1 .text_box {
    width: 100%;
    padding-left: 9.765625vw;
    color: #fff;
    order: 1;
  }
  .col2-box_1 .text_box p.description {
    width: 100%;
    max-width: 100%;
    margin-right: auto;
    margin-bottom: 2em;
    line-height: 2.2222222222;
    font-size: min(18 / 1024 * 100vw, 18px);
  }
  .col2-box_1 .text_box .pic_sub {
    display: flex;
    justify-content: flex-end;
    position: absolute;
    right: 4.8828125vw;
    bottom: calc(-800/1024*100vw);
    width: 100%;
  }
  .col2-box_1 .text_box .pic_sub .pic {
    width: 310px;
    max-width: 30.2734375%;
    margin-left: 2.9296875%;
  }
}
@media screen and (max-width: 767px) {
  .col2-box_1 {
    width: 100%;
    max-width: 100%;
    margin: 6.6666666667vw auto 13.3333333333vw;
    padding-left: 0;
    padding-right: 0;
    padding-top: 9.3333333333vw;
    flex-wrap: wrap;
  }
  .col2-box_1 .bg_box {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    width: 93.3333333333vw;
    height: calc(75%);
    background: url("../images/common/bg_00_sp.jpg") right top no-repeat;
    background-size: cover;
    z-index: -1;
  }
  .col2-box_1 .pic_main {
    width: 650px;
    max-width: 86.6666666667%;
    margin-right: auto;
    margin-bottom: calc(270/750*100vw);
    order: 2;
  }
  .col2-box_1 .text_box {
    width: 100%;
    padding-left: 16vw;
    padding-right: 9.3333333333vw;
    color: #fff;
    order: 1;
  }
  .col2-box_1 .text_box p.description {
    width: 100%;
    max-width: 100%;
    margin-right: auto;
    margin-bottom: 2em;
    line-height: 1.625;
    font-size: 4.2666666667vw;
    text-align: justify;
  }
  .col2-box_1 .text_box .pic_sub {
    width: 86.6666666667vw;
    max-width: 86.6666666667%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    position: absolute;
    right: unset;
    left: 50%;
    transform: translateX(-50%);
    bottom: -88.6666666667vw;
  }
  .col2-box_1 .text_box .pic_sub .pic {
    width: 310px;
    max-width: 47.6923076923%;
    margin-left: 0;
  }
}

.col2-box_2 {
  position: relative;
  z-index: 0;
  width: 1920px;
  max-width: 100%;
  margin: 3.125vw auto 6.25vw;
  padding-left: 5.7291666667%;
  padding-right: 5.7291666667%;
  padding-top: 5.7291666667vw;
  display: flex;
  justify-content: center;
  align-items: center;
}
.col2-box_2 .bg_box {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 76.0416666667vw;
  height: calc(635/770*100%);
  background: url("../images/common/bg_00.jpg") right top no-repeat;
  z-index: -1;
}
.col2-box_2 .pic_main {
  width: 850px;
  max-width: 44.2708333333vw;
  order: 2;
}
.col2-box_2 .text_box {
  width: 44.2708333333vw;
  padding-right: 5.2083333333vw;
  color: #fff;
  order: 1;
}
.col2-box_2 .text_box .text_box_in {
  width: 550px;
  max-width: 100%;
  margin-left: auto;
  padding-left: 7.2727272727%;
  min-height: 18.2291666667vw;
}
.col2-box_2 .text_box p.description {
  width: 520px;
  max-width: 100%;
  margin-right: auto;
  margin-bottom: 2em;
  line-height: 2.2222222222;
  font-size: min(18 / 1500 * 100vw, 18px);
}
.col2-box_2 .text_box .caution_box {
  margin-top: 2em;
  margin-bottom: 2em;
}
.col2-box_2 .text_box .pic_sub {
  display: flex;
  justify-content: flex-start;
}
.col2-box_2 .text_box .pic_sub .pic {
  width: 310px;
  max-width: 36.4705882353%;
  margin-right: 3.5294117647%;
}
@media screen and (max-width: 1023px) {
  .col2-box_2 {
    width: 100%;
    max-width: 100%;
    margin: 5.859375vw auto 11.71875vw;
    padding-left: 4.8828125%;
    padding-right: 4.8828125%;
    padding-top: 4.8828125vw;
    flex-wrap: wrap;
  }
  .col2-box_2 .bg_box {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    width: 90.234375vw;
    height: calc(75%);
    background: url("../images/common/bg_00.jpg") right top no-repeat;
    z-index: -1;
  }
  .col2-box_2 .pic_main {
    width: 850px;
    max-width: 83.0078125vw;
    margin-left: auto;
    margin-bottom: calc(270/1024*100vw);
    order: 2;
  }
  .col2-box_2 .text_box {
    width: 100%;
    padding-right: 9.765625vw;
    color: #fff;
    order: 1;
  }
  .col2-box_2 .text_box .text_box_in {
    width: 100%;
    max-width: 100%;
    margin-right: auto;
    padding-left: 3.90625%;
  }
  .col2-box_2 .text_box p.description {
    width: 100%;
    max-width: 100%;
    margin-right: auto;
    margin-bottom: 2em;
    line-height: 2.2222222222;
    font-size: min(18 / 1024 * 100vw, 18px);
  }
  .col2-box_2 .text_box .pic_sub {
    display: flex;
    justify-content: flex-start;
    position: absolute;
    left: 4.8828125vw;
    bottom: calc(-800/1024*100vw);
    width: 100%;
  }
  .col2-box_2 .text_box .pic_sub .pic {
    width: 310px;
    max-width: 30.2734375%;
    margin-right: 2.9296875%;
  }
}
@media screen and (max-width: 767px) {
  .col2-box_2 {
    width: 100%;
    max-width: 100%;
    margin: 6.6666666667vw auto 13.3333333333vw;
    padding-left: 0;
    padding-right: 0;
    padding-top: 9.3333333333vw;
    flex-wrap: wrap;
  }
  .col2-box_2 .bg_box {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    width: 93.3333333333vw;
    height: calc(75%);
    background: url("../images/common/bg_00_sp.jpg") right top no-repeat;
    background-size: cover;
    z-index: -1;
  }
  .col2-box_2 .pic_main {
    width: 650px;
    max-width: 86.6666666667%;
    margin-left: auto;
    margin-bottom: calc(270/750*100vw);
    order: 2;
  }
  .col2-box_2 .text_box {
    width: 100%;
    padding-right: 16vw;
    padding-left: 9.3333333333vw;
    color: #fff;
    order: 1;
  }
  .col2-box_2 .text_box p.description {
    width: 100%;
    max-width: 100%;
    margin-right: auto;
    margin-bottom: 2em;
    line-height: 1.625;
    font-size: 4.2666666667vw;
    text-align: justify;
  }
  .col2-box_2 .text_box .pic_sub {
    width: 86.6666666667vw;
    max-width: 86.6666666667%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    position: absolute;
    right: unset;
    left: 50%;
    transform: translateX(-50%);
    bottom: -88.6666666667vw;
  }
  .col2-box_2 .text_box .pic_sub .pic {
    width: 310px;
    max-width: 47.6923076923%;
    margin-right: 0;
  }
}

/* table */
.table-box {
  width: 1300px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.table-box .bottom_text {
  margin: 1em auto;
}
@media screen and (max-width: 767px) {
  .table-box {
    width: 100%;
  }
  .table-box.sp-scroll {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-bottom: 4vw;
  }
  .table-box.sp-scroll table {
    width: auto;
    white-space: nowrap;
  }
}

table.default {
  width: 100%;
  font-size: 1rem;
  border-collapse: collapse;
  border-left: 1px solid #fff;
  border-top: 1px solid #fff;
  font-weight: normal;
  font-feature-settings: "palt";
}
table.default tr th {
  padding: 0.5em;
  color: #fff;
  background: #432f2f;
  font-weight: normal;
  border-bottom: 1px solid #fff;
  border-right: 1px solid #fff;
  vertical-align: middle;
}
table.default tr td {
  padding: 0.5em;
  border-bottom: 1px solid #fff;
  border-right: 1px solid #fff;
  text-align: center;
  vertical-align: middle;
}
table.default tr td.t-left {
  text-align: left;
  padding-left: 3.125vw;
}
table.default.type1 {
  font-size: 1.125rem;
  border-left: 1px solid #ababab;
  border-top: 1px solid #ababab;
}
table.default.type1 tr th {
  color: #fff;
  background: #6c272d;
  border-bottom: 1px solid #ababab;
  border-right: 1px solid #ababab;
  text-align: center;
}
table.default.type1 tr td {
  border-bottom: 1px solid #ababab;
  border-right: 1px solid #ababab;
}
table.default.fixed {
  table-layout: fixed;
}
@media screen and (max-width: 767px) {
  table.default {
    font-size: 4vw;
  }
  table.default tr td {
    padding: 0.5em;
  }
  table.default tr td.t-left {
    padding-left: 0.5em;
  }
  table.default.type1 {
    font-size: 3.7333333333vw;
  }
}

table.simple {
  width: 100%;
  border-top: 1px solid #ababab;
  font-size: 1.125rem;
}
table.simple tr th {
  font-weight: normal;
  min-width: 200px;
  padding: 0.8em 2em;
  border-bottom: 1px solid #ababab;
  text-align: center;
  vertical-align: middle;
}
table.simple tr td {
  padding: 0.8em 2em;
  border-bottom: 1px solid #ababab;
  text-align: left;
  vertical-align: middle;
}
@media screen and (max-width: 767px) {
  table.simple {
    font-size: 4.2666666667vw;
  }
  table.simple tr th {
    min-width: 5em;
    padding: 0.8em 0.5em 0;
    text-align: left;
    display: block;
    border-bottom: none;
  }
  table.simple tr td {
    display: block;
    padding: 0.5em 0.5em 0.8em;
  }
}

/* list */
ul.default {
  margin-left: 1.5em;
  padding-left: 1.5em;
}
ul.default li {
  list-style: disc;
  text-align: left;
}

dl.default {
  width: 1000px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  align-items: first baseline;
  font-size: 1.125rem;
}
dl.default:not(:last-of-type) {
  border-bottom: 1px solid #9a896f;
}
dl.default dt {
  width: 200px;
  padding: 0.5em 1em;
}
dl.default dt span {
  width: 100%;
  color: #fff;
  background: #974c43;
  border-radius: 10px;
  text-align: center;
  display: inline-block;
  padding: 0.5em;
}
dl.default dd {
  width: calc(100% - 200px);
  padding: 0.5em 1em 0.5em 1.9444444444em;
}
@media screen and (max-width: 767px) {
  dl.default {
    justify-content: center;
    font-size: 4.2666666667vw;
  }
  dl.default dt {
    width: 100%;
    padding: 0.5em 0;
  }
  dl.default dt span {
    display: block;
    margin: 0 auto;
  }
  dl.default dd {
    width: 100%;
    padding: 0.5em 0;
  }
}

/*=================================================

		Cuisine お料理

==================================================*/
#sec-cuisine-lead .content__inner {
  padding-top: 4.6875vw;
  padding-bottom: 4.6875vw;
  position: relative;
}
#sec-cuisine-lead .lead-box {
  width: 100%;
  position: relative;
}
#sec-cuisine-lead .lead-box .text_box {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-bottom: 19.7916666667vw;
  margin: 0 auto;
}
#sec-cuisine-lead .lead-box .text_box h3 {
  font-size: 22px;
  margin-left: 1.5em;
  font-weight: normal;
}
#sec-cuisine-lead .lead-box .text_box p {
  font-size: 18px;
  line-height: 2.2222222222;
  font-weight: normal;
}
#sec-cuisine-lead .lead-box .pic_01 {
  position: absolute;
  width: 510px;
  max-width: 26.5625%;
  left: 0;
  top: 10.4166666667vw;
}
#sec-cuisine-lead .lead-box .pic_02 {
  position: absolute;
  width: 200px;
  max-width: 10.4166666667%;
  right: 29.4270833333vw;
  top: 450px;
}
#sec-cuisine-lead .lead-box .pic_03 {
  position: absolute;
  width: 200px;
  max-width: 10.4166666667%;
  right: 16.1458333333vw;
  top: 345px;
}
@media screen and (max-width: 1499px) {
  #sec-cuisine-lead .lead-box {
    width: 100%;
    position: relative;
  }
  #sec-cuisine-lead .lead-box .text_box {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-bottom: 25.3333333333vw;
    margin: 0 auto;
  }
  #sec-cuisine-lead .lead-box .text_box h3 {
    font-size: 22px;
    margin-left: 1.5em;
    font-weight: normal;
  }
  #sec-cuisine-lead .lead-box .text_box p {
    font-size: 18px;
    line-height: 2.2222222222;
    font-weight: normal;
  }
  #sec-cuisine-lead .lead-box .pic_01 {
    position: absolute;
    width: 510px;
    max-width: 34%;
    left: 0;
    top: auto;
    bottom: -4vw;
  }
  #sec-cuisine-lead .lead-box .pic_02 {
    position: absolute;
    width: 200px;
    max-width: 13.3333333333%;
    right: 24.3333333333vw;
    top: 450px;
  }
  #sec-cuisine-lead .lead-box .pic_03 {
    position: absolute;
    width: 200px;
    max-width: 13.3333333333%;
    right: 7.3333333333vw;
    top: 345px;
  }
}
@media screen and (max-width: 1023px) {
  #sec-cuisine-lead .content__inner {
    padding-top: 8.7890625vw;
    padding-bottom: 8.7890625vw;
    position: relative;
  }
  #sec-cuisine-lead .lead-box {
    width: 100%;
    position: relative;
  }
  #sec-cuisine-lead .lead-box .text_box {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-bottom: 37.109375vw;
    padding-left: 4.8828125vw;
    padding-right: 4.8828125vw;
  }
  #sec-cuisine-lead .lead-box .text_box h3 {
    font-size: 22px;
    margin-left: 0;
    margin-bottom: 1.5em;
    font-weight: normal;
  }
  #sec-cuisine-lead .lead-box .text_box p {
    font-size: 18px;
    line-height: 2.2222222222;
    font-weight: normal;
  }
  #sec-cuisine-lead .lead-box .pic_01 {
    position: absolute;
    width: 510px;
    max-width: 49.8046875%;
    left: 0;
    top: auto;
    bottom: 0;
  }
  #sec-cuisine-lead .lead-box .pic_02 {
    position: absolute;
    width: 200px;
    max-width: 19.53125%;
    right: 25.390625vw;
    top: auto;
    bottom: 0;
  }
  #sec-cuisine-lead .lead-box .pic_03 {
    position: absolute;
    width: 200px;
    max-width: 19.53125%;
    right: 2.9296875vw;
    top: auto;
    bottom: 9.765625vw;
  }
}
@media screen and (max-width: 767px) {
  #sec-cuisine-lead .content__inner {
    padding-top: 10vw;
    padding-bottom: 6.6666666667vw;
    position: relative;
  }
  #sec-cuisine-lead .lead-box {
    width: 100%;
    position: relative;
  }
  #sec-cuisine-lead .lead-box .text_box {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-bottom: 100vw;
    padding-left: 9.3333333333vw;
    padding-right: 9.3333333333vw;
  }
  #sec-cuisine-lead .lead-box .text_box h3 {
    font-size: 4.8vw;
    margin-left: 0;
    margin-bottom: 1.5em;
    font-weight: normal;
  }
  #sec-cuisine-lead .lead-box .text_box p {
    font-size: 4.2666666667vw;
    line-height: 1.5625;
    font-weight: normal;
    text-align: justify;
  }
  #sec-cuisine-lead .lead-box .pic_01 {
    position: absolute;
    width: 510px;
    max-width: 68%;
    left: 50%;
    transform: translateX(-50%);
    top: auto;
    bottom: 0;
  }
  #sec-cuisine-lead .lead-box .pic_02 {
    position: absolute;
    width: 200px;
    max-width: 26.6666666667%;
    right: 33.3333333333vw;
    top: auto;
    bottom: 53.3333333333vw;
  }
  #sec-cuisine-lead .lead-box .pic_03 {
    position: absolute;
    width: 200px;
    max-width: 26.6666666667%;
    right: 0;
    top: auto;
    bottom: 60vw;
  }
}

#cuisine .caution_box {
  width: 1200px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 5.2083333333vw 6.25vw;
}
@media screen and (max-width: 1023px) {
  #cuisine .caution_box {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 4.8828125vw 11.71875vw;
  }
}
@media screen and (max-width: 767px) {
  #cuisine .caution_box {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 9.3333333333vw 13.3333333333vw;
  }
}

#sec-sake .content__inner {
  padding-bottom: 10.4166666667vw;
}
#sec-sake .con_box {
  width: 100%;
  max-width: 1920px;
  padding-top: 4.6875vw;
  margin: 0 auto;
  background: url("../images/cuisine/pic_sake_01.png") top right no-repeat, url("../images/common/bg_04.jpg") top center no-repeat;
  background-size: auto 100%, cover;
}
#sec-sake .con_box .text_box {
  width: 1400px;
  max-width: 100%;
  margin: 0 auto;
  padding-left: 2.6041666667vw;
  padding-right: 2.6041666667vw;
  color: #fff;
  display: flex;
}
#sec-sake .con_box .text_box .ttl_box {
  width: 90px;
  max-width: 6.4285714286%;
}
#sec-sake .con_box .text_box .text_box_in {
  width: 700px;
  max-width: 50%;
  padding-top: 9.375vw;
}
#sec-sake .con_box .text_box .text_box_in p.description {
  margin-bottom: 3.90625vw;
}
#sec-sake .con_box .text_box .text_box_in .pic_sub {
  width: 500px;
  max-width: 71.4285714286%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: -5.7291666667vw;
}
@media screen and (max-width: 1023px) {
  #sec-sake .content__inner {
    padding-bottom: 19.53125vw;
  }
  #sec-sake .con_box {
    width: 100%;
    max-width: 100%;
    padding-top: 8.7890625vw;
    margin: 0 auto;
    background: url("../images/cuisine/pic_sake_01.png") top right -200% no-repeat, url("../images/common/bg_04.jpg") top center no-repeat;
    background-size: auto 100%, cover;
  }
  #sec-sake .con_box .text_box {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding-left: 9.765625vw;
    padding-right: 9.765625vw;
    color: #fff;
    display: flex;
    flex-wrap: wrap;
  }
  #sec-sake .con_box .text_box .ttl_box {
    width: 100%;
    max-width: 100%;
    margin-bottom: 2em;
  }
  #sec-sake .con_box .text_box .text_box_in {
    width: 700px;
    max-width: 63.4765625%;
    padding-top: 0;
  }
  #sec-sake .con_box .text_box .text_box_in p.description {
    margin-bottom: 7.32421875vw;
  }
  #sec-sake .con_box .text_box .text_box_in .pic_sub {
    width: 500px;
    max-width: 63.4765625%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: -5.7291666667vw;
  }
}
@media screen and (max-width: 767px) {
  #sec-sake .content__inner {
    padding-bottom: 26.6666666667vw;
  }
  #sec-sake .con_box {
    width: 100%;
    max-width: 100%;
    padding-top: 55.3333333333vw;
    margin: 0 auto;
    background: url("../images/cuisine/pic_sake_01_sp.png") top center no-repeat, url("../images/common/bg_04_sp.jpg") top center repeat-y;
    background-size: 100% auto, 100% auto;
  }
  #sec-sake .con_box .text_box {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding-left: 13.3333333333vw;
    padding-right: 13.3333333333vw;
    color: #fff;
    display: flex;
    flex-wrap: wrap;
  }
  #sec-sake .con_box .text_box .ttl_box {
    width: 100%;
    max-width: 100%;
    margin-bottom: 1em;
  }
  #sec-sake .con_box .text_box .text_box_in {
    width: 100%;
    max-width: 100%;
    padding-top: 0;
  }
  #sec-sake .con_box .text_box .text_box_in p.description {
    margin-bottom: 11.3333333333vw;
    text-align: justify;
  }
  #sec-sake .con_box .text_box .text_box_in .pic_sub {
    width: 500px;
    max-width: 90.9090909091%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: -13.3333333333vw;
  }
}

/*=================================================

　　　Hot spring 湯谷温泉

==================================================*/
#sec-hotspring-lead .content__inner {
  padding-top: 5.2083333333vw;
  padding-bottom: 5.2083333333vw;
  padding-right: 5.7291666667vw;
  position: relative;
}
#sec-hotspring-lead .lead-box {
  width: 100%;
  height: 35.4166666667vw;
  max-height: 680px;
  display: flex;
  justify-content: flex-start;
  margin-right: auto;
}
#sec-hotspring-lead .lead-box .text_box_01 {
  width: 740px;
  max-width: 38.5416666667%;
  height: 27.6041666667vw;
  background: url("../images/hot-spring/pic_lead_01.jpg") right top no-repeat;
  background-size: cover;
  padding-top: 9.8958333333vw;
  padding-bottom: 2.6041666667vw;
  padding-right: 4.1666666667vw;
  color: #fff;
}
#sec-hotspring-lead .lead-box .text_box_01 p {
  font-size: min(18 / 1920 * 100vw, 18px);
}
#sec-hotspring-lead .lead-box .text_box_02 {
  width: 550px;
  max-width: 28.6458333333%;
  height: 100%;
  margin-left: auto;
}
#sec-hotspring-lead .lead-box .text_box_02 h3 {
  font-size: min(22 / 1500 * 100vw, 22px);
  margin-right: 1em;
  margin-left: 1.5em;
  font-weight: normal;
}
#sec-hotspring-lead .lead-box .text_box_02 p {
  font-size: min(18 / 1500 * 100vw, 18px);
  line-height: 2em;
  margin-left: 2em;
  font-weight: normal;
}
#sec-hotspring-lead .lead-box .pic_01 {
  width: 510px;
  max-width: 26.5625vw;
  display: flex;
  flex-direction: column;
  margin-top: auto;
}
@media screen and (max-width: 1023px) {
  #sec-hotspring-lead .content__inner {
    padding-top: 9.765625vw;
    padding-bottom: 9.765625vw;
    padding-right: 0;
    position: relative;
  }
  #sec-hotspring-lead .lead-box {
    width: 100%;
    height: auto;
    max-height: unset;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin-right: auto;
  }
  #sec-hotspring-lead .lead-box .text_box_01 {
    width: 100%;
    max-width: 100%;
    height: 51.7578125vw;
    margin-left: auto;
    margin-right: auto;
    background: url("../images/hot-spring/pic_lead_01.jpg") right top no-repeat;
    background-size: cover;
    padding-top: 18.5546875vw;
    padding-bottom: 4.8828125vw;
    padding-left: 35.15625vw;
    padding-right: 7.8125vw;
    color: #fff;
    order: 3;
  }
  #sec-hotspring-lead .lead-box .text_box_01 p {
    font-size: min(18 / 1024 * 100vw, 18px);
    text-align: justify;
  }
  #sec-hotspring-lead .lead-box .text_box_02 {
    width: 100%;
    max-width: 100%;
    height: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 4.8828125%;
    padding-right: 4.8828125%;
    order: 1;
  }
  #sec-hotspring-lead .lead-box .text_box_02 h3 {
    font-size: min(22 / 1024 * 100vw, 22px);
    margin-right: 0;
    margin-left: 0;
    margin-bottom: 1em;
    font-weight: normal;
  }
  #sec-hotspring-lead .lead-box .text_box_02 p {
    font-size: min(18 / 1024 * 100vw, 18px);
    line-height: 2em;
    margin-left: 0;
    margin-bottom: 2em;
    font-weight: normal;
    text-align: justify;
  }
  #sec-hotspring-lead .lead-box .pic_01 {
    width: 510px;
    max-width: 68vw;
    display: block;
    margin-top: auto;
    margin-left: auto;
    margin-bottom: 4.8828125vw;
    order: 2;
  }
}
@media screen and (max-width: 767px) {
  #sec-hotspring-lead .content__inner {
    padding-top: 11.3333333333vw;
    padding-bottom: 6.6666666667vw;
    padding-right: 0;
    position: relative;
  }
  #sec-hotspring-lead .lead-box {
    width: 100%;
    height: auto;
    max-height: unset;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin-right: auto;
  }
  #sec-hotspring-lead .lead-box .text_box_01 {
    width: 100%;
    max-width: 100%;
    height: auto;
    margin-left: auto;
    margin-right: auto;
    background: url("../images/hot-spring/pic_lead_01_sp.jpg") right top no-repeat;
    background-size: cover;
    padding-top: 21.3333333333vw;
    padding-bottom: 9.3333333333vw;
    padding-left: 8.6666666667vw;
    padding-right: 8.6666666667vw;
    color: #fff;
    order: 3;
  }
  #sec-hotspring-lead .lead-box .text_box_01 p {
    font-size: 4.2666666667vw;
    margin-bottom: 0.5em;
  }
  #sec-hotspring-lead .lead-box .text_box_02 {
    width: 100%;
    max-width: 100%;
    height: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 8.6666666667%;
    padding-right: 8.6666666667%;
    order: 1;
  }
  #sec-hotspring-lead .lead-box .text_box_02 h3 {
    font-size: 4.8vw;
    margin-right: 0;
    margin-left: 0;
    margin-bottom: 1em;
    font-weight: normal;
  }
  #sec-hotspring-lead .lead-box .text_box_02 p {
    font-size: 4.2666666667vw;
    line-height: 2em;
    margin-left: 0;
    margin-bottom: 2em;
    font-weight: normal;
  }
  #sec-hotspring-lead .lead-box .pic_01 {
    width: 510px;
    max-width: 56%;
    display: block;
    margin-top: auto;
    margin-left: auto;
    margin-bottom: 10.6666666667vw;
    order: 2;
  }
}

#hot-spring p.u_line span {
  display: inline-block;
  text-decoration: underline;
}
#hot-spring .text_box_in {
  min-height: 23.4375vw;
}

#sec-course_03 .col2-box_1 {
  margin-bottom: 0;
}

#sec-hotspring-info .content__inner {
  padding-top: 5.2083333333vw;
  padding-bottom: 5.2083333333vw;
}
@media screen and (max-width: 767px) {
  #sec-hotspring-info .content__inner {
    padding-top: 13.3333333333vw;
    padding-bottom: 13.3333333333vw;
    padding-left: 4vw;
    padding-right: 4vw;
  }
}

#sec-day-trip .content__inner {
  padding-bottom: 10.4166666667vw;
}
#sec-day-trip .con_box {
  width: 100%;
  max-width: 1920px;
  padding-top: 4.6875vw;
  margin: 0 auto;
  background: url("../images/hot-spring/pic_day-trip_01.png") top right no-repeat, url("../images/common/bg_04.jpg") top center no-repeat;
  background-size: 56.9270833333vw auto, cover;
}
#sec-day-trip .con_box .text_box {
  width: 1400px;
  max-width: 100%;
  margin: 0 auto 2.6041666667vw;
  padding-left: 2.6041666667vw;
  padding-right: 2.6041666667vw;
  padding-bottom: 2.6041666667vw;
  color: #fff;
  display: flex;
}
#sec-day-trip .con_box .text_box .ttl_box {
  width: 90px;
  max-width: 6.4285714286%;
}
#sec-day-trip .con_box .text_box .text_box_in {
  width: 700px;
  max-width: 50%;
  padding-top: 9.375vw;
}
#sec-day-trip .con_box .text_box .text_box_in p.description {
  margin-bottom: 2em;
}
#sec-day-trip .con_box .text_box .text_box_in .table-box table.default {
  margin-bottom: 1em;
}
#sec-day-trip .con_box .text_box2 {
  width: 1400px;
  max-width: 100%;
  margin: 0 auto;
  padding-left: 2.6041666667vw;
  padding-right: 2.6041666667vw;
  color: #fff;
  display: flex;
}
#sec-day-trip .con_box .text_box2 .pic_sub {
  width: 500px;
  max-width: 71.4285714286%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 7.8125vw;
  margin-bottom: -4.6875vw;
}
#sec-day-trip .con_box .text_box2 .text_box_in {
  width: 560px;
  max-width: 50%;
  padding-left: 3.125vw;
  min-height: unset;
}
#sec-day-trip .con_box .text_box2 .text_box_in p.description {
  margin-bottom: 1em;
}
@media screen and (max-width: 1023px) {
  #sec-day-trip .content__inner {
    padding-bottom: 19.53125vw;
  }
  #sec-day-trip .con_box {
    width: 100%;
    max-width: 100%;
    padding-top: 8.7890625vw;
    margin: 0 auto;
    background: url("../images/hot-spring/pic_day-trip_01.png") top right no-repeat, url("../images/common/bg_04.jpg") top right no-repeat;
    background-size: 70% auto, cover;
  }
  #sec-day-trip .con_box .text_box {
    width: 100%;
    max-width: 100%;
    margin: 0 auto 4.8828125vw;
    padding-left: 9.765625vw;
    padding-right: 9.765625vw;
    padding-bottom: 4.8828125vw;
    color: #fff;
    display: flex;
    flex-direction: column;
  }
  #sec-day-trip .con_box .text_box .ttl_box {
    width: 100%;
    max-width: 100%;
    margin-bottom: 1em;
  }
  #sec-day-trip .con_box .text_box .text_box_in {
    width: 700px;
    max-width: 100%;
    padding-top: 0;
  }
  #sec-day-trip .con_box .text_box .text_box_in p.description {
    margin-bottom: 2em;
  }
  #sec-day-trip .con_box .text_box .text_box_in .table-box table.default {
    margin-bottom: 1em;
  }
  #sec-day-trip .con_box .text_box2 {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding-left: 9.765625vw;
    padding-right: 9.765625vw;
    color: #fff;
    display: flex;
    flex-direction: column;
  }
  #sec-day-trip .con_box .text_box2 .pic_sub {
    width: 500px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 9.765625vw;
    margin-bottom: -8.7890625vw;
    order: 2;
  }
  #sec-day-trip .con_box .text_box2 .text_box_in {
    width: 560px;
    max-width: 100%;
    padding-left: 0;
    min-height: unset;
    order: 1;
  }
  #sec-day-trip .con_box .text_box2 .text_box_in p.description {
    margin-bottom: 1em;
  }
}
@media screen and (max-width: 767px) {
  #sec-day-trip .content__inner {
    padding-bottom: 26.6666666667vw;
  }
  #sec-day-trip .con_box {
    width: 100%;
    max-width: 100%;
    padding-top: 55.3333333333vw;
    margin: 0 auto;
    background: url("../images/hot-spring/pic_day-trip_01_sp.png") top center no-repeat, url("../images/common/bg_05_sp.jpg") top center repeat-y;
    background-size: 100% auto, 100% auto;
  }
  #sec-day-trip .con_box .text_box {
    width: 100%;
    max-width: 100%;
    margin: 0 auto 6.6666666667vw;
    padding-left: 10vw;
    padding-right: 10vw;
    padding-bottom: 6.6666666667vw;
    color: #fff;
    display: flex;
    flex-direction: column;
  }
  #sec-day-trip .con_box .text_box .ttl_box {
    width: 100%;
    max-width: 100%;
    margin-bottom: 1em;
    padding-left: 3.3333333333vw;
    padding-right: 6.6666666667vw;
  }
  #sec-day-trip .con_box .text_box .text_box_in {
    width: 100%;
    max-width: 100%;
    padding-top: 0;
  }
  #sec-day-trip .con_box .text_box .text_box_in p.description {
    margin-bottom: 2em;
    text-align: justify;
    padding-left: 3.3333333333vw;
    padding-right: 3.3333333333vw;
  }
  #sec-day-trip .con_box .text_box .text_box_in .table-box table.default {
    margin-bottom: 1em;
  }
  #sec-day-trip .con_box .text_box2 {
    width: 100%;
    max-width: 100%;
    margin: 13.3333333333vw auto 0;
    padding-left: 13.3333333333vw;
    padding-right: 13.3333333333vw;
    color: #fff;
    display: flex;
    flex-direction: column;
  }
  #sec-day-trip .con_box .text_box2 .pic_sub {
    width: 500px;
    max-width: 66.6666666667vw;
    margin-left: auto;
    margin-right: auto;
    margin-top: 6.6666666667vw;
    margin-bottom: -12vw;
    order: 2;
  }
  #sec-day-trip .con_box .text_box2 .text_box_in {
    width: 100%;
    max-width: 100%;
    padding-left: 0;
    min-height: unset;
    order: 1;
  }
  #sec-day-trip .con_box .text_box2 .text_box_in p.description {
    margin-bottom: 1em;
    text-align: justify;
  }
}

/*=================================================

		Facilities 客室

==================================================*/
#facilities p.ttl {
  font-size: min(18 / 1500 * 100vw, 18px);
}
#facilities p.ttl span {
  display: inline-block;
  padding: 0 0.5em;
  background: #6c272d;
  color: #fff;
  margin-right: 1em;
  margin-bottom: 2em;
  border-radius: 5px;
}
@media screen and (max-width: 1023px) {
  #facilities p.ttl {
    font-size: min(18 / 1024 * 100vw, 18px);
  }
}
@media screen and (max-width: 767px) {
  #facilities p.ttl {
    font-size: 4.2666666667vw;
  }
}

#sec-room_06 .content__inner {
  padding-bottom: 6.25vw;
}
#sec-room_06 .table-box {
  width: 1200px;
  max-width: 100%;
  padding-left: 5.2083333333vw;
  padding-right: 5.2083333333vw;
  margin: 0 auto;
}

#sec-art .content__inner {
  padding-bottom: 10.4166666667vw;
}
#sec-art .con_box {
  width: 100%;
  max-width: 1920px;
  padding-top: 4.6875vw;
  padding-bottom: 5.2083333333vw;
  margin: 0 auto;
  background: url("../images/facilities/pic_art_01.png") top right no-repeat, url("../images/common/bg_06.jpg") top center no-repeat;
  background-size: 56.9270833333vw auto, cover;
}
#sec-art .con_box .text_box {
  width: 1400px;
  max-width: 100%;
  margin: 0 auto 4.1666666667vw;
  padding-left: 2.6041666667vw;
  padding-right: 2.6041666667vw;
  color: #fff;
  display: flex;
}
#sec-art .con_box .text_box .ttl_box {
  width: 130px;
  max-width: 9.2857142857%;
}
#sec-art .con_box .text_box .text_box_in {
  width: 530px;
  max-width: 37.8571428571%;
  padding-top: 9.375vw;
}
#sec-art .con_box .text_box .text_box_in p.description {
  margin-bottom: 3.90625vw;
  line-height: 2.7777777778;
}
#sec-art .con_box .text_box .text_box_in .pic_sub {
  width: 500px;
  max-width: 71.4285714286%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: -5.7291666667vw;
}
#sec-art .con_box .pic_box {
  width: 1460px;
  max-width: 76.0416666667vw;
  display: flex;
  justify-content: space-between;
}
#sec-art .con_box .pic_box .pic_01 {
  width: 510px;
  max-width: 34.9315068493%;
  margin-right: auto;
}
#sec-art .con_box .pic_box .pic_02 {
  width: 200px;
  max-width: 13.698630137%;
  margin-left: auto;
  position: relative;
  top: 5.2083333333vw;
}
#sec-art .con_box .pic_box .pic_03 {
  width: 200px;
  max-width: 13.698630137%;
  margin-left: 3.4246575342%;
  position: relative;
  top: 9.8958333333vw;
}
#sec-art .con_box .pic_box .pic_04 {
  width: 200px;
  max-width: 13.698630137%;
  margin-left: 3.4246575342%;
  position: relative;
  top: 14.5833333333vw;
}
@media screen and (max-width: 1023px) {
  #sec-art .content__inner {
    padding-bottom: 19.53125vw;
  }
  #sec-art .con_box {
    width: 100%;
    max-width: 100%;
    padding-top: 8.7890625vw;
    margin: 0 auto;
    background: url("../images/facilities/pic_art_01.png") top right no-repeat, url("../images/common/bg_06.jpg") top center no-repeat;
    background-size: 75% auto, cover;
  }
  #sec-art .con_box .text_box {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding-left: 9.765625vw;
    padding-right: 9.765625vw;
    color: #fff;
    display: flex;
    flex-wrap: wrap;
  }
  #sec-art .con_box .text_box .ttl_box {
    width: 100%;
    max-width: 100%;
    margin-bottom: 2em;
  }
  #sec-art .con_box .text_box .text_box_in {
    width: 700px;
    max-width: 63.4765625%;
    padding-top: 0;
  }
  #sec-art .con_box .text_box .text_box_in p.description {
    margin-bottom: 7.32421875vw;
    line-height: 1.5625;
  }
}
@media screen and (max-width: 767px) {
  #sec-art .content__inner {
    padding-bottom: 26.6666666667vw;
  }
  #sec-art .con_box {
    width: 100%;
    max-width: 100%;
    padding-top: 55.3333333333vw;
    padding-bottom: 3.3333333333vw;
    margin: 0 auto;
    background: url("../images/facilities/pic_art_01_sp.png") top right no-repeat, url("../images/common/bg_05_sp.jpg") top center no-repeat;
    background-size: 100% auto, cover;
  }
  #sec-art .con_box .text_box {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding-left: 13.3333333333vw;
    padding-right: 13.3333333333vw;
    color: #fff;
    display: flex;
    flex-wrap: wrap;
  }
  #sec-art .con_box .text_box .ttl_box {
    width: 100%;
    max-width: 100%;
    margin-bottom: 1em;
  }
  #sec-art .con_box .text_box .text_box_in {
    width: 100%;
    max-width: 100%;
    padding-top: 0;
  }
  #sec-art .con_box .text_box .text_box_in p.description {
    margin-bottom: 11.3333333333vw;
    text-align: justify;
  }
  #sec-art .con_box .pic_box {
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-left: 6.6666666667vw;
    padding-right: 6.6666666667vw;
  }
  #sec-art .con_box .pic_box .pic_01 {
    width: 100%;
    max-width: 100%;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 6.6666666667vw;
    text-align: center;
  }
  #sec-art .con_box .pic_box .pic_01 img {
    width: 68vw;
    max-width: 100%;
  }
  #sec-art .con_box .pic_box .pic_02 {
    width: 24.6666666667vw;
    max-width: 28.4615384615%;
    margin-left: 0;
    margin-right: 0;
    position: relative;
    top: 0;
  }
  #sec-art .con_box .pic_box .pic_03 {
    width: 24.6666666667vw;
    max-width: 28.4615384615%;
    margin-left: 0;
    margin-right: 0;
    position: relative;
    top: 10.6666666667vw;
  }
  #sec-art .con_box .pic_box .pic_04 {
    width: 24.6666666667vw;
    max-width: 28.4615384615%;
    margin-left: 0;
    margin-right: 0;
    position: relative;
    top: 21.3333333333vw;
  }
}

#sec-banquet-hall .content__inner {
  padding-top: 4.1666666667vw;
  padding-bottom: 5.2083333333vw;
}
#sec-banquet-hall .con_box {
  width: 100%;
  max-width: 1920px;
  padding-top: 4.6875vw;
  margin: 0 auto;
  position: relative;
  z-index: 0;
}
#sec-banquet-hall .con_box::before {
  position: absolute;
  content: "";
  width: 100%;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  height: calc(770/910*100%);
  background: url("../images/common/bg_01.jpg") top center no-repeat;
  background-size: cover;
  z-index: -1;
}
#sec-banquet-hall .con_box .text_box {
  width: 1200px;
  max-width: 100%;
  margin: 0 auto;
  padding-left: 5.2083333333vw;
  padding-right: 5.2083333333vw;
  color: #fff;
}
#sec-banquet-hall .con_box .text_box p.description {
  text-align: center;
  margin-bottom: 3.90625vw;
  font-size: min(18 / 1500 * 100vw, 18px);
}
#sec-banquet-hall .con_box .text_box .pic_box {
  width: 800px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 1023px) {
  #sec-banquet-hall .content__inner {
    padding-top: 7.8125vw;
    padding-bottom: 9.765625vw;
  }
  #sec-banquet-hall .con_box {
    width: 100%;
    max-width: 100%;
    padding-top: 8.7890625vw;
    margin: 0 auto;
    position: relative;
    z-index: 0;
  }
  #sec-banquet-hall .con_box::before {
    position: absolute;
    content: "";
    width: 100%;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    height: calc(770/910*100%);
    background: url("../images/common/bg_01.jpg") top center no-repeat;
    background-size: cover;
    z-index: -1;
  }
  #sec-banquet-hall .con_box .text_box {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding-left: 4.8828125vw;
    padding-right: 4.8828125vw;
    color: #fff;
  }
  #sec-banquet-hall .con_box .text_box p.description {
    text-align: center;
    margin-bottom: 7.32421875vw;
    font-size: min(18 / 1024 * 100vw, 18px);
  }
  #sec-banquet-hall .con_box .text_box .pic_box {
    width: 800px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (max-width: 767px) {
  #sec-banquet-hall .content__inner {
    padding-top: 10.6666666667vw;
    padding-bottom: 13.3333333333vw;
  }
  #sec-banquet-hall .con_box {
    width: 100%;
    max-width: 100%;
    padding-top: 12vw;
    margin: 0 auto;
    position: relative;
    z-index: 0;
  }
  #sec-banquet-hall .con_box::before {
    position: absolute;
    content: "";
    width: 100%;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    height: calc(770/910*100%);
    background: url("../images/common/bg_01.jpg") top center no-repeat;
    background-size: cover;
    z-index: -1;
  }
  #sec-banquet-hall .con_box .text_box {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding-left: 6.6666666667vw;
    padding-right: 6.6666666667vw;
    color: #fff;
  }
  #sec-banquet-hall .con_box .text_box p.description {
    text-align: justify;
    margin-bottom: 10vw;
    font-size: 4.2666666667vw;
    padding-left: 6.6666666667vw;
    padding-right: 6.6666666667vw;
  }
  #sec-banquet-hall .con_box .text_box .pic_box {
    width: 100%;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}

/*=================================================

		Charge / Reservation 料金・予約

==================================================*/
#sec-fee .content__inner {
  padding-top: 5.2083333333vw;
  padding-bottom: 7.8125vw;
}
#sec-fee .content_box {
  width: 1000px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}
#sec-fee .content_box:not(:last-of-type) {
  margin-bottom: 80px;
}
@media screen and (max-width: 767px) {
  #sec-fee .content__inner {
    padding-top: 10.6666666667vw;
    padding-bottom: 10.6666666667vw;
  }
  #sec-fee .content_box {
    width: 100%;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 3.3333333333vw;
    padding-right: 3.3333333333vw;
    font-feature-settings: "palt";
    text-align: justify;
  }
  #sec-fee .content_box:not(:last-of-type) {
    margin-bottom: 6.6666666667vw;
  }
}

/*=================================================

		Access アクセス・周辺

==================================================*/
#sec-map .content__inner {
  padding-top: 100px;
  padding-bottom: 100px;
}
#sec-map .access-map {
  width: 1300px;
  max-width: 100%;
  margin: 0 auto;
  position: relative;
}
#sec-map .access-map .gmap {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: 31.25vw;
  margin: 0 auto;
  z-index: 0;
  overflow: hidden;
}
#sec-map .access-map .gmap iframe {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: block;
}
#sec-map .access-map .map-info {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  margin: 4.6875vw auto;
}
#sec-map .access-map .map-info .pic {
  width: 300px;
  max-width: 15.625vw;
  margin: 0 1.3020833333vw 2.6041666667vw;
}
#sec-map .access-map .map-info .text_box {
  margin: 0 1.3020833333vw;
  color: #fff;
}
#sec-map .access-map .map-info .text_box .logo {
  width: 220px;
  max-width: 11.4583333333vw;
  margin: 0 1.3020833333vw;
}
#sec-map .access-map .map-info .text_box p {
  font-size: min(20 / 1500 * 100vw, 20px);
  line-height: 1.5;
}
#sec-map .access-map .map-info .text_box p.name {
  margin: 1em 0;
}
#sec-map .access-root {
  width: 1100px;
  max-width: 100%;
  margin: 0 auto;
  padding-right: 5.2083333333vw;
  padding-left: 5.2083333333vw;
}
#sec-map .access-root .root_box {
  margin-bottom: 3.6458333333vw;
  color: #fff;
}
#sec-map .access-microbus {
  width: 1000px;
  max-width: 100%;
  margin: 0 auto;
  background: rgba(21, 21, 21, 0.2);
  border: 1px solid #fff;
  padding: 2.34375vw 1.0416666667vw 1.0416666667vw;
  text-align: center;
  color: #fff;
}
@media screen and (max-width: 1023px) {
  #sec-map {
    padding-left: 4.8828125vw;
    padding-right: 4.8828125vw;
  }
  #sec-map .access-map {
    width: 100%;
    max-width: 100%;
  }
  #sec-map .access-map .gmap {
    position: relative;
    width: 100%;
    max-width: 100%;
    height: 31.25vw;
    margin: 0 auto;
    z-index: 0;
    overflow: hidden;
  }
  #sec-map .access-map .gmap iframe {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: block;
  }
  #sec-map .access-map .map-info {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    margin: 8.7890625vw auto;
  }
  #sec-map .access-map .map-info .pic {
    width: 300px;
    max-width: 29.296875vw;
    margin: 0 2.44140625vw 4.8828125vw;
  }
  #sec-map .access-map .map-info .text_box {
    margin: 0 2.44140625vw;
    color: #fff;
  }
  #sec-map .access-map .map-info .text_box .logo {
    width: 220px;
    max-width: 21.484375vw;
    margin: 0 2.44140625vw;
  }
  #sec-map .access-map .map-info .text_box p {
    font-size: min(20 / 1024 * 100vw, 20px);
    line-height: 1.5;
  }
  #sec-map .access-map .map-info .text_box p.name {
    margin: 1em 0;
  }
}
@media screen and (max-width: 767px) {
  #sec-map {
    padding-left: 0;
    padding-right: 0;
  }
  #sec-map .content__inner {
    padding-top: 10.6666666667vw;
    padding-bottom: 10.6666666667vw;
  }
  #sec-map .access-map {
    width: 100%;
    max-width: 100%;
    margin-right: auto;
    margin-left: auto;
    margin-top: 0;
    margin-bottom: 0;
    display: flex;
    flex-wrap: wrap;
    position: relative;
  }
  #sec-map .access-map .gmap {
    position: relative;
    width: 100%;
    max-width: 100%;
    height: 53.3333333333vw;
    margin: 0 auto;
    z-index: 0;
    overflow: hidden;
  }
  #sec-map .access-map .gmap iframe {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: block;
  }
  #sec-map .access-map .map-info {
    position: relative;
    width: 100%;
    margin: 0;
    padding: 9.3333333333vw 3.3333333333vw 9.3333333333vw 3.3333333333vw;
  }
  #sec-map .access-map .map-info .text_box {
    margin: 0 auto;
    text-align: center;
  }
  #sec-map .access-map .map-info .text_box .logo {
    width: 29.3333333333vw;
    margin: 0 auto 4.6666666667vw;
  }
  #sec-map .access-map .map-info .text_box p {
    font-size: 4vw;
  }
  #sec-map .access-root {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding-right: 6.6666666667vw;
    padding-left: 13.3333333333vw;
  }
  #sec-map .access-root .root_box {
    margin-bottom: 9.3333333333vw;
    color: #fff;
  }
  #sec-map .access-root .root_box p {
    margin-bottom: 0.5em;
  }
  #sec-map .access-microbus {
    width: 86.6666666667vw;
    max-width: 86.6666666667%;
    margin: 0 auto;
    background: rgba(21, 21, 21, 0.2);
    border: 1px solid #fff;
    padding: 6vw 6.6666666667vw 3.3333333333vw;
    text-align: left;
    color: #fff;
  }
}

#sec-sightseeing {
  padding-left: 5.2083333333vw;
  padding-right: 5.2083333333vw;
}
#sec-sightseeing .content__inner {
  padding-top: 5.2083333333vw;
  padding-bottom: 5.2083333333vw;
}
#sec-sightseeing .col2-box {
  width: 1300px;
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
#sec-sightseeing .col2-box .inbox_item {
  width: 600px;
  max-width: 46.1538461538%;
}
#sec-sightseeing .col2-box .inbox_item .pic {
  width: 100%;
}
#sec-sightseeing .col2-box .inbox_item .text_box {
  padding: 2.0833333333vw 0;
}
#sec-sightseeing .col2-box .inbox_item .text_box .ttl_box {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 0.5em;
}
#sec-sightseeing .col2-box .inbox_item .text_box .ttl_box h4 {
  font-size: min(30 / 1500 * 100vw, 30px);
}
#sec-sightseeing .col2-box .inbox_item .text_box .ttl_box p.time {
  font-size: min(18 / 1500 * 100vw, 18px);
  display: inline-block;
  padding: 0 0.5em;
  color: #fff;
  background: #6c272d;
  border-radius: 10px;
  margin-left: 1em;
}
#sec-sightseeing .col2-box .inbox_item .text_box p.description {
  font-size: min(18 / 1500 * 100vw, 18px);
  margin-bottom: 1em;
}
#sec-sightseeing .col2-box .inbox_item .text_box .btn_detail a {
  color: #63613a;
}
#sec-sightseeing .col2-box .inbox_item .text_box .btn_detail a::before {
  background: #63613a;
}
@media screen and (max-width: 1023px) {
  #sec-sightseeing {
    padding-left: 4.8828125vw;
    padding-right: 4.8828125vw;
  }
  #sec-sightseeing .content__inner {
    padding-top: 9.765625vw;
    padding-bottom: 9.765625vw;
  }
  #sec-sightseeing .col2-box {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  #sec-sightseeing .col2-box .inbox_item {
    width: 600px;
    max-width: 47.2943722944%;
  }
  #sec-sightseeing .col2-box .inbox_item .pic {
    width: 100%;
  }
  #sec-sightseeing .col2-box .inbox_item .text_box {
    padding: 3.90625vw 0;
  }
  #sec-sightseeing .col2-box .inbox_item .text_box .ttl_box {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 0.5em;
  }
  #sec-sightseeing .col2-box .inbox_item .text_box .ttl_box h4 {
    font-size: min(26 / 1024 * 100vw, 30px);
  }
  #sec-sightseeing .col2-box .inbox_item .text_box .ttl_box p.time {
    font-size: min(16 / 1024 * 100vw, 18px);
    display: inline-block;
    padding: 0 0.5em;
    color: #fff;
    background: #6c272d;
    border-radius: 0.9765625vw;
    margin-left: 1em;
  }
  #sec-sightseeing .col2-box .inbox_item .text_box p.description {
    font-size: min(18 / 1024 * 100vw, 18px);
    margin-bottom: 1em;
  }
  #sec-sightseeing .col2-box .inbox_item .text_box .btn_detail a {
    color: #63613a;
  }
  #sec-sightseeing .col2-box .inbox_item .text_box .btn_detail a::before {
    background: #63613a;
  }
}
@media screen and (max-width: 767px) {
  #sec-sightseeing {
    padding-left: 6.6666666667vw;
    padding-right: 6.6666666667vw;
  }
  #sec-sightseeing .content__inner {
    padding-top: 10.6666666667vw;
    padding-bottom: 10.6666666667vw;
  }
  #sec-sightseeing .col2-box {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  #sec-sightseeing .col2-box .inbox_item {
    width: 600px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  #sec-sightseeing .col2-box .inbox_item .pic {
    width: 100%;
    text-align: center;
  }
  #sec-sightseeing .col2-box .inbox_item .text_box {
    padding: 5.3333333333vw 0;
  }
  #sec-sightseeing .col2-box .inbox_item .text_box .ttl_box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 1em;
  }
  #sec-sightseeing .col2-box .inbox_item .text_box .ttl_box h4 {
    font-size: 4.8vw;
  }
  #sec-sightseeing .col2-box .inbox_item .text_box .ttl_box p.time {
    font-size: 3.7333333333vw;
    display: inline-block;
    padding: 0 0.5em;
    color: #fff;
    background: #6c272d;
    border-radius: 1.3333333333vw;
    margin-left: 1em;
  }
  #sec-sightseeing .col2-box .inbox_item .text_box p.description {
    font-size: 4.2666666667vw;
    margin-bottom: 1em;
  }
  #sec-sightseeing .col2-box .inbox_item .text_box .btn_detail a {
    color: #63613a;
  }
  #sec-sightseeing .col2-box .inbox_item .text_box .btn_detail a::before {
    background: #63613a;
  }
}

/*=====================================================

		アニメーション

======================================================*/
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}
.zoom {
  overflow: hidden;
}

.zoom img {
  transform: scale(1);
  transition: all 1s ease-out;
}

.zoom:hover img {
  transform: scale(1.02);
  transition: all 1s ease-out;
}

/*# sourceMappingURL=style.css.map */
