@charset "UTF-8";
/*------------------------------------------------------------
  ** 共通テンプレートを基にしたコンポーネント
------------------------------------------------------------*/
/*------------------------------
  ** ラッパー
------------------------------*/
.content-wrap {
  box-sizing: border-box;
  margin: 0 auto 80px;
  padding: 0 10px;
  max-width: 1044px;
}

@media screen and (max-width: 670px) {
  .content-wrap {
    margin-bottom: 50px;
  }
}

/*------------------------------
  ** インナー
------------------------------*/
.content-inner {
  margin: 0 20px;
}

@media screen and (max-width: 670px) {
  .content-inner {
    margin: 0 10px;
  }
}

/*------------------------------
  ** 見出し：レベル2
------------------------------*/
.heading-level2 {
  margin-bottom: 45px;
  padding: 0 0 10px 13px;
  border-bottom: 1px solid #ccc;
  font-size: 2.8rem;
  color: #0068B7;
}

@media screen and (max-width: 670px) {
  .heading-level2 {
    margin-bottom: 25px;
    padding: 0 0 5px 10px;
    font-size: 2.0rem;
    line-height: 1.4;
  }
}

/*------------------------------
  ** 見出し：レベル3
------------------------------*/
.heading-level3 {
  margin-bottom: 28px;
  padding: 12px 15px;
  font-size: 2.2rem;
  background-color: #f5f5f5;
  border: 1px solid #ccc;
  border-left: 3px solid #0068B7;
}

@media screen and (max-width: 670px) {
  .heading-level3 {
    margin-bottom: 20px;
    font-size: 1.8rem;
    line-height: 1.4;
  }
}

/*------------------------------
  ** 見出し：レベル4
------------------------------*/
.heading-level4 {
  position: relative;
  margin-bottom: 30px;
  padding-bottom: 10px;
  border-bottom: 1px solid #ccc;
  font-size: 2.0rem;
}

.heading-level4:before {
  position: absolute;
  bottom: -3px;
  left: 0;
  content: '';
  display: inline-block;
  width: 50px;
  height: 3px;
  background-color: #0068B7;
}

@media screen and (max-width: 670px) {
  .heading-level4 {
    margin-bottom: 20px;
    padding-bottom: 7px;
    font-size: 1.6rem;
    line-height: 1.4;
  }
}

/*------------------------------
  ** 見出し：レベル5
------------------------------*/
.heading-level5 {
  margin-bottom: 25px;
  padding: 10px 0 8px;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  font-size: 1.8rem;
  font-weight: bold;
  color: #0068B7;
}

@media screen and (max-width: 670px) {
  .heading-level5 {
    margin-bottom: 20px;
    font-size: 1.4rem;
  }
}

/*-- アコーディオンの場合は中に余白を持たせる --*/
.heading-level5--accordion {
  padding: 0;
}

/*------------------------------
  ** 段落：レベル1
------------------------------*/
.content-box {
  margin-bottom: 60px;
}

.content-box:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 670px) {
  .content-box {
    margin-bottom: 40px;
  }
}

/*------------------------------
  ** 段落：レベル2
------------------------------*/
.content-box-2 {
  margin-bottom: 50px;
}

@media screen and (max-width: 670px) {
  .content-box-2 {
    margin-bottom: 40px;
  }
}

/*------------------------------
  ** 段落：レベル3
------------------------------*/
.content-box-3 {
  margin-bottom: 35px;
}

@media screen and (max-width: 670px) {
  .content-box-3 {
    margin-bottom: 30px;
  }
}

/*------------------------------
  ** 段落：レベル4
------------------------------*/
.content-box-4 {
  padding-top: 50px;
}

.content-box-4:first-of-type {
  padding-top: 0;
}

/*------------------------------
  ** 段落：レベル5
------------------------------*/
.content-box-5 {
  padding-top: 28px;
}

.content-box-5:first-of-type {
  padding-top: 0;
}

/*------------------------------
  ** テキスト
------------------------------*/
.text-box {
  margin-bottom: 25px;
}

.text-box p {
  margin-bottom: 30px;
}

.text-box p a {
  text-decoration: underline;
}

.text-box p a:hover {
  text-decoration: none;
}

.text-box:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 670px) {
  .text-box {
    margin-bottom: 15px;
  }
  .text-box p {
    margin-bottom: 20px;
  }
}

/*------------------------------
  ** リスト：バレットマーク
------------------------------*/
.list {
  margin-top: 20px;
}

.list:first-child {
  margin-top: 0;
}

.list-item {
  position: relative;
  padding-left: 1.0em;
  line-height: 1.8;
  /* A */
}

.list-item::before {
  position: absolute;
  left: calc(0.5em - 3px / 2);
  /* 0.5em - B / 2 */
  top: calc(0.5em * 1.8 - 3px / 2);
  /* 0.5em * A - C / 2 */
  content: '';
  width: 3px;
  /* B */
  height: 3px;
  /* C */
  border-radius: 50%;
  background-color: #1A1A1A;
}

.list-item:last-child {
  margin-bottom: 0;
}

.list-item a {
  text-decoration: underline;
}

.list-item a:hover {
  text-decoration: none;
}

/*------------------------------
  ** リスト：※マーク
------------------------------*/
.attention-list {
  margin-top: 20px;
}

.attention-list:first-of-child {
  margin-top: 0;
}

.attention-list-item {
  padding-left: 1em;
  text-indent: -1em;
  line-height: 1.8;
}

@media screen and (max-width: 670px) {
  .attention-list-item {
    line-height: 1.4;
  }
}

.attention-list-item::before {
  content: '※';
  display: inline-block;
  width: 1em;
  text-align: right;
}

.list .attention-list-item::before {
  margin-left: -4px;
}

/*------------------------------
  ** テーブル
------------------------------*/
.basic-table {
  border-collapse: collapse;
}

.basic-table caption {
  margin-bottom: 10px;
  font-weight: bold;
  text-align: left;
}

.basic-table th {
  padding: 16px 20px;
  border: 1px solid #ccc;
  background-color: #f5f5f5;
  vertical-align: middle;
  text-align: center;
  font-weight: normal;
  line-height: 1.4;
}

.basic-table td {
  padding: 16px 20px;
  border: 1px solid #ccc;
  background-color: #fff;
  vertical-align: middle;
}

.basic-table td a {
  text-decoration: underline;
}

.basic-table td a:hover {
  text-decoration: none;
}

@media screen and (max-width: 670px) {
  .basic-table {
    width: 100%;
  }
  .basic-table thead,
  .basic-table tbody,
  .basic-table tr,
  .basic-table th,
  .basic-table td {
    display: block;
    width: 100%;
  }
  .basic-table th {
    margin-top: -1px;
    padding: 10px 16px;
    text-align: left;
  }
  .basic-table td {
    margin-top: -1px;
    padding: 10px 16px;
  }
}

/*------------------------------
  ** ボタンレイアウト
------------------------------*/
/*-- 単体版 --*/
.basic-button-wrap {
  margin: 0 auto;
  max-width: 432px;
}

/*-- 1行2列版 --*/
.button-list--two {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}

@media screen and (max-width: 670px) {
  .button-list--two {
    display: block;
  }
}

.button-list--two .button-list-item {
  width: calc(50% - 10px);
}

@media screen and (max-width: 670px) {
  .button-list--two .button-list-item {
    width: 100%;
  }
}

.button-list-item {
  text-align: center;
}

@media screen and (max-width: 670px) {
  .button-list-item {
    margin-top: 30px;
  }
  .button-list-item:first-child() {
    margin-top: 0;
  }
}

/*-- ボタンリスト全体につく注意リスト --*/
.button-list-attention {
  margin-top: 10px !important;
  text-align: center;
}

@media screen and (max-width: 670px) {
  .button-list-attention {
    text-align: left;
  }
}

.button-list-attention .button-list-item {
  display: inline-block;
}

/*-- ボタンリスト単体につく注意リスト --*/
.button-attention {
  margin-top: 10px !important;
}

@media screen and (max-width: 670px) {
  .button-attention .attention-list-item {
    text-align: left;
  }
}

/*------------------------------
  ** ボタン
------------------------------*/
.basic-button {
  display: block;
  position: relative;
  box-sizing: border-box;
  width: 100%;
  margin: 0 auto;
  padding: 18px 10px 18px 40px;
  border: 2px solid #0068B7;
  border-radius: 5px;
  background-color: #0068B7;
  box-shadow: 1px 2px 0 #0f4670;
  color: #fff !important;
  font-size: 1.7rem;
  font-weight: bold;
  text-align: center;
  cursor: pointer;
}

.basic-button:before {
  content: '';
  display: block;
  left: 18px;
  top: 0;
  position: absolute;
  margin-right: 5px;
  width: 8px;
  height: 100%;
  background-image: url("../img/common/arrow-right-icon--white.svg");
  background-repeat: no-repeat;
  background-position: center center;
}

.basic-button:hover {
  background-color: #fff;
  border-bottom: 2px solid #0f6099;
  color: #0f6099 !important;
  box-shadow: none;
}

.basic-button:hover:before {
  background-image: url("../img/common/arrow-right-icon--blue.svg");
}

.basic-button:hover:visited {
  color: #0f6099;
}

.basic-button:visited {
  color: #fff;
}

@media screen and (max-width: 670px) {
  .basic-button {
    padding: 12px 10px 12px 30px;
    font-size: 1.4rem;
  }
  .basic-button:before {
    left: 15px;
    width: 6px;
    background-size: 6px 10px;
  }
}

/* IE11 */
_:-ms-lang(x)::-ms-backdrop, .basic-button {
  padding: 18px 10px 13px 40px;
}

/* 非活性ボタン */
.basic-button--disabled {
  border: 2px solid #999;
  background-color: #999;
  box-shadow: 1px 2px 0 #666;
  cursor: auto;
}

.basic-button--disabled:hover {
  color: #FFF !important;
  border: 2px solid #999;
  background-color: #999;
  box-shadow: 1px 2px 0 #666;
}

.basic-button--disabled::before {
  background-image: url("../img/common/arrow-right-icon--white.svg") !important;
}

/* 戻るボタン */
.basic-button--back {
  max-width: 240px;
  color: #1A1A1A !important;
  border: 2px solid #CCC;
  background-color: #CCC;
  box-shadow: 1px 2px 0 #777;
}

.basic-button--back:hover {
  color: #1A1A1A !important;
  border: 2px solid #999;
}

.basic-button--back::before {
  background-image: url("../img/common/arrow-left-icon--black.svg") !important;
}

/*------------------------------
  ** メディアボックス
------------------------------*/
.media-box {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 670px) {
  .media-box {
    display: block;
  }
}

.media-box__image {
  width: 50%;
  padding-right: 32px;
}

@media screen and (max-width: 670px) {
  .media-box__image {
    width: 100%;
    padding-right: 0;
    text-align: center;
  }
}

.media-box__image img {
  max-width: 100%;
}

.media-box__image img:nth-of-type(2) {
  margin-top: 20px;
}

.media-box__text {
  width: 50%;
  margin-top: 20px;
}

@media screen and (max-width: 670px) {
  .media-box__text {
    width: 100%;
  }
}

/*------------------------------
  ** フォームパーツ：プルダウン
------------------------------*/
.select-group {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}

.select-item {
  position: relative;
  margin-right: 20px;
}

.select-item:last-child {
  margin-right: 0;
}

.select-item::after {
  position: absolute;
  right: 0;
  top: 0;
  content: '';
  display: inline-block;
  width: 35px;
  height: 100%;
  border-left: 1px solid #DCDCDC;
  background-image: url("../img/common/arrow-bottom-icon--black.svg");
  background-position: center;
  background-repeat: no-repeat;
}

@media screen and (max-width: 670px) {
  .select-item {
    width: 100%;
  }
}

.select-parts {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  height: 50px;
  font-size: 16px;
  padding: 0;
  margin: 0;
  text-align: center;
  background: transparent;
  position: relative;
  z-index: 1;
  padding: 12px 50px 12px 15px;
  border-radius: 5px;
  border: 1px solid #DCDCDC;
}

@media screen and (max-width: 670px) {
  .select-group--date {
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .select-year {
    width: 100%;
    margin-right: 0;
    margin-bottom: 16px;
  }
  .select-month,
  .select-day,
  .select-hour,
  .select-minute {
    width: calc(50% - 10px);
    margin-bottom: 16px;
  }
}

.selectbox-inner {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  border: 1px solid #ccc;
  width: 500px;
}

@media screen and (max-width: 670px) {
  .selectbox-inner {
    width: 100%;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
}

.select-wrap {
  padding: 16px 20px;
  box-sizing: border-box;
  width: 100%;
}

.selectbox-date {
  padding: 29px 20px;
  border-right: 1px solid #ccc;
  background-color: #f5f5f5;
  vertical-align: middle;
  text-align: center;
  font-weight: normal;
  line-height: 1.4;
}

@media screen and (max-width: 670px) {
  .selectbox-date {
    width: 100%;
    border-right: 0;
    border-bottom: 1px solid #ccc;
  }
}

/*------------------------------
  ** フォームパーツ：ラジオボタン
------------------------------*/
.radio-box-wrap {
  margin-top: -16px;
}

.radio-box-wrap .radio-box {
  display: inline-block;
  margin-top: 16px;
}

.radio-box__label {
  vertical-align: middle;
}

/*------------------------------
  ** 非表示
------------------------------*/
.is-none {
  display: none !important;
}

/*------------------------------
  ** ハンバーガーの非活性リンク
------------------------------*/
.inactive-link {
  color: #AAA !important;
  background-image: none !important;
  pointer-events: none !important;
  cursor: auto !important;
}

/*------------------------------------------------------------
  ** ページ：WEST EXPRESS 銀河（予約）
------------------------------------------------------------*/
#ginga * {
  box-sizing: border-box;
  font-family: "Lucida Grande", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "Meiryo UI", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

#ginga a {
  color: #0068B7;
}

#ginga select::-ms-expand {
  display: none;
}

/*------------------------------
  ** 凡例
------------------------------*/
.legend-list {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.legend-list + .legend-list {
  margin-top: 12px;
}

.legend-list__icon {
  position: relative;
  top: -2px;
  width: 48px;
  height: 24px;
  margin-right: 15px;
  background: #333;
}

.legend-list__icon::after {
  position: absolute;
  right: -15px;
  top: 0;
  content: '：';
}

/* くだり */
.outbound {
  background-color: #5b9bd5;
}

/* のぼり */
.inbound {
  background-color: #f4b084;
}

/* 旅行会社貸し切り運行 */
.charter {
  border: 2px solid #ff0000;
  background: #fff;
}

/*------------------------------
  ** カレンダー
------------------------------*/
.calendar-wrap {
  padding-top: 0;
}

@media screen and (max-width: 670px) {
  .swiper-container {
    max-width: 320px;
    margin: 0 auto;
  }
}

.swiper-wrapper {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}

@media screen and (max-width: 670px) {
  .swiper-wrapper {
    -webkit-flex-wrap: nowrap;
        -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
  }
}

.swiper-slide {
  width: 300px;
  margin-top: 30px;
  margin-right: 20px;
}

@media screen and (max-width: 670px) {
  .swiper-slide {
    width: 100%;
    margin-right: 0;
  }
}

.swiper-slide img {
  max-width: 100%;
}

.swiper-buttons {
  position: relative;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 32px;
  margin-top: 30px;
}

.swiper-buttons.is-none {
  display: none;
}

.swiper-button-next,
.swiper-button-prev {
  position: static !important;
  width: 60px !important;
  height: auto !important;
  margin-top: 0 !important;
  color: #FFF !important;
  line-height: 1 !important;
  border-radius: 4px;
  background-color: #0068B7;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  content: none !important;
}

.swiper-button-prev {
  position: static !important;
}

.swiper-button-prev::after {
  content: none !important;
}

_:-ms-lang(x)::-ms-backdrop, .swiper-button-next {
  padding-top: 5px;
}

_:-ms-lang(x)::-ms-backdrop, .swiper-button-prev {
  padding-top: 5px;
}

/*------------------------------
  ** SPサイズのみスライダー化
------------------------------*/
@media screen and (max-width: 670px) {
  /*---------- Swiper ここから ----------*/
  /**
 * Swiper 5.2.1
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * http://swiperjs.com
 *
 * Copyright 2014-2019 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: November 16, 2019
 */
  @font-face {
    font-family: swiper-icons;
    src: url("data:application/font-woff;charset=utf-8;base64, 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") format("woff");
    font-weight: 400;
    font-style: normal;
  }
  :root {
    --swiper-theme-color:#007aff;
  }
  .swiper-container {
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
    list-style: none;
    padding: 0;
    z-index: 1;
  }
  .swiper-container-vertical > .swiper-wrapper {
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .swiper-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    box-sizing: content-box;
  }
  .swiper-container-android .swiper-slide, .swiper-wrapper {
    -webkit-transform: translate3d(0px, 0, 0);
            transform: translate3d(0px, 0, 0);
  }
  .swiper-container-multirow > .swiper-wrapper {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
  .swiper-container-multirow-column > .swiper-wrapper {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .swiper-container-free-mode > .swiper-wrapper {
    transition-timing-function: ease-out;
    margin: 0 auto;
  }
  .swiper-slide {
    -webkit-flex-shrink: 0;
        -ms-flex-negative: 0;
            flex-shrink: 0;
    width: 100%;
    height: 100%;
    position: relative;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
  }
  .swiper-slide-invisible-blank {
    visibility: hidden;
  }
  .swiper-container-autoheight, .swiper-container-autoheight .swiper-slide {
    height: auto;
  }
  .swiper-container-autoheight .swiper-wrapper {
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    transition-property: height,-webkit-transform;
    transition-property: transform,height;
    transition-property: transform,height,-webkit-transform;
  }
  .swiper-container-3d {
    -webkit-perspective: 1200px;
            perspective: 1200px;
  }
  .swiper-container-3d .swiper-cube-shadow, .swiper-container-3d .swiper-slide, .swiper-container-3d .swiper-slide-shadow-bottom, .swiper-container-3d .swiper-slide-shadow-left, .swiper-container-3d .swiper-slide-shadow-right, .swiper-container-3d .swiper-slide-shadow-top, .swiper-container-3d .swiper-wrapper {
    -webkit-transform-style: preserve-3d;
            transform-style: preserve-3d;
  }
  .swiper-container-3d .swiper-slide-shadow-bottom, .swiper-container-3d .swiper-slide-shadow-left, .swiper-container-3d .swiper-slide-shadow-right, .swiper-container-3d .swiper-slide-shadow-top {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
  }
  .swiper-container-3d .swiper-slide-shadow-left {
    background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
  .swiper-container-3d .swiper-slide-shadow-right {
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
  .swiper-container-3d .swiper-slide-shadow-top {
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
  .swiper-container-3d .swiper-slide-shadow-bottom {
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
  .swiper-container-css-mode > .swiper-wrapper {
    overflow: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .swiper-container-css-mode > .swiper-wrapper::-webkit-scrollbar {
    display: none;
  }
  .swiper-container-css-mode > .swiper-wrapper > .swiper-slide {
    scroll-snap-align: start start;
  }
  .swiper-container-horizontal.swiper-container-css-mode > .swiper-wrapper {
    -ms-scroll-snap-type: x mandatory;
        scroll-snap-type: x mandatory;
  }
  .swiper-container-vertical.swiper-container-css-mode > .swiper-wrapper {
    -ms-scroll-snap-type: y mandatory;
        scroll-snap-type: y mandatory;
  }
  :root {
    --swiper-navigation-size:44px;
  }
  .swiper-button-next, .swiper-button-prev {
    position: absolute;
    top: 50%;
    width: calc(var(--swiper-navigation-size)/ 44 * 27);
    height: var(--swiper-navigation-size);
    margin-top: calc(-1 * var(--swiper-navigation-size)/ 2);
    z-index: 10;
    cursor: pointer;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    color: var(--swiper-navigation-color, var(--swiper-theme-color));
  }
  .swiper-button-next.swiper-button-disabled, .swiper-button-prev.swiper-button-disabled {
    opacity: .35;
    cursor: auto;
    pointer-events: none;
  }
  .swiper-button-next:after, .swiper-button-prev:after {
    font-family: swiper-icons;
    font-size: var(--swiper-navigation-size);
    text-transform: none !important;
    letter-spacing: 0;
    text-transform: none;
    font-variant: initial;
  }
  .swiper-button-prev, .swiper-container-rtl .swiper-button-next {
    left: 10px;
    right: auto;
  }
  .swiper-button-prev:after, .swiper-container-rtl .swiper-button-next:after {
    content: 'prev';
  }
  .swiper-button-next, .swiper-container-rtl .swiper-button-prev {
    right: 10px;
    left: auto;
  }
  .swiper-button-next:after, .swiper-container-rtl .swiper-button-prev:after {
    content: 'next';
  }
  .swiper-button-next.swiper-button-white, .swiper-button-prev.swiper-button-white {
    --swiper-navigation-color:#ffffff;
  }
  .swiper-button-next.swiper-button-black, .swiper-button-prev.swiper-button-black {
    --swiper-navigation-color:#000000;
  }
  .swiper-button-lock {
    display: none;
  }
  .swiper-pagination {
    position: absolute;
    text-align: center;
    transition: .3s opacity;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
    z-index: 10;
  }
  .swiper-pagination.swiper-pagination-hidden {
    opacity: 0;
  }
  .swiper-container-horizontal > .swiper-pagination-bullets, .swiper-pagination-custom, .swiper-pagination-fraction {
    bottom: 10px;
    left: 0;
    width: 100%;
  }
  .swiper-pagination-bullets-dynamic {
    overflow: hidden;
    font-size: 0;
  }
  .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    -webkit-transform: scale(0.33);
        -ms-transform: scale(0.33);
            transform: scale(0.33);
    position: relative;
  }
  .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
    -webkit-transform: scale(1);
        -ms-transform: scale(1);
            transform: scale(1);
  }
  .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
    -webkit-transform: scale(1);
        -ms-transform: scale(1);
            transform: scale(1);
  }
  .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
    -webkit-transform: scale(0.66);
        -ms-transform: scale(0.66);
            transform: scale(0.66);
  }
  .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
    -webkit-transform: scale(0.33);
        -ms-transform: scale(0.33);
            transform: scale(0.33);
  }
  .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
    -webkit-transform: scale(0.66);
        -ms-transform: scale(0.66);
            transform: scale(0.66);
  }
  .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
    -webkit-transform: scale(0.33);
        -ms-transform: scale(0.33);
            transform: scale(0.33);
  }
  .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    display: inline-block;
    border-radius: 100%;
    background: #000;
    opacity: .2;
  }
  button.swiper-pagination-bullet {
    border: none;
    margin: 0;
    padding: 0;
    box-shadow: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
  }
  .swiper-pagination-clickable .swiper-pagination-bullet {
    cursor: pointer;
  }
  .swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--swiper-pagination-color, var(--swiper-theme-color));
  }
  .swiper-container-vertical > .swiper-pagination-bullets {
    right: 10px;
    top: 50%;
    -webkit-transform: translate3d(0px, -50%, 0);
            transform: translate3d(0px, -50%, 0);
  }
  .swiper-container-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 6px 0;
    display: block;
  }
  .swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 8px;
  }
  .swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    display: inline-block;
    transition: .2s transform,.2s top;
  }
  .swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 4px;
  }
  .swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    white-space: nowrap;
  }
  .swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    transition: .2s transform,.2s left;
  }
  .swiper-container-horizontal.swiper-container-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    transition: .2s transform,.2s right;
  }
  .swiper-pagination-progressbar {
    background: rgba(0, 0, 0, 0.25);
    position: absolute;
  }
  .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    background: var(--swiper-pagination-color, var(--swiper-theme-color));
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    -webkit-transform: scale(0);
        -ms-transform: scale(0);
            transform: scale(0);
    -webkit-transform-origin: left top;
        -ms-transform-origin: left top;
            transform-origin: left top;
  }
  .swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    -webkit-transform-origin: right top;
        -ms-transform-origin: right top;
            transform-origin: right top;
  }
  .swiper-container-horizontal > .swiper-pagination-progressbar, .swiper-container-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
    width: 100%;
    height: 4px;
    left: 0;
    top: 0;
  }
  .swiper-container-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite, .swiper-container-vertical > .swiper-pagination-progressbar {
    width: 4px;
    height: 100%;
    left: 0;
    top: 0;
  }
  .swiper-pagination-white {
    --swiper-pagination-color:#ffffff;
  }
  .swiper-pagination-black {
    --swiper-pagination-color:#000000;
  }
  .swiper-pagination-lock {
    display: none;
  }
  .swiper-scrollbar {
    border-radius: 10px;
    position: relative;
    -ms-touch-action: none;
    background: rgba(0, 0, 0, 0.1);
  }
  .swiper-container-horizontal > .swiper-scrollbar {
    position: absolute;
    left: 1%;
    bottom: 3px;
    z-index: 50;
    height: 5px;
    width: 98%;
  }
  .swiper-container-vertical > .swiper-scrollbar {
    position: absolute;
    right: 3px;
    top: 1%;
    z-index: 50;
    width: 5px;
    height: 98%;
  }
  .swiper-scrollbar-drag {
    height: 100%;
    width: 100%;
    position: relative;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    left: 0;
    top: 0;
  }
  .swiper-scrollbar-cursor-drag {
    cursor: move;
  }
  .swiper-scrollbar-lock {
    display: none;
  }
  .swiper-zoom-container {
    width: 100%;
    height: 100%;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
  }
  .swiper-zoom-container > canvas, .swiper-zoom-container > img, .swiper-zoom-container > svg {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
  }
  .swiper-slide-zoomed {
    cursor: move;
  }
  .swiper-lazy-preloader {
    width: 42px;
    height: 42px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -21px;
    margin-top: -21px;
    z-index: 10;
    -webkit-transform-origin: 50%;
        -ms-transform-origin: 50%;
            transform-origin: 50%;
    -webkit-animation: swiper-preloader-spin 1s infinite linear;
            animation: swiper-preloader-spin 1s infinite linear;
    box-sizing: border-box;
    border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
    border-radius: 50%;
    border-top-color: transparent;
  }
  .swiper-lazy-preloader-white {
    --swiper-preloader-color:#fff;
  }
  .swiper-lazy-preloader-black {
    --swiper-preloader-color:#000;
  }
  @-webkit-keyframes swiper-preloader-spin {
    100% {
      -webkit-transform: rotate(360deg);
              transform: rotate(360deg);
    }
  }
  @keyframes swiper-preloader-spin {
    100% {
      -webkit-transform: rotate(360deg);
              transform: rotate(360deg);
    }
  }
  .swiper-container .swiper-notification {
    position: absolute;
    left: 0;
    top: 0;
    pointer-events: none;
    opacity: 0;
    z-index: -1000;
  }
  .swiper-container-fade.swiper-container-free-mode .swiper-slide {
    transition-timing-function: ease-out;
  }
  .swiper-container-fade .swiper-slide {
    pointer-events: none;
    transition-property: opacity;
  }
  .swiper-container-fade .swiper-slide .swiper-slide {
    pointer-events: none;
  }
  .swiper-container-fade .swiper-slide-active, .swiper-container-fade .swiper-slide-active .swiper-slide-active {
    pointer-events: auto;
  }
  .swiper-container-cube {
    overflow: visible;
  }
  .swiper-container-cube .swiper-slide {
    pointer-events: none;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    z-index: 1;
    visibility: hidden;
    -webkit-transform-origin: 0 0;
        -ms-transform-origin: 0 0;
            transform-origin: 0 0;
    width: 100%;
    height: 100%;
  }
  .swiper-container-cube .swiper-slide .swiper-slide {
    pointer-events: none;
  }
  .swiper-container-cube.swiper-container-rtl .swiper-slide {
    -webkit-transform-origin: 100% 0;
        -ms-transform-origin: 100% 0;
            transform-origin: 100% 0;
  }
  .swiper-container-cube .swiper-slide-active, .swiper-container-cube .swiper-slide-active .swiper-slide-active {
    pointer-events: auto;
  }
  .swiper-container-cube .swiper-slide-active, .swiper-container-cube .swiper-slide-next, .swiper-container-cube .swiper-slide-next + .swiper-slide, .swiper-container-cube .swiper-slide-prev {
    pointer-events: auto;
    visibility: visible;
  }
  .swiper-container-cube .swiper-slide-shadow-bottom, .swiper-container-cube .swiper-slide-shadow-left, .swiper-container-cube .swiper-slide-shadow-right, .swiper-container-cube .swiper-slide-shadow-top {
    z-index: 0;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }
  .swiper-container-cube .swiper-cube-shadow {
    position: absolute;
    left: 0;
    bottom: 0px;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: .6;
    -webkit-filter: blur(50px);
    filter: blur(50px);
    z-index: 0;
  }
  .swiper-container-flip {
    overflow: visible;
  }
  .swiper-container-flip .swiper-slide {
    pointer-events: none;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    z-index: 1;
  }
  .swiper-container-flip .swiper-slide .swiper-slide {
    pointer-events: none;
  }
  .swiper-container-flip .swiper-slide-active, .swiper-container-flip .swiper-slide-active .swiper-slide-active {
    pointer-events: auto;
  }
  .swiper-container-flip .swiper-slide-shadow-bottom, .swiper-container-flip .swiper-slide-shadow-left, .swiper-container-flip .swiper-slide-shadow-right, .swiper-container-flip .swiper-slide-shadow-top {
    z-index: 0;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }
  /*---------- Swiper ここまで ----------*/
}

/*------------------------------------------------------------
  ** ページ：サンライズ瀬戸・出雲（予約）
------------------------------------------------------------*/
#sunrise * {
  box-sizing: border-box;
  font-family: "Lucida Grande", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "Meiryo UI", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

#sunrise a {
  color: #0068B7;
}

#sunrise select::-ms-expand {
  display: none;
}

/*------------------------------
  ** ご利用設備
------------------------------*/
.facility-cell {
  width: 140px;
}

.radio-box--facility {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 0;
  font-size: 1.6rem;
}

.radio-box--facility .radio-box__input {
  position: relative;
  top: -3px;
  margin-right: 5px;
  line-height: 1.6;
}

.radio-box--facility .radio-box__label {
  font-weight: bold;
}

/* for IE11 */
_:-ms-lang(x)::-ms-backdrop, .radio-box--facility .radio-box__input {
  top: -2px;
}
