@charset "UTF-8";
* {
  box-sizing: border-box;
}

:root,
html {
  font-size: 100%;
}

body {
  color: #01352A;
  font-weight: 400;
  line-height: 1.5;
  font-feature-settings: "palt";
  min-height: 100vh;
  /* Fallback */
  min-height: calc(var(--vh, 1vh) * 100);
  font-family: "Shippori Mincho", serif;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
}

img,
video {
  max-width: 100%;
  width: 100%;
  height: auto;
}

img[src$="_sp.jpg"], img[src$="_sp.png"], img[src$="_sp.svg"] {
  display: none;
}
@media screen and (max-width: 768px) {
  img[src$="_sp.jpg"], img[src$="_sp.png"], img[src$="_sp.svg"] {
    display: inline-block;
  }
  img[src$="_sp.jpg"] + img, img[src$="_sp.png"] + img, img[src$="_sp.svg"] + img {
    display: none;
  }
}

a[href^="tel:"] {
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  a[href^="tel:"] {
    pointer-events: initial;
  }
}

.flex {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.pr {
  position: relative;
}

.pa {
  position: absolute;
}

em {
  font-style: normal;
}

/*//////////////////////////////////////////
//  共通設定
//////////////////////////////////////////*/
[class$=__inner] {
  max-width: 75.25rem;
  width: 100%;
  margin: 0 auto;
  padding: 0 2.5rem;
}
@media screen and (max-width: 768px) {
  [class$=__inner] {
    padding: 0 1rem;
  }
}

.picture {
  display: block;
}

.flex {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.mincho {
  font-family: "Noto Serif JP", serif;
}

.pr {
  position: relative;
}

.pa {
  position: absolute;
}

.sp {
  display: none;
}

@media screen and (max-width: 768px) {
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
  br.sp {
    display: inline;
  }
}
.no-link {
  pointer-events: none;
}

/*セレクトボックスの設定(全ブラウザ共通にするため)
//設定やアイコンは用途に合わせて書き換え*/
select::-ms-expand {
  display: none;
}

label {
  font-size: 0.9375rem;
}

.select-box {
  position: relative;
  display: block;
  padding: 0;
  max-width: 4.375rem;
  width: 100%;
  height: 2.375rem;
}
.select-box:after {
  content: "";
  position: absolute;
  width: 9px;
  height: 8px;
  top: 50%;
  transform: translateY(-50%);
  right: 1em;
  z-index: 2;
  background: url("../images/arrow-select.svg") 0 0 no-repeat;
  pointer-events: none;
}
.select-box select {
  display: block;
  width: 100%;
  height: 2.375rem;
  padding-left: 1.5em;
  margin: 0;
  border: 1px solid #ccc;
  background: #fff;
  border-radius: 0.3125rem;
  outline: none;
  box-sizing: border-box;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  line-height: 1;
}

/*//////////////////////////////////////////
//  drawer
//////////////////////////////////////////*/
.drawer.drawer--right .drawer-hamburger {
  width: 2rem;
  height: 1rem;
  right: 1.0625rem;
  top: 1.1875rem;
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 100;
  padding: 0;
}
@media screen and (max-width: 1200px) {
  .drawer.drawer--right .drawer-hamburger {
    display: flex;
  }
}
@media screen and (max-width: 768px) {
  .drawer.drawer--right .drawer-hamburger {
    top: 1.1875rem;
  }
}
.drawer.drawer--right .drawer-hamburger-text {
  font-size: 0.625rem;
  font-weight: 700;
  color: #01352a;
  font-family: "Shippori Mincho", serif;
  position: absolute;
  bottom: -1.125rem;
  left: 0;
}
.drawer.drawer--right.drawer-open .drawer-hamburger {
  right: 1.0625rem;
  top: 1.1875rem;
}
.drawer.drawer--right .drawer-nav {
  right: -100vw;
  z-index: 99;
  width: 100vw;
  height: 100vh;
  background: #fff;
  overflow: scroll;
  top: 6.5rem;
  padding: 4rem 2rem;
}
.drawer.drawer--right .drawer-nav .c-btn:after {
  background-image: url(../images/common/arrow-right-white.svg);
}
.drawer.drawer--right .drawer-nav .c-btn.contact {
  background: #800f0f;
}
.drawer.drawer--right .drawer-nav .c-btn.member {
  background: #337820;
}
.drawer.drawer--right .drawer-nav .c-btn.visitor {
  background: #977e43;
}
.drawer.drawer--right .drawer-nav .c-btn.mypage {
  background: #337820;
}
.drawer.drawer--right .drawer-nav .c-btn.line {
  background: #06c755;
}
.drawer.drawer--right .drawer-nav .drawer-menu {
  margin-top: 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  border-bottom: 0.0625rem solid #01352a;
  padding-bottom: 2.625rem;
  margin-bottom: 2.625rem;
}
.drawer.drawer--right .drawer-nav .drawer-menu li {
  text-align: center;
}
.drawer.drawer--right .drawer-nav .contact-nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  justify-content: center;
  align-items: center;
  border-bottom: 0.0625rem solid #01352a;
  padding-bottom: 10rem;
  margin-top: 2.625rem;
}
.drawer.drawer--right .drawer-nav .contact-nav li {
  text-align: center;
}
.drawer.drawer--right .drawer-nav .contact-nav .btn-contact {
  margin-top: 1.5rem;
}
.drawer.drawer--right .drawer-nav .contact-nav .contact-num {
  font-size: 2rem;
  text-align: center;
  color: #01352a;
}
.drawer.drawer--right .drawer-nav .contact-nav .sp-fnav {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.drawer.drawer--right .drawer-nav .reserve-nav {
  border-bottom: 0.0625rem solid #01352a;
  padding-bottom: 2.625rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
.drawer.drawer--right .drawer-nav .reserve-nav li {
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
}
.drawer.drawer--right .drawer-overlay {
  z-index: 98;
  background-color: rgba(0, 0, 0, 0.5);
}
.drawer.drawer--right .drawer-hamburger-icon {
  background-color: #01352a;
  margin-top: 0;
  width: 100%;
}
.drawer.drawer--right .drawer-hamburger-icon,
.drawer.drawer--right .drawer-hamburger-icon:after,
.drawer.drawer--right .drawer-hamburger-icon:before {
  height: 0.125rem;
  background-color: #01352a;
  border-radius: 1.25rem;
}
.drawer.drawer--right .drawer-hamburger-icon:before {
  width: 100%;
  top: -0.5rem;
}
.drawer.drawer--right .drawer-hamburger-icon:after {
  top: 0.5rem;
  width: 100%;
}
.drawer.drawer--right.drawer-open .drawer-nav {
  right: 0;
}
.drawer.drawer--right.drawer-open .drawer-hamburger-icon {
  background-color: transparent;
}
.drawer.drawer--right.drawer-open .drawer-hamburger-icon:before {
  top: 0;
  background: #01352a;
}
.drawer.drawer--right.drawer-open .drawer-hamburger-icon:after {
  top: 0;
  background: #01352a;
}
.drawer.drawer--right .drawer-dropdown .drawer-caret {
  display: inline-block;
  width: 1em;
  height: 1em;
  margin-left: 0;
  transition: transform 0.2s ease, opacity 0.2s ease;
  transform: rotate(0deg);
  vertical-align: middle;
  border-top: none;
  border-right: none;
  border-left: none;
  float: right;
}
.drawer.drawer--right .drawer-dropdown.open .drawer-caret {
  transform: rotate(90deg);
}
.drawer.drawer--right ion-icon {
  --ionicon-stroke-width: 16px;
  color: #474747;
}
.drawer.drawer--right .dr-link,
.drawer.drawer--right .drawer-dropdown-menu-item {
  background: #eeeeee;
}
.drawer.drawer--right .dr-link {
  font-size: 0.18rem;
  padding: 0.8em 0 0.8em 0.75rem;
}
.drawer.drawer--right .drawer-dropdown-menu-item {
  font-size: 0.18rem;
  margin: 0.1em 0;
  padding-left: 1.5em;
  font-weight: normal;
  color: #474747;
}
.drawer.drawer--right .drawer-dropdown-menu li a {
  padding-top: 0.3em !important;
  padding-bottom: 0.3em !important;
}

/*//////////////////////////////////////////
//  slick上書き
//////////////////////////////////////////*/
/* Arrows */
.slick-prev,
.slick-next {
  height: 3.75rem;
  width: 3.75rem;
  line-height: 0;
  font-size: 0;
  background: #fff;
  border-radius: 50%;
  z-index: 10;
  border: 0.1875rem solid #000;
}
@media screen and (max-width: 768px) {
  .slick-prev,
  .slick-next {
    width: 3.75rem;
    height: 3.75rem;
    border: 0.1875rem solid #000;
  }
}
.slick-prev:hover, .slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  outline: none;
  background: #fff;
  color: transparent;
}
.slick-prev:before,
.slick-next:before {
  content: "";
}

.slick-prev {
  left: 22%;
}
@media screen and (max-width: 768px) {
  .slick-prev {
    left: 1.5%;
  }
}
.slick-prev:before {
  display: inline-block;
  width: 0.9375rem;
  height: 0.9375rem;
  border-bottom: none;
  border-right: none;
  margin-left: 0;
}
@media screen and (max-width: 768px) {
  .slick-prev:before {
    width: 0.9375rem;
    height: 0.9375rem;
    border-bottom: none;
    border-right: none;
    margin-left: 0;
  }
}

.slick-next {
  right: 22%;
}
@media screen and (max-width: 768px) {
  .slick-next {
    right: 1.5%;
  }
}
.slick-next:before {
  display: inline-block;
  width: 0.9375rem;
  height: 0.9375rem;
  border-bottom: none;
  border-right: none;
  margin-right: 0;
}
@media screen and (max-width: 768px) {
  .slick-next:before {
    width: 0.9375rem;
    height: 0.9375rem;
    border-bottom: none;
    border-right: none;
    margin-right: 0;
  }
}

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 0rem;
}

.slick-dots {
  position: absolute;
  bottom: -1.875rem;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .slick-dots {
    bottom: -1.5625rem;
  }
}
.slick-dots li {
  position: relative;
  display: inline-block;
  height: 0.9375rem;
  width: 0.9375rem;
  margin: 0 0.3125rem;
  padding: 0;
}
@media screen and (max-width: 768px) {
  .slick-dots li {
    height: 0.9375rem;
    width: 0.9375rem;
  }
}
.slick-dots li {
  cursor: pointer;
}
.slick-dots li button {
  border: 0;
  background: transparent;
  display: block;
  height: 0.9375rem;
  width: 0.9375rem;
  outline: none;
  line-height: 0px;
  font-size: 0px;
  color: transparent;
  padding: 5px;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .slick-dots li button {
    height: 0.9375rem;
    width: 0.9375rem;
  }
}
.slick-dots li button:before {
  content: "";
  background: #9a9a9a;
  position: absolute;
  border-radius: 50%;
  top: 0;
  left: 0;
  width: 0.9375rem;
  height: 0.9375rem;
  line-height: 0.9375rem;
  text-align: center;
  opacity: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media screen and (max-width: 768px) {
  .slick-dots li button:before {
    height: 0.9375rem;
    width: 0.9375rem;
  }
}
.slick-dots li button:hover, .slick-dots li button:focus {
  outline: none;
}
.slick-dots li.slick-active button:before {
  background: #000;
}

/* ==========================================================================
   c-logo
   ========================================================================== */
/* ==========================================================================
   c-global-nav
   ========================================================================== */
/* ==========================================================================
   c-booking-list
   ========================================================================== */
/* ==========================================================================
   c-logo
   ========================================================================== */
/* ==========================================================================
   c-global-nav
   ========================================================================== */
.c-global-nav__list {
  gap: 2rem;
  align-items: center;
}
/* ==========================================================================
   c-booking-list
   ========================================================================== */
/* ==========================================================================
   c-btn
   ========================================================================== */
.c-btn--more {
  width: 17.3125rem;
  height: 2.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #01352a;
  color: #fff;
  font-size: 1.125rem;
  border-radius: 3.125rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .c-btn--more {
    width: 15.1875rem;
  }
}
.c-btn--more:after {
  content: "";
  display: inline-block;
  width: 1rem;
  height: 1rem;
  position: absolute;
  right: 1.125rem;
  top: 0;
  bottom: 0;
  margin: auto 0;
  background-image: url("../images/common/external-link.svg");
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
}

/* ==========================================================================
   c-sec-title
   ========================================================================== */
.c-sec-title__sub {
  font-size: 4rem;
  color: #01352a;
  font-weight: 400;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .c-sec-title__sub {
    font-size: 3rem;
  }
}
.c-sec-title__main {
  font-size: 1.125rem;
  line-height: 1;
  font-weight: 400;
  margin-top: 1.5rem;
  color: #01352a;
  display: flex;
  align-items: center;
  gap: 1rem;
}
@media screen and (max-width: 768px) {
  .c-sec-title__main {
    font-size: 1.25rem;
    margin-top: 1rem;
  }
}
.c-sec-title__main:before {
  content: "";
  display: inline-block;
  width: 0.9375rem;
  height: 0.0625rem;
  background: #01352a;
}

.c-top-sec-intro__text {
  font-size: 1.125rem;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .c-top-sec-intro__text {
    font-size: 1.125rem;
    line-height: 2;
  }
}

/* ==========================================================================
   c-side
   ========================================================================== */
.c-side__banner {
  position: fixed;
  right: 0;
  top: 6.125rem;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 0.8125rem;
  width: 3.625rem;
}
@media screen and (max-width: 768px) {
  .c-side__banner {
    flex-direction: row;
    gap: 0;
    width: 100%;
    top: initial;
    bottom: 0;
    right: initial;
    left: 0;
  }
}
@media screen and (max-width: 768px) {
  .c-side__banner__item {
    width: 50%;
  }
}
.c-side__banner__link {
  padding-top: 0.25rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.25rem;
  width: 3.625rem;
  height: 15.625rem;
  border-radius: 0.3125rem 0 0 0.3125rem;
}
@media screen and (max-width: 768px) {
  .c-side__banner__link {
    border-radius: 0;
    height: 2.5rem;
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
    padding-top: 0;
    padding-left: 0.8125rem;
    padding-right: 0.8125rem;
  }
}
.c-side__banner__link {
  border-top: 0.125rem solid #fff;
  border-bottom: 0.125rem solid #fff;
  border-left: 0.125rem solid #fff;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.27);
}
@media screen and (max-width: 768px) {
  .c-side__banner__link {
    border: none;
    box-shadow: none;
  }
}
.c-side__banner__link::after {
  content: "";
  display: inline-block;
  width: 2.9375rem;
  height: 2.1875rem;
}
@media screen and (max-width: 768px) {
  .c-side__banner__link::after {
    width: 1.5rem;
  }
}
.c-side__banner__link::after {
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
}
.c-side__banner__link.member {
  background: linear-gradient(to bottom, #01352a 0, #066e2f 100%);
}
@media screen and (max-width: 768px) {
  .c-side__banner__link.member {
    padding-right: 0.25rem;
  }
}
.c-side__banner__link.member::after {
  background-image: url("../images/common/icon-logo@2x.png");
}
@media screen and (max-width: 768px) {
  .c-side__banner__link.member::after {
    width: 2.125rem;
  }
}
.c-side__banner__link.weather {
  background: linear-gradient(to bottom, #052c90 0, #02a1e3 100%);
}
.c-side__banner__link.weather::after {
  background-image: url("../images/common/icon-weather@2x.png");
}
.c-side__banner__text {
  writing-mode: vertical-rl;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 0.25rem;
}
@media screen and (max-width: 768px) {
  .c-side__banner__text {
    writing-mode: horizontal-tb;
  }
}
.c-side__banner__text__sub {
  color: #fff;
  font-size: 0.8125rem;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .c-side__banner__text__sub {
    font-size: 0.5rem;
  }
}
.c-side__banner__text__main {
  color: #fff;
  font-size: 1.375rem;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .c-side__banner__text__main {
    font-size: 0.875rem;
  }
}

/* ========================================================================== */
/* .course-guide */
/* ========================================================================== */
.course-guide {
  padding: 5.625rem 0 0;
}
@media screen and (max-width: 768px) {
  .course-guide {
    padding: 3.75rem 0;
  }
}
.course-guide .sec-ttl span:before {
  display: inline-block;
  margin-right: 1.5rem;
  content: "03";
}
@media screen and (max-width: 1200px) and (min-width: 768px) {
  .course-guide .c-btn {
    max-width: 20rem;
    width: 100%;
    font-size: 1.5vw;
  }
  .course-guide .c-btn:after {
    right: 1.6666666667vw;
  }
}
.course-guide__head .c-top-sec-intro__text {
  margin-top: 1rem;
}
.course-guide__list {
  gap: 2.375rem;
  margin-top: 2.5rem;
}
@media screen and (max-width: 768px) {
  .course-guide__list {
    gap: 2.5rem;
    margin-top: 1.25rem;
  }
}
.course-guide__item {
  width: calc((100% - 4.75rem) / 3);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media screen and (max-width: 768px) {
  .course-guide__item {
    width: 100%;
  }
}
.course-guide__link {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.course-guide__info {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.course-guide__item-tag {
  font-size: 1.125rem;
  font-weight: 400;
  text-align: center;
  color: #01352a;
}
.course-guide__item-title {
  font-size: 1.875rem;
  color: #01352a;
  font-weight: 400;
  text-align: center;
}
.course-guide__item-info {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  gap: 0.8125rem;
}
.course-guide__item-info-row {
  display: flex;
}
.course-guide__item-info-row:nth-child(1) {
  padding-right: 1rem;
}
@media screen and (max-width: 1200px) and (min-width: 768px) {
  .course-guide__item-info-row:nth-child(1) {
    padding-right: 1.3333333333vw;
  }
}
.course-guide__item-info-label {
  color: #01352a;
  font-size: 0.9375rem;
  line-height: 1;
}
@media screen and (max-width: 1200px) and (min-width: 768px) {
  .course-guide__item-info-label {
    font-size: 1.1666666667vw;
  }
}
.course-guide__item-info-value {
  color: #01352a;
  font-size: 1.5rem;
  line-height: 1;
}
@media screen and (max-width: 1200px) and (min-width: 768px) {
  .course-guide__item-info-value {
    font-size: 2vw;
  }
}
.course-guide__item-info-value:before {
  content: "/";
}
.course-guide__item-text {
  font-size: 1.125rem;
  font-weight: 400;
  color: #01352a;
  margin-top: 1.5rem;
  margin-bottom: 2rem;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .course-guide__item-text {
    font-size: 1.125rem;
  }
}
.course-guide .c-btn {
  margin-top: auto;
  margin-left: auto;
  margin-right: auto;
}

/* ==========================================================================
   Utility
   ========================================================================== */
.u-flex {
  display: flex;
  flex-wrap: wrap;
}

/* ==========================================================================
   Layout
   ========================================================================== */
.l-header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 99;
}
.l-header__inner {
  padding-left: 1.5625rem;
  justify-content: space-between;
  height: 5rem;
  background: #ffffff;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .l-header__inner {
    padding-left: 1rem;
    height: 4rem;
    position: relative;
  }
}
.l-header__logo {
  width: 17.9375rem;
}
@media screen and (max-width: 768px) {
  .l-header__logo {
    width: 13.625rem;
  }
}
.l-header__logo img {
  height: auto;
}
.l-header__nav-area {
  align-items: center;
  gap: 2.9375rem;
}
@media screen and (max-width: 1200px) {
  .l-header__nav {
    display: none;
  }
}
.l-header__nav .c-global-nav__item {
  font-size: 0.9375rem;
  text-align: center;
}
@media screen and (max-width: 1200px) {
  .l-header__booking-area {
    margin-right: 5rem;
  }
}
@media screen and (max-width: 768px) {
  .l-header__booking-area {
    margin-right: 0;
    position: absolute;
    bottom: -2.5rem;
    left: 0;
    width: 100%;
    z-index: 2;
  }
}
@media screen and (max-width: 768px) {
  .l-header__booking-area .c-booking-list__item {
    width: 50%;
  }
}
.l-header__booking-area .c-booking-list__item .c-btn__sub {
  font-size: 0.875rem;
}
@media screen and (max-width: 768px) {
  .l-header__booking-area .c-booking-list__item .c-btn__sub {
    font-size: 0.875rem;
  }
}
.l-header__booking-area .c-booking-list__item .c-btn__main {
  font-size: 1.375rem;
}
@media screen and (max-width: 768px) {
  .l-header__booking-area .c-booking-list__item .c-btn__main {
    font-size: 0.875rem;
  }
}
.l-header__booking-area .c-booking-list__item .c-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 8.75rem;
  height: 5rem;
  color: #fff;
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  .l-header__booking-area .c-booking-list__item .c-btn {
    width: 100%;
    height: 2.5rem;
    flex-direction: row;
  }
}
.l-header__booking-area .c-booking-list__item--member .c-btn {
  background: #01352a;
}
.l-header__booking-area .c-booking-list__item--visitor .c-btn {
  background: #977e43;
  flex-direction: row;
  gap: 0.5rem;
}
.l-header__booking-area .c-booking-list__item--visitor .c-btn:before {
  content: "";
  display: inline-block;
  width: 3.25rem;
  height: 4.1875rem;
  background-image: url("../images/common/icon-rate@2x.png");
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 768px) {
  .l-header__booking-area .c-booking-list__item--visitor .c-btn:before {
    width: 1.5rem;
    height: 1.9325rem;
  }
}
.l-header__booking-area .c-booking-list__item--visitor .c-btn__wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .l-header__booking-area .c-booking-list__item--visitor .c-btn__wrap {
    flex-direction: row;
    gap: 0;
  }
}

/* ==========================================================================
   c-footer
   ========================================================================== */
.c-footer-imgarea {
  width: 100%;
  height: 31.25rem;
}
@media screen and (max-width: 768px) {
  .c-footer-imgarea {
    height: 23.4375rem;
  }
}
.c-footer-imgarea img {
  width: 100%;
  height: 31.25rem;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 768px) {
  .c-footer-imgarea img {
    height: 23.4375rem;
  }
}
.c-footer-contents {
  background: #01352a;
}
.c-footer-contents__inner {
  padding-top: 3.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  justify-content: space-between;
  padding-bottom: 3.125rem;
}
@media screen and (max-width: 1200px) {
  .c-footer-contents__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding-bottom: 2.5rem;
    padding-top: 4rem;
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.c-footer-contents__head {
  padding-right: 4.125rem;
  border-right: 0.0625rem solid #555555;
}
@media screen and (max-width: 1200px) {
  .c-footer-contents__head {
    border-right: none;
    padding-right: 0;
    border-bottom: 0.0625rem solid #555555;
    padding-bottom: 2.5rem;
    max-width: 37.5rem;
    width: 100%;
    margin: 0 auto;
  }
}
.c-footer-contents__head__logo {
  display: block;
  width: 21.5625rem;
}
@media screen and (max-width: 768px) {
  .c-footer-contents__head__logo {
    width: 13.625rem;
  }
}
.c-footer-contents__head__list {
  display: flex;
  flex-direction: column;
  color: #fff;
  font-size: 0.9375rem;
  line-height: 1.8;
  margin-top: 1.375rem;
}
@media screen and (max-width: 768px) {
  .c-footer-contents__head__list {
    font-size: 0.875rem;
    margin-top: 1rem;
  }
}
.c-footer-contents__head__link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.c-footer-contents__head__link:after {
  content: "";
  display: inline-block;
  width: 0.6875rem;
  height: 0.6875rem;
  margin-top: 0.125rem;
  background-image: url("../images/common/external-link.svg");
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
}
.c-footer-contents__head__link span {
  border-bottom: 0.0625rem solid #fff;
}
.c-footer-contents__head__telfax {
  margin-top: 3.125rem;
  font-size: 1.125rem;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media screen and (max-width: 768px) {
  .c-footer-contents__head__telfax {
    flex-direction: column;
    margin-top: 1.5rem;
  }
}
.c-footer-contents__head__telfax .s-txt {
  display: inline-block;
  margin: 0 0.25rem 0 0.5rem;
}
@media screen and (max-width: 768px) {
  .c-footer-contents__head__telfax .s-txt {
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 768px) {
  .c-footer-contents__head__telfax .p-txt {
    font-size: 0.875rem;
  }
}
.c-footer-contents__head__telfax .p-txt:after {
  content: "：";
}
.c-footer-contents__head__telfax .h-txt {
  font-size: 0.9375rem;
  display: inline-block;
  margin-right: 0.5rem;
}
@media screen and (max-width: 768px) {
  .c-footer-contents__head__telfax .h-txt {
    display: block;
  }
}
.c-footer-contents__head .c-btn {
  background: #800f0f;
  margin-top: 3.125rem;
}
@media screen and (max-width: 768px) {
  .c-footer-contents__head .c-btn {
    margin-top: 1.5rem;
  }
}
@media screen and (max-width: 1200px) {
  .c-footer-contents__body {
    width: 100%;
  }
}
.c-footer-contents__body__link-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  border-bottom: 0.0625rem solid #555555;
  padding-bottom: 2.25rem;
  padding-right: 1rem;
  padding-left: 1rem;
}
@media screen and (max-width: 1200px) {
  .c-footer-contents__body__link-list {
    max-width: 37.5rem;
    width: 100%;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    grid-auto-flow: row;
    padding: 2.5rem 0 2.5rem;
    margin: 0 auto;
  }
}
@media screen and (max-width: 768px) {
  .c-footer-contents__body__link-list {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    grid-auto-flow: row;
    padding: 2.5rem 0 2.5rem;
    width: 100%;
  }
}
.c-footer-contents__body__link-list__link.member {
  background: #337820;
}
.c-footer-contents__body__link-list__link.visitor {
  background: #977e43;
}
.c-footer-contents__body__link-list__link.mypage {
  background: #337820;
}
.c-footer-contents__body__link-list__link.line {
  background: #06c755;
}
.c-footer-contents__body__link-list__link.line:before {
  content: "";
  display: inline-block;
  width: 2.6875rem;
  height: 2.6875rem;
  margin-right: 0.1875rem;
  background-image: url("../images/common/icon-line@2x.png");
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 768px) {
  .c-footer-contents__body__link-list__link.line:before {
    width: 2rem;
    height: 2rem;
  }
}
.c-footer-contents__menulist {
  display: grid;
  grid-template-columns: repeat(3, max-content);
  justify-content: space-between;
  gap: 1rem 1.5rem;
  padding: 2rem 2rem 0;
}
@media screen and (max-width: 1200px) {
  .c-footer-contents__menulist {
    max-width: 37.5rem;
    width: 100%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 768px) {
  .c-footer-contents__menulist {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    grid-auto-flow: row;
    padding: 2.5rem 0 0;
  }
}
.c-footer-contents__menulist__item {
  font-size: 0.9375rem;
  color: #fff;
  font-weight: 400;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .c-footer-contents__menulist__item {
    font-size: 1.125rem;
  }
}
.c-footer-contents .copyright {
  text-align: center;
  color: #fff;
  font-size: 0.9375rem;
  line-height: 1.8;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.5rem 0;
  border-top: 0.0625rem solid #555555;
}
@media screen and (max-width: 768px) {
  .c-footer-contents .copyright {
    padding: 2.5rem 0 4.375rem;
    font-size: 0.625rem;
  }
}/*# sourceMappingURL=common.css.map */