@charset "UTF-8";
/* ==================================================
[Style]
	1. setting
	2. foundation
	3. Layout
	4. object

================================================== */
/* --------------------------------------------------
	1. setting
-------------------------------------------------- */
/* typography */
/* media-query */
/* variables */
/* --------------------------------------------------
	2. foundation
-------------------------------------------------- */
/* reset */
/*
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
Twitter: @rich_clark
*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, main, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, main, menu, nav, section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote::before, blockquote::after,
q::before, q::after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

/* base */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  color: #333;
  font-family: "游ゴシック", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  line-height: 1.8;
  word-break: normal;
  overflow-wrap: normal;
  word-wrap: normal;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

body.is-hidden {
  overflow: hidden;
  position: fixed;
}

a {
  color: #333;
  outline: none;
  word-break: break-all;
  overflow-wrap: break-word;
  word-wrap: break-word;
  text-decoration: none;
  cursor: pointer;
}

ul, ol {
  list-style: none;
}

select,
textarea,
input[type="text"],
input[type="date"],
input[type="email"],
input[type="password"],
input[type="tel"],
input[type="number"] {
  width: 100%;
  padding: .5em;
  font-size: 1em;
  background-color: #fff;
  border: 1px solid #333;
  border-radius: 4px;
}

input[type="radio"],
input[type="checkbox"] {
  margin: 0 4px 0 0;
  cursor: pointer;
}

img {
  max-width: 100%;
}

/* mixins */
/* vendor */
/* slick */
.slick-slide {
  width: 100%;
  background-color: #555;
  z-index: 1;
  background: center center no-repeat;
  background-size: cover;
}

.slick-arrow {
  display: block;
  overflow: hidden;
  font-size: 0;
  color: transparent;
  text-decoration: none;
  background-color: transparent;
  outline: none;
  z-index: 2;
  cursor: pointer;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 1px solid #000;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.slick-next {
  right: 20px;
}

.slick-next::after {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  border-bottom: 4px solid #000;
  border-right: 4px solid #000;
  position: absolute;
  left: 45%;
  top: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%) rotate(-45deg);
  transform: translateX(-50%) translateY(-50%) rotate(-45deg);
}

.slick-prev {
  left: 20px;
}

.slick-prev::after {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  border-bottom: 4px solid #000;
  border-right: 4px solid #000;
  position: absolute;
  right: 45%;
  top: 50%;
  -webkit-transform: translateX(50%) translateY(-50%) rotate(135deg);
  transform: translateX(50%) translateY(-50%) rotate(135deg);
}

.slick-dots {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: 20px;
}

.slick-dots li {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin: 0 5px;
  position: relative;
  cursor: pointer;
}

.slick-dots li button {
  display: block;
  background: transparent;
  width: 100%;
  height: 100%;
  outline: none;
  font-size: 0;
  border: none;
  color: transparent;
  padding: 5px;
}

.slick-dots li::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  background: #fff;
  border: 1px solid #003C78;
}

.slick-dots li.slick-active::before {
  background: #003C78;
  border: 2px solid #003C78;
}

/* --------------------------------------------------
	3. Layout
-------------------------------------------------- */
/* header */
.l-header {
  background-color: #fff;
  position: relative;
  position: fixed;
  width: 100%;
  z-index: 100;
  padding: 0 10px;
  -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
}

.l-header__inner {
  width: 100%;
  max-width: 1690px;
  margin: 0 auto;
}

.l-header__content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  height: 120px;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.l-header__content.is-open {
  position: fixed;
  z-index: 100;
  left: 20px;
  right: 20px;
}

.l-header__logo {
  width: 207px;
  margin-left: 2.8%;
  margin-top: 10px;
}

.l-header__logo h1 {
  display: block;
  width: 100%;
  height: 100%;
}

.l-header__logo a img {
  width: 100%;
}

.l-header__logo a:hover {
  opacity: 0.7;
}

.l-header__nav {
  height: 100%;
  width: 100%;
}

.l-header__nav__inner {
  height: 100%;
}

.l-header__contents {
  height: 100%;
}

.l-header__list {
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.l-header__item {
  margin-right: 2%;
}

.l-header__item > a {
  display: block;
  font-family: "source-han-serif-japanese", serif;
  font-weight: bold;
  color: #333;
  height: 100%;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}

.l-header__item > a span {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  text-align: center;
  display: block;
  padding-top: 46px;
  background: url(./images/common/nav_home.png) no-repeat top center;
  background-size: auto;
}

.l-header__item > a span.facility {
  background: url(./images/common/nav_facility.png) no-repeat top center;
}

.l-header__item > a span.lodging {
  background: url(./images/common/nav_lodging.png) no-repeat top center;
}

.l-header__item > a span.onsen {
  background: url(./images/common/nav_onsen.png) no-repeat top center;
}

.l-header__item > a span.meal {
  background: url(./images/common/nav_meal.png) no-repeat top center;
}

.l-header__item > a span.sightseeing {
  background: url(./images/common/nav_sightseeing.png) no-repeat top center;
}

.l-header__item > a span.access {
  background: url(./images/common/nav_access.png) no-repeat top center;
}

.l-header__item > a:hover span {
  background: url(./images/common/nav_home_red.png) no-repeat top center;
}

.l-header__item > a:hover span.facility {
  background: url(./images/common/nav_facility_red.png) no-repeat top center;
}

.l-header__item > a:hover span.lodging {
  background: url(./images/common/nav_lodging_red.png) no-repeat top center;
}

.l-header__item > a:hover span.onsen {
  background: url(./images/common/nav_onsen_red.png) no-repeat top center;
}

.l-header__item > a:hover span.meal {
  background: url(./images/common/nav_meal_red.png) no-repeat top center;
}

.l-header__item > a:hover span.sightseeing {
  background: url(./images/common/nav_sightseeing_red.png) no-repeat top center;
}

.l-header__item > a:hover span.access {
  background: url(./images/common/nav_access_red.png) no-repeat top center;
}

.l-header__contact {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  white-space: nowrap;
  font-weight: bold;
  font-family: "source-han-serif-japanese", serif;
}

.l-header__contact--phone {
  text-align: center;
}

.l-header__contact--phone .tel {
  display: inline-block;
  color: #003C78;
  font-size: clamp(0.75rem, 1.5vw, 1.125rem);
  background: url(./images/common/icon_tel_blue.png) no-repeat left;
  text-align: center;
  font-weight: 900;
  padding-left: 30px;
  margin: -5px 5px 7px 0;
}

.l-header__contact--phone .mail a {
  font-size: clamp(0.75rem, 1.5vw, 1rem);
  max-width: 190px;
  width: 100%;
}

.l-header__contact--other {
  color: #003C78;
  font-size: clamp(0.625rem, 1.5vw, 0.875rem);
  line-height: 1.27;
  font-weight: 900;
}

.l-header__contact--other .language {
  display: block;
  margin-top: 10px;
  font-weight: 700;
}

.l-header__contact--other .language a {
  font-weight: bold;
  font-family: "游ゴシック", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  color: #003C78;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}

.l-header__contact--other .language a:hover {
  border-bottom: 1px solid #C82310;
}

.l-header__contact--other .language a:first-child {
  position: relative;
  margin-right: 27px;
}

.l-header__contact--other .language a:first-child:after {
  content: "";
  position: absolute;
  top: 1px;
  right: -14px;
  height: 18px;
  width: 1px;
  background: #003c78;
  -webkit-transform: rotate(31deg);
  transform: rotate(31deg);
}

.l-header__contact--other .language a.is-active {
  border-bottom: 1px solid #C82310;
}

.l-header__contact--other .language span {
  margin: 0 0.5em;
}

.l-menu__button {
  display: none;
  position: relative;
  z-index: 20;
  margin: 0;
}

.is-click2 {
  display: none;
}

@media all and (min-width: 960px), print {
  .l-header__nav {
    display: block !important;
    margin-left: auto;
    margin-right: 3.8%;
    max-width: 803px;
    width: 50%;
  }
  .l-header__link {
    padding: 0;
  }
  .l-header__logo {
    width: 12.2%;
    min-width: 160px;
    max-width: 207px;
  }
  .l-header__contact {
    max-width: 357px;
    width: 30%;
    width: 25%;
    min-width: 290px;
  }
  .l-header__contact--phone {
    width: 190px;
    padding-right: 0;
    margin-right: 12px;
  }
}

@media only screen and (min-width: 960px) and (max-width: 1200px) {
  .l-header__logo {
    margin-left: 1%;
  }
  .l-header__nav {
    margin-right: 1.4%;
    width: 46%;
  }
  .l-header__item > a span {
    padding-left: 2px;
    padding-right: 2px;
  }
}

@media only screen and (max-width: 959px) {
  .l-header {
    padding-right: 20px;
  }
  .l-header__nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin-top: 80px;
    background-color: #fff;
    z-index: 10;
    overflow: scroll;
  }
  .l-header__logo {
    padding-top: 10px;
    width: 116px;
    margin-top: 2px;
  }
  .l-header__content {
    height: 80px;
  }
  .l-header__list {
    height: unset;
    padding: 15px 20px 0;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 12px;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    font-size: 1rem;
  }
  .l-header__item {
    width: calc(100%/2 - 6px);
    margin: 0;
  }
  .l-header__item a {
    position: relative;
    padding: 1em 0;
  }
  .l-header__item a span {
    font-size: 1rem;
    padding-top: 40px;
  }
  .l-header__item a span::after {
    content: "";
    position: absolute;
    width: 18px;
    height: 8px;
    background: url("./images/common/icon_arrow_blue.png") no-repeat;
    background-size: contain;
    right: 13%;
    bottom: 26px;
  }
  .l-header__contact {
    margin: 0 13px 0 auto;
  }
  .l-header__contact--other .language {
    font-size: 0.875rem;
    margin-top: 5px;
  }
  .l-header__link {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
  }
  .l-menu__button {
    display: block;
    width: 52px;
    height: 52px;
  }
  .l-header__menusp {
    padding: 32px 20px 20px;
    font-weight: bold;
  }
  .l-header__menusp p {
    font-family: "source-han-serif-japanese", serif;
    color: #003C78;
  }
  .l-header__menusp p.txt {
    margin-bottom: 10px;
  }
  .l-header__menusp p.txt span {
    display: block;
    font-size: 0.875rem;
    color: #333;
  }
  .l-header__menusp p.copy {
    font-family: "游ゴシック", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    font-size: 0.875rem;
    margin-bottom: 2em;
  }
  .l-header__menusp a {
    margin-bottom: 15px;
  }
  .l-header__menusp a + a {
    margin-bottom: 20px;
  }
  .l-header__menusp a.txt {
    color: #003C78;
    display: block;
    margin: 1em auto 2em;
    font-size: 0.875rem;
  }
  .l-header__menusp a.insta {
    margin: 1em auto;
    display: block;
  }
  .l-header__menusp a.insta img {
    max-width: 45px;
  }
  .l-header__menusp.--mb {
    height: 80%;
  }
}

/* fotoer */
.l-Map {
  text-align: center;
  margin-bottom: 5em;
}

.l-Map__location {
  margin-top: 145px;
  position: relative;
  height: 400px;
  margin-bottom: 52px;
  overflow: hidden;
}

.l-Map__location iframe {
  position: absolute;
  top: -130px;
  left: 0;
  width: 100%;
  height: calc(100% + 300px);
}

.l-footer {
  background: #003C78;
}

.l-footer__contain {
  margin: 0 auto;
  text-align: center;
  max-width: 1000px;
  padding: 0 20px;
}

.l-footer__logo {
  padding-top: 50px;
  margin: 0 auto 32px;
}

.l-footer .contact_txt {
  color: #fff;
  font-family: "source-han-serif-japanese", serif;
  font-weight: bold;
  font-size: 1.125rem;
  letter-spacing: 0.05em;
  margin-bottom: 3px;
}

.l-footer__contact {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: -8px;
}

.l-footer__contact a {
  margin: 2%;
}

.l-footer__info {
  margin-top: 23px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  font-family: "游ゴシック", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 1rem;
}

.l-footer__infoContact {
  width: 59.8%;
  color: #fff;
  font-style: normal;
  text-align: left;
  line-height: 1.75;
}

.l-footer__infoContact .c-text1 {
  color: #fff;
}

.l-footer__infoContact a {
  color: #fff;
}

.l-footer__infoMenu {
  width: 40%;
  color: #fff;
  font-weight: bold;
  overflow: hidden;
  margin-top: -8px;
}

.l-footer__infoMenu ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin: 0 -24px 6px;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.l-footer__infoMenu ul li {
  width: auto;
  margin: 9px 24px;
  text-align: left;
}

.l-footer__infoMenu ul li.--w1 {
  min-width: 50px;
}

.l-footer__infoMenu ul li.--w2 {
  min-width: 62px;
}

.l-footer__infoMenu ul li.--w3 {
  min-width: 105px;
}

.l-footer__infoMenu ul li.--fs1 {
  font-size: 0.875rem;
}

.l-footer__infoMenu ul a {
  color: #fff;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.l-footer__info .insta {
  display: block;
  text-align: left;
}

.l-footer__info .insta a {
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.l-footer__info .insta a:hover {
  opacity: 0.7;
}

.l-footer__coppy {
  font-size: 0.875rem;
  color: #fff;
  padding: 16px 0 42px;
}

@media all and (min-width: 960px), print {
  .l-footer__infoMenu ul a:hover {
    opacity: 0.7;
  }
}

@media only screen and (max-width: 959px) {
  .l-Map {
    margin-bottom: 99px;
  }
  .l-Map__location {
    height: 300px;
    margin-top: 96px;
    margin-bottom: 49px;
  }
  .l-footer {
    padding-bottom: 80px;
  }
  .l-footer .contact_txt {
    margin-bottom: 20px;
  }
  .l-footer__logo {
    padding-top: 30px;
    margin-bottom: 24px;
  }
  .l-footer__logo img {
    max-width: 200px;
    width: 100%;
  }
  .l-footer__contact {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .l-footer__contact a {
    margin: 0 0 20px;
  }
  .l-footer__info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-top: 6px;
  }
  .l-footer__infoContact {
    width: 100%;
  }
  .l-footer__infoContact a {
    text-decoration: underline;
  }
  .l-footer__infoMenu {
    width: 100%;
    margin-top: 14px;
  }
  .l-footer__infoMenu ul {
    margin: 0;
  }
  .l-footer__infoMenu ul li {
    width: 50%;
    margin: 14.5px 0;
  }
  .l-footer__infoMenu ul li a {
    padding: 0;
  }
  .l-footer__infoMenu ul li:nth-child(1) {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
    -ms-flex-order: 1;
    order: 1;
  }
  .l-footer__infoMenu ul li:nth-child(2) {
    -webkit-box-ordinal-group: 4;
    -webkit-order: 3;
    -ms-flex-order: 3;
    order: 3;
  }
  .l-footer__infoMenu ul li:nth-child(3) {
    -webkit-box-ordinal-group: 5;
    -webkit-order: 4;
    -ms-flex-order: 4;
    order: 4;
  }
  .l-footer__infoMenu ul li:nth-child(4) {
    -webkit-box-ordinal-group: 8;
    -webkit-order: 7;
    -ms-flex-order: 7;
    order: 7;
  }
  .l-footer__infoMenu ul li:nth-child(5) {
    -webkit-box-ordinal-group: 10;
    -webkit-order: 9;
    -ms-flex-order: 9;
    order: 9;
  }
  .l-footer__infoMenu ul li:nth-child(6) {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
    -ms-flex-order: 2;
    order: 2;
  }
  .l-footer__infoMenu ul li:nth-child(7) {
    -webkit-box-ordinal-group: 5;
    -webkit-order: 4;
    -ms-flex-order: 4;
    order: 4;
  }
  .l-footer__infoMenu ul li:nth-child(8) {
    -webkit-box-ordinal-group: 7;
    -webkit-order: 6;
    -ms-flex-order: 6;
    order: 6;
  }
  .l-footer__infoMenu ul li:nth-child(9) {
    -webkit-box-ordinal-group: 9;
    -webkit-order: 8;
    -ms-flex-order: 8;
    order: 8;
  }
  .l-footer__infoMenu ul li:nth-child(10) {
    -webkit-box-ordinal-group: 11;
    -webkit-order: 10;
    -ms-flex-order: 10;
    order: 10;
  }
  .l-footer__coppy {
    padding: 23px 0 22px;
  }
}

/* main */
.l-inner {
  margin: 0 auto;
  padding: 0 20px;
  width: 1240px;
  max-width: 100%;
  height: inherit;
}

.l-inner.--full {
  width: 100%;
  padding: 0;
}

.l-inner.--wide {
  width: 1790px;
}

.l-inner.--narrow {
  width: 1140px;
}

.l-inner.--small {
  width: 840px;
}

.l-inner.--medium {
  width: 1000px;
}

.l-content {
  padding-top: 120px;
}

.l-bg {
  position: relative;
  padding: 5em 0;
  background: url(./images/common/bg_section.png) repeat top center/100% auto;
}

.l-bg::before {
  content: "";
  width: 100%;
  height: 6.25vw;
  background: url(./images/common/bg_top.png);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 0;
}

.l-bg::after {
  content: "";
  width: 100%;
  height: 6.25vw;
  background: url(./images/common/bg_bottom.png);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  bottom: -3px;
  left: 0;
}

@media only screen and (max-width: 1920px) {
  .l-bg {
    background-size: auto;
  }
}

@media only screen and (max-width: 959px) {
  .l-content {
    padding-top: 80px;
  }
  .l-bg {
    margin: 4em auto;
    padding: 3em 0;
  }
  .l-bg::before {
    background-size: cover;
    background-position: top center;
  }
  .l-bg::after {
    background-size: cover;
    background-position: bottom center;
  }
}

@media only screen and (max-width: 739px) {
  .l-content {
    padding-top: 80px;
  }
}

/* column */
/* table */
.l-table {
  font-family: "游ゴシック", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  border: 1px solid #003C78;
  width: 100%;
}

.l-table.--One .l-table__th, .l-table.--One .l-table__td {
  width: 25%;
}

.l-table.--Two .l-table__th {
  width: 25%;
}

.l-table.--Two .l-table__td {
  width: 37.5%;
}

.l-table__col.--col1 {
  width: calc( 100% / (12 / 1));
}

.l-table__col.--col2 {
  width: calc( 100% / (12 / 2));
}

.l-table__col.--col3 {
  width: calc( 100% / (12 / 3));
}

.l-table__col.--col4 {
  width: calc( 100% / (12 / 4));
}

.l-table__col.--col5 {
  width: calc( 100% / (12 / 5));
}

.l-table__col.--col6 {
  width: calc( 100% / (12 / 6));
}

.l-table__col.--col7 {
  width: calc( 100% / (12 / 7));
}

.l-table__col.--col8 {
  width: calc( 100% / (12 / 8));
}

.l-table__col.--col9 {
  width: calc( 100% / (12 / 9));
}

.l-table__col.--col10 {
  width: calc( 100% / (12 / 10));
}

.l-table__col.--col11 {
  width: calc( 100% / (12 / 11));
}

.l-table__th {
  background: #003C78;
  color: #fff;
  text-align: center;
  vertical-align: middle;
  padding: .75em;
  border-bottom: 1px solid #fff;
}

.l-table__th:last-child {
  border-bottom: 0;
  border-right: 0;
}

.l-table__td {
  padding: .75em;
  text-align: center;
  border-bottom: 1px solid #003C78;
}

.l-table.--dl .l-table {
  line-height: 1.75;
}

.l-table.--dl .l-table__th {
  padding: 13px;
}

.l-table.--dl .l-table__td {
  text-align: left;
  padding: 13px 23px 13px 31px;
}

@media only screen and (max-width: 959px) {
  .l-table {
    border-bottom: none;
  }
  .l-table.--spmax .l-table__col, .l-table.--spmax .l-table__th, .l-table.--spmax .l-table__td {
    display: block;
    width: 100%;
  }
  .l-table.--dl .l-table__td {
    padding: 13px 10px;
  }
  .l-table.--dl .l-table__th {
    padding: 13px 10px;
  }
}

/* card */
/* button */
.l-btn__item .c-btn {
  width: 100%;
  max-width: 100%;
}

.l-btn.--col3 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.l-btn.--col3 .l-btn__item {
  width: 29.17%;
  margin-right: 6.245%;
  margin-bottom: 20px;
}

.l-btn.--col3 .l-btn__item:nth-child(3n) {
  margin-right: 0;
}

.l-btn.--col3Narrow {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.l-btn.--col3Narrow .l-btn__item {
  width: calc((100% - 36px)/3);
}

.l-btn.--col3Narrow .l-btn__item:not(:nth-child(3n)) {
  margin-right: 18px;
}

.l-btn.--w1 {
  max-width: 580px;
  margin: 0 auto;
}

.l-btn.--col2 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.l-btn.--col2 .l-btn__item {
  width: calc(50% - 10px);
  margin-bottom: 17px;
}

.l-btn.--w2 {
  max-width: 880px;
  margin: 0 auto;
}

.l-btn.--col3Narrow {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.l-btn.--col3Narrow .l-btn__item {
  width: calc((100% - 40px)/3);
  margin-bottom: 17px;
}

.l-btn.--col3Narrow .l-btn__item:not(:nth-child(3n)) {
  margin-right: 20px;
}

@media only screen and (max-width: 739px) {
  .l-btn.--col2 .l-btn__item {
    width: calc(50% - 7px);
    margin-bottom: 15px;
  }
  .l-btn.--spCol1 .l-btn__item {
    width: 100%;
    margin-right: 0 !important;
  }
  .l-btn.--w1 {
    max-width: 400px;
  }
  .l-btn .c-btn.--anchor:after {
    right: 16px;
  }
}

/* supplement */
.l-supplement01 {
  margin: 110px 0 60px;
}

.l-supplement01 .c-heading2 {
  margin-bottom: 12px;
}

.l-supplement01 .c-text2 {
  margin-bottom: 16px;
}

.l-supplement01 .c-listDot {
  max-width: 620px;
  margin: 0 auto 0;
}

.l-supplement02__text {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: end;
  -ms-flex-align: end;
  align-items: end;
  gap: 20px;
  margin: 0px auto 26px;
  max-width: 642px;
}

.l-supplement02 .c-text2 {
  margin-bottom: 8px;
}

.l-supplement02 .l-table {
  margin: 1.5em auto;
}

.l-supplement02 .c-heading2 {
  margin-bottom: 12px;
}

@media only screen and (max-width: 959px) {
  .l-supplement02__text {
    display: block;
  }
  .l-supplement02__text .c-number {
    margin-bottom: 15px;
  }
}

/* tab */
.l-tabLod__item {
  background: #fff;
  padding: 63px 20px 50px;
  display: none;
  opacity: 0;
}

.l-tabLod__item.is-active {
  display: block;
  opacity: 1;
}

.l-tabLod__inner {
  max-width: 960px;
  margin: 0 auto;
}

.l-tabLod__inner > .c-heading2 {
  margin-bottom: 44px;
}

.l-tabLod__detail {
  margin-top: 76px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  min-height: 502px;
}

.l-tabLod__map {
  width: 50%;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding-right: 20px;
}

.l-tabLod__map .note {
  display: block;
  margin: 2px 0 0 12px;
}

.l-tabLod__map .note.--ml0 {
  margin-left: 0;
}

.l-tabLod__map.--mt1 {
  margin-top: 6px;
}

.l-tabLod__map.--pl1 {
  padding-left: 8px;
}

.l-tabLod__cont {
  width: 50%;
}

.l-tabLod__cont .c-heading2 {
  max-width: 335px;
  text-align: center;
  margin-top: 32px;
  margin-bottom: 24px;
}

.l-tabLod__cont .btn {
  max-width: 335px;
}

.l-tabLod__cont .btn li {
  margin-bottom: 17px;
}

@media only screen and (max-width: 739px) {
  .l-tabLod__detail {
    display: block;
  }
  .l-tabLod__map {
    width: 100%;
    text-align: center;
    padding-right: 0;
    margin-bottom: 20px;
  }
  .l-tabLod__item {
    padding: 40px 20px 20px;
  }
  .l-tabLod__cont {
    width: 100%;
  }
  .l-tabLod__cont .c-heading2 {
    max-width: 100%;
  }
  .l-tabLod__cont .btn {
    max-width: 100%;
  }
}

/* tab */
/* --------------------------------------------------
	4. object
-------------------------------------------------- */
/* component */
@-webkit-keyframes slide {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@keyframes slide {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}

@-webkit-keyframes loading01 {
  0% {
    opacity: 0;
  }
  20% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
}

@keyframes loading01 {
  0% {
    opacity: 0;
  }
  20% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
}

@-webkit-keyframes loading02 {
  20% {
    visibility: visible;
    opacity: 1;
  }
  50% {
    visibility: hidden;
    opacity: 0;
  }
}

@keyframes loading02 {
  20% {
    visibility: visible;
    opacity: 1;
  }
  50% {
    visibility: hidden;
    opacity: 0;
  }
}

@-webkit-keyframes load {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
}

@keyframes load {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
}

.js_fadein {
  opacity: 0;
}

/* その場で */
.is_show.fadeIn {
  -webkit-animation-name: fadeInAnime;
  animation-name: fadeInAnime;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  opacity: 0;
}

.is_show.fadeUp {
  -webkit-animation-name: fadeUpAnime;
  animation-name: fadeUpAnime;
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  opacity: 0;
}

.is_show.fadeLeft {
  -webkit-animation-name: fadeLeftAnime;
  animation-name: fadeLeftAnime;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  opacity: 0;
}

.is_show.fadeRight {
  -webkit-animation-name: fadeRightAnime;
  animation-name: fadeRightAnime;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  opacity: 0;
}

.is_show.zoomIn {
  -webkit-animation-name: zoomInAnime;
  animation-name: zoomInAnime;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

.is_show.fadeDown {
  -webkit-animation-name: fadeDownAnime;
  animation-name: fadeDownAnime;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  opacity: 0;
}

@media only screen and (max-width: 739px) {
  .is_show.fadeUp {
    -webkit-animation-name: fadeUpAnime_sp;
    animation-name: fadeUpAnime_sp;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    opacity: 0;
  }
}

@-webkit-keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@-webkit-keyframes fadeUpAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(50px);
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(50px);
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@-webkit-keyframes fadeUpAnime_sp {
  from {
    opacity: 0;
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes fadeUpAnime_sp {
  from {
    opacity: 0;
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

/* 上から */
@-webkit-keyframes fadeDownAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(-100px);
    transform: translateY(-100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes fadeDownAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(-100px);
    transform: translateY(-100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

/* 左から */
@-webkit-keyframes fadeLeftAnime {
  from {
    opacity: 0;
    -webkit-transform: translateX(-100px);
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes fadeLeftAnime {
  from {
    opacity: 0;
    -webkit-transform: translateX(-100px);
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

/* 右から */
@-webkit-keyframes fadeRightAnime {
  from {
    opacity: 0;
    -webkit-transform: translateX(100px);
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes fadeRightAnime {
  from {
    opacity: 0;
    -webkit-transform: translateX(100px);
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@-webkit-keyframes zoomInAnime {
  from {
    -webkit-transform: scale(0.6);
    transform: scale(0.6);
    opacity: 0;
  }
  to {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes zoomInAnime {
  from {
    -webkit-transform: scale(0.6);
    transform: scale(0.6);
    opacity: 0;
  }
  to {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}

.c-aside {
  position: fixed;
  left: 0;
  right: 0;
  bottom: -100px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  background: #003C78;
  z-index: 100;
  padding: 10px 0;
  height: 80px;
  opacity: 0;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.c-aside.is-show {
  bottom: 0;
  opacity: 1;
}

.c-aside__link {
  font-size: 0.875rem;
  font-weight: 900;
  font-family: "source-han-serif-japanese", serif;
  font-weight: bold;
  width: calc(100% /3);
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #fff;
}

.c-aside__link:not(:last-child) {
  border-right: 1px solid #fff;
}

.c-aside__link img {
  margin-bottom: .5em;
}

.c-aside__link.--booking img {
  width: 30px;
}

.c-gallery__img {
  background: transparent no-repeat center / cover;
}

.c-gallery__img:after {
  content: "";
  display: block;
  padding-top: 66.66%;
}

.c-gallery__cont {
  margin-top: 22px;
}

.c-gallery__cont .c-text {
  margin-top: 17px;
}

.c-gallery__item .c-text1 {
  margin-top: 17px;
}

.c-gallery.--col2 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.c-gallery.--col2 .c-gallery__item {
  width: 46.875%;
  margin-bottom: 40px;
}

.c-aticle01 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.c-aticle01__item {
  width: calc((100% - 60px)/3);
}

.c-aticle01__item:not(:nth-child(3n)) {
  margin-right: 30px;
}

.c-aticle01__item .c-heading2 {
  margin-bottom: 16px;
}

.c-aticle01__img {
  background: transparent no-repeat center / cover;
  padding-top: 73.68%;
  margin-bottom: 15px;
}

.c-faq__item {
  margin-bottom: 20px;
}

.c-faq__item.is-open .c-faq__q:after {
  -webkit-transform: none;
  transform: none;
}

.c-faq__q {
  font-weight: 700;
  color: #fff;
  line-height: 1.75;
  background-color: #003C78;
  min-height: 57px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  cursor: pointer;
}

.c-faq__q:before, .c-faq__q:after {
  content: "";
  position: absolute;
  right: 43px;
  top: 50%;
  width: 10px;
  height: 1px;
  background: #003c78;
  z-index: 1;
}

.c-faq__q:after {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.c-faq__q .inner {
  width: 100%;
  padding: 5px 80px;
  position: relative;
}

.c-faq__q .inner:before {
  content: "Q.";
  position: absolute;
  left: 48px;
  top: 1px;
  font-family: "source-han-serif-japanese", serif;
  font-size: 1.125rem;
}

.c-faq__q .inner:after {
  content: "";
  position: absolute;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #fff;
  right: 34px;
  top: 50%;
  -webkit-transform: translatey(-50%);
  transform: translatey(-50%);
}

.c-faq__a {
  background: #fff;
  border: 1px solid #003c78;
  border-top: none;
  padding: 14px 80px;
  position: relative;
  line-height: 1.7;
  display: none;
}

.c-faq__a:before {
  content: "A.";
  position: absolute;
  left: 48px;
  top: 11px;
  font-family: "source-han-serif-japanese", serif;
  color: #003c78;
  font-size: 1.125rem;
}

@media only screen and (max-width: 739px) {
  .c-gallery.--col2 .c-gallery__item {
    width: 100%;
  }
  .c-aticle01 {
    display: block;
  }
  .c-aticle01__item {
    width: 100%;
    margin-right: 0;
    margin-bottom: 80px;
  }
  .c-faq__a {
    padding: 14px 20px 14px 40px;
  }
  .c-faq__a:before {
    left: 16px;
  }
  .c-faq__q:before, .c-faq__q:after {
    right: 23px;
    width: 8px;
  }
  .c-faq__q .inner {
    padding: 5px 40px;
  }
  .c-faq__q .inner:before {
    left: 16px;
  }
  .c-faq__q .inner:after {
    right: 17px;
    width: 20px;
    height: 20px;
  }
}

/* breadline */
.c-breadline {
  margin-top: 16px;
}

.c-breadline__item {
  display: inline-block;
  font-weight: 500;
}

.c-breadline__item a {
  color: #000;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}

.c-breadline__item a:hover {
  opacity: 0.7;
}

.c-breadline__item.--active {
  color: #003C78;
}

.c-breadline__divider {
  margin-left: 5px;
}

@media all and (min-width: 960px), print {
  .c-breadline__item a {
    -webkit-transition: 0.3s all;
    transition: 0.3s all;
  }
  .c-breadline__item a:hover {
    opacity: 0.7;
  }
}

@media only screen and (max-width: 959px) {
  .c-breadline {
    margin-top: 13px;
  }
}

.c-btn {
  background: #003C78;
  color: #fff !important;
  text-decoration: none !important;
  font-weight: bold;
  font-size: 1.125rem;
  font-family: "source-han-serif-japanese", serif;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
  padding: 9px 0 10px;
  cursor: pointer;
  border-radius: 50px;
  letter-spacing: 0.05em;
  width: 335px;
  max-width: 100%;
}

.c-btn::after {
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 49px;
  display: inline-block;
  vertical-align: middle;
  content: "";
  width: 22px;
  height: 8px;
  position: absolute;
  background: transparent url(./images/common/icon_arrow.png) no-repeat center center;
  background-size: contain;
}

.c-btn.--white {
  color: #003C78;
  background: #fff;
  position: unset;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.c-btn.--white img {
  position: unset;
  width: 23px;
  height: 23px;
  margin-right: 10px;
}

.c-btn.--white img:last-child {
  width: 32px;
}

.c-btn.--white.c-btn__size img {
  height: 23px;
  width: 32px;
}

.c-btn.--anchor:after {
  width: 6px;
  height: 20px;
  background: url(images/common/icon_arrowDW.png) no-repeat center/contain;
  right: 40px;
}

.c-btn.--basic:after {
  content: none;
}

.c-btn.--back {
  background-color: #333;
}

.c-btn.--back:after {
  width: 24px;
  height: 8px;
  background: url(images/common/icon_arrow_left.png) no-repeat center/contain;
  left: 40px;
}

.c-btnContact {
  background: #003C78;
  max-width: 335px;
  width: 90%;
  color: #fff;
  font-weight: bold;
  font-size: 1.125rem;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
  padding: 6px;
  cursor: pointer;
  border-radius: 50px;
}

.c-btnContact span {
  position: relative;
  padding: 0 3px 0 33px;
  font-family: "source-han-serif-japanese", serif;
}

.c-btnContact.--tel span::after {
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
  display: inline-block;
  vertical-align: middle;
  content: "";
  width: 24px;
  height: 24px;
  position: absolute;
  background: transparent url(./images/common/icon_tel.png) no-repeat center center;
  background-size: contain;
}

.c-btnContact.--mail span::after {
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
  display: inline-block;
  vertical-align: middle;
  content: "";
  width: 24px;
  height: 24px;
  position: absolute;
  background: transparent url(./images/common/icon_mail.png) no-repeat center center;
  background-size: contain;
}

.c-btnContact.--white {
  color: #003C78;
  background: #fff;
}

.c-btnContact.--white.--tel span::after {
  background: transparent url(./images/common/icon_tel_blue.png) no-repeat center center;
  background-size: contain;
}

.c-btnContact.--white.--mail span::after {
  background: transparent url(./images/common/icon_mail_blue.png) no-repeat center center;
  background-size: contain;
}

.c-btnContact.--size2 {
  font-weight: 900;
  padding: 9px 6px;
}

.c-btnContact.--size2.--tel span::after {
  background: transparent url(./images/common/phone_footer.png) no-repeat center center/contain;
  left: -5px;
  top: 7px;
  width: 22px;
  height: 23px;
  -webkit-transform: none;
  transform: none;
}

.c-btnContact.--size2.--mail span {
  padding-left: 42px;
}

.c-btnContact.--size2.--mail span::after {
  width: 31px;
  height: 22px;
  background: transparent url(./images/common/mail_footer.png) no-repeat center center/contain;
  -webkit-transform: none;
  transform: none;
  left: 0;
  top: 7px;
}

@media all and (min-width: 960px), print {
  .c-btn:hover::after {
    right: 28px;
  }
  .c-btn.--white:hover {
    opacity: 0.7;
  }
  .c-btn.--anchor:hover:after {
    right: 40px;
    top: 65%;
  }
  .c-btn.--basic:hover {
    opacity: 0.7;
  }
  .c-btn.--back:hover::after {
    left: 28px;
  }
  .c-btnContact {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .c-btnContact:hover {
    opacity: 0.7;
  }
}

@media only screen and (max-width: 959px) {
  .c-btn {
    width: 100%;
    padding: 14px 0 14px;
  }
  .c-btn img {
    right: 15%;
  }
  .c-btn.--anchor:after {
    right: 20px;
  }
  .c-btnContact {
    width: 100%;
    padding: 14px 10px;
  }
  .c-btnContact.--size2 {
    padding: 14px 10px;
  }
  .c-btnContact.--mail span {
    padding-left: 46px;
  }
  .c-btnContact.--mail span::after {
    width: 30px;
    height: 30px;
  }
  .c-btnContact.--tel span::after {
    width: 22px;
    height: 23px;
  }
}

/* form */
.c-form__form__label {
  display: block;
  text-align: left;
}

.c-form__unit {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}

.c-form__unit > div {
  width: 100%;
}

.c-form__unit.--half > div {
  width: 50%;
}

.c-form__unit.--multi > div {
  width: auto;
}

.error .c-form input, .error .c-form textarea {
  border: 1px solid #C82310;
  background: #fff4f3;
}

.error .c-form p {
  font-size: 0.75em;
  color: #C82310;
}

.c-linkText {
  color: #003c78;
  line-height: 1.75;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.c-linkText:hover {
  opacity: 0.7;
}

.c-linkText__inner {
  text-decoration: underline;
}

.c-linkText.--blank:after {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  background: url(images/common/icon_linkBlank.png) no-repeat center/contain;
  margin-left: 5px;
}

.c-linkText.--pdf:after {
  content: "PDF";
  display: inline-block;
  background: #C82310;
  font-size: 0.75rem;
  color: #fff;
  line-height: 1.2;
  margin-left: 9px;
  padding: 3px 8px 2px;
  position: relative;
  top: -2px;
}

.c-linkText.--color1 .c-linkText__inner span {
  color: #333;
}

@media all and (min-width: 960px), print {
  a[href^="tel"] {
    pointer-events: none;
  }
  .c-linkText.--pdf:after {
    font-size: 0.71875rem;
    padding: 4px 8px 1px;
  }
}

@media only screen and (max-width: 739px) {
  section a[href^="tel"] {
    color: #003c78;
    text-decoration: underline;
  }
}

.c-listDot {
  margin-left: 10px;
  font-size: 1rem;
  line-height: 1.75;
}

.c-listDot li {
  position: relative;
}

.c-listDot li:before {
  content: "・";
  position: absolute;
  left: -15px;
  top: 0;
}

.c-dl {
  background: #fff;
  border-bottom: 1px solid #183678;
  line-height: 1.75;
}

.c-dl__item {
  border-top: 1px solid #183678;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 13px 0;
}

.c-dl__ttl {
  font-weight: 700;
  color: #003c78;
}

.c-dl.--onsen .c-dl__ttl {
  width: 44%;
  text-align: right;
}

.c-dl.--onsen .c-dl__cont {
  text-align: right;
  width: 18%;
}

@media only screen and (max-width: 739px) {
  .c-dl.--onsen .c-dl__ttl {
    width: 53%;
  }
  .c-dl.--onsen .c-dl__cont {
    width: 24%;
  }
}

.c-mainvisual__content {
  text-align: center;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 5.8%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: bottom;
  -webkit-align-items: bottom;
  -ms-flex-align: bottom;
  align-items: bottom;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  line-height: 1.44;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  top: 0;
  height: 100%;
  /*.text2 {
            font-weight: 700;
            color: #fff;
            font-size: (18px / $font-size) * 1rem;
            -webkit-text-stroke: 0.5px #003c78;
            text-shadow: 0 0 1px #003c78;
        }
        .text1 {
            display: flex;
            flex-direction: row;
            justify-content: center;
            align-items: flex-start;
            margin-bottom: 28px;
            span {
                writing-mode: tb;
                font-weight: 900;
                font-size: clamp(1.4rem, 4.15vh, 3.125rem);
                color: #003c78;
                background: #fff;
                border-left: 2px solid #003c78;
                border-right: 2px solid #003c78;
                font-family: 'source-han-serif-japanese';
                letter-spacing: 0.025em;
                line-height: 1;
                padding: 30px 23px;
                display: block;
                margin-left: 16px;
                margin-right: 16px;
                overflow: hidden;
                word-break: keep-all;
                &:nth-child(1) {
                    margin-top: 86px;
                }
            }
        }*/
}

.c-mainvisual__content img {
  margin: 0 auto;
  max-width: 100%;
  max-height: 90%;
}

.c-mainvisual__content.--first .text1 span:nth-child(1) {
  padding-bottom: 0;
  max-height: 588px;
}

.c-mainvisual__content.--second .text1 span:nth-child(1) {
  padding-bottom: 0;
  max-height: 588px;
}

.c-mainvisual__content.--second .text1 span:nth-child(2) {
  padding-bottom: 0;
  max-height: 590px;
}

.c-mainvisual__content.--third .text1 span:nth-child(1) {
  padding-bottom: 0;
  max-height: 588px;
}

.c-mainvisual__content.--third .text1 span:nth-child(2) {
  padding-top: 0;
  padding-bottom: 7px;
}

.c-mainvisual__slide {
  height: calc(100vh - 120px);
  min-height: 600px;
  background: transparent no-repeat center / cover;
}

.c-mainvisual .slick-slide {
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

@media only screen and (max-width: 959px) {
  .c-mainvisual__content {
    bottom: 20%;
  }
  .c-mainvisual__content img {
    max-height: 85%;
  }
  .c-mainvisual__content .text1 {
    margin-bottom: 15px;
  }
  .c-mainvisual__content .text1 span {
    margin: 0 4px;
    padding: 18px 12px 22px;
    font-size: clamp(1.625rem, 3.8vh, 8rem);
  }
  .c-mainvisual__content .text1 span:nth-child(1) {
    margin-top: 46px;
  }
  .c-mainvisual__content .text2 {
    font-size: 14px;
    line-height: 1.357;
    -webkit-text-stroke: 0px;
    text-shadow: 1px 1px 2px #003c78;
  }
  .c-mainvisual__slide {
    height: calc(100vh - 83px);
    min-height: 400px;
  }
  .c-mainvisual__slide.--first {
    background-position: 65% center;
  }
}

@media only screen and (max-width: 739px) {
  .c-mainvisual__content img {
    margin: 0 auto;
  }
}

.c-menu {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 60px;
}

.c-menu__item {
  width: calc(100% /3 - 40px);
  text-align: center;
}

.c-menu__item ul {
  width: 96%;
  max-width: 263px;
  margin: 0 auto;
}

.c-menu__item ul li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.c-menu__item ul li .--name {
  text-align: left;
}

.c-menu__item ul li .--price {
  text-align: right;
}

.c-menu__box {
  margin-bottom: 1em;
}

.c-menu__title {
  position: relative;
  font-size: 1.5rem;
  font-family: "source-han-serif-japanese", serif;
  font-weight: bold;
  text-align: center;
}

@media all and (min-width: 960px), print {
  .c-menu {
    height: 1000px;
  }
  .c-menu__item ul {
    display: block !important;
    margin: 1.02em auto 0.5em;
  }
  .c-menu__box {
    margin-bottom: 2.5em;
  }
  .c-menu__close {
    display: none !important;
  }
}

@media only screen and (max-width: 959px) {
  .c-menu {
    display: block;
    height: auto;
  }
  .c-menu__title {
    padding: 0.5px 0.15em;
    cursor: pointer;
    position: relative;
  }
  .c-menu__title::after {
    content: "";
    position: absolute;
    width: 1px;
    right: 30px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    display: block;
    height: 16px;
    background-color: #003C78;
  }
  .c-menu__title::before {
    content: "";
    position: absolute;
    top: 50%;
    height: 1px;
    right: 30px;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    display: block;
    width: 16px;
    -webkit-transform: translateY(-50%) translateX(50%);
    transform: translateY(-50%) translateX(50%);
    background-color: #003C78;
  }
  .c-menu__title.is-open::after {
    -webkit-transform: translateY(-50%) translateX(-50%) rotate(90deg);
    transform: translateY(-50%) translateX(-50%) rotate(90deg);
  }
  .c-menu__item {
    width: 100%;
  }
  .c-menu__item ul {
    display: none;
    margin: 1em auto 1.6em;
  }
  .c-menu__box {
    margin-bottom: 30px;
    border: 1px solid #003C78;
  }
  .c-menu__close {
    font-weight: 700;
    color: #003c78;
    margin: 0 0 20px;
    display: none;
    cursor: pointer;
  }
}

/* newsparts */
.c-news {
  margin-bottom: 45px;
  line-height: 1.75;
}

.c-news__item {
  border-top: 1px solid #003C78;
  font-family: "游ゴシック", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  padding: 0.76em 3.8em 0.76em 8em;
}

.c-news__item:last-child {
  border-bottom: 1px solid #003C78;
}

.c-news__item.--new .c-news__day {
  /*NEWの位置によって親要素変更*/
  position: relative;
}

.c-news__item.--new .c-news__day::after {
  content: "NEW";
  color: #fff;
  padding: 2px 0.5em 0 0.7em;
  font-size: 0.875rem;
  font-weight: bold;
  line-height: 1.4;
  background: #C82310;
  position: absolute;
  left: -73px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.c-news__item a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  color: #333;
  position: relative;
}

.c-news__item a::after {
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
  top: 40%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: .25em;
  display: inline-block;
  vertical-align: middle;
  content: "";
  width: 22px;
  height: 8px;
  position: absolute;
  background: transparent url(./images/common/icon_arrow_blue.png) no-repeat center center;
  background-size: contain;
}

.c-news__item a:hover::after {
  right: -5px;
}

.c-news__day {
  width: 100px;
}

.c-news__title {
  width: calc(100% - 100px);
}

@media all and (min-width: 960px), print {
  .c-news {
    -webkit-transition: all 0.2s linear;
    transition: all 0.2s linear;
  }
  .c-news a:hover {
    cursor: pointer;
    opacity: 0.7;
  }
}

@media only screen and (max-width: 959px) {
  .c-news__item {
    padding: 12px 15px 10px 20px;
  }
  .c-news__item.--new .c-news__day {
    /*NEWの位置によって親要素変更*/
    position: relative;
  }
  .c-news__item.--new .c-news__day::after {
    left: auto;
    right: -10px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  .c-news__item a {
    display: block;
  }
  .c-news__item a:after {
    top: 44%;
  }
  .c-news__day {
    width: 140px;
  }
  .c-news__title {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: calc(100% - 45px);
  }
}

/* pagination */
.c-pagination {
  padding: 3em 0;
}

.c-pagination__list {
  text-align: center;
  font-size: 0;
}

.c-pagination__item {
  display: inline-block;
  vertical-align: middle;
  font-size: 1rem;
  font-family: "source-han-serif-japanese", serif;
}

.c-pagination__item > a,
.c-pagination__item > span {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 4px;
  padding: .5em 1em;
  text-align: center;
  line-height: 1.4;
  border: 1px solid #003C78;
  border-radius: 50%;
}

.c-pagination__item > a {
  color: #003C78;
  text-decoration: none;
  background-color: #fff;
}

.c-pagination__item > span {
  color: #fff;
  font-weight: bold;
  background-color: #003C78;
}

.c-pagination__item.--next a {
  padding-right: 2em;
  border-radius: 20px;
}

.c-pagination__item.--next a::after {
  position: absolute;
  top: 50%;
  right: 1em;
  display: block;
  content: "";
  width: .5em;
  height: .5em;
  margin-top: -.25em;
  border-top: 1px solid #003C78;
  border-right: 1px solid #003C78;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.c-pagination__item.--prev a {
  padding-left: 2em;
  border-radius: 20px;
}

.c-pagination__item.--prev a::before {
  position: absolute;
  top: 50%;
  left: 1em;
  display: block;
  content: "";
  width: .5em;
  height: .5em;
  margin-top: -.25em;
  border-top: 1px solid #003C78;
  border-left: 1px solid #003C78;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

@media all and (min-width: 740px), print {
  .c-pagination a {
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .c-pagination a:hover {
    color: #fff;
    background-color: #003C78;
  }
  .c-pagination__item.--next a::after {
    -webkit-transition: border-color 0.3s;
    transition: border-color 0.3s;
  }
  .c-pagination__item.--next a:hover::after {
    border-color: #fff;
  }
  .c-pagination__item.--prev a::before {
    -webkit-transition: border-color 0.3s;
    transition: border-color 0.3s;
  }
  .c-pagination__item.--prev a:hover::before {
    border-color: #fff;
  }
}

@media only screen and (max-width: 739px) {
  .c-pagination {
    margin-left: 0;
    margin-right: 0;
  }
}

/* pagetitle */
.c-pagetitle {
  position: relative;
}

.c-pagetitle__image {
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  position: absolute;
  background: #b8b8b8 no-repeat center center;
  background-size: cover;
}

.c-pagetitle__heading {
  height: 420px;
  padding-bottom: 6px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 0;
}

.c-pagetitle__heading strong {
  width: 250px;
  height: 100px;
  background: no-repeat center center;
  background-size: contain;
}

body.news .c-pagetitle__image {
  background-image: url(./images/news/bg_main.jpg);
}

body.news .c-pagetitle__heading strong {
  background-image: url(./images/news/h2_ttl.png);
}

body.facility .c-pagetitle__image {
  background-image: url(./images/facility/bg_main.jpg);
}

body.facility .c-pagetitle__heading strong {
  background-image: url(./images/facility/h2_ttl.png);
}

body.lodging .c-pagetitle__image {
  background-image: url(./images/lodging/bg_main.jpg);
}

body.lodging .c-pagetitle__heading strong {
  background-image: url(./images/lodging/h2_ttl.png);
  max-width: 114px;
}

body.onsen .c-pagetitle__image {
  background-image: url(./images/onsen/bg_main.jpg);
}

body.onsen .c-pagetitle__heading strong {
  background-image: url(./images/onsen/h2_ttl.png);
}

body.meal .c-pagetitle__image {
  background-image: url(./images/meal/bg_main.jpg);
}

body.meal .c-pagetitle__heading strong {
  background-image: url(./images/meal/h2_ttl.png);
}

body.sightseeing .c-pagetitle__image {
  background-image: url(./images/sightseeing/bg_main.jpg);
}

body.sightseeing .c-pagetitle__heading strong {
  background-image: url(./images/sightseeing/h2_ttl.png);
}

body.access .c-pagetitle__image {
  background-image: url(./images/access/bg_main.jpg);
}

body.access .c-pagetitle__heading strong {
  background-image: url(./images/access/h2_ttl.png);
}

body.contact .c-pagetitle__image {
  background-image: url(./images/contact/bg_main.jpg);
}

body.contact .c-pagetitle__heading strong {
  background-image: url(./images/contact/h2_ttl.png);
}

@media only screen and (max-width: 959px) {
  .c-pagetitle__heading {
    height: 300px;
    padding-bottom: 30px;
  }
}

/* pagetop */
.c-pagetop {
  position: fixed;
  bottom: 12px;
  right: 5.2%;
  font-size: 0.875rem;
  font-weight: bold;
  z-index: 99;
  font-family: "source-han-serif-japanese", serif;
  opacity: 0;
  -webkit-transform: translateY(100px);
  transform: translateY(100px);
  -webkit-transition: opacity 0.5s ease-out, -webkit-transform 0.5s ease-out;
  transition: opacity 0.5s ease-out, -webkit-transform 0.5s ease-out;
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
  transition: opacity 0.5s ease-out, transform 0.5s ease-out, -webkit-transform 0.5s ease-out;
}

.c-pagetop.is-show {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.c-pagetop a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  border: 1px solid #003C78;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  z-index: 1000;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
  padding-top: 3px;
}

.c-pagetop a.booking {
  color: #003C78;
  margin-bottom: 5px;
  background: #fff;
  margin-bottom: 30px;
}

.c-pagetop a.booking img {
  width: 48px;
  height: 36px;
}

.c-pagetop a.booking:hover {
  opacity: 0.7;
}

.c-pagetop a.pagetop {
  color: #fff;
  background: #003C78;
}

.c-pagetop a.pagetop img {
  width: 8px;
  height: 24px;
}

.c-pagetop a.pagetop:hover {
  opacity: 0.7;
}

@media only screen and (max-width: 739px) {
  .c-pagetop {
    bottom: 90px;
  }
  .c-pagetop a {
    width: 50px;
    height: 50px;
  }
}

.c-slider li img {
  width: 400px;
  max-width: 22.91vw;
}

.c-slider img {
  width: 100%;
  height: auto;
}

.c-slider .slick-slide {
  margin: 0 1.04vw;
  width: auto;
}

.c-slider.--top li img {
  width: 280px;
}

.c-slider.--top .slick-slide {
  margin: 0 13px;
  width: auto;
}

.c-slider01__img {
  background: transparent no-repeat center /cover;
  padding-top: 50%;
}

.c-slider01 .slick-dots {
  bottom: -35px;
}

.c-slider01 .slick-dots li {
  width: 10px;
  height: 10px;
  margin: 0 9px;
}

.c-slider01 .slick-dots li:before {
  background: #fff;
}

.c-slider01 .slick-dots li.slick-active:before {
  background: #003C78;
  border-width: 1px;
}

.c-slider01.--lodging .c-slider01__img {
  padding-top: 62.5%;
}

@media only screen and (max-width: 959px) {
  .c-slider.--top li img {
    width: auto;
  }
  .c-slider .slick-slide {
    margin: 0 12px;
  }
  .c-slider .slick-list li, .c-slider .slick-track li {
    overflow: hidden;
  }
  .c-slider .slick-list img, .c-slider .slick-track img {
    height: 180px;
    max-width: unset;
    width: auto;
    -o-object-fit: cover;
    object-fit: cover;
  }
  .c-slider01__img {
    padding-top: 65%;
  }
}

.c-fixed {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  display: none;
  background: #003C78;
  z-index: 100000;
  padding: 10px 0;
  height: 80px;
}

.c-fixed__link {
  font-size: 0.875rem;
  width: calc(100% /3);
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #fff;
}

.c-fixed__link:not(:last-child) {
  border-right: 1px solid #fff;
}

.c-fixed__link img:nth-child(1) {
  width: 22px;
  height: 22px;
}

.c-fixed__link img:nth-child(2) {
  width: 28px;
  height: 20px;
}

.c-fixed__link img:nth-child(3) {
  width: 16px;
  height: 24px;
}

.c-table01 {
  line-height: 1.75;
}

.c-table01.--lh1 {
  line-height: 1.2;
}

.c-table01.--lh2 {
  line-height: 1.5;
}

.c-table01 .l-table__th {
  height: 56px;
  padding: 13px  0;
  border-bottom: 1px solid #fff;
  border-right: 1px solid #fff;
}

.c-table01 .l-table__th span.--blockLightPc {
  font-weight: 500;
  display: block;
}

.c-table01 .l-table__th.--w25 {
  width: 25%;
}

.c-table01 .l-table__th.--w37-5 {
  width: 37.5%;
}

.c-table01 .l-table__th.--narrow span {
  margin: -5px 0;
}

.c-table01 .l-table__th.--py0 {
  padding-top: 0;
  padding-bottom: 0;
}

.c-table01 .l-table__td {
  height: 56px;
  vertical-align: middle;
  padding: 13px 0;
  border-bottom: 1px solid #003C78;
  border-right: 1px solid #003C78;
}

.c-table01 .l-table__td.--py0 {
  padding-top: 0;
  padding-bottom: 0;
}

.c-table01 thead .l-table__th:last-child {
  border-right-color: #003C78;
}

.c-table01 tbody .l-table__td {
  background: #fff;
}

.c-table01 tbody tr:last-child .l-table__th {
  border-bottom: 1px solid #003C78;
}

@media only screen and (max-width: 959px) {
  .c-table01 {
    line-height: 1;
  }
  .c-table01 .l-table__th {
    font-size: 0.875rem;
    line-height: 1.28;
    padding: 11px 0 5px;
    -webkit-font-feature-settings: "palt" 1;
    font-feature-settings: "palt" 1;
  }
  .c-table01 .l-table__th span.blockLightPc {
    display: inline-block;
  }
  .c-table01 .l-table__th .spRotate45 {
    -webkit-writing-mode: vertical-lr;
    -ms-writing-mode: tb-lr;
    writing-mode: vertical-lr;
  }
  .c-table01 .l-table__td {
    padding: 5px 0;
    font-size: 0.9375rem;
  }
  .c-table01.--spAuto {
    overflow: auto;
  }
  .c-table01.--spAuto::-webkit-scrollbar {
    width: 8px;
    height: 8px;
  }
  .c-table01.--spAuto::-webkit-scrollbar-track {
    background: #f1f1f1;
  }
  .c-table01.--spAuto::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 5px;
  }
  .c-table01.--spAuto .l-table {
    width: auto;
    min-width: 100%;
    white-space: nowrap;
  }
  .c-table01.--spAuto .l-table__th, .c-table01.--spAuto .l-table__td {
    padding-left: 10px;
    padding-right: 10px;
  }
}

.c-text {
  font-size: 1rem;
  line-height: 1.75;
  color: #333;
  -webkit-font-feature-settings: normal;
  font-feature-settings: normal;
}

.c-text.--center {
  text-align: center;
}

.c-text1 {
  font-size: 1rem;
  font-weight: 500;
  color: #333;
  line-height: 1.75;
}

.c-text1.--center {
  text-align: center;
}

.c-text1.--bold {
  font-weight: 700;
}

.c-text1.--white {
  color: #fff;
}

.c-text1.--fs1 {
  font-size: 0.875rem;
}

.c-text1.--fs2 {
  font-size: 1.125rem;
}

.c-text1.--fs0 {
  font-size: 0.75rem;
}

.c-text2 {
  font-size: 1rem;
  color: #c82310;
  font-family: "source-han-serif-japanese", serif;
}

.c-text2.--fs2 {
  font-size: 1.125rem;
}

.c-text2.--bold {
  font-weight: 700;
}

.c-text2.--center {
  text-align: center;
}

.c-number {
  font-family: "source-han-serif-japanese", serif;
  font-size: 0.875rem;
  font-weight: bold;
  color: #003C78;
  text-align: center;
  letter-spacing: 0.022em;
}

.c-number__circle {
  display: block;
  margin: -3px auto 0;
  color: #fff;
  background: #003C78;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  font-size: 1rem;
}

.c-title {
  font-size: 1.125rem;
  font-weight: bold;
}

@media only screen and (max-width: 959px) {
  .c-number {
    font-size: 1.25rem;
  }
  .c-number__circle {
    width: 44px;
    height: 44px;
    font-size: 1.375rem;
  }
  .c-text1.--center {
    text-align: left;
  }
  .c-text.--spLeft {
    text-align: left;
  }
}

.c-heading1 {
  font-size: 1.875rem;
  font-family: "source-han-serif-japanese", serif;
  color: #003C78;
  position: relative;
  padding-bottom: .25em;
  line-height: 1.4;
  letter-spacing: 0.05em;
  font-weight: 900;
}

.c-heading1 > span {
  display: block;
  font-size: 1rem;
  color: #333;
  font-weight: 700;
  margin-bottom: -2px;
  letter-spacing: 0.05em;
}

.c-heading1 > strong {
  font-weight: 900;
}

.c-heading1::after {
  content: "";
  position: absolute;
  width: 40px;
  height: 4px;
  background: url(./images/common/h2_after.png) no-repeat center;
  background-size: contain;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.c-heading1.--fs1 {
  font-size: 1.25rem;
}

.c-heading1.--fs2 {
  font-size: 1.5rem;
}

.c-heading1.--fs3 {
  font-size: 1rem;
}

.c-heading1.--fs4 {
  font-size: 1.125rem;
}

.c-heading1.--bold {
  font-weight: bold;
}

.c-heading1.--center {
  text-align: center;
}

.c-heading1.--mb2 {
  margin-bottom: 2em;
}

.c-heading2 {
  font-size: 1.5rem;
  font-family: "source-han-serif-japanese", serif;
  font-weight: bold;
  color: #333;
  letter-spacing: 0.05em;
}

.c-heading2.--my1 {
  margin: 1em auto;
}

.c-heading2.--center {
  text-align: center;
}

.c-heading3 {
  font-size: 1.875rem;
  font-family: "source-han-serif-japanese", serif;
  font-weight: bold;
  color: #333;
  line-height: 1.75;
  letter-spacing: 0.05em;
}

.c-heading4 {
  font-size: 1.25rem;
  font-family: "source-han-serif-japanese", serif;
  font-weight: bold;
  color: #333;
}

@media only screen and (max-width: 959px) {
  .c-heading3 {
    line-height: 1.33;
  }
}

/* project */
/* access */
body.access .l-header__item > a span.access {
  background: url(./images/common/nav_access_red.png) no-repeat top center;
}

.p-access01__block1 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin: 80px 0 4em;
}

.p-access01__block1 .img {
  text-align: center;
  margin: 0 auto;
  width: calc(50% - 30px);
}

.p-access01__block1 .content {
  width: 50%;
}

.p-access01__block1 .content .l-table__td {
  text-align: left;
}

.p-access01 iframe {
  width: 100%;
}

.p-access02 {
  margin: 8em auto;
}

.p-access02 .c-heading2 {
  margin-bottom: 1em;
}

.p-access02__focus {
  background-color: #f8f9ff;
  margin: 2em auto;
  padding: 1em 2em 2em;
}

.p-access02__focus .c-title {
  margin-top: 1em;
}

.p-access02 .u-flex__item .c-heading2 {
  margin-bottom: 0;
}

.p-access03 {
  margin: 8em auto;
}

.p-access03 .c-heading2 {
  margin-bottom: 1em;
}

.p-access03 .c-text1 {
  margin-bottom: 2em;
}

.p-access04 {
  margin: 8em auto;
}

.p-access04 .c-heading2 {
  margin-bottom: 1em;
}

.p-access04 .c-text1 {
  margin-bottom: 2em;
}

@media only screen and (max-width: 959px) {
  .p-access01__block1 {
    display: block;
  }
  .p-access01__block1 .img {
    width: 100%;
    margin-bottom: 1em;
  }
  .p-access01__block1 .content {
    width: 100%;
  }
  .p-access01 iframe {
    height: 300px;
  }
  .p-access02 {
    margin: 8em auto;
  }
  .p-access02 .u-flex__item {
    margin-top: 2em;
  }
  .p-access02__focus {
    background-color: #f8f9ff;
    margin: 2em auto;
    padding: 1em 2em 2em;
  }
  .p-access02__focus .c-title {
    margin-top: 1em;
  }
  .p-access03 {
    margin: 8em auto;
  }
  .p-access03 .c-heading2 {
    margin-bottom: 1em;
  }
  .p-access03 .c-text1 {
    margin-bottom: 2em;
  }
  .p-access04 {
    margin: 8em auto;
  }
  .p-access04 .c-heading2 {
    margin-bottom: 1em;
  }
  .p-access04 .c-text1 {
    margin-bottom: 2em;
  }
}

/* contact */
.p-form {
  margin: 60px 0;
}

.p-form .c-btn {
  border: none;
}

.p-form .u-flex {
  margin-top: 40px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 20px;
}

.p-form .l-table__td {
  text-align: left;
}

.p-form__flow {
  margin: 3em auto 2em;
  text-align: center;
}

.p-form__flowItem {
  display: inline-block;
  font-size: 1.5rem;
  font-family: "source-han-serif-japanese", serif;
  font-weight: bold;
  position: relative;
  margin-right: 2.5em;
}

.p-form__flowItem:last-child {
  margin-right: 0;
}

.p-form__flowItem:last-child::after {
  display: none;
}

.p-form__flowItem::after {
  position: absolute;
  top: 50%;
  right: -2em;
  width: 1.5em;
  height: 4px;
  content: '';
  border-top: dotted 2px #C82310;
}

.p-form__flowItem.--current {
  color: #C82310;
}

@media only screen and (max-width: 959px) {
  .p-form .u-flex {
    display: block;
  }
  .p-form .u-flex .c-btn {
    margin-bottom: 1em;
  }
}

/* editor */
section.p-editor {
  margin-bottom: 5em;
}

section .p-editor__content {
  margin: 3em auto;
  overflow: hidden;
}

section .p-editor__content::after {
  display: block;
  content: "";
  clear: both;
}

section .p-editor__content h1 {
  font-size: 1.75rem;
}

section .p-editor__content h2 {
  font-size: 1.5rem;
}

section .p-editor__content h3 {
  font-size: 1.5rem;
}

section .p-editor__content h4 {
  font-size: 1.375rem;
}

section .p-editor__content h5 {
  font-size: 1.25rem;
}

section .p-editor__content h6 {
  font-size: 1.125rem;
}

section .p-editor__content p {
  min-height: 1.8em;
}

section .p-editor__content a {
  text-decoration: underline;
}

section .p-editor__content a:hover {
  text-decoration: none;
}

section .p-editor__content img {
  height: auto !important;
}

section .p-editor__content img.aligncenter {
  display: block;
  margin: 0 auto;
}

section .p-editor__content img.alignright {
  float: right;
}

section .p-editor__content img.alignleft {
  float: left;
}

section .p-editor__content em {
  font-style: italic;
}

section .p-editor__content blockquote {
  position: relative;
  background-color: #eeeeee;
  padding: 1.5em 1.5em 1em;
  margin: 1em auto;
}

section .p-editor__content blockquote::before {
  display: inline-block;
  position: absolute;
  top: 5px;
  left: 10px;
  content: "“";
  font-size: 2rem;
  color: #cfcfcf;
  line-height: 1;
}

section .p-editor__content table {
  margin: 2em auto;
  background-color: #fff;
  border-right: 1px solid #000;
  border-bottom: 1px solid #000;
  max-width: 100%;
}

section .p-editor__content table th,
section .p-editor__content table td {
  padding: .25em;
  border-left: 1px solid #000;
  border-top: 1px solid #000;
}

section .p-editor__content table th {
  text-align: center;
  font-weight: bold;
  background-color: #000;
}

section .p-editor__content table.aligncenter {
  margin: 0 auto;
}

section .p-editor__content table.alignright {
  float: right;
}

section .p-editor__content table.alignleft {
  float: left;
}

section .p-editor__content ul,
section .p-editor__content ol {
  margin-left: 1.5em;
}

section .p-editor__content ul > li > ul,
section .p-editor__content ul > li > ol,
section .p-editor__content ol > li > ul,
section .p-editor__content ol > li > ol {
  margin-left: 1.25em;
}

section .p-editor__content ul {
  list-style: circle;
}

section .p-editor__content ol {
  list-style: decimal;
}

section .p-editor__content dl > dt {
  font-weight: bold;
}

section .p-editor__content dl > dd {
  margin-left: 1em;
}

@media only screen and (max-width: 739px) {
  section .p-editor__content table {
    width: 100% !important;
  }
}

/* facility */
body.facility .l-header__item > a span.facility {
  background: url(./images/common/nav_facility_red.png) no-repeat top center;
}

.p-facility01 {
  padding: 60px 0 0;
}

.p-facility01 .c-heading1 {
  margin-bottom: 44px;
}

.p-facility01 .l-btn {
  margin-top: 90px;
}

.p-facility02 {
  margin-top: 40px;
  padding: 244px 0 105px;
}

.p-facility02__item {
  margin-bottom: 145px;
}

.p-facility02__item .c-heading1 {
  margin-bottom: 50px;
}

.p-facility02__itemDesc {
  margin: 76px auto 40px;
  max-width: 800px;
}

.p-facility02__itemAbout {
  margin: 40px auto;
  padding: 80px 80px 56px;
  max-width: 960px;
  background: #fff;
}

.p-facility02__itemAbout .l-supplement01 {
  margin-top: 0;
}

.p-facility02__itemBtn {
  text-align: center;
}

.p-facility02__item.--first .c-heading1 span {
  margin-bottom: -4px;
}

.p-facility03 {
  padding: 43px 0 5px;
}

.p-facility03 .c-heading1 {
  margin-bottom: 50px;
}

.p-facility04 {
  padding: 248px 0 180px;
  margin-bottom: -45px;
}

.p-facility04 .c-heading1 {
  margin-bottom: 20px;
}

.p-facility04__item {
  margin-bottom: 70px;
}

.p-facility04__item .c-heading2 {
  margin-bottom: 14px;
}

.p-facility04__item .c-text {
  max-width: 790px;
  margin: 0 auto 40px;
}

@media only screen and (max-width: 959px) {
  .p-facility01 {
    padding-top: 40px;
  }
  .p-facility01 .l-btn {
    margin-top: 60px;
  }
  .p-facility01 .l-btn.--col3 {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .p-facility01 .l-btn.--col3 .l-btn__item {
    width: 47%;
    margin-right: 4%;
  }
  .p-facility01 .l-btn.--col3 .l-btn__item:nth-child(3n) {
    margin-right: 4%;
  }
  .p-facility01 .l-btn.--col3 .l-btn__item:nth-child(2n) {
    margin-right: 0;
  }
  .p-facility02 {
    padding: 140px 0 40px;
  }
  .p-facility02__item {
    margin-bottom: 120px;
  }
  .p-facility02__itemAbout {
    padding: 40px 20px;
  }
  .p-facility02__itemAbout .c-table01 .l-table__td {
    font-size: 0.875rem;
  }
  .p-facility04 {
    padding: 140px 0 80px;
  }
}

body.index .l-header__item > a span.home {
  background: url(./images/common/nav_home_red.png) no-repeat top center;
}

.p-topNews {
  position: relative;
  margin-top: 97px;
}

.p-topNews .l-inner {
  max-width: 840px;
  width: 100%;
}

.p-topNews__title {
  margin-bottom: 47px;
}

.p-topNews .c-news {
  margin-bottom: 49px;
}

.p-topAbout {
  position: relative;
  padding: 165px 0 208px;
  margin-top: 38px;
}

.p-topAbout .l-inner {
  margin-top: 100px;
}

.p-topAbout .c-heading1 {
  margin-bottom: 35px;
}

.p-topAbout .c-heading1 span {
  margin-bottom: 5px;
}

.p-topAbout__flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 10px;
  margin: 23px -10px 0;
  width: auto;
}

.p-topAbout__point {
  width: calc(100% / 3);
}

.p-topAbout__point img {
  width: 100%;
  max-width: 280px;
  -o-object-fit: cover;
  object-fit: cover;
  margin-top: 9px;
  margin-bottom: 15px;
}

.p-topAbout__btn {
  margin-top: 41px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 39px;
}

.p-topAbout__box {
  margin-top: 129px;
}

.p-topAbout__box .l-inner {
  width: 1790px;
}

.p-topSlider {
  background-repeat: no-repeat;
  background-size: cover;
}

.p-topInfo__about {
  margin: 70px auto 80px;
}

.p-topInfo__aboutItem {
  position: relative;
  overflow: hidden;
  margin-bottom: 5em;
}

.p-topInfo__aboutItem.--reverse .p-topInfo__aboutItem1 {
  background-size: cover;
}

.p-topInfo__aboutItem.--reverse .p-topInfo__aboutItem2 {
  right: auto;
  left: 0;
}

.p-topInfo__aboutItem1 {
  background-repeat: no-repeat;
}

.p-topInfo__aboutItem2 {
  max-width: 700px;
  z-index: 1;
}

.p-topInfo__aboutItem2 .c-heading3 {
  margin-bottom: 24px;
  letter-spacing: 0;
}

.p-topInfo__aboutItem2 .c-text1 {
  margin-bottom: 2.8em;
}

.p-topInfo__block {
  margin-bottom: 100px;
  width: 100%;
}

.p-topInfo__blockInline {
  min-height: 500px;
  position: relative;
  background: transparent no-repeat center / cover;
}

.p-topInfo__blockContain {
  max-width: 500px;
}

.p-topInfo__blockImg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent no-repeat center / cover;
}

.p-topPrice {
  margin-bottom: 35px;
}

.p-topPrice .l-inner {
  width: 90%;
  max-width: 840px;
}

.p-topPrice .c-heading1 {
  margin-top: 42px;
  margin-bottom: 36px;
}

.p-topPrice .c-heading2 {
  margin-bottom: 0.8em;
}

.p-topPrice__title .c-text1 {
  margin-bottom: 39px;
}

.p-topPrice__title .c-text2 {
  line-height: 1.4;
}

.p-topPrice .l-table__th {
  font-size: 1rem;
  font-weight: bold;
}

.p-topPrice .l-table__td {
  font-size: 1rem;
  vertical-align: middle;
}

.p-topPrice__price {
  margin-bottom: 89px;
}

.p-topPrice__price .c-table01 {
  margin-bottom: 47px;
}

.p-topPrice__daytrip .c-table01 {
  margin: 1em auto 2.8em;
}

.p-topPrice__daytrip .c-table01.my1 {
  margin-bottom: 2em;
}

.p-topPrice__daytrip .c-heading2 {
  margin-bottom: 0.6em;
}

.p-topPrice__daytrip .c-listDot {
  margin-bottom: 45px;
}

.p-topPrice__golf {
  margin-top: 88px;
}

.p-topPrice__golf .c-heading2 {
  margin-bottom: 0.6em;
}

.p-topPrice__golfText {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  max-width: 643px;
  gap: 20px;
  margin: 0 auto 1.8em;
}

.p-topPrice__golfText p {
  line-height: 1.75;
}

.p-topPrice__golf .c-text2 {
  margin-bottom: 0.4em;
}

.p-topPrice__golf .c-table01 {
  margin: 1.5em auto 45px;
}

.p-topSight {
  padding: 256px 0 264px;
}

.p-topSight .c-heading1 {
  margin-bottom: 25px;
}

.p-topSight .c-slider {
  margin-top: 23px;
  margin-bottom: 42px;
}

.p-topMap {
  text-align: center;
  margin-top: 33px;
  margin-bottom: 5em;
}

@media all and (min-width: 960px), print {
  .p-topInfo__aboutItem {
    position: relative;
    overflow: hidden;
    margin-bottom: 5.1em;
    margin-left: 16px;
  }
  .p-topInfo__aboutItem.--reverse {
    margin-left: 0;
  }
  .p-topInfo__aboutItem.--reverse .p-topInfo__aboutItem1 {
    width: 68.6%;
    margin-left: auto;
  }
  .p-topInfo__aboutItem.--reverse .p-topInfo__aboutItem2 {
    right: auto;
    left: 0;
    padding-right: 100px;
  }
  .p-topInfo__aboutItem1 {
    height: 600px;
    width: 67.8%;
    background: transparent no-repeat center / cover;
  }
  .p-topInfo__aboutItem2 {
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 1;
    background: #fff;
    padding: 51px 119px 66px;
    width: 700px;
    max-width: 100%;
    min-height: 400px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .p-topInfo__block {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 4%;
  }
  .p-topInfo__blockInline {
    width: 100%;
    gap: 20px;
    min-height: 500px;
  }
  .p-topInfo__blockContain {
    background: rgba(255, 255, 255, 0.9);
    max-width: 500px;
    padding: 14px 20px 19px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    width: 80%;
    min-height: 300px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
  .p-topInfo__blockContain .inner {
    max-width: 352px;
    width: 100%;
    margin: 0 auto;
  }
  .p-topInfo__blockContain .c-text1 {
    margin: 8px 0 23px;
  }
  .p-topInfo__blockContain.--padding {
    padding: 4px 20px 19px;
  }
  .p-topInfo__blockContain.--padding .c-text1 {
    margin-bottom: 11px;
  }
}

@media only screen and (max-width: 959px) {
  .p-topNews .c-news {
    margin-bottom: 50px;
  }
  .p-topAbout {
    margin-top: 80px;
    margin-bottom: 78px;
    padding: 16px 0 1px;
  }
  .p-topAbout__flex {
    display: block;
  }
  .p-topAbout__point {
    width: 100%;
    margin-bottom: 27px;
  }
  .p-topAbout__point img {
    margin-top: 19px;
  }
  .p-topAbout__btn {
    display: block;
    margin-top: 44px;
  }
  .p-topAbout__btn .c-btn {
    margin-bottom: 29px;
  }
  .p-topAbout__box {
    margin-top: -38px;
  }
  .p-topAbout .--wide {
    padding: 0;
  }
  .p-topAbout .c-heading1 span {
    margin-bottom: -1px;
  }
  .p-topAbout .c-slider {
    margin-bottom: 19px;
  }
  .p-topAbout .l-inner.--full {
    margin-top: 20px;
  }
  .p-topSlider .c-slider {
    margin-bottom: 1em;
  }
  .p-topInfo__about {
    margin: 33px auto 62px;
  }
  .p-topInfo__aboutItem {
    overflow: visible;
    margin-bottom: 59px;
  }
  .p-topInfo__aboutItem.--reverse .p-topInfo__aboutItem1 {
    background-position: center right;
  }
  .p-topInfo__aboutItem.--reverse .p-topInfo__aboutItem2 {
    right: auto;
    left: 0;
  }
  .p-topInfo__aboutItem1 {
    height: 300px;
    background-size: 100%;
    background-position: center center;
    background-size: cover;
    margin-left: -20px;
    margin-right: -20px;
  }
  .p-topInfo__aboutItem2 {
    width: 100%;
    margin: 0 auto;
    max-width: 700px;
    padding: 21px 0;
  }
  .p-topInfo__aboutItem2 .c-heading3 {
    margin-bottom: 20px;
    line-height: 1.4;
  }
  .p-topInfo__aboutItem2 .c-text1 {
    margin-bottom: 2.6em;
  }
  .p-topInfo__block {
    margin-bottom: 88px;
    width: 100%;
  }
  .p-topInfo__blockInline {
    background-position: center top;
    min-height: unset;
    margin-bottom: 50px;
  }
  .p-topInfo__blockContain {
    padding: 24px 0 30px;
    max-width: 100%;
  }
  .p-topInfo__blockContain .c-heading4 {
    margin-bottom: 16px;
  }
  .p-topInfo__blockContain .c-text1 {
    margin-bottom: 42px;
  }
  .p-topInfo__blockImg {
    position: static;
    margin: 0 -20px 0;
    width: auto;
  }
  .p-topInfo__blockImg:before {
    content: "";
    display: block;
    padding-top: 53%;
  }
  .p-topPrice {
    margin-bottom: 76px;
  }
  .p-topPrice .c-heading2 {
    margin-bottom: 0.9em;
  }
  .p-topPrice .l-inner {
    width: 100%;
  }
  .p-topPrice .l-table__th {
    font-size: 0.875rem;
  }
  .p-topPrice__title .c-text1 {
    margin-bottom: 28px;
  }
  .p-topPrice__price {
    margin-bottom: 68px;
  }
  .p-topPrice__price .c-table01 {
    margin-bottom: 7px;
  }
  .p-topPrice__price .c-table01 thead .l-table__th:nth-child(1) {
    width: 24%;
  }
  .p-topPrice__price .c-table01 thead .l-table__th:nth-child(2) {
    width: 26%;
  }
  .p-topPrice__price .note {
    font-size: 14px;
    margin-bottom: 44px;
  }
  .p-topPrice__daytrip .c-heading2 {
    margin-bottom: 0.6em;
  }
  .p-topPrice__daytrip .c-table01.--lh2 tbody .l-table__th {
    padding: 21px 0 19px;
  }
  .p-topPrice__daytrip .c-table01 thead .l-table__th.--w25 {
    width: 30%;
  }
  .p-topPrice__daytrip .c-table01 thead .l-table__th.--w37-5 {
    width: 35.5%;
  }
  .p-topPrice__daytrip .c-listDot {
    margin-top: -19px;
  }
  .p-topPrice__golf {
    margin-top: 69px;
  }
  .p-topPrice__golf .c-text2 {
    margin-bottom: 0.8em;
  }
  .p-topPrice__golfText {
    display: block;
    margin-bottom: 39px;
  }
  .p-topPrice__golfText .c-number {
    margin-bottom: .8em;
  }
  .p-topPrice__golfText .--spmr1 {
    margin-right: 20px;
  }
  .p-topPrice__golfText .--spmr2 {
    margin-right: -1px;
  }
  .p-topPrice__golfText.--second {
    margin-bottom: 1px;
  }
  .p-topPrice__golf .note {
    font-size: 0.875rem;
    margin-bottom: 44px;
    margin-top: -34px;
  }
  .p-topSight {
    padding: 120px 0 114px;
    margin-bottom: 77px;
  }
  .p-topSight .c-text1 {
    text-align: left;
    margin-right: 8px;
  }
  .p-topSight .c-heading1 {
    margin-bottom: 45px;
  }
  .p-topSight .c-slider {
    margin-top: 43px;
    margin-bottom: 21px;
  }
}

/* lodging */
body.lodging .l-header__item > a span.lodging {
  background: url(./images/common/nav_lodging_red.png) no-repeat top center;
}

.p-lodging01 {
  padding: 48px 0 27px;
}

.p-lodging01__time {
  border-top: 1px solid #003c78;
  border-bottom: 1px solid #003c78;
  text-align: center;
  line-height: 1.75;
  padding: 10px 0;
  margin-bottom: 13px;
}

.p-lodging01__time li {
  display: inline-block;
  margin: 2px 5px;
}

.p-lodging01__time li strong {
  font-weight: 700;
  color: #003c78;
  margin-right: 5px;
}

.p-lodging01 .c-heading3 {
  margin-bottom: 85px;
}

.p-lodging01 .c-text {
  margin-right: 5px;
}

.p-lodging01 .l-btn {
  margin-top: 42px;
}

.p-lodging02 {
  padding: 200px 0 252px;
}

.p-lodging02 .c-heading1 {
  padding-top: 38px;
  margin-bottom: 46px;
}

.p-lodging02 .l-btn {
  margin-bottom: 18px;
}

.p-lodging02__block1 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin: 80px 0 0;
}

.p-lodging02__block1 .img {
  width: calc(50% - 30px);
  background: transparent no-repeat center;
}

.p-lodging02__block1 .img:after {
  content: "";
  display: block;
  padding-top: 380px;
}

.p-lodging02__block1 .content {
  width: 50%;
  margin-top: -10px;
}

.p-lodging02__block1 .content ul {
  background-color: #fff;
  line-height: 1.75;
}

.p-lodging02__block1 .content ul li {
  border-top: 1px solid #003c78;
  padding: 10px 20px 10px 30px;
}

.p-lodging02__block1 .content ul li:last-child {
  border-bottom: 1px solid #003c78;
}

.p-lodging02__block1 .content .c-heading2 {
  margin-bottom: 22px;
}

.p-lodging02__block1 .content .c-heading2:not(:first-child) {
  margin-top: 36px;
}

.p-lodging03 {
  padding: 38px 0 32px;
}

.p-lodging03 .c-heading1 {
  margin-bottom: 37px;
}

.p-lodging04 {
  padding: 218px 0 220px;
}

.p-lodging04 .c-heading1 {
  padding-top: 40px;
  margin-bottom: 45px;
}

.p-lodging04__desc {
  margin-bottom: 28px;
}

.p-lodging04__item {
  margin-bottom: 38px;
}

.p-lodging04__item .c-heading2 {
  margin-bottom: 22px;
}

.p-lodging04__item .note {
  margin-top: 12px;
  margin-left: 1em;
  text-indent: -1em;
}

.p-lodging04__item > .c-text {
  margin-top: -7px;
  margin-bottom: 26px;
}

.p-lodging05 {
  padding: 30px 0 3px;
}

.p-lodging05 .c-heading1 {
  margin-bottom: 48px;
}

@media only screen and (max-width: 739px) {
  .p-lodging01 .c-heading3 {
    margin-bottom: 60px;
    text-align: left;
  }
  .p-lodging01__time li {
    display: block;
  }
  .p-lodging01__time li strong {
    display: block;
    margin-right: 0;
  }
  .p-lodging02 {
    padding: 100px 0 120px;
    margin-top: 1em;
  }
  .p-lodging02__block1 {
    display: block;
  }
  .p-lodging02__block1 .img {
    width: 100%;
    margin-bottom: 30px;
  }
  .p-lodging02__block1 .img:after {
    padding-top: 66.67%;
  }
  .p-lodging02__block1 .content {
    width: 100%;
  }
  .p-lodging02__block1 .content .c-heading2 {
    text-align: center;
  }
  .p-lodging02__block1 .content ul li {
    padding: 6px 10px;
  }
  .p-lodging03 {
    padding-bottom: 0;
  }
  .p-lodging04 {
    padding: 80px 0 100px;
    margin: 0 0 3em;
  }
}

/* meal */
body.meal .l-header__item > a span.meal {
  background: url(./images/common/nav_meal_red.png) no-repeat top center;
}

.p-meal01 {
  padding: 50px 0 0;
}

.p-meal01 .c-heading3 {
  margin-bottom: 36px;
}

.p-meal01 .c-text {
  margin-right: 5px;
}

.p-meal01 .l-btn {
  margin-top: 41px;
}

.p-meal02 {
  margin-top: 30px;
  padding: 254px 0 210px;
}

.p-meal02 .c-heading1 {
  margin-bottom: 46px;
}

.p-meal02__item {
  margin-bottom: 105px;
}

.p-meal02__itemDesc {
  margin: 10px auto;
  max-width: 800px;
}

.p-meal02__itemDesc .c-heading2 {
  margin-bottom: 16px;
}

.p-meal02__itemAbout {
  margin: 40px auto;
  padding: 80px 80px 92px;
  max-width: 960px;
  background: #fff;
}

.p-meal02__itemAbout .l-supplement01 {
  margin: 43px auto 0;
  max-width: 750px;
}

.p-meal02__itemAbout .l-supplement01 .c-text2 {
  margin: 2em auto 0.9em;
}

.p-meal02__itemAbout .l-supplement02 {
  margin-top: 0;
}

.p-meal02__itemAbout .l-supplement02__text {
  margin-bottom: 1em;
  padding-left: 16px;
  max-width: 271px;
  gap: 12px;
}

.p-meal02__itemAbout .l-supplement02 .c-text1 {
  margin: 35px auto;
}

.p-meal02__pdf {
  margin: 100px auto 50px;
  max-width: 960px;
  text-align: center;
}

.p-meal02__pdf .c-heading2 {
  margin-bottom: 1em;
}

.p-meal02__pdf a {
  margin: 1em 2em;
  font-weight: bold;
}

.p-meal03 {
  padding: 168px 0 150px;
}

.p-meal03 .c-heading1 {
  margin-bottom: 41px;
}

.p-meal03 .c-menu {
  margin-top: 33px;
}

.p-meal03 .c-slider {
  margin-top: 80px;
}

.p-meal04 {
  padding: 250px 0 217px;
}

.p-meal04 .c-heading1 {
  margin-bottom: 42px;
}

.p-meal04 .c-text {
  margin-bottom: 24px;
}

.p-meal05 {
  padding: 38px 0 0px;
  margin-bottom: -38px;
}

.p-meal05 .c-heading1 {
  margin-bottom: 37px;
}

.p-meal05 .c-text1 {
  margin-bottom: 2em;
}

.p-meal05__desc {
  max-width: 800px;
  margin: 0 auto 27px;
}

@media all and (min-width: 960px), print {
  .p-meal02__itemDesc .c-text {
    text-align: center;
  }
  .p-meal03 .c-menu__title {
    padding: 0 55px;
  }
  .p-meal03 .c-menu__title::before {
    position: absolute;
    top: calc(50% - 1px);
    left: 0;
    width: 100%;
    height: 1px;
    content: '';
    background: #003C78;
  }
  .p-meal03 .c-menu__title span {
    position: relative;
    padding: 0 0.9em;
    background: #fff;
  }
}

@media all and (min-width: 740px), print {
  .p-meal02__item .c-gallery__img::after {
    padding-top: 50%;
  }
  .p-meal04 .c-gallery.--col2 .c-gallery__item {
    width: 47.5%;
  }
}

@media only screen and (max-width: 959px) {
  .p-meal01 .c-heading3 {
    text-align: left;
  }
  .p-meal01 .l-btn.--col2 .l-btn__item {
    width: 100%;
    margin-bottom: 15px;
  }
  .p-meal02 {
    padding: 140px 0;
  }
  .p-meal02__itemAbout {
    padding: 40px 20px;
  }
  .p-meal02__itemAbout .l-supplement02 {
    margin-top: 0;
  }
  .p-meal02__itemAbout .l-supplement02__text {
    max-width: 100%;
    padding-left: 0;
    text-align: center;
  }
  .p-meal02__itemAbout .c-number {
    font-size: 1rem;
  }
  .p-meal02__itemAbout .c-number__circle {
    font-size: 1.25rem;
    width: 40px;
    height: 40px;
  }
  .p-meal02__pdf .c-heading2 {
    font-size: 1.3125rem;
  }
  .p-meal02__pdf a {
    display: block;
  }
  .p-meal03 {
    padding: 80px 0;
  }
  .p-meal03 .c-text1.--center {
    text-align: center;
  }
  .p-meal03 .c-menu {
    margin-bottom: 5em;
  }
  .p-meal03 .c-slider {
    margin-bottom: 30px;
  }
  .p-meal03 .c-slider.--rtl {
    margin-top: 30px;
  }
  .p-meal04 {
    padding: 140px 0;
  }
  .p-meal04 .c-gallery.--col2 .c-gallery__item {
    width: 100%;
  }
}

/* news */
.p-news {
  padding: 60px 0 0;
}

.p-editor {
  padding: 60px 0 0;
}

.p-editor .c-news__day {
  width: 100%;
  text-align: left;
  margin-top: 1em;
}

/* onsen */
body.onsen .l-header__item > a span.onsen {
  background: url(./images/common/nav_onsen_red.png) no-repeat top center;
}

.p-onsen01 {
  padding: 49px 0 0;
}

.p-onsen01 .c-heading1 {
  margin-bottom: 44px;
}

.p-onsen01 .c-heading3 {
  margin-bottom: 37px;
}

.p-onsen01 .l-btn {
  margin-top: 131px;
}

.p-onsen01 .c-slider01 {
  margin-top: 41px;
}

.p-onsen02 {
  margin-top: 20px;
  padding: 255px 0 140px;
}

.p-onsen02__item {
  margin-bottom: 120px;
}

.p-onsen02__item .c-heading1 {
  margin-bottom: 53px;
}

.p-onsen02__itemImg {
  margin-top: 5px;
}

.p-onsen02__itemDesc {
  margin: 12px auto 40px;
  max-width: 960px;
}

.p-onsen02__itemDesc .c-text2 {
  margin-bottom: 4px;
}

.p-onsen02__itemDesc .c-heading2 {
  margin-bottom: 8px;
}

.p-onsen02__itemAbout {
  margin: 40px auto;
  padding: 80px;
  max-width: 960px;
  background: #fff;
}

.p-onsen02__itemAbout .l-supplement01 {
  margin-top: 0;
}

.p-onsen02__itemBtn {
  text-align: center;
}

.p-onsen02__item.--first .c-heading1 span {
  margin-bottom: -4px;
}

.p-onsen02 .c-gallery.--col2 .c-gallery__item {
  width: 47.5%;
}

.p-onsen02__brand {
  background-color: #fff;
  text-align: center;
  margin: 95px 0 0;
  padding: 70px 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
}

.p-onsen02__brand__item {
  max-width: 480px;
  width: 50%;
  justify-items: center;
}

.p-onsen02__brand__item img {
  margin-bottom: 1em;
}

.p-onsen02__brand__item .c-text {
  text-align: left;
}

.p-onsen03 {
  padding: 43px 0 30px;
}

.p-onsen03 .c-heading1 {
  margin-bottom: 43px;
}

.p-onsen03__service {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: 37px;
  margin-bottom: 46px;
}

.p-onsen03__service .item .txt {
  font-weight: 700;
  text-align: center;
  margin-top: 17px;
  padding: 0 6px;
}

.p-onsen03__service .item .img {
  display: block;
  line-height: 0;
  text-align: center;
}

.p-onsen04 {
  padding: 267px 0 220px;
  margin-bottom: 34px;
}

.p-onsen04 .c-heading1 {
  margin-bottom: 42px;
}

.p-onsen04__desc {
  margin-bottom: 26px;
}

.p-onsen04__item {
  margin-bottom: 38px;
}

.p-onsen04__item .c-heading2 {
  margin-bottom: 6px;
}

.p-onsen04__item .c-text2 {
  margin-bottom: 13px;
}

.p-onsen04__item .c-table01 {
  margin-bottom: 14px;
}

.p-onsen04__item.--third {
  margin-top: -8px;
}

.p-onsen04__item.--third .c-heading2 {
  margin-bottom: 20px;
}

.p-onsen05 {
  margin-bottom: 150px;
}

.p-onsen05 .c-heading1 {
  margin-bottom: 56px;
}

@media all and (min-width: 960px), print {
  .p-onsen02__itemImg .c-gallery__img::after {
    padding-top: 41.5%;
  }
}

@media only screen and (max-width: 739px) {
  .p-onsen01 .c-heading3 {
    text-align: left;
  }
  .p-onsen02 {
    margin-top: 50px;
    padding: 140px 0 100px;
  }
  .p-onsen02__item {
    margin-bottom: 0;
  }
  .p-onsen02__itemAbout {
    padding: 40px 20px;
  }
  .p-onsen02 .c-gallery.--col2 .c-gallery__item {
    width: 100%;
  }
  .p-onsen02__brand {
    padding: 50px 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 30px;
  }
  .p-onsen02__brand__item {
    width: 100%;
  }
  .p-onsen03__service {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .p-onsen03__service .item {
    width: 100%;
    margin-bottom: 20px;
  }
  .p-onsen04 {
    padding: 140px 0 100px;
    margin-bottom: 80px;
  }
}

/* sightseeing */
body.sightseeing .l-header__item > a span.sightseeing {
  background: url(./images/common/nav_sightseeing_red.png) no-repeat top center;
}

.p-sightseeingMap {
  margin-top: 3.6em;
  text-align: center;
}

.p-sightseeingMap iframe {
  margin: 43px auto 91px;
  width: 100%;
}

.p-sightseeingMap .l-btn {
  max-width: 880px;
  margin: 0 auto;
}

.p-sightseeingCourse {
  margin: 30px auto -45px;
  padding: 260px 20px 216px;
}

.p-sightseeingCourse .c-heading1 {
  margin-bottom: 42px;
}

.p-sightseeingCourse .c-heading2 {
  margin-bottom: 37px;
}

.p-sightseeingCourse__inner {
  text-align: center;
  width: 100%;
  max-width: 1200px;
  background: #fff;
  margin: 5em auto 100px;
  padding: 5em 20px 53px;
}

.p-sightseeingCourse__inner .c-text1 {
  margin-bottom: 0;
  line-height: 1.75;
}

.p-sightseeingCourse__desc {
  margin-bottom: 32px;
}

.p-sightseeingCourse__flex {
  margin: 33px auto 16px;
  width: 100%;
  max-width: 960px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.p-sightseeingCourse__flexItem1 {
  width: 50%;
  max-width: 450px;
}

.p-sightseeingCourse__flexItem1 img {
  width: 100%;
}

.p-sightseeingCourse__flexItem2 {
  width: 46.8%;
  margin-bottom: 3px;
}

.p-sightseeingCourse__flexItem2 .c-text1 {
  text-align: left;
}

.p-sightseeingCourse__flexItem2 a {
  color: #003C78;
}

.p-sightseeingCourse__flexItem2.--item2 {
  margin-bottom: 20px;
}

.p-sightseeingCourse__flexItem2.--item3 {
  margin-top: -6px;
  margin-bottom: -6px;
}

.p-sightseeingCourse__flexItem2.--five {
  margin-bottom: 25px;
}

.p-sightseeingCourse__flexTtl {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 15px;
  margin-top: 0;
  margin-bottom: 20px;
}

.p-sightseeingCourse__flexTtl .c-heading4 {
  font-family: "source-han-serif-japanese", serif;
  color: #003C78;
  margin-bottom: 10px;
}

.p-sightseeingCourse__flex.--focus {
  background-color: #f8f9ff;
  max-width: 1060px;
  padding: 50px 50px 41px;
  margin-bottom: 41px;
}

.p-sightseeingCourse__flex.--focus .p-sightseeingCourse__flexTtl {
  position: relative;
  padding-top: 50px;
}

.p-sightseeingCourse__flex.--focus .p-sightseeingCourse__flexTtl::before {
  content: "";
  position: absolute;
  top: 5px;
  left: -5px;
  width: 140px;
  height: 45px;
  background-image: url(./images/sightseeing/txt_enjoy.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.p-sightseeingCourse__flex.--focus .--parent::before {
  width: 235px;
  height: 45px;
  background-image: url(./images/sightseeing/txt_parent.png);
}

.p-sightseeingCourse__flex.--focus .--adult::before {
  width: 160px;
  height: 45px;
  background-image: url(./images/sightseeing/txt_adult.png);
}

.p-sightseeingCourse__line {
  padding: 32px 0 33px;
  color: #C82310;
  font-weight: bold;
  position: relative;
  line-height: 1.5;
}

.p-sightseeingCourse__line.--my1 {
  margin-top: -18px;
  margin-bottom: -9px;
}

.p-sightseeingCourse__line.--my2 {
  margin-bottom: -13px;
}

.p-sightseeingCourse__line::before, .p-sightseeingCourse__line::after {
  content: "";
  width: 5px;
  height: 25px;
  background-image: url(./images/common/icon_dot.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.p-sightseeingCourse__line::after {
  top: auto;
  bottom: 0;
}

.p-sightseeingCourse__line span {
  position: relative;
  padding-left: 30px;
}

.p-sightseeingCourse__line span::before {
  content: "";
  width: 16px;
  height: 28px;
  background-image: url(./images/common/icon_walk.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: -0;
}

.p-sightseeingCourse__line span.--car {
  padding-left: 52px;
}

.p-sightseeingCourse__line span.--car::before {
  width: 42px;
  background-image: url(./images/common/icon_car.png);
}

.p-sightseeingCourse__line span.--train {
  padding-left: 35px;
}

.p-sightseeingCourse__line span.--train::before {
  width: 28px;
  background-image: url(./images/common/icon_train.png);
}

.p-sightseeingCourse__line.--block1 span {
  margin-right: 27px;
}

.p-sightseeingCourse__line.--block1 span.--train {
  padding-left: 36px;
  margin-right: 37px;
}

@media only screen and (max-width: 959px) {
  .p-sightseeingMap iframe {
    height: 300px;
    margin-bottom: 60px;
  }
  .p-sightseeingMap .l-btn {
    display: block;
  }
  .p-sightseeingMap .l-btn__item {
    width: 100% !important;
  }
  .p-sightseeingCourse {
    margin: 80px auto -45px;
    padding: 50px 20px 100px;
  }
  .p-sightseeingCourse .c-heading1 {
    margin-bottom: 30px;
  }
  .p-sightseeingCourse .c-heading2 {
    margin-bottom: 20px;
  }
  .p-sightseeingCourse__flex {
    display: block;
    margin: 24px auto 0px;
  }
  .p-sightseeingCourse__flexItem1 {
    width: 100%;
    margin: 0 auto 20px;
    margin-bottom: 18px;
  }
  .p-sightseeingCourse__flexItem2 {
    width: 100%;
  }
  .p-sightseeingCourse__flexTtl {
    text-align: left;
  }
  .p-sightseeingCourse__flexTtl .c-number__circle {
    width: 36px;
    height: 36px;
    font-size: 1.25rem;
  }
  .p-sightseeingCourse__flex.--focus {
    background-color: #f8f9ff;
    max-width: 1060px;
    padding: 20px;
  }
  .p-sightseeingCourse__inner {
    padding: 3em 16px 30px;
  }
  .p-sightseeingCourse__desc {
    margin-bottom: 10px;
  }
  .p-sightseeingCourse__line {
    margin: 15px 0 10px;
  }
}

/* js */
/* js */
.js-fade__trigger {
  opacity: 0;
}

.js-fade__trigger.js-fadein.--fadeup {
  -webkit-animation: fadeup 0.4s cubic-bezier(0.39, 0.575, 0.565, 1) 0s forwards;
  animation: fadeup 0.4s cubic-bezier(0.39, 0.575, 0.565, 1) 0s forwards;
}

.js-fade__trigger.js-fadein.--fadeleft {
  -webkit-animation: fadeleft 0.4s cubic-bezier(0.39, 0.575, 0.565, 1) 0s forwards;
  animation: fadeleft 0.4s cubic-bezier(0.39, 0.575, 0.565, 1) 0s forwards;
}

.js-fade__trigger.js-fadein.--faderight {
  -webkit-animation: faderight 0.4s cubic-bezier(0.39, 0.575, 0.565, 1) 0s forwards;
  animation: faderight 0.4s cubic-bezier(0.39, 0.575, 0.565, 1) 0s forwards;
}

.js-fade__delaytrigger > * {
  opacity: 0;
}

.js-fade__delaytrigger > *.js-fadein.--fadeup {
  -webkit-animation: fadeup 0.4s cubic-bezier(0.39, 0.575, 0.565, 1) forwards;
  animation: fadeup 0.4s cubic-bezier(0.39, 0.575, 0.565, 1) forwards;
}

.js-fade__delaytrigger > *.js-fadein.--fadeleft {
  -webkit-animation: fadeleft 0.4s cubic-bezier(0.39, 0.575, 0.565, 1) forwards;
  animation: fadeleft 0.4s cubic-bezier(0.39, 0.575, 0.565, 1) forwards;
}

.js-fade__delaytrigger > *.js-fadein.--faderight {
  -webkit-animation: faderight 0.4s cubic-bezier(0.39, 0.575, 0.565, 1) forwards;
  animation: faderight 0.4s cubic-bezier(0.39, 0.575, 0.565, 1) forwards;
}

/* keyframes */
@-webkit-keyframes fadeup {
  0% {
    opacity: 0;
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  40%, 100% {
    opacity: 1;
  }
}
@keyframes fadeup {
  0% {
    opacity: 0;
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  40%, 100% {
    opacity: 1;
  }
}

@-webkit-keyframes fadeleft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-30px);
    transform: translateX(-30px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  40%, 100% {
    opacity: 1;
  }
}

@keyframes fadeleft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-30px);
    transform: translateX(-30px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  40%, 100% {
    opacity: 1;
  }
}

@-webkit-keyframes faderight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  40%, 100% {
    opacity: 1;
  }
}

@keyframes faderight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  40%, 100% {
    opacity: 1;
  }
}

/* utility */
.u-center {
  text-align: center;
}

.--center {
  text-align: center;
}

.u-bg {
  background: #003C78;
  color: #fff;
}

.u-red {
  color: #C82310;
}

.u-bbottom {
  border-bottom: 1px solid #fff;
}

.u-right {
  border-right: 1px solid #fff;
}

.u-bbottom1 {
  border-bottom: 1px solid #003C78;
}

.u-right1 {
  border-right: 1px solid #003C78;
}

/* display */
@media all and (min-width: 960px), print {
  .u-only__sp {
    display: none !important;
  }
}

@media only screen and (max-width: 959px) {
  .u-only__pc {
    display: none !important;
  }
}

.l-content.u-padding {
  padding-top: 120px;
}

@media only screen and (max-width: 959px) {
  .l-content.u-padding {
    padding-top: 80px;
  }
}

.l-footer.u-margin {
  margin-top: 190px;
}

@media only screen and (max-width: 959px) {
  .l-footer.u-margin {
    margin-top: 140px;
  }
}

.l-footer.u-margin1 {
  margin-top: 161px;
}

@media only screen and (max-width: 959px) {
  .l-footer.u-margin1 {
    margin-top: 110px;
  }
}

.u-flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.u-flex1 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media all and (min-width: 960px), print {
  .u-flex.--col2 .u-flex__item {
    width: calc(50% - 20px);
    gap: 20px;
  }
  .u-flex.--col3 .u-flex__item {
    width: calc(33% - 20px);
    gap: 20px;
  }
}

@media only screen and (max-width: 959px) {
  .u-flex {
    display: block;
  }
}

/* hover */
.u-hover-opacity {
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  opacity: 1;
}

.u-hover-opacity:hover {
  opacity: 0.7;
}

.u-bold {
  font-weight: 700;
}

.u-asterisk {
  margin-left: 1em;
  text-indent: -1em;
  display: block;
}
