@charset "UTF-8";
/* ----------------------------------------------------------------------------------------------------
*	RESET CSS
* --------------------------------------------------------------------------------------------------*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

* {
  box-sizing: border-box;
}

body {
  line-height: 1;
  -webkit-text-size-adjust: 100%;
}

img {
  border: 0;
  vertical-align: bottom;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

sub {
  vertical-align: sub;
}

sup {
  vertical-align: super;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

pre {
  white-space: pre-wrap;
}

/* ----------------------------------------------------------------------------------------------------
*	WEBフォント
* --------------------------------------------------------------------------------------------------*/
@font-face {
  font-family: "Zen_Maru_Gothic";
  src: url("../fonts/Zen_Maru_Gothic/Zen_Maru_Gothic-Regular.woff2") format("woff2"), url("../fonts/Noto_Sans_JP/Zen_Maru_Gothic-Regular.woff") format("woff");
  font-display: swap;
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Zen_Maru_Gothic";
  src: url("../fonts/Zen_Maru_Gothic/Zen_Maru_Gothic-Medium.woff2") format("woff2"), url("../fonts/Noto_Sans_JP/Zen_Maru_Gothic-Medium.woff") format("woff");
  font-display: swap;
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Zen_Maru_Gothic";
  src: url("../fonts/Zen_Maru_Gothic/Zen_Maru_Gothic-Bold.woff2") format("woff2"), url("../fonts/Noto_Sans_JP/Zen_Maru_Gothic-Bold.woff") format("woff");
  font-display: swap;
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Source_Hans_Pro";
  src: url("../fonts/Source_Hans_Pro/Source_Hans_Pro-Black.woff2") format("woff2"), url("../fonts/Source_Hans_Pro/Source_Hans_Pro-Black.woff") format("woff");
  font-display: swap;
  font-weight: 900;
  font-style: normal;
}
/* ----------------------------------------------------------------------------------------------------
*	BASE
* --------------------------------------------------------------------------------------------------*/
html {
  font-size: 62.5%;
}

body {
  font-family: "Zen_Maru_Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 400;
  color: #333;
  font-size: 1.4rem;
  min-width: 1260px;
}

a {
  text-decoration: none;
  color: #fff;
  outline: none;
}
a:hover, a:active, a:focus {
  text-decoration: none;
}

img {
  max-width: 100%;
}

* {
  word-break: break-all;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
}

.l-pagebody {
  position: relative;
}

.l-content-big {
  max-width: 1320px;
  width: 100%;
  margin: 0 auto;
  padding: 0 30px;
}

.l-content-small {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  padding: 0 30px;
}

@media all and (max-width: 767px) {
  body {
    min-width: initial;
  }
  .l-content-big {
    max-width: initial;
    padding: 0 4vw;
  }
  .l-content-small {
    max-width: initial;
    padding: 0 4vw;
  }
}
/* ----------------------------------------------------------------------------------------------------
*	ヘッダー
* --------------------------------------------------------------------------------------------------*/
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background-color: transparent;
  transition: background-color 0.3s;
  min-width: 900px;
}
.l-header.is-active {
  background-color: rgba(0, 0, 0, 0.3);
}

.l-header-wrap {
  padding: 15px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.l-header-lodo {
  width: 200px;
  height: auto;
}

.l-header-list {
  display: flex;
}

.l-header-list-item {
  position: relative;
  padding: 0 25px;
}
.l-header-list-item:before {
  content: "";
  display: block;
  position: absolute;
  background-color: #fff;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  border-radius: 5px;
  width: 1px;
  height: 18px;
}
.l-header-list-item:last-of-type:before {
  display: none;
}

.l-header-list-item-link {
  color: #fff;
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: bold;
  display: block;
  position: relative;
}
.l-header-list-item-link:after {
  content: "";
  background: #fff;
  width: 100%;
  height: 2px;
  position: absolute;
  left: 0;
  bottom: -7px;
  margin: auto;
  transition: transform 0.3s;
  transform-origin: center top;
  transform: scale(0, 1);
}
.l-header-list-item-link:hover:after {
  transform-origin: center top;
  transform: scale(1, 1);
}

@media all and (max-width: 767px) {
  .l-header {
    min-width: initial;
  }
  .l-header-wrap {
    padding: 4vw 0;
  }
  .l-header-lodo {
    width: 40vw;
  }
  .l-header-drawer-btn {
    width: 10.1333333333vw;
  }
  .l-header-drawer-btn span,
.l-header-drawer-btn span:before,
.l-header-drawer-btn span:after {
    content: "";
    display: block;
    width: 10.1333333333vw;
    height: 0.5333333333vw;
    background-color: #ffffff;
    position: absolute;
  }
  .l-header-drawer-btn span:before {
    bottom: 2.6666666667vw;
  }
  .l-header-drawer-btn span:after {
    top: 2.6666666667vw;
  }
  .l-header-drawer {
    background: #fff;
    width: 90vw;
    z-index: 9999;
    position: fixed;
    top: 0;
    bottom: 0;
    right: -150%;
    transition: right 0.3s;
    overflow-y: scroll;
    overflow-x: hidden;
    z-index: 50;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  .l-header-drawer.is-appear {
    right: 0;
  }
  .l-header-drawer::-webkit-scrollbar {
    display: none;
  }
  .l-header-drawer-wrap {
    padding: 9.3333333333vw 5.3333333333vw;
  }
  .l-header-drawer-close-btn {
    width: 10.1333333333vw;
    margin: 0 0 0 auto;
    position: relative;
  }
  .l-header-drawer-close-btn span,
.l-header-drawer-close-btn span:before,
.l-header-drawer-close-btn span:after {
    content: "";
    display: block;
    width: 10.1333333333vw;
    height: 0.5333333333vw;
    background-color: #333;
    position: absolute;
  }
  .l-header-drawer-close-btn span {
    background-color: rgba(255, 255, 255, 0);
  }
  .l-header-drawer-close-btn span:before {
    bottom: 0;
    transform: rotate(35deg);
  }
  .l-header-drawer-close-btn span:after {
    top: 0;
    transform: rotate(-35deg);
  }
  .l-header-drawer-menu {
    margin: 8vw 0 0;
  }
  .l-header-drawer-bg {
    background-color: rgba(51, 51, 51, 0.4);
    width: 100vw;
    position: fixed;
    top: 0;
    bottom: 0;
    right: -150%;
    transition: right 0.3s;
    z-index: 10;
  }
  .l-header-drawer-bg.is-appear {
    right: 0;
  }
  .l-header-drawer-bg::-webkit-scrollbar {
    display: none;
  }
  .l-header-drawer-menu-item + .l-header-drawer-menu-item {
    margin: 5.3333333333vw 0 0;
  }
  .l-header-drawer-menu-ttl {
    position: relative;
  }
  .l-header-drawer-menu-ttl-link {
    width: 100%;
    font-size: 5.3333333333vw;
    font-weight: 700;
    display: block;
    color: #0d99df;
  }
  .l-header-drawer-sns-list {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 32vw 0 0;
  }
  .l-header-drawer-sns-list-item {
    width: 8.5333333333vw;
  }
  .l-header-drawer-sns-list-item + .l-header-drawer-sns-list-item {
    margin: 0 0 0 5.3333333333vw;
  }
  .l-header-drawer-sns-list-item-link {
    display: block;
  }
  .l-header-drawer-sns-list-item-pic {
    width: 100%;
    height: auto;
  }
  .l-header-drawer-sns-list-item-pic img {
    width: 100%;
    height: auto;
  }
}
/* ----------------------------------------------------------------------------------------------------
*	メインビジュアル
* --------------------------------------------------------------------------------------------------*/
.p-mv {
  position: relative;
}

.p-mv-list-item-pic img {
  width: 100%;
  height: auto;
}

.p-mv-list.slick-dotted.slick-slider {
  margin: 0;
}
.p-mv-list .slick-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
}
.p-mv-list .slick-dots li button {
  width: 10px;
  height: 10px;
}
.p-mv-list .slick-dots li button:before {
  width: 10px;
  height: 10px;
  padding: 2px;
  color: #fff;
  content: "";
  background-color: #fff;
  border-radius: 50%;
}

@media all and (max-width: 767px) {
  .p-mv-list .slick-dots {
    bottom: 8vw;
  }
  .p-mv-list .slick-dots li button {
    width: 2.6666666667vw;
    height: 2.6666666667vw;
  }
  .p-mv-list .slick-dots li button:before {
    width: 2.6666666667vw;
    height: 2.6666666667vw;
    padding: 0.5333333333vw;
  }
}
/* ----------------------------------------------------------------------------------------------------
*	ニュース
* --------------------------------------------------------------------------------------------------*/
.p-news {
  background-color: #0d99df;
  padding: 25px 0;
}

.p-news-wrap {
  display: flex;
}

.p-news-list-item {
  display: flex;
  align-items: center;
}
.p-news-list-item + .p-news-list-item {
  margin: 20px 0 0;
}

.p-news-ttl {
  font-size: 3.8rem;
  font-weight: 900;
  color: #fff;
  font-family: "Source_Hans_Pro", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

.p-news-date {
  font-size: 1.4rem;
  font-weight: 500;
  color: #fff;
  margin: 0 0 0 40px;
}

.p-news-category {
  background-color: #fff;
  border-radius: 6px;
  padding: 10px 0;
  margin: 0 0 0 15px;
  min-width: 100px;
}

.p-news-category-txt {
  font-size: 1.3rem;
  font-weight: 700;
  color: #0d99df;
  text-align: center;
}

.p-news-txt-link {
  text-decoration: underline;
  color: #fff;
  font-size: 1.4rem;
  line-height: 1.4285714286;
  font-weight: 500;
  margin: 0 0 0 30px;
}
.p-news-txt-link:hover {
  text-decoration: none;
}

@media all and (max-width: 767px) {
  .p-news {
    padding: 3.4666666667vw 0 5.3333333333vw;
  }
  .p-news-wrap {
    flex-direction: column;
  }
  .p-news-list-item {
    flex-wrap: wrap;
  }
  .p-news-list-item + .p-news-list-item {
    margin: 8vw 0 0;
  }
  .p-news-ttl {
    font-size: 6.1333333333vw;
    margin: 0 0 4vw;
  }
  .p-news-date {
    font-size: 3.4666666667vw;
    margin: 0;
  }
  .p-news-category {
    padding: 1.3333333333vw 2.6666666667vw;
    margin: 0 0 0 3.7333333333vw;
    min-width: initial;
  }
  .p-news-category-txt {
    font-size: 3.7333333333vw;
  }
  .p-news-txt-link {
    margin: 1.3333333333vw 0 0;
    font-size: 3.7333333333vw;
    line-height: 1.4285714286;
  }
}
/* ----------------------------------------------------------------------------------------------------
*	バス
* --------------------------------------------------------------------------------------------------*/
.p-bus {
  background-image: url("../../assets/images/bg_bus_pc.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 0;
}

.p-bus-wrap {
  max-width: 1050px;
  width: 100%;
  margin: 0 auto;
  padding: 70px 0;
}

.p-bus-ttl-box {
  position: relative;
  text-align: center;
}

.p-bus-ttl {
  font-size: 2.8rem;
  line-height: 1.7142857143;
  font-weight: 700;
  color: #82bcba;
  display: inline-block;
}
.p-bus-ttl:after {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  bottom: -30px;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: #82bcba;
}

.p-bus-ttl-lead {
  font-size: 3.4rem;
  line-height: 1.3823529412;
  font-weight: 700;
  color: #333;
  text-align: center;
  margin: 70px 0 0;
}

.p-bus-list {
  display: flex;
  flex-wrap: wrap;
  margin: 25px 0 0;
}

.p-bus-list-item {
  width: 330px;
}
.p-bus-list-item + .p-bus-list-item {
  margin: 0 0 0 25px;
}
.p-bus-list-item:nth-of-type(1) .p-bus-list-item-ttl {
  color: #bfbf74;
}
.p-bus-list-item:nth-of-type(2) .p-bus-list-item-ttl {
  color: #d89191;
}
.p-bus-list-item:nth-of-type(3) .p-bus-list-item-ttl {
  color: #91c9d8;
}

.p-bus-list-item-pic {
  width: 310px;
  height: auto;
  margin: 0 auto;
  text-align: center;
}
.p-bus-list-item-pic img {
  width: 100%;
  height: auto;
}

.p-bus-list-item-ttl {
  font-size: 2.1rem;
  line-height: 1.2857142857;
  font-weight: 700;
  text-align: center;
  margin: 20px 0 0;
}

.p-bus-list-item-txt {
  font-size: 1.4rem;
  line-height: 1.7857142857;
  font-weight: 500;
  text-align: center;
  margin: 15px 0 0;
}

.p-bus-list-item-txt-caution {
  font-size: 1.3rem;
  line-height: 1.3846153846;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.5);
  margin: 12px 0 0;
  text-align: center;
}

@media all and (max-width: 767px) {
  .p-bus {
    background-image: url("../../assets/images/bg_bus_sp.png");
  }
  .p-bus-wrap {
    max-width: initial;
    padding: 10.6666666667vw 0;
  }
  .p-bus-ttl {
    font-size: 5.8666666667vw;
    line-height: 1.4545454545;
    font-weight: 700;
  }
  .p-bus-ttl:after {
    bottom: -6.6666666667vw;
    width: 10.6666666667vw;
    height: 0.5333333333vw;
  }
  .p-bus-ttl-lead {
    font-size: 5.3333333333vw;
    margin: 13.3333333333vw 0 0;
  }
  .p-bus-list {
    flex-direction: column;
    margin: 4vw 0 0;
  }
  .p-bus-list-item {
    width: 100%;
  }
  .p-bus-list-item + .p-bus-list-item {
    margin: 10.6666666667vw 0 0;
  }
  .p-bus-list-item-pic {
    width: 70.6666666667vw;
    margin: 0 auto;
  }
  .p-bus-list-item-ttl {
    font-size: 5.3333333333vw;
    margin: 4vw 0 0;
  }
  .p-bus-list-item-txt {
    font-size: 3.4666666667vw;
    line-height: 1.5384615385;
    margin: 2.6666666667vw 0 0;
  }
  .p-bus-list-item-txt-caution {
    font-size: 3.2vw;
    line-height: 1.3333333333;
    margin: 3.2vw 0 0;
  }
}
/* ----------------------------------------------------------------------------------------------------
*	全国旅行支援
* --------------------------------------------------------------------------------------------------*/
.p-ryokoshien {
  background-color: #ffffff;
  padding: 40px 0;
}

.p-campaign {
  padding: 80px 0 60px;
  background-color: #fdf8f2;
}

.p-campaign-ttl {
  font-size: 3.4rem;
  line-height: 1.3823529412;
  font-weight: 700;
  color: #82bcba;
  text-align: center;
}

.p-campaign-wrap {
  margin: 50px 0 0;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
}

.p-campaign-pic {
  width: 42%;
}
.p-campaign-pic img {
  width: 100%;
  height: auto;
}

.p-campaign-txt-box {
  width: 54%;
  margin: 0 0 0 40px;
}

.p-campaign-table-list-item {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  padding: 16px 0;
}
.p-campaign-table-list-item + .p-campaign-table-list-item {
  border-top: 1px solid rgba(51, 51, 51, 0.4);
}

.p-campaign-table-list-item-ttl {
  font-size: 1.6rem;
  line-height: 1.6875;
  font-weight: 700;
  color: #82bcba;
  width: 22%;
  text-align: left;
}
.p-campaign-table-list-item-ttl span {
  display: inline-block;
  padding: 0 0 0 20px;
}

.p-campaign-table-list-item-txt-box {
  width: 78%;
}

.p-campaign-table-list-item-txt {
  font-size: 1.6rem;
  line-height: 1.6875;
  font-weight: 500;
  color: #333;
}
.p-campaign-table-list-item-txt.p-text-indent {
  text-indent: -1em;
  padding-left: 1em;
}

.p-campaign-caution {
  margin: 10px 0 0;
}

.p-campaign-caution-list-item + .p-campaign-caution-list-item {
  margin: 3px 0 0;
}

.p-campaign-caution-list-item-txt {
  font-size: 1.3rem;
  line-height: 1.3846153846;
  font-weight: 400;
  text-indent: -1em;
  padding-left: 1em;
}

.p-campaign-caution-ttl {
  font-size: 1.3rem;
  line-height: 1.3846153846;
  font-weight: 400;
  margin: 20px 0 3px;
}

@media all and (max-width: 767px) {
  .p-campaign {
    padding: 16vw 0;
  }

  .p-campaign-ttl {
    font-size: 5.8666666667vw;
    line-height: 1.3636363636;
  }

  .p-campaign-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 5.3333333333vw 0 0;
  }

  .p-campaign-pic {
    width: 100%;
  }

  .p-campaign-txt-box {
    width: 100%;
    margin: 8vw 0 0;
  }

  .p-campaign-table-list-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 3.2vw 0;
  }

  .p-campaign-table-list-item-ttl {
    font-size: 3.7333333333vw;
    line-height: 1.7142857143;
    width: 100%;
  }
  .p-campaign-table-list-item-ttl span {
    padding: 0;
  }

  .p-campaign-table-list-item-txt-box {
    width: 100%;
  }

  .p-campaign-table-list-item-txt {
    font-size: 3.7333333333vw;
    line-height: 1.7142857143;
    width: 100%;
    padding: 0;
  }

  .p-campaign-txt-box {
    width: 100%;
    margin: 8vw 0 0;
  }

  .p-campaign-caution {
    margin: 2.6666666667vw 0 0;
  }

  .p-campaign-caution-list-item + .p-campaign-caution-list-item {
    margin: 0.8vw 0 0;
  }

  .p-campaign-caution-list-item-txt {
    font-size: 3.2vw;
    text-indent: -1em;
    padding-left: 1em;
  }

  .p-campaign-caution-ttl {
    font-size: 3.2vw;
    margin: 5.3333333333vw 0 0.8vw;
  }
}
/* ----------------------------------------------------------------------------------------------------
*	ご予約ボタン
* --------------------------------------------------------------------------------------------------*/
.p-reserve {
  background-color: #6fcbf9;
  padding: 40px 0;
}

.p-reserve-list {
  display: flex;
}

.p-reserve-list-item {
  position: relative;
  overflow: hidden;
  width: 380px;
  height: 180px;
  cursor: pointer;
  border-radius: 20px;
  z-index: 2;
}
.p-reserve-list-item + .p-reserve-list-item {
  margin: 0 0 0 60px;
}
.p-reserve-list-item:nth-of-type(1):after {
  background-image: url("../../assets/images/bg_reserve_oshima_pc.png");
}
.p-reserve-list-item:nth-of-type(2):after {
  background-image: url("../../assets/images/bg_reserve_kouzushima_pc.png");
}
.p-reserve-list-item:nth-of-type(3):after {
  background-image: url("../../assets/images/bg_reserve_hatsushima_pc.png");
}
.p-reserve-list-item:after {
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  transition: 0.3s ease-out;
  border-radius: 20px;
  transform: scale(1.1);
}
.p-reserve-list-item:hover:after {
  transform: scale(1.2);
}

.p-reserve-list-item-link {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  overflow: hidden;
  padding: 0 15px;
  border-radius: 20px;
  position: relative;
  z-index: 5;
}

.p-reserve-list-item-icn-wrap {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
}

.p-reserve-list-item-icn {
  width: 41px;
  height: auto;
}
.p-reserve-list-item-icn + .p-reserve-list-item-icn {
  margin: 0 0 0 30px;
}

.p-reserve-list-item-ttl {
  font-size: 2rem;
  line-height: 1.4;
  font-weight: 700;
  text-align: center;
  color: #fff;
  position: relative;
  z-index: 2;
  margin: 8px 0 0;
}

@media all and (max-width: 767px) {
  .p-reserve {
    padding: 10.6666666667vw 0;
  }
  .p-reserve-list {
    flex-direction: column;
  }
  .p-reserve-list-item {
    width: 88vw;
    height: 31.333333vw;
    border-radius: 5.3333333333vw;
    padding: 8vw;
    margin: 0 auto;
  }
  .p-reserve-list-item + .p-reserve-list-item {
    margin: 4vw auto 0;
  }
  .p-reserve-list-item:nth-of-type(1):after {
    background-image: url("../../assets/images/bg_reserve_oshima_sp.png");
  }
  .p-reserve-list-item:nth-of-type(2):after {
    background-image: url("../../assets/images/bg_reserve_kouzushima_sp.png");
  }
  .p-reserve-list-item:nth-of-type(3):after {
    background-image: url("../../assets/images/bg_reserve_hatsushima_sp.png");
  }
  .p-reserve-list-item:after {
    border-radius: 5.3333333333vw;
  }
  .p-reserve-list-item-link {
    padding: 0;
  }
  .p-reserve-list-item-icn {
    width: 10.9333333333vw;
  }
  .p-reserve-list-item-icn + .p-reserve-list-item-icn {
    margin: 0 0 0 8vw;
  }
  .p-reserve-list-item-ttl {
    font-size: 4.8vw;
    line-height: 1.5555555556;
    margin: 2.6666666667vw 0 0;
  }
}
/* ----------------------------------------------------------------------------------------------------
*	草津温泉のアピール文
* --------------------------------------------------------------------------------------------------*/
.p-appeal {
  background-image: url("../../assets/images/bg_appeal_pc.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 0;
}

.p-appeal-wrap {
  display: flex;
  justify-content: flex-end;
  padding: 50px 0 50px 30px;
  width: 100%;
  margin: 0 auto;
}

.p-appeal-txt-box {
  width: 680px;
  margin: 0 40px 0 0;
}

.p-appeal-ttl {
  font-size: 3.4rem;
  line-height: 1.3823529412;
  font-weight: 700;
  color: #eb6ca3;
}

.p-appeal-ttl-sub {
  font-size: 2.1rem;
  line-height: 1.3333333333;
  font-weight: 700;
  color: #333;
  margin: 40px 0 0;
}

.p-appeal-txt {
  font-size: 1.4rem;
  line-height: 1.9285714286;
  font-weight: 400;
  color: #333;
  margin: 20px 0 0;
}

.p-appeal-btn {
  margin: 40px 0 0;
}

.p-appeal-btn-link {
  display: block;
  width: 332px;
  background-color: #cd5c5c;
  border-radius: 12px;
  box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.1);
  padding: 9px 0;
  border: 2px solid #cd5c5c;
  transition: 0.3s;
}
.p-appeal-btn-link:hover {
  background-color: #fff;
}
.p-appeal-btn-link:hover .p-appeal-btn-link-txt {
  color: #cd5c5c;
}

.p-appeal-btn-link-txt {
  font-size: 1.6rem;
  line-height: 1.6875;
  font-weight: 700;
  text-align: center;
  color: #fff;
  transition: 0.3s;
}

.p-appeal-pic-box {
  width: 45%;
  border-radius: 20px 0 0 20px;
  position: relative;
  z-index: 3;
}
.p-appeal-pic-box:after {
  content: "";
  display: block;
  background-color: #eb6ca3;
  width: 100%;
  height: 100%;
  border-radius: 20px 0 0 20px;
  z-index: 1;
  position: absolute;
  left: -10px;
  top: 10px;
}

.p-appeal-pic {
  border-radius: 20px 0 0 20px;
  overflow: hidden;
  position: relative;
  z-index: 5;
}
.p-appeal-pic img {
  width: 100%;
  height: auto;
}

@media all and (max-width: 767px) {
  .p-appeal {
    background-image: url("../../assets/images/bg_appeal_sp.png");
  }
  .p-appeal-wrap {
    flex-direction: column-reverse;
    padding: 0 0 10.6666666667vw;
    max-width: initial;
    width: 100%;
  }
  .p-appeal-txt-box {
    width: 100%;
    margin: 10.6666666667vw 0 0;
    padding: 0 4vw;
  }
  .p-appeal-ttl {
    font-size: 5.3333333333vw;
    line-height: 1.4;
  }
  .p-appeal-ttl-sub {
    font-size: 5.3333333333vw;
    line-height: 1.4;
    margin: 8vw 0 0;
  }
  .p-appeal-txt {
    font-size: 3.4666666667vw;
    line-height: 1.8461538462;
    margin: 4vw 0 0;
  }
  .p-appeal-btn {
    margin: 10.6666666667vw 0 0;
  }
  .p-appeal-btn-link {
    width: 100%;
    border-radius: 3.2vw;
    padding: 3.7333333333vw 0;
  }
  .p-appeal-btn-link-txt {
    font-size: 4.2666666667vw;
    line-height: 1.6875;
  }
  .p-appeal-pic-box {
    width: 100%;
    border-radius: 0;
  }
  .p-appeal-pic-box:after {
    display: none;
  }
  .p-appeal-pic {
    border-radius: 0;
  }
}
/* ----------------------------------------------------------------------------------------------------
*	日帰りご予約ボタン
* --------------------------------------------------------------------------------------------------*/
.p-reserve-ttl {
  font-size: 3.4rem;
  line-height: 1.3823529412;
  font-weight: 700;
  text-align: center;
  color: #fff;
}

.p-reserve-list {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
          justify-content: center;
  margin: 30px 0 0;
}

.p-reserve-list-item-higaeri {
  position: relative;
  overflow: hidden;
  width: 380px;
  height: 180px;
  cursor: pointer;
  border-radius: 20px;
  z-index: 2;
}
.p-reserve-list-item-higaeri + .p-reserve-list-item-higaeri {
  margin: 0 0 0 60px;
}
.p-reserve-list-item-higaeri:after {
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: url("../../assets/images/bg_reserve_hotspring_2_pc.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
  border-radius: 20px;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.p-reserve-list-item-higaeri:hover:after {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

.p-reserve-list-item-higaeri-link {
  width: 100%;
  height: 100%;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
          justify-content: center;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow: hidden;
  padding: 0 15px;
  border-radius: 20px;
  position: relative;
  z-index: 5;
}

.p-reserve-list-item-higaeri-icn-wrap {
  position: relative;
  z-index: 2;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
          justify-content: center;
}

.p-reserve-list-item-higaeri-icn {
  width: auto;
  height: 41px;
}
.p-reserve-list-item-higaeri-icn + .p-reserve-list-item-higaeri-icn {
  margin: 0 0 0 30px;
}
.p-reserve-list-item-higaeri-icn img {
  width: auto;
  height: 41px;
}

.p-reserve-list-item-higaeri-ttl {
  font-size: 2rem;
  line-height: 1.4;
  font-weight: 700;
  text-align: center;
  color: #fff;
  position: relative;
  z-index: 2;
  margin: 8px 0 0;
}

.p-reserve-list-item-higaeri-ttl-lead {
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: 700;
  text-align: center;
  color: #fff;
  position: relative;
  z-index: 2;
  margin: 2px 0 0;
}

.p-reserve-list-item-higaeri-ttl-lead_2 {
  font-size: 5.8rem;
  line-height: 0.8;
  font-weight: 700;
  text-align: center;
  color: #ece754;
  position: relative;
  z-index: 2;
  margin: 2px 0 0;
}

.p-reserve-list-item-higaeri2 {
  position: relative;
  overflow: hidden;
  width: 380px;
  height: 180px;
  cursor: pointer;
  border-radius: 20px;
  margin-left:30px;
  z-index: 2;
}
.p-reserve-list-item-higaeri2 + .p-reserve-list-item-higaeri2 {
  margin: 0 0 0 60px;
}
.p-reserve-list-item-higaeri2:after {
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: url("../../assets/images/bg_reserve_ski_pc.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
  border-radius: 20px;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.p-reserve-list-item-higaeri2:hover:after {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

.p-reserve-list-item-higaeri2-link {
  width: 100%;
  height: 100%;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
          justify-content: center;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow: hidden;
  padding: 0 15px;
  border-radius: 20px;
  position: relative;
  z-index: 5;
}

.p-reserve-list-item-higaeri2-icn-wrap {
  position: relative;
  z-index: 2;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
          justify-content: center;
}

.p-reserve-list-item-higaeri2-icn {
  width: auto;
  height: 41px;
}
.p-reserve-list-item-higaeri2-icn + .p-reserve-list-item-higaeri2-icn {
  margin: 0 0 0 30px;
}
.p-reserve-list-item-higaeri2-icn img {
  width: auto;
  height: 41px;
}

.p-reserve-list-item-higaeri2-ttl {
  font-size: 2rem;
  line-height: 1.4;
  font-weight: 700;
  text-align: center;
  color: #fff;
  position: relative;
  z-index: 2;
  margin: 8px 0 0;
}

.p-reserve-list-item-higaeri2-ttl-lead {
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: 700;
  text-align: center;
  color: #fff;
  position: relative;
  z-index: 2;
  margin: 2px 0 0;
}

.p-reserve-list-item-higaeri2-ttl-lead_2 {
  font-size: 5.8rem;
  line-height: 0.8;
  font-weight: 700;
  text-align: center;
  color: #ece754;
  position: relative;
  z-index: 2;
  margin: 2px 0 0;
}

@media all and (max-width: 767px) {
  .p-reserve {
    padding: 10.6666666667vw 0;
  }

  .p-reserve-ttl {
    font-size: 5.8666666667vw;
  }

  .p-reserve-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .p-reserve-list-item-higaeri {
    width: 88vw;
    height: 45.3333333333vw;
    border-radius: 5.3333333333vw;
    padding: 8vw;
    margin: 0 auto;
  }
  .p-reserve-list-item-higaeri + .p-reserve-list-item-higaeri {
    margin: 4vw auto 0;
  }
  .p-reserve-list-item-higaeri:after {
    background-image: url("../../assets/images/bg_reserve_hotspring_2_sp.png");
    border-radius: 5.3333333333vw;
  }

  .p-reserve-list-item-higaeri-link {
    padding: 0;
  }

  .p-reserve-list-item-higaeri-icn {
    width: auto;
    height: 9.8666666667vw;
  }
  .p-reserve-list-item-higaeri-icn + .p-reserve-list-item-higaeri-icn {
    margin: 0 0 0 8vw;
  }
  .p-reserve-list-item-higaeri-icn img {
    width: auto;
    height: 9.8666666667vw;
  }

  .p-reserve-list-item-higaeri-ttl {
    font-size: 3.8vw;
    line-height: 1.5555555556;
    margin: -0.333333vw 0 0;
  }

  .p-reserve-list-item-higaeri-ttl-lead {
    font-size: 3.7333333333vw;
    line-height: 1.7142857143;
    margin: -0.933333vw 0 0;
  }

  .p-reserve-list-item-higaeri-ttl-lead_2 {
    font-size: 8vw;
    line-height: 1;
    margin: -1.933333vw 0 0;
  }
  .p-reserve-list-item-higaeri2 {
    width: 88vw;
    height: 45.3333333333vw;
    border-radius: 5.3333333333vw;
    padding: 8vw;
    margin: 20px auto;
  }
  .p-reserve-list-item-higaeri2 + .p-reserve-list-item-higaeri2 {
    margin: 4vw auto 0;
  }
  .p-reserve-list-item-higaeri2:after {
    background-image: url("../../assets/images/bg_reserve_ski_sp.png");
    border-radius: 5.3333333333vw;
  }

  .p-reserve-list-item-higaeri2-link {
    padding: 0;
  }

  .p-reserve-list-item-higaeri2-icn {
    width: auto;
    height: 9.8666666667vw;
  }
  .p-reserve-list-item-higaeri2-icn + .p-reserve-list-item-higaeri2-icn {
    margin: 0 0 0 8vw;
  }
  .p-reserve-list-item-higaeri2-icn img {
    width: auto;
    height: 9.8666666667vw;
  }

  .p-reserve-list-item-higaeri2-ttl {
    font-size: 3.8vw;
    line-height: 1.5555555556;
    margin: -0.333333vw 0 0;
  }

  .p-reserve-list-item-higaeri2-ttl-lead {
    font-size: 3.7333333333vw;
    line-height: 1.7142857143;
    margin: -0.933333vw 0 0;
  }

  .p-reserve-list-item-higaeri2-ttl-lead_2 {
    font-size: 8vw;
    line-height: 1;
    margin: -1.933333vw 0 0;
  }
}
/* ----------------------------------------------------------------------------------------------------
*	お宿一覧
* --------------------------------------------------------------------------------------------------*/
.p-hotel {
  background-image: url("../../assets/images/bg_hotel_pc.png");
  background-repeat: repeat-y;
  background-size: 100% auto;
  background-position: top left;
}

.p-hotel-wrap {
  padding: 70px 0;
}

.p-hotel-ttl-box-wrap {
  position: relative;
  padding: 10px 0 10px 40px;
}
.p-hotel-ttl-box-wrap:after {
  content: "";
  display: block;
  z-index: 1;
  width: 71px;
  height: 71px;
  position: absolute;
  top: 0;
  left: 0;
  background-image: url("../../assets/images/bg_ttl_circle.png");
  background-repeat: no-repeat;
  background-size: 71px auto;
  background-position: left top;
}

.p-hotel-ttl-en {
  font-size: 1.4rem;
  font-weight: 700;
  position: relative;
  z-index: 2;
}

.p-hotel-ttl {
  font-size: 3.4rem;
  line-height: 1.3823529412;
  font-weight: 700;
  position: relative;
  z-index: 2;
}

.p-hotel-icn {
  margin: 30px auto 0;
  background-color: #fff;
  border-radius: 20px;
  max-width: 1260px;
  width: calc(100% - 60px);
}

.p-hotel-icn-wrap {
  padding: 30px 70px;
}

.p-hotel-icn-ttl {
  font-size: 1.6rem;
  line-height: 1.6875;
  font-weight: 700;
  text-align: center;
}

.p-hotel-icn-list {
  display: flex;
  flex-wrap: wrap;
  margin: 25px 0 0;
}

.p-hotel-icn-list-item {
  width: calc(25% - 50px);
  margin: 0 50px 10px 0;
  display: flex;
  align-items: center;
}

.p-hotel-icn-list-item-pic {
  width: 40px;
}
.p-hotel-icn-list-item-pic img {
  width: 100%;
  height: auto;
}

.p-hotel-icn-list-item-pic-ttl {
  font-size: 1.3rem;
  line-height: 1.3076923077;
  font-weight: 400;
  margin: 0 0 0 10px;
}

.p-hotel-list {
  margin: 70px 0 0;
}

.p-hotel-list-item + .p-hotel-list-item {
  margin: 85px 0 0;
}

.p-hotel-list-item-up-box {
  display: flex;
}

.p-hotel-list-item-ttl-box {
  width: 720px;
}

.p-hotel-list-item-ttl-lead {
  font-size: 1.5rem;
  line-height: 1.4666666667;
  font-weight: 700;
  color: #82bcba;
}

.p-hotel-list-item-ttl {
  font-size: 2.4rem;
  line-height: 1.3333333333;
  font-weight: 700;
}

.p-hotel-list-item-address {
  width: 480px;
  margin: 0 0 0 70px;
}

.p-hotel-list-item-address-box {
  display: flex;
  align-items: center;
}
.p-hotel-list-item-address-box + .p-hotel-list-item-address-box {
  margin: 8px 0 0;
}

.p-hotel-list-item-address-ttl-box {
  width: 84px;
  background-color: #82bcba;
  border-radius: 14px;
  padding: 2px 0;
}

.p-hotel-list-item-address-ttl {
  font-size: 1.4rem;
  line-height: 1.5714285714;
  font-weight: 500;
  color: #fff;
  text-align: center;
}

.p-hotel-list-item-address-txt {
  font-size: 1.3rem;
  line-height: 1.5384615385;
  font-weight: 400;
  margin: 0 0 0 20px;
  width: 375px;
}

.p-hotel-list-item-down-box {
  margin: 26px 0 0;
  display: flex;
}

.p-hotel-list-item-center-box-wrap {
  display: flex;
}

.p-hotel-list-item-left-box {
  padding: 0 25px 0 0;
}

.p-hotel-icn-list-sub {
  display: flex;
  margin: 0 0 16px;
}

.p-hotel-icn-list-item-sub {
  width: 44px;
}
.p-hotel-icn-list-item-sub + .p-hotel-icn-list-item-sub {
  margin: 0 0 0 12px;
}

.p-hotel-list-item-pic img {
  width: 100%;
  height: auto;
}

.p-hotel-list-item-pic-box {
  width: 440px;
  margin: 0 auto;
}

.p-hotel-slider-list {
  width: 440px;
  margin: 0 auto;
  position: relative;
}
.p-hotel-slider-list .prev-arrow {
  position: absolute;
  top: 50%;
  left: 18px;
  width: 20px;
  height: 20px;
  border-top: solid 3px #fff;
  border-left: solid 3px #fff;
  transform: translateY(-50%) rotate(-45deg);
  z-index: 10;
  cursor: pointer;
}
.p-hotel-slider-list .next-arrow {
  position: absolute;
  top: 50%;
  right: 18px;
  width: 20px;
  height: 20px;
  border-top: solid 3px #fff;
  border-right: solid 3px #fff;
  transform: translateY(-50%) rotate(45deg);
  z-index: 10;
  cursor: pointer;
}

.p-hotel-slider-thumnail-list {
  margin: 15px 0 0;
}

.p-hotel-slider-thumnail-list-item {
  cursor: pointer;
  padding: 0 6px;
}

.p-hotel-slider-thumnail-list .slick-track {
  transform: unset !important;
}

.p-hotel-list-item-center-box {
  width: 433px;
  margin: 0 0 0 30px;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}

@media screen and (max-width: 1300px) {
  .p-hotel-list-item-center-box {
    width: 380px;
  }
}
.p-hotel-list-item-txt {
  font-size: 1.6rem;
  line-height: 1.625;
  font-weight: 400;
}

.p-hotel-list-item-information {
  background-color: #fff;
  border-radius: 10px;
  margin: 25px 0 0;
  padding: 20px 30px;
}

.p-hotel-list-item-information-ttl {
  font-size: 2.1rem;
  line-height: 1.4285714286;
  font-weight: 700;
  color: #82bcba;
}

.p-hotel-list-item-information-list {
  margin: 15px 0 0;
}

.p-hotel-list-item-information-list-item + .p-hotel-list-item-information-list-item {
  margin: 15px 0 0;
}

.p-hotel-list-item-information-list-item-ttl {
  font-size: 1.4rem;
  line-height: 1.4285714286;
  font-weight: 700;
  color: #82bcba;
}

.p-hotel-list-item-information-list-item-txt {
  font-size: 1.4rem;
  line-height: 1.5714285714;
  font-weight: 500;
  color: #82bcba;
}

.p-hotel-list-item-right-box {
  padding: 0 0 0 25px;
  border-left: 1px solid rgba(51, 51, 51, 0.3);
}

.p-hotel-list-item-plan-ttl {
  font-size: 2.1rem;
  line-height: 1.4285714286;
  font-weight: 700;
  text-align: center;
}

.p-hotel-plan-list {
  margin: 20px 0 0;
}

.p-hotel-plan-list-item + .p-hotel-plan-list-item {
  margin: 18px 0 0;
}

.p-hotel-plan-list-item-ttl {
  font-size: 1.49rem;
  line-height: 1.5625;
  font-weight: 700;
  margin: 0 0 10px;
}

.p-hotel-plan-list-item-btn-link {
  display: block;
  width: 300px;
  border-radius: 10px;
  padding: 4px 0;
  transition: 0.3s;
}
.p-hotel-plan-list-item-btn-link.p-hotel-plan-list-item-btn-pink {
  background-color: #f1a4b2;
  border: 2px solid #f1a4b2;
}
.p-hotel-plan-list-item-btn-link.p-hotel-plan-list-item-btn-yellow {
  background-color: #bdc463;
  border: 2px solid #bdc463;
}
.p-hotel-plan-list-item-btn-link + .p-hotel-plan-list-item-btn-link {
  margin: 7px 0 0;
}
.p-hotel-plan-list-item-btn-link:hover {
  background-color: #fff;
}
.p-hotel-plan-list-item-btn-link:hover.p-hotel-plan-list-item-btn-pink .p-hotel-plan-list-item-btn-price {
  color: #f1a4b2;
}
.p-hotel-plan-list-item-btn-link:hover.p-hotel-plan-list-item-btn-pink .p-hotel-plan-list-item-btn-ttl {
  color: #f1a4b2;
}
.p-hotel-plan-list-item-btn-link:hover.p-hotel-plan-list-item-btn-yellow .p-hotel-plan-list-item-btn-price {
  color: #bdc463;
}
.p-hotel-plan-list-item-btn-link:hover.p-hotel-plan-list-item-btn-yellow .p-hotel-plan-list-item-btn-ttl {
  color: #bdc463;
}
.p-hotel-plan-list-item-btn-link:hover .p-hotel-plan-list-item-btn-icn img:nth-of-type(1) {
  display: none;
}
.p-hotel-plan-list-item-btn-link:hover .p-hotel-plan-list-item-btn-icn img:nth-of-type(2) {
  display: block;
}

.p-hotel-plan-list-item-btn-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}

.p-hotel-plan-list-item-btn-icn-box {
  display: flex;
  justify-content: center;
  align-items: center;
}

.p-hotel-plan-list-item-btn-icn {
  width: 22px;
  height: auto;
}
.p-hotel-plan-list-item-btn-icn img {
  width: 100%;
  height: auto;
  transform: 0.3s;
}
.p-hotel-plan-list-item-btn-icn img:nth-of-type(2) {
  display: none;
}
.p-hotel-plan-list-item-btn-icn + .p-hotel-plan-list-item-btn-icn {
  margin: 0 0 0 10px;
}

.p-hotel-plan-list-item-btn-price {
  font-size: 1.6rem;
  line-height: 1.5625;
  font-weight: 700;
}

.p-hotel-plan-list-item-btn-right {
  margin: 0 0 0 20px;
}

.p-hotel-plan-list-item-btn-ttl {
  font-size: 1.6rem;
  line-height: 1.5625;
  font-weight: 700;
}
.p-hotel-plan-list-item-btn-ttl span {
  font-size: 2.2rem;
  line-height: 1.3636363636;
  font-weight: 700;
}

.p-hotel-list-item-plan {
  margin: 30px 0 0;
  padding: 0 0 70px 0;
}

.p-hotel-list-item-plan-ttl-box {
  position: relative;
  text-align: center;
}
.p-hotel-list-item-plan-ttl-box:before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: rgba(51, 51, 51, 0.4);
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.p-hotel-list-item-plan-ttl {
  font-size: 2.1rem;
  line-height: 1.4285714286;
  font-weight: 700;
  text-align: center;
  position: relative;
  z-index: 3;
  background-color: #f3f1ec;
  display: inline-block;
  padding: 0 60px;
}

.p-hotel-plan-list {
  margin: 20px 0 0;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
          justify-content: center;
}

.p-hotel-plan-list-item + .p-hotel-plan-list-item {
  margin: 0 0 0 120px;
}

.p-hotel-plan-list-item-ttl-box {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.p-hotel-plan-list-item-ttl {
  font-size: 1.6rem;
  line-height: 1.5625;
  font-weight: 700;
  text-align: center;
}

.p-hotel-plan-list-item-ttl-price {
  font-size: 2.8rem;
  line-height: 0.8928571429;
  font-weight: 900;
  margin: 0 0 10px;
  font-family: "Source_Hans_Pro", "Zen_Maru_Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  text-align: center;
}

.p-hotel-plan-list-item-btn-link {
  display: block;
  width: 310px;
  border-radius: 10px;
  padding: 9px 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.p-hotel-plan-list-item-btn-link.p-hotel-plan-list-item-btn-pink {
  background-color: #d89191;
  border: 2px solid #d89191;
}
.p-hotel-plan-list-item-btn-link.p-hotel-plan-list-item-btn-yellow {
  background-color: #d8d891;
  border: 2px solid #d8d891;
}
.p-hotel-plan-list-item-btn-link.p-hotel-plan-list-item-btn-blue {
  background-color: #91c9d8;
  border: 2px solid #91c9d8;
}
.p-hotel-plan-list-item-btn-link.p-hotel-plan-list-item-btn-green {
  background-color: #91d8a9;
  border: 2px solid #91d8a9;
}
.p-hotel-plan-list-item-btn-link + .p-hotel-plan-list-item-btn-link {
  margin: 7px 0 0;
}
.p-hotel-plan-list-item-btn-link:hover {
  background-color: #fff;
}
.p-hotel-plan-list-item-btn-link:hover.p-hotel-plan-list-item-btn-pink .p-hotel-plan-list-item-btn-price {
  color: #d89191;
}
.p-hotel-plan-list-item-btn-link:hover.p-hotel-plan-list-item-btn-pink .p-hotel-plan-list-item-btn-ttl {
  color: #d89191;
}
.p-hotel-plan-list-item-btn-link:hover.p-hotel-plan-list-item-btn-yellow .p-hotel-plan-list-item-btn-price {
  color: #d8d891;
}
.p-hotel-plan-list-item-btn-link:hover.p-hotel-plan-list-item-btn-yellow .p-hotel-plan-list-item-btn-ttl {
  color: #d8d891;
}
.p-hotel-plan-list-item-btn-link:hover.p-hotel-plan-list-item-btn-blue .p-hotel-plan-list-item-btn-price {
  color: #91c9d8;
}
.p-hotel-plan-list-item-btn-link:hover.p-hotel-plan-list-item-btn-blue .p-hotel-plan-list-item-btn-ttl {
  color: #91c9d8;
}
.p-hotel-plan-list-item-btn-link:hover.p-hotel-plan-list-item-btn-green .p-hotel-plan-list-item-btn-price {
  color: #91d8a9;
}
.p-hotel-plan-list-item-btn-link:hover.p-hotel-plan-list-item-btn-green .p-hotel-plan-list-item-btn-ttl {
  color: #91d8a9;
}
.p-hotel-plan-list-item-btn-link:hover .p-hotel-plan-list-item-btn-icn img:nth-of-type(1) {
  display: none;
}
.p-hotel-plan-list-item-btn-link:hover .p-hotel-plan-list-item-btn-icn img:nth-of-type(2) {
  display: block;
}

.p-hotel-plan-list-item-btn-wrap {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
          justify-content: center;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
}

.p-hotel-plan-list-item-btn-icn-box {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
          justify-content: center;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
}

.p-hotel-plan-list-item-btn-icn {
  width: auto;
  height: 22px;
}
.p-hotel-plan-list-item-btn-icn img {
  width: auto;
  height: 22px;
  -webkit-transform: 0.3s;
          transform: 0.3s;
}
.p-hotel-plan-list-item-btn-icn img:nth-of-type(2) {
  display: none;
}
.p-hotel-plan-list-item-btn-icn + .p-hotel-plan-list-item-btn-icn {
  margin: 0 0 0 10px;
}

.p-hotel-plan-list-item-btn-right {
  margin: 0 0 0 20px;
}

.p-hotel-plan-list-item-btn-ttl {
  font-size: 1.6rem;
  line-height: 1.5625;
  font-weight: 700;
}
.p-hotel-plan-list-item-btn-ttl span {
  font-size: 2.2rem;
  line-height: 1.3636363636;
  font-weight: 700;
}

@media all and (max-width: 767px) {
  .p-hotel {
    background-image: url("../../assets/images/bg_hotel_sp.png");
  }
  .p-hotel-wrap {
    padding: 18.6666666667vw 0;
  }
  .p-hotel-ttl-box {
    text-align: center;
  }
  .p-hotel-ttl-box-wrap {
    padding: 1.3333333333vw 0 1.3333333333vw 8vw;
    display: inline-block;
  }
  .p-hotel-ttl-box-wrap:after {
    width: 14.4vw;
    height: 14.4vw;
    background-size: 14.4vw auto;
    top: 50%;
    transform: translateY(-50%);
  }
  .p-hotel-ttl-en {
    font-size: 3.2vw;
    text-align: left;
  }
  .p-hotel-ttl {
    font-size: 7.4666666667vw;
    text-align: left;
  }
  .p-hotel-icn {
    margin: 5.3333333333vw 0 0;
    border-radius: 0;
    max-width: initial;
    width: 100%;
  }
  .p-hotel-icn-wrap {
    padding: 5.3333333333vw 4vw;
  }
  .p-hotel-icn-ttl {
    font-size: 3.7333333333vw;
  }
  .p-hotel-icn-list {
    margin: 2.6666666667vw 0 0;
  }
  .p-hotel-icn-list-item {
    width: 50%;
    margin: 0 0 2.6666666667vw 0;
  }
  .p-hotel-icn-list-item-pic {
    width: 6.6666666667vw;
  }
  .p-hotel-icn-list-item-pic-ttl {
    font-size: 3.2vw;
    margin: 0 0 0 2.6666666667vw;
  }
  .p-hotel-list {
    margin: 10.6666666667vw 0 0;
  }
  .p-hotel-list-item + .p-hotel-list-item {
    margin: 18.6666666667vw 0 0;
  }
  .p-hotel-list-item-up-box {
    flex-direction: column;
  }
  .p-hotel-list-item-ttl-box {
    width: 100%;
  }
  .p-hotel-list-item-ttl-lead {
    font-size: 3.2vw;
    line-height: 1.3333333333;
  }
  .p-hotel-list-item-ttl {
    font-size: 5.8666666667vw;
    line-height: 1.3636363636;
    margin: 1.3333333333vw 0 0;
  }
  .p-hotel-list-item-address {
    width: 100%;
    margin: 5.3333333333vw 0 0;
  }
  .p-hotel-list-item-address-box {
    display: flex;
    align-items: flex-start;
  }
  .p-hotel-list-item-address-box + .p-hotel-list-item-address-box {
    margin: 1.6vw 0 0;
  }
  .p-hotel-list-item-address-ttl-box {
    width: 18.1333333333vw;
    border-radius: 3.7333333333vw;
    padding: 1.0666666667vw 0;
    width: 20%;
  }
  .p-hotel-list-item-address-ttl {
    font-size: 2.9333333333vw;
  }
  .p-hotel-list-item-address-txt {
    font-size: 3.4666666667vw;
    margin: 0 0 0 2.6666666667vw;
    width: 78%;
  }
  .p-hotel-list-item-down-box {
    margin: 3.7333333333vw 0 0;
    flex-direction: column;
  }
  .p-hotel-list-item-center-box-wrap {
    flex-direction: column;
  }
  .p-hotel-list-item-left-box {
    padding: 0;
  }
  .p-hotel-icn-list-sub {
    margin: 0 0 3.7333333333vw;
  }
  .p-hotel-icn-list-item-sub {
    width: 9.0666666667vw;
  }
  .p-hotel-icn-list-item-sub + .p-hotel-icn-list-item-sub {
    margin: 0 0 0 1.6vw;
  }
  .p-hotel-list-item-pic-box {
    width: 100%;
  }
  .p-hotel-list-item-thumnail {
    margin: 2.6666666667vw 0 0;
  }
  .p-hotel-list-item-pic-box {
    width: 100%;
  }
  .p-hotel-slider-list {
    width: 100%;
    margin: 0 auto;
    text-align: center;
  }
  .p-hotel-slider-list .prev-arrow {
    display: none;
  }
  .p-hotel-slider-list .next-arrow {
    display: none;
  }
  .p-hotel-slider-thumnail-list {
    margin: 2.6666666667vw 0 0;
  }
  .p-hotel-slider-thumnail-list-item {
    padding: 0 1.3333333333vw;
  }
  .p-hotel-list-item-center-box {
    width: 100%;
    margin: 5.3333333333vw 0 0;
  }
  .p-hotel-list-item-txt {
    font-size: 3.7333333333vw;
    line-height: 1.4285714286;
  }
  .p-hotel-list-item-information {
    border-radius: 2.6666666667vw;
    margin: 5.3333333333vw 0 0;
    padding: 5.3333333333vw 4vw;
  }
  .p-hotel-list-item-information-ttl {
    font-size: 5.3333333333vw;
  }
  .p-hotel-list-item-information-list {
    margin: 4vw 0 0;
  }
  .p-hotel-list-item-information-list-item + .p-hotel-list-item-information-list-item {
    margin: 4vw 0 0;
  }
  .p-hotel-list-item-information-list-item-ttl {
    font-size: 3.4666666667vw;
  }
  .p-hotel-list-item-information-list-item-txt {
    font-size: 3.4666666667vw;
    line-height: 1.6923076923;
  }
  .p-hotel-list-item-right-box {
    padding: 0;
    border-left: none;
    margin: 5.3333333333vw 0 0;
  }
  .p-hotel-list-item-plan-ttl {
    font-size: 5.3333333333vw;
  }
  .p-hotel-plan-list {
    margin: 5.3333333333vw 0 0;
  }
  .p-hotel-plan-list-item + .p-hotel-plan-list-item {
    margin: 5.3333333333vw 0 0;
  }
  .p-hotel-plan-list-item-ttl {
    font-size: 4.2666666667vw;
    text-align: center;
    margin: 0 0 4vw;
  }
  .p-hotel-plan-list-item-btn-link {
    width: 100%;
    border-radius: 2.6666666667vw;
    padding: 1.6vw 0;
  }
  .p-hotel-plan-list-item-btn-link + .p-hotel-plan-list-item-btn-link {
    margin: 2.6666666667vw 0 0;
  }
  .p-hotel-plan-list-item-btn-icn {
    width: 5.8666666667vw;
  }
  .p-hotel-plan-list-item-btn-icn + .p-hotel-plan-list-item-btn-icn {
    margin: 0 0 0 2.1333333333vw;
  }
  .p-hotel-plan-list-item-btn-price {
    font-size: 3.7333333333vw;
  }
  .p-hotel-plan-list-item-btn-right {
    margin: 0 0 0 6.6666666667vw;
  }
  .p-hotel-plan-list-item-btn-ttl {
    font-size: 4.2666666667vw;
  }
  .p-hotel-plan-list-item-btn-ttl span {
    font-size: 5.8666666667vw;
  }
  .p-hotel-list-item-plan {
    margin: 5.3333333333vw 0 0;
  }

  .p-hotel-list-item-plan-ttl {
    font-size: 5.3333333333vw;
    padding: 0 8vw;
  }

  .p-hotel-plan-list {
    margin: 5.3333333333vw 0 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .p-hotel-plan-list-item + .p-hotel-plan-list-item {
    margin: 12vw 0 0;
  }

  .p-hotel-plan-list-item-ttl-box {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    margin: 0 0 4vw;
  }

  .p-hotel-plan-list-item-ttl {
    font-size: 4.2666666667vw;
    margin: 0;
  }

  .p-hotel-plan-list-item-ttl-price {
    font-size: 7.4666666667vw;
    margin: 0;
  }

  .p-hotel-plan-list-item-btn-link {
    width: 100%;
    border-radius: 2.6666666667vw;
    padding: 2.6666666667vw 0;
  }
  .p-hotel-plan-list-item-btn-link + .p-hotel-plan-list-item-btn-link {
    margin: 2.6666666667vw 0 0;
  }

  .p-hotel-plan-list-item-btn-icn {
    height: 5.8666666667vw;
  }
  .p-hotel-plan-list-item-btn-icn img {
    height: 5.8666666667vw;
  }
  .p-hotel-plan-list-item-btn-icn + .p-hotel-plan-list-item-btn-icn {
    margin: 0 0 0 2.1333333333vw;
  }

  .p-hotel-plan-list-item-btn-right {
    margin: 0 0 0 6.6666666667vw;
  }

  .p-hotel-plan-list-item-btn-ttl {
    font-size: 4.2666666667vw;
  }
  .p-hotel-plan-list-item-btn-ttl span {
    font-size: 5.8666666667vw;
  }
}
/* ----------------------------------------------------------------------------------------------------
*	湯巡り温泉
* --------------------------------------------------------------------------------------------------*/
.p-hotspring {
  background-image: url("../../assets/images/bg_hotspring_pc.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 0;
}

.p-hotspring-wrap {
  padding: 70px 30px 30px;
  max-width: 1320px;
  width: 100%;
  margin: 0 auto;
}

.p-hotspring-ttl-box-wrap {
  position: relative;
  padding: 10px 0 10px 40px;
}
.p-hotspring-ttl-box-wrap:after {
  content: "";
  display: block;
  z-index: 1;
  width: 71px;
  height: 71px;
  position: absolute;
  top: 0;
  left: 0;
  background-image: url("../../assets/images/bg_ttl_circle.png");
  background-repeat: no-repeat;
  background-size: 71px auto;
  background-position: left top;
}

.p-hotspring-ttl-en {
  font-size: 1.4rem;
  font-weight: 700;
  position: relative;
  z-index: 2;
}

.p-hotspring-ttl {
  font-size: 3.4rem;
  line-height: 1.3823529412;
  font-weight: 700;
  position: relative;
  z-index: 2;
}

.p-hotspring-ttl-2 {
  font-size: 2.4rem;
  line-height: 1.382353;
  font-weight: 700;
  margin-top: 25px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.p-hotspring-ttl-lead {
  font-size: 1.4rem;
  line-height: 1.6428571429;
  font-weight: 400;
  text-align: center;
  margin: 30px 0 0;
}

.p-hotspring-map {
  border-radius: 20px;
  margin: 30px 0 0;
  height: 0;
  overflow: hidden;
  padding-bottom: 35%;
  position: relative;
}
.p-hotspring-map iframe {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}

.p-hotspring-list {
  margin: 25px 0 0;
  display: flex;
  flex-wrap: wrap;
}

.p-hotspring-list-item {
  width: calc(33.3333333333% - 35px);
  margin: 0 51px 40px 0;
}
.p-hotspring-list-item:nth-of-type(3n) {
  margin: 0 0 40px 0;
}

.p-hotspring-list-item-pic {
  width: 100%;
  border-radius: 20px;
}
.p-hotspring-list-item-pic img {
  width: 100%;
  height: auto;
}

.p-hotspring-list-item-ttl-box {
  margin: 22px 0 0;
  display: flex;
  align-items: center;
}

.p-hotspring-list-item-number {
  font-size: 1.4rem;
  line-height: 1.6428571429;
  font-weight: 700;
  color: #fff;
  background-color: #0d99df;
  border-radius: 50%;
  text-align: center;
  width: 30px;
  padding: 3.5px 0;
}

.p-hotspring-list-item-ttl {
  font-size: 2.1rem;
  line-height: 1.4285714286;
  font-weight: 700;
  color: #0d99df;
  margin: 0 0 0 15px;
}

.p-hotspring-list-item-txt {
  font-size: 1.4rem;
  line-height: 1.5714285714;
  font-weight: 500;
  margin: 15px 0 0;
  padding: 0 0 15px;
}

.p-hotspring-effect {
  padding: 15px 0 0;
  border-top: 1px solid rgba(130, 188, 186, 0.3);
}

.p-hotspring-effect-list-item {
  display: flex;
}
.p-hotspring-effect-list-item + .p-hotspring-effect-list-item {
  margin: 6px 0 0;
}

.p-hotspring-effect-list-item-ttl {
  font-size: 1.3rem;
  line-height: 1.3846153846;
  font-weight: 500;
}

.p-hotspring-effect-list-item-txt {
  font-size: 1.3rem;
  line-height: 1.3846153846;
  font-weight: 400;
  flex: 1;
  margin: 0 0 0 20px;
}

@media all and (max-width: 767px) {
  .p-hotspring {
    background-image: url("../../assets/images/bg_hotspring_sp.png");
  }
  .p-hotspring-wrap {
    padding: 18.6666666667vw 0 5.3333333333vw;
  }
  .p-hotspring-ttl-box {
    text-align: center;
  }
  .p-hotspring-ttl-box-wrap {
    padding: 1.3333333333vw 0 1.3333333333vw 8vw;
    display: inline-block;
  }
  .p-hotspring-ttl-box-wrap:after {
    width: 14.4vw;
    height: 14.4vw;
    background-size: 14.4vw auto;
    top: 50%;
    transform: translateY(-50%);
  }
  .p-hotspring-ttl-en {
    font-size: 3.2vw;
    text-align: left;
  }
  .p-hotspring-ttl {
    font-size: 7.4666666667vw;
    text-align: left;
  }
  .p-hotspring-ttl-lead {
    font-size: 3.4666666667vw;
    margin: 5.3333333333vw 0 0;
    text-align: center;
    padding: 0 4vw;
  }
  .p-hotspring-map {
    border-radius: 0;
    margin: 5.3333333333vw 0 0;
    padding-bottom: 80%;
  }
  .p-hotspring-list {
    margin: 5.3333333333vw 0 0;
    flex-direction: column;
    padding: 0 4vw;
  }
  .p-hotspring-list-item {
    width: 100%;
    margin: 0 0 10.6666666667vw 0;
  }
  .p-hotspring-list-item:nth-of-type(3n) {
    margin: 0 0 10.6666666667vw 0;
  }
  .p-hotspring-list-item-pic {
    width: 100%;
    border-radius: 2.6666666667vw;
  }
  .p-hotspring-list-item-ttl-box {
    margin: 2.6666666667vw 0 0;
  }
  .p-hotspring-list-item-number {
    font-size: 3.7333333333vw;
    width: 6.6666666667vw;
    padding: 0.2666666667vw 0;
  }
  .p-hotspring-list-item-ttl {
    font-size: 4.2666666667vw;
    margin: 0 0 0 2.6666666667vw;
  }
  .p-hotspring-list-item-txt {
    font-size: 3.4666666667vw;
    line-height: 1.6923076923;
    margin: 2.1333333333vw 0 0;
    padding: 0 0 2.6666666667vw;
  }
  .p-hotspring-effect {
    padding: 2.6666666667vw 0 0;
  }
  .p-hotspring-effect-list-item {
    flex-direction: column;
  }
  .p-hotspring-effect-list-item + .p-hotspring-effect-list-item {
    margin: 2.6666666667vw 0 0;
  }
  .p-hotspring-effect-list-item-ttl {
    font-size: 3.4666666667vw;
    line-height: 1.3846153846;
    font-weight: 500;
  }
  .p-hotspring-effect-list-item-txt {
    font-size: 3.4666666667vw;
    line-height: 1.3846153846;
    font-weight: 400;
    margin: 1.3333333333vw 0 0;
  }
}
/* ----------------------------------------------------------------------------------------------------
*	周辺観光
* --------------------------------------------------------------------------------------------------*/
.p-sightseeing {
  background-image: url("../../assets/images/bg_sightseeing_pc.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 0;
}

.p-sightseeing-wrap {
  padding: 70px 0;
}

.p-sightseeing-ttl-box-wrap {
  position: relative;
  padding: 10px 0 10px 40px;
}
.p-sightseeing-ttl-box-wrap:after {
  content: "";
  display: block;
  z-index: 1;
  width: 71px;
  height: 71px;
  position: absolute;
  top: 0;
  left: 0;
  background-image: url("../../assets/images/bg_ttl_circle.png");
  background-repeat: no-repeat;
  background-size: 71px auto;
  background-position: left top;
}

.p-sightseeing-ttl-en {
  font-size: 1.4rem;
  font-weight: 700;
  position: relative;
  z-index: 2;
}

.p-sightseeing-ttl {
  font-size: 3.4rem;
  line-height: 1.3823529412;
  font-weight: 700;
  position: relative;
  z-index: 2;
}

.p-sightseeing-list {
  margin: 30px 0 0;
}

.p-sightseeing-list-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.p-sightseeing-list-item:nth-of-type(even) {
  flex-direction: row-reverse;
}

.p-sightseeing-list-item-pic {
  width: 38%;
  height: auto;
}

.p-sightseeing-list-item-txt-box {
  width: 60%;
}

.p-sightseeing-list-item-ttl-sub {
  font-size: 1.4rem;
  line-height: 1.9285714286;
  font-weight: 700;
  color: #eb6ca3;
}

.p-sightseeing-list-item-ttl {
  font-size: 2.4rem;
  line-height: 1.9583333333;
  font-weight: 700;
  color: #333;
}

.p-sightseeing-list-item-txt {
  font-size: 1.4rem;
  line-height: 1.8571428571;
  font-weight: 400;
  color: #333;
  margin: 25px 0 0;
}

@media all and (max-width: 767px) {
  .p-sightseeing {
    background-image: url("../../assets/images/bg_sightseeing_sp.png");
  }
  .p-sightseeing-wrap {
    padding: 18.6666666667vw 0 5.3333333333vw;
  }
  .p-sightseeing-ttl-box {
    text-align: center;
  }
  .p-sightseeing-ttl-box-wrap {
    padding: 1.3333333333vw 0 1.3333333333vw 8vw;
    display: inline-block;
  }
  .p-sightseeing-ttl-box-wrap:after {
    width: 14.4vw;
    height: 14.4vw;
    background-size: 14.4vw auto;
    top: 50%;
    transform: translateY(-50%);
  }
  .p-sightseeing-ttl-en {
    font-size: 3.2vw;
    text-align: left;
  }
  .p-sightseeing-ttl {
    font-size: 7.4666666667vw;
    text-align: left;
  }
  .p-sightseeing-list {
    margin: 5.3333333333vw 0 0;
  }
  .p-sightseeing-list-item {
    flex-direction: column;
  }
  .p-sightseeing-list-item:nth-of-type(even) {
    flex-direction: column;
  }
  .p-sightseeing-list-item + .p-sightseeing-list-item {
    margin: 10.6666666667vw 0 0;
  }
  .p-sightseeing-list-item-pic {
    width: 100%;
  }
  .p-sightseeing-list-item-txt-box {
    width: 100%;
  }
  .p-sightseeing-list-item-ttl-sub {
    font-size: 3.2vw;
    margin: 5.3333333333vw 0 0;
  }
  .p-sightseeing-list-item-ttl {
    font-size: 5.8666666667vw;
    line-height: 1.3636363636;
  }
  .p-sightseeing-list-item-txt {
    font-size: 3.4666666667vw;
    line-height: 1.6923076923;
    margin: 2.6666666667vw 0 0;
  }
}
/* ----------------------------------------------------------------------------------------------------
*	お土産
* --------------------------------------------------------------------------------------------------*/
.p-souvenir {
  background-image: url("../../assets/images/bg_souvenir_pc.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 0;
}

.p-souvenir-wrap {
  padding: 70px 0 20px;
}

.p-souvenir-ttl-box-wrap {
  position: relative;
  padding: 10px 0 10px 40px;
}
.p-souvenir-ttl-box-wrap:after {
  content: "";
  display: block;
  z-index: 1;
  width: 71px;
  height: 71px;
  position: absolute;
  top: 0;
  left: 0;
  background-image: url("../../assets/images/bg_ttl_circle.png");
  background-repeat: no-repeat;
  background-size: 71px auto;
  background-position: left top;
}

.p-souvenir-ttl-en {
  font-size: 1.4rem;
  font-weight: 700;
  position: relative;
  z-index: 2;
}

.p-souvenir-ttl {
  font-size: 3.4rem;
  line-height: 1.3823529412;
  font-weight: 700;
  position: relative;
  z-index: 2;
}

.p-souvenir-ttl-lead {
  font-size: 1.4rem;
  line-height: 1.6428571429;
  font-weight: 400;
  margin: 30px 0 0;
  text-align: center;
}

.p-souvenir-list {
  display: flex;
  flex-wrap: wrap;
  margin: 30px 0 0;
}

.p-souvenir-list-item {
  width: calc(25% - 23px);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin: 0 0 50px 0;
}
.p-souvenir-list-item + .p-souvenir-list-item {
  margin: 0 0 50px 30px;
}

.p-souvenir-list-item-pic {
  width: 100%;
  border-radius: 10px;
}
.p-souvenir-list-item-pic img {
  width: 100%;
  height: auto;
}

.p-souvenir-list-item-ttl {
  font-size: 1.8rem;
  line-height: 1.3333333333;
  font-weight: 700;
  text-align: center;
  margin: 14px 0 0;
  color: #0d99df;
  gap: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  flex-grow: 1;
}

.p-souvenir-list-item-txt {
  font-size: 1.4rem;
  line-height: 1.7142857143;
  font-weight: 400;
  text-align: center;
  margin: 10px 0 0;
  color: #333;
}

@media all and (max-width: 767px) {
  .p-souvenir {
    background-image: url("../../assets/images/bg_souvenir_sp.png");
  }
  .p-souvenir-wrap {
    padding: 18.6666666667vw 0 5.3333333333vw;
  }
  .p-souvenir-ttl-box {
    text-align: center;
  }
  .p-souvenir-ttl-box-wrap {
    padding: 1.3333333333vw 0 1.3333333333vw 8vw;
    display: inline-block;
  }
  .p-souvenir-ttl-box-wrap:after {
    width: 14.4vw;
    height: 14.4vw;
    background-size: 14.4vw auto;
    top: 50%;
    transform: translateY(-50%);
  }
  .p-souvenir-ttl-en {
    font-size: 3.2vw;
    text-align: left;
  }
  .p-souvenir-ttl {
    font-size: 7.4666666667vw;
    text-align: left;
  }
  .p-souvenir-ttl-lead {
    font-size: 3.4666666667vw;
    margin: 5.3333333333vw 0 0;
    text-align: center;
  }
  .p-souvenir-list {
    margin: 5.3333333333vw 0 0;
  }
  .p-souvenir-list-item {
    width: 43.7333333333vw;
    margin: 0 0 10.6666666667vw;
  }
  .p-souvenir-list-item + .p-souvenir-list-item {
    margin: 0 0 10.6666666667vw;
  }
  .p-souvenir-list-item:nth-of-type(even) {
    margin: 0 0 10.6666666667vw 4vw;
  }
  .p-souvenir-list-item-pic {
    border-radius: 2.6666666667vw;
  }
  .p-souvenir-list-item-ttl {
    font-size: 4.2666666667vw;
    margin: 3.7333333333vw 0 0;
    gap: 5.3333333333vw;
  }
  .p-souvenir-list-item-txt {
    font-size: 3.4666666667vw;
    line-height: 1.5384615385;
    margin: 2.6666666667vw 0 0;
  }
}
/* ----------------------------------------------------------------------------------------------------
*	CVエリア
* --------------------------------------------------------------------------------------------------*/
.p-cv {
  background-color: #0d99df;
}

.p-cv-wrap {
  padding: 40px 0;
}

.p-cv-txt {
  font-size: 1.6rem;
  line-height: 1.75;
  font-weight: 500;
  color: #fff;
  text-align: center;
}

.p-cv-btn {
  margin: 25px 0 0;
}

.p-cv-btn-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}

.p-cv-btn-link {
  display: block;
  width: 332px;
  background-color: #f1a4b2;
  border-radius: 12px;
  box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.1);
  padding: 9px 0;
  border: 2px solid #f1a4b2;
  transition: 0.3s;
}
.p-cv-btn-link.p-cv-btn-pink {
  background-color: #f1a4b2;
  border: 2px solid #f1a4b2;
}
.p-cv-btn-link.p-cv-btn-yellow {
  background-color: #bdc463;
  border: 2px solid #bdc463;
}
.p-cv-btn-link.p-cv-btn-blue {
  background-color: #6385c4;
  border: 2px solid #6385c4;
}
.p-cv-btn-link + .p-cv-btn-link {
  margin: 0 0 0 40px;
}
.p-cv-btn-link:hover {
  background-color: #fff;
}
.p-cv-btn-link:hover.p-cv-btn-pink .p-cv-btn-link-txt {
  color: #f1a4b2;
}
.p-cv-btn-link:hover.p-cv-btn-yellow .p-cv-btn-link-txt {
  color: #bdc463;
}
.p-cv-btn-link:hover.p-cv-btn-blue .p-cv-btn-link-txt {
  color: #6385c4;
}

.p-cv-btn-link-txt {
  font-size: 1.6rem;
  line-height: 1.6875;
  font-weight: 700;
  text-align: center;
  color: #fff;
  transition: 0.3s;
}

.p-cv-bottom {
  background-image: url("../../assets/images/bg_cv_bottom_pc.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 0;
  height: 540px;
}

@media all and (max-width: 767px) {
  .p-cv-wrap {
    padding: 10.6666666667vw 0;
  }
  .p-cv-txt {
    font-size: 3.4666666667vw;
    line-height: 1.5384615385;
  }
  .p-cv-btn {
    margin: 8vw 0 0;
  }
  .p-cv-btn-wrap {
    flex-direction: column;
  }
  .p-cv-btn-link {
    width: 100%;
    border-radius: 3.2vw;
    padding: 4vw 0;
  }
  .p-cv-btn-link + .p-cv-btn-link {
    margin: 4vw 0 0;
  }
  .p-cv-btn-link-txt {
    font-size: 4.2666666667vw;
  }
  .p-cv-bottom {
    background-image: url("../../assets/images/bg_cv_bottom_sp.png");
    height: 62.1333333333vw;
  }
}
/* ----------------------------------------------------------------------------------------------------
*	ページトップ
* --------------------------------------------------------------------------------------------------*/
.l-pagetop {
  position: fixed;
  bottom: 40px;
  right: 40px;
  z-index: 1000;
  border: 2px solid #0d99df;
  border-radius: 50%;
  box-shadow: 0 0 4px 0 rgba(51, 51, 51, 0.14);
  width: 74px;
  background-color: #fff;
  transition: border 0.3s, background-color 0.3s;
}
.l-pagetop.is-fix {
  position: absolute;
}
.l-pagetop:hover {
  background-color: #0d99df;
}
.l-pagetop:hover .l-pagetop-txt-link {
  color: #fff;
}
.l-pagetop:hover .l-pagetop-txt-link:before {
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}
.l-pagetop:hover .l-pagetop-txt-link:after {
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}

.l-pagetop-txt-link {
  font-size: 1.6rem;
  line-height: 1;
  font-weight: 700;
  color: #0d99df;
  text-align: center;
  display: block;
  padding: 30px 0 10px;
  position: relative;
  transition: color 0.3s;
}
.l-pagetop-txt-link:before {
  content: "";
  display: block;
  position: absolute;
  top: 10px;
  left: 50%;
  width: 18px;
  height: 18px;
  border-top: 2px solid #0d99df;
  border-right: 2px solid #0d99df;
  transform: translateX(-50%) rotate(-45deg);
  transition: border 0.3s;
}
.l-pagetop-txt-link:after {
  content: "";
  display: block;
  position: absolute;
  top: 18px;
  left: 50%;
  width: 10px;
  height: 10px;
  border-top: 2px solid #0d99df;
  border-right: 2px solid #0d99df;
  transform: translateX(-50%) rotate(-45deg);
  transition: border 0.3s;
}

@media all and (max-width: 767px) {
  .l-pagetop {
    bottom: 4vw;
    right: 4vw;
    box-shadow: 0 0 1.0666666667vw 0 rgba(51, 51, 51, 0.14);
    width: 17.0666666667vw;
  }
  .l-pagetop-txt-link {
    font-size: 3.4666666667vw;
    padding: 7.2vw 0 1.8666666667vw;
  }
  .l-pagetop-txt-link:before {
    top: 2.6666666667vw;
    width: 4vw;
    height: 4vw;
    border-top: 2px solid #0d99df;
    border-right: 2px solid #0d99df;
    transform: translateX(-50%) rotate(-45deg);
  }
  .l-pagetop-txt-link:after {
    top: 4.2666666667vw;
    width: 2.1333333333vw;
    height: 2.1333333333vw;
    border-top: 2px solid #0d99df;
    border-right: 2px solid #0d99df;
    transform: translateX(-50%) rotate(-45deg);
  }
}
/* ----------------------------------------------------------------------------------------------------
*	フッター
* --------------------------------------------------------------------------------------------------*/
.l-footer {
  background-color: #0d99df;
}

.l-footer-wrap {
  padding: 30px 0;
  display: flex;
}

.l-footer-left {
  width: 330px;
}

.l-footer-logo {
  width: 200px;
}

.l-footer-address {
  margin: 20px 0 0;
}

.l-footer-address-txt {
  font-size: 1.5rem;
  line-height: 1.4666666667;
  font-weight: 500;
  color: #fff;
}

.p-footer-sns-list {
  margin: 20px 0 0;
  display: flex;
}

.p-footer-sns-list-item {
  width: 25px;
}
.p-footer-sns-list-item + .p-footer-sns-list-item {
  margin: 0 0 0 10px;
}

.p-footer-sns-list-item-pic img {
  width: 100%;
  height: auto;
}

.l-footer-right {
  margin: 0 0 0 60px;
  display: flex;
}

.l-footer-list-box + .l-footer-list-box {
  margin: 0 0 0 95px;
}

.l-footer-list-ttl {
  font-size: 1.5rem;
  line-height: 1.4666666667;
  font-weight: 700;
  color: #fff;
  margin: 0 0 15px;
}

.l-footer-list-wrap {
  display: flex;
}

.l-footer-list + .l-footer-list {
  margin: 0 0 0 40px;
}

.l-footer-list-item + .l-footer-list-item {
  margin: 7px 0 0;
}

.l-footer-list-item-link {
  font-size: 1.4rem;
  line-height: 1.4285714286;
  font-weight: 500;
}
.l-footer-list-item-link:hover {
  text-decoration: underline;
}

.l-footer-copyright {
  padding: 15px 0;
}

.l-footer-copyright-txt {
  text-align: center;
  color: #fff;
  font-size: 1.5rem;
  line-height: 1.4666666667;
  font-weight: 500;
}

@media all and (max-width: 767px) {
  .l-footer-wrap {
    padding: 10.6666666667vw 0 0;
    flex-direction: column;
  }
  .l-footer-left {
    width: 100%;
  }
  .l-footer-logo {
    width: 50.6666666667vw;
  }
  .l-footer-address {
    margin: 4vw 0 0;
  }
  .l-footer-address-txt {
    font-size: 3.4666666667vw;
  }
  .p-footer-sns-list {
    margin: 3.2vw 0 0;
    padding: 0 0 5.3333333333vw;
  }
  .p-footer-sns-list-item {
    width: 8.5333333333vw;
  }
  .p-footer-sns-list-item + .p-footer-sns-list-item {
    margin: 0 0 0 5.3333333333vw;
  }
  .l-footer-right {
    margin: 0;
    flex-direction: column;
    padding: 5.3333333333vw 0 0;
    border-top: 1px solid #fff;
  }
  .l-footer-list-box + .l-footer-list-box {
    margin: 8vw 0 0;
  }
  .l-footer-list-ttl {
    font-size: 3.7333333333vw;
    margin: 0 0 2.6666666667vw;
  }
  .l-footer-list-wrap {
    flex-direction: column;
  }
  .l-footer-list + .l-footer-list {
    margin: 2.1333333333vw 0 0;
  }
  .l-footer-list-item + .l-footer-list-item {
    margin: 2.1333333333vw 0 0;
  }
  .l-footer-list-item-link {
    font-size: 3.4666666667vw;
  }
  .l-footer-copyright {
    padding: 6.6666666667vw 0 4vw;
  }
  .l-footer-copyright-txt {
    font-size: 3.4666666667vw;
  }
}
/* ----------------------------------------------------------------------------------------------------
*	モジュール
* --------------------------------------------------------------------------------------------------*/
/* RWD表示切り替え
---------------------------------------------------------------------------- */
@media all and (min-width: 768px) {
  .nopc {
    display: none !important;
  }
}
@media all and (max-width: 767px) {
  .nosp {
    display: none !important;
  }
}
/* テキスト
---------------------------------------------------------------------------- */
.tal {
  text-align: left !important;
}

.tac {
  text-align: center !important;
}

.tar {
  text-align: right !important;
}

.fwb {
  font-weight: bold !important;
}

@media screen and (max-width: 767px) {
  .sptal {
    text-align: left !important;
  }
  .sptac {
    text-align: center !important;
  }
  .sptar {
    text-align: right !important;
  }
  .spfwb {
    font-weight: bold !important;
  }
}