@charset "utf-8";
/* TaaS 各トップ共通 */
.for-sp {
  display: none;
}
@media (min-width: 0px) and (max-width: 767px) {
  .for-sp { display: block; }
}

/* トップナビ */
#taas-top-navi {
  display: flex;
  align-items: stretch;     /* 子(li)の高さを揃える */
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
  position: relative;
}
#taas-top-navi li {
  flex: 1 1 0;              /* ★内容量に依らず均等幅 */
  min-width: 0;             /* 長文でもはみ出さない */
  display: flex;            /* a を縦に伸ばして全高化 */
  box-sizing: border-box;
  border: 1px solid #E5E5E5;
  background: #fff;
}
#taas-top-navi li + li { border-left: 0; } /* 二重線防止 */
#taas-top-navi li.active {
  background-color: #00146E;
}
#taas-top-navi li a {
    flex: 1;                                  /* li の高さ一杯に */
  display: flex;
  flex-direction: column;                   /* アイコン↑ テキスト↓ */
  align-items: center;
  justify-content: center;                  /* 縦中央 */
  text-align: center;
  padding: 12px 8px;
  line-height: 1.15;
  font-weight: 700;
  color: #00146E;
  transition: .2s;
  position: relative;
}
#taas-top-navi li:nth-child(6),
#taas-top-navi li:nth-child(6) a {
  background-color: #CCD4EA !important;
}
#taas-top-navi li.active a {
  background-color: #00146E;
  color: #fff;
  pointer-events: none;
}
/* 幅がズレやすいので無効化（旧指定の打ち消し） */
#taas-top-navi li.active:first-child a { margin-left: 0; }
@media (min-width: 768px) {
  #taas-top-navi li a:hover {
    background-color: #f1f5ff;
  }
}
@media (min-width: 0px) and (max-width: 767px) {
  #taas-top-navi {
    width: 100vw;                 /* 画面幅ちょうど */
    margin-left: 50%;
    transform: translateX(-50%);  /* 親の余白を打ち消す */
    border: none;
  }
  #taas-top-navi.fixed {
    top: 0 !important;
    left: 0 !important;
    transform: none !important;
    width: 100vw !important;
  }
  #taas-top-navi li {
    min-height: 4em;
  }
  #taas-top-navi li a {
    line-height: 1.15;
  }
  #taas-top-navi li:nth-child(1) a,
  #taas-top-navi li:nth-child(2) a,
  #taas-top-navi li:nth-child(4) a {
    padding: 22px 0;
  }
  #taas-top-navi li:last-child {
    max-width: 4em;
  }
  #taas-top-navi li a span {
    display: block;
  }
}
/* アイコン */
#taas-top-navi li a:before{
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  margin: 0 auto 6px;  /* 中央寄せ＋下余白 */
}
#taas-top-navi li:nth-child(1) a:before{
  background:url(/domestic/taas/image/260608/ico_hotel.png) top no-repeat;
}
#taas-top-navi li:nth-child(2) a:before{
  background:url(/domestic/taas/image/260608/ico_car.png) top no-repeat;
}
#taas-top-navi li:nth-child(3) a:before{
  background:url(/domestic/taas/image/260608/ico_act.png) top no-repeat;
}
#taas-top-navi li:nth-child(4) a:before{
  background:url(/domestic/taas/image/260608/icon_golf.png) top no-repeat;
}
#taas-top-navi li:nth-child(5) a:before{
  background:url(/domestic/taas/image/260608/ico_plan.png) top no-repeat;
}
#taas-top-navi li:nth-child(6) a:before{
  background:url(/domestic/taas/image/260608/ico_reserve.png) top no-repeat;
}
@media (min-width: 768px) {
  /* 行方向に並べる */
  #taas-top-navi li a {
    display: flex;
    flex-direction: row;        /* ← 縦→横 */
    align-items: center;
    justify-content: center;    /* 中央寄せ（左寄せにしたいなら flex-start） */
    padding: 12px 16px;         /* お好みで */
    text-align: left;           /* 文字は左揃え（中央のままが良ければ削除） */
    gap: 8px;                   /* アイコンと文字の間隔 */
  }
  /* 疑似要素の位置づけを“横並び用”に変更 */
  #taas-top-navi li a:before {
    position: static;           /* ← absolute をやめる */
    display: block;
    width: 30px;
    height: 30px;
    margin: 0 8px 0 0;          /* 右に少し余白 */
  }
}
/* 固定表示（PC既存仕様を踏襲） */
#taas-top-navi.fixed {
  position: fixed;
  top: 65px;
  left: 50%;
  margin: 0;
  transform: translateX(-50%);
  z-index: 999;
}
@media (max-width: 767px) {
  /* fixed時はセンタリング解除して100vwに */
  #taas-top-navi.fixed {
    top: 0 !important;
    left: 0 !important;
    transform: none !important;
    width: 100vw !important;
  }
  #taas-top-navi.fixed li a:before {
    display: none !important;  /* fixed時はアイコン非表示 */
  }
  #taas-top-navi.fixed { top: 0 !important; }
}
/* ページ内リンクタブ */
#standard-menu-content{
  margin: 2.4rem 0;
  padding: 0 16px;
}
.hd-standard-menu__nav {
  background: var(--Primary-300, #00146e);
  border-radius: 8px;
}
.hd-standard-menu__nav-link {
  display: block;
  color: #fff;
  text-align: center;
  padding: 16px 0;
  font-weight: 600;
  font-size: 1.2rem;
  cursor: pointer;
}
.hd-standard-menu__nav-link:hover {
  text-decoration: underline;
}
@media (min-width: 768px) {
  #standard-menu-content{
    padding: 0 40px;
  }
  .hd-standard-menu__nav-link img {
    width: 24px;
  }
}
.hd-standard-menu__nav-link-top {
  position: relative;
  border-bottom: 1px solid #f1f1f1;
}
.hd-standard-menu__nav-bottom {
  display: flex;
  position: relative;
}
.hd-standard-menu__nav-bottom > a {
  width: 50%;
}
.hd-standard-menu__nav-bottom:after {
  content: "";
  display: block;
  width: 1px;
  height: 24px;
  background: #f1f1f1;
  position: absolute;
  left: 0;
  right: 0;
  top: 14px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .hd-standard-menu__nav-link-top {
    border: none;
  }
  .hd-standard-menu__nav-link-top:after {
    content: "";
    position: absolute;
    right: 0;
    top: 14px;
    height: 50%;
    border-right: 1px solid #ccc;
  }
}
@media (min-width: 768px) {
  .hd-standard-menu__nav {
    display: flex;
  }
  .hd-standard-menu__nav-link {
    font-size: 1.6rem;
    width: 33.33%;
  }
  .hd-standard-menu__nav-link-top {
    position: relative;
    border-bottom: none;
  }
  .hd-standard-menu__nav-link-top:after {
    content: "";
    display: block;
    width: 1px;
    height: 24px;
    background: #fff;
    position: absolute;
    right: 0;
    top: 14px;
    margin: 0 auto;
  }
  .hd-standard-menu__nav-bottom {
    width: 66.67%;
    display: flex;
  }
  .hd-standard-menu__nav-bottom > a {
    width: 50%;
  }
}
/* トップへ戻る追従ボタン */
.hd-scroll-to-top {
  position: fixed;
  right: 0;
  bottom: 36px;
  transform: translateY(-50%);
  z-index: 1000;
  padding: 16px 24px;
  font-size: 1.4rem;
  font-weight: 600;
  background-color: #00146e;
  color: white;
  border: none;
  border-bottom-left-radius: 12px;
  border-top-left-radius: 12px;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: opacity 0.3s;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hd-scroll-to-top img {
  width: 28px;
  height: auto;
}

/* メインビジュアル */
/* ヒーロー全体を基準にする */
.asw-hero-carousel {
  position: relative;
  overflow: hidden;
}

/* 画像を全面にフィット（既存imgでもOK） */
.asw-hero-carousel__image-container,
.asw-hero-carousel__image {
  width: 100%;
  height: 100%;
}
.asw-hero-carousel__image {
  object-fit: cover;
  display: block;
}

/* 中央固定H1オーバーレイ（新設） */
.asw-hero-carousel__fixed-overlay {
  position: absolute;
  inset: 0;                 /* top:0 right:0 bottom:0 left:0 */
  display: grid;
  place-items: center;      /* 完全中央寄せ */
  z-index: 10;              /* 背景スライドより前 */
  pointer-events: none;     /* 背景の操作（矢印/ドット）を邪魔しない */
}

/* H1ロゴのサイズ調整（レスポンシブ） */
.asw-hero-carousel__fixed-overlay .asw-hero-carousel__logo {
  max-width: clamp(220px, 22vw, 560px);
  height: auto;
}

/* 既存の各スライド内タイトルコンテナは非表示にする（JSでも可） */
.asw-hero-carousel__wrap .asw-hero-carousel__title-container {
  display: none;
}

/* アクセシビリティ用の視覚非表示クラス（必要なら追加） */
.u-visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0);
  white-space: nowrap; border: 0;
}


/* モジュール改変CSS */
#module-section.asw-container {
  background-color: transparent;
}
#module-section > div > div > div > div.experiencefragment {
  margin: 0;
  background-size: auto auto;
  /* background-color: rgba(255, 255, 255, 1); */
}
#module-section > div > div > div > div.experiencefragment > div > div > div.asw-container {
  margin-top: 0 !important;
}
#module-section > div > div > div > div.experiencefragment > div > div > div.asw-container > div > div.asw-container__inner {
  position: relative;
  z-index: 10;
  padding: 0 40px;
}
#module-section > div > div > div > div.experiencefragment > div > div > div.asw-container > div > div.asw-container__inner > div {
  border-bottom: 3px solid #00146E;
}
#module-section .be-primary-tab .be-primary-tab__tablist { display: none; }
#module-section .be-primary-tab .be-primary-tab__panel { box-shadow: none; padding: 24px; border-radius: 0 !important;  }
#module-section .be-primary-tab .be-primary-tab__panel .be-secondary-tab .be-secondary-tab__panel { padding-top: 0; }
#module-section .be-primary-tab .be-primary-tab__panel .be-secondary-tab .be-tertiary-tab__panel { padding-top: 0;}
#module-section .be-primary-tab .be-primary-tab__panel .be-secondary-tab .be-secondary-tab__tablist,
#module-section .be-primary-tab .be-primary-tab__panel .be-secondary-tab .be-tertiary-tab__tablist { display: none; }

#module-section > div > div > div > div.experiencefragment > div > div > div.asw-container > div > div.asw-container__inner{
  background-color: transparent;
}

@media (min-width: 0px) and (max-width: 767px) {
  #module-section.asw-container .asw-container__body {
    padding: 0;
  }
  #module-section > div > div > div > div.experiencefragment > div > div > div.asw-container > div > div.asw-container__inner {
    padding: 0 16px;
  }
}

.asw-headline--background.taasheadline .asw-headline__image{
    position: absolute;
    bottom: -10px;
    left: 0;
    right: 0;
    z-index: 1;
}
.asw-headline--background.taasheadline .asw-headline__text{
    position: relative !important;
    z-index: 2;
}

/* ホテルモジュール */
#booking-modal_ST-D-06 {  }
#booking-modal_ST-D-06 .be-primary-tab { flex-wrap: wrap; }
#booking-modal_ST-D-06 .be-primary-tab .be-primary-tab__panel:before {
  display: block;
  content: ""; 
  width: 100%;
  height: 19px; 
  background-image: url(/domestic/taas/image/hotel_module_title.png);
  background-color: #fff;
  background-size: contain;
  background-repeat: no-repeat;
  margin-bottom: 16px;
}
@media (min-width: 0px) and (max-width: 767px) {
  #booking-modal_ST-D-06 .be-primary-tab .be-primary-tab__panel:before {
    background-position: 47% 0;
  }
}
#booking-modal_ST-D-06 .be-primary-tab .be-primary-tab__panel .be-secondary-tab .be-domestic-reserve-hotel__note {  }
#booking-modal_ST-D-06 .be-primary-tab .be-primary-tab__panel .be-secondary-tab .be-domestic-reserve-hotel__note .be-nav li a {
  text-decoration: underline;
  color: #00146e;
}
@media (min-width: 768px) {
  #booking-modal_ST-D-06 .be-primary-tab .be-primary-tab__panel .be-secondary-tab .be-domestic-reserve-hotel__note .be-nav li {
    margin-top: -20px;
  }
}
#booking-modal_ST-D-06 .be-primary-tab .be-primary-tab__panel .be-secondary-tab .be-tertiary-tab__panel .js-button {
  border-color: #00146E;
}
#booking-modal_ST-D-06 .be-domestic-reserve-hotel-checkin-checkout--open .be-domestic-reserve-hotel-checkin-checkout__button,
#booking-modal_ST-D-06 .be-domestic-reserve-hotel-place--open .be-domestic-reserve-hotel-place__button,
#booking-modal_ST-D-06 .be-domestic-reserve-hotel-passenger--open .be-domestic-reserve-hotel-passenger__button {
  box-shadow: 
    0 0 10px rgba(0, 0, 0, 0.16),
    0 0 1px 1px rgb(0, 20, 110);
}
#booking-modal_ST-D-06 .be-primary-tab .be-primary-tab__panel .be-secondary-tab .be-tertiary-tab__panel .be-domestic-reserve-hotel__column--checkin-checkout { width: 50%; }
#booking-modal_ST-D-06 .be-primary-tab .be-primary-tab__panel .be-secondary-tab .be-tertiary-tab__panel .be-domestic-reserve-hotel__column--place { width: 25%; }
#booking-modal_ST-D-06 .be-primary-tab .be-primary-tab__panel .be-secondary-tab .be-tertiary-tab__panel .be-domestic-reserve-hotel__column--passenger { width: 25%; }
#booking-modal_ST-D-06 .be-primary-tab .be-primary-tab__panel .be-secondary-tab .be-tertiary-tab__panel .be-domestic-reserve-hotel__column--submit .be-domestic-reserve-hotel-submit__button {
  padding: 0 85px 0 95px;
}
@media (min-width: 768px) and (max-width: 1024px) {
  #booking-modal_ST-D-06 .be-primary-tab .be-primary-tab__panel .be-secondary-tab .be-tertiary-tab__panel .be-domestic-reserve-hotel__row {
    align-items: baseline;
  }
  #booking-modal_ST-D-06 .be-primary-tab .be-primary-tab__panel .be-secondary-tab .be-tertiary-tab__panel .be-domestic-reserve-hotel-checkin-checkout {
    width: 97%;
  }
}
@media (min-width: 0px) and (max-width: 767px) {
  #booking-modal_ST-D-06 .be-primary-tab .be-primary-tab__panel { padding: 15px 0; }
  #booking-modal_ST-D-06 .be-primary-tab .be-primary-tab__panel .be-secondary-tab .be-tertiary-tab__panel .be-domestic-reserve-hotel__column--checkin-checkout {
    width: 100%;
  }
  #booking-modal_ST-D-06 .be-primary-tab .be-primary-tab__panel .be-secondary-tab .be-tertiary-tab__panel .be-domestic-reserve-hotel__column--place {
    width: 65%;
  }
  #booking-modal_ST-D-06 .be-primary-tab .be-primary-tab__panel .be-secondary-tab .be-tertiary-tab__panel .be-domestic-reserve-hotel__column--passenger {
    width: 33%;
    margin-left: 2%;
  }
  #booking-modal_ST-D-06 .be-primary-tab .be-primary-tab__panel .be-secondary-tab .be-tertiary-tab__panel .be-domestic-reserve-hotel__column--submit {
    display: block;
    padding-top: 0;
  }
  #booking-modal_ST-D-06 .be-primary-tab .be-primary-tab__panel .be-secondary-tab .be-tertiary-tab__panel .be-domestic-reserve-hotel__column--submit .be-domestic-reserve-hotel-submit__button {
    padding: 0;
    width: 100%;
  }
  #booking-modal_ST-D-06 .be-primary-tab .be-primary-tab__panel .be-secondary-tab .be-domestic-reserve-hotel__note .be-nav li:nth-child(2) {
    display: block;
  }
}

/* レンタカーモジュール */
#module-section.car-color .be-primary-tab__panel:before {
  display: block;
  content: "";
  height: 19px;
  background-image: url("/domestic/taas/image/car_module_title.png");
  background-size: contain;
  background-repeat: no-repeat;
  margin-bottom: 16px;
}
@media (min-width: 0px) and (max-width: 767px) {
  #module-section.car-color .be-primary-tab__panel:before {
    background-position: 50% 0;
  }
}
#module-section.car-color .be-domestic-reserve-car__form .be-domestic-reserve-car__column--title {
  color: #3D70B7;
}
#module-section.car-color .be-domestic-reserve-car__form > .be-domestic-reserve-car__row {
  -ms-flex-wrap: wrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
}
#module-section.car-color .be-domestic-reserve-car__form > .be-domestic-reserve-car__row .js-button {
  border-color: #00146E;
}
@media screen and (max-width: 1024px) {
  #module-section.car-color .be-domestic-reserve-car__form > .be-domestic-reserve-car__row .be-domestic-reserve-car__column--left {
    padding-right: 0;
    width: 100%;
  }
  #module-section.car-color .be-domestic-reserve-car__form > .be-domestic-reserve-car__row .be-domestic-reserve-car__column--right{
    padding-left: 0;
    width: 100%;
  }
}
#module-section.car-color .be-domestic-reserve-car__form .be-nav {
  color: #6E7377;
}
#module-section.car-color .be-domestic-reserve-car__form .be-nav .be-nav__item > .js-checkbox[aria-checked="true"] + .js-label,
#module-section.car-color .be-domestic-reserve-car__form .be-nav .be-nav__item > .js-radio[aria-checked="true"] + .js-label {
  color: #00146E;
  font-weight: 700;
}
#module-section.car-color .js-form > div:nth-child(4) li.be-nav__item a {
  color: #00146E;
}
@media (min-width: 768px) {
  #module-section.car-color .js-form > div:nth-child(4) {
    margin-bottom: -65px;
  }
}
@media (min-width: 0px) and (max-width: 767px) {
  #module-section.car-color .js-form > div:nth-child(4) li.be-nav__item {
    text-align: center;
  }
}
#module-section.car-color .be-domestic-reserve-car__form .be-domestic-reserve-car__column--submit .be-domestic-reserve-car-submit__button {
  padding-left: 80px;
  padding-right: 70px;
}
@media (min-width: 0px) and (max-width: 767px) {
  #module-section .be-primary-tab .be-primary-tab__panel {
    padding: 24px 8px;
  }
}




/* アクティビティモジュール */
#module-section.activity-color .be-domestic-reserve-traffic__title {
  background-image: url("/domestic/taas/image/activity_module_title.png");
  background-repeat: no-repeat;
  background-size: contain;
  height: 19px;
  font-size: 0;
  color: transparent;
  margin-bottom: 24px;
}
@media (min-width: 0px) and (max-width: 767px) {
  #module-section.activity-color .be-domestic-reserve-traffic__title {
    background-image: url("/domestic/taas/image/activity_module_title_sp.png");
    background-position: 50% 0;
    height: 40px;
    margin: 0 -16px 12px;
  }
}
#module-section.activity-color .be-domestic-reserve-traffic__row .be-domestic-reserve-traffic-use-date__button,
#module-section.activity-color .be-domestic-reserve-traffic__row .be-domestic-reserve-traffic-purpose__button,
#module-section.activity-color .be-domestic-reserve-traffic__row .be-domestic-reserve-traffic-place__button {
  border-color: #00146E;
}

#module-section.activity-color .be-domestic-reserve-traffic__row .be-domestic-reserve-traffic__column--place {
  order: 3;
}
#module-section.activity-color .be-domestic-reserve-traffic__row .be-domestic-reserve-traffic__column--purpose {
  order: 2;
}
#module-section.activity-color .be-domestic-reserve-traffic__row .be-domestic-reserve-traffic__column--use-date {
  order: 1;
}
@media (min-width: 0px) and (max-width: 767px) {
  #module-section.activity-color .be-domestic-reserve-traffic__row .be-domestic-reserve-traffic__column {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
  #module-section.activity-color .be-domestic-reserve-traffic__row .be-domestic-reserve-traffic-submit,
  #module-section.activity-color .be-domestic-reserve-traffic__row .be-domestic-reserve-traffic-submit .be-domestic-reserve-traffic-submit__button {
    width: 100%;
  }
}
/* ゴルフモジュール */
#module-section.golf-color .be-primary-tab__panel:before {
  display: block;
  content: "";
  height: 19px;
  background-image: url("/domestic/taas/image/golf_module_titile.png");
  background-repeat: no-repeat;
  background-size: contain;
  margin-bottom: 24px;
}
@media (min-width: 0px) and (max-width: 767px) {
  #module-section.golf-color .be-primary-tab__panel {
    padding: 24px 8px;
  }
  #module-section.golf-color .be-primary-tab__panel:before {
    background-position: 50% 0;
  }
}
#module-section.golf-color .be-primary-tab__panel form .js-button {
  border-color: #00146E;
}
#module-section.golf-color .be-primary-tab__panel form > .be-domestic-reserve-golf__row:nth-child(2) {
  display: block;
}
#module-section.golf-color .be-primary-tab__panel form > .be-domestic-reserve-golf__row:nth-child(2) .be-domestic-reserve-golf__column--left {
  padding-right: 0;
  padding-bottom: 24px;
  width: 100%;
}
#module-section.golf-color .be-primary-tab__panel form > .be-domestic-reserve-golf__row:nth-child(2) .be-domestic-reserve-golf__column--right {
  padding-left: 0;
}
#module-section.golf-color .be-primary-tab__panel form > .be-domestic-reserve-golf__row:nth-child(2) .be-domestic-reserve-golf__column--start-date-from-and-days {
  width: 25%;
}
@media (min-width: 0px) and (max-width: 767px) {
  #module-section.golf-color .be-primary-tab__panel form > .be-domestic-reserve-golf__row:nth-child(2) .be-domestic-reserve-golf__column--start-date {
    width: 46%;
  }
  #module-section.golf-color .be-primary-tab__panel form > .be-domestic-reserve-golf__row:nth-child(2) .be-domestic-reserve-golf__column--start-date-from-and-days {
    width: 54%;
  }
}
#module-section.golf-color .be-primary-tab__panel form .be-domestic-reserve-golf__column--title {
  color: #3D70B7;
}
@media (min-width: 0px) and (max-width: 767px) {
  #module-section.golf-color .be-primary-tab__panel form .be-domestic-reserve-golf__column--title {
    text-align: center;
    margin-bottom: 8px;
  }
}
#module-section.golf-color .be-primary-tab__panel form .be-domestic-reserve-golf-week-day-type__label {
  color: #6E7377;
}
#module-section.golf-color .be-primary-tab__panel form .be-domestic-reserve-golf-week-day-type__radio[aria-checked="true"] + .be-domestic-reserve-golf-week-day-type__label {
  font-weight: 700;
  color: #00146E;
}
#module-section.golf-color .be-primary-tab__panel form .be-domestic-reserve-golf-play-style .be-nav__item {
  width: 30%;
}
#module-section.golf-color .be-primary-tab__panel form .be-domestic-reserve-golf-play-style .be-nav__item .be-domestic-reserve-golf-play-style__label {
  color: #6E7377;
}
#module-section.golf-color .be-primary-tab__panel form .be-domestic-reserve-golf-play-style .be-nav__item .be-domestic-reserve-golf-play-style__checkbox[aria-checked="true"] + .be-domestic-reserve-golf-play-style__label {
  font-weight: 700;
  color: #00146E;
}
@media (min-width: 0px) and (max-width: 767px) {
  #module-section.golf-color .be-primary-tab__panel form .be-domestic-reserve-golf-play-style .be-nav {
    display: block;
  }
  #module-section.golf-color .be-primary-tab__panel form .be-domestic-reserve-golf-play-style .be-nav__item {
    width: 100%;
    margin: 12px 0;
  }
  #module-section.golf-color .be-primary-tab__panel form .be-domestic-reserve-golf-submit,
  #module-section.golf-color .be-primary-tab__panel form .be-domestic-reserve-golf-submit .be-domestic-reserve-golf-submit__button {
    width: 100%;
  }
}

/* ANAで予約するポイント */
@media (min-width: 0px) and (max-width: 767px) {
	#point-section-title {
		max-width: 80vw;
	  margin: 40px auto 20px;
	}
}
/* おトク情報・キャンペーン */
@media (min-width: 0px) and (max-width: 767px) {
	#campaign-section-title {
		max-width: 80vw;
	  margin: 40px auto 20px;
	}
}
.campaign-swipe {
	margin-bottom:60px;
}
.campaign-swipe .asw-swipLayout__pagination-container .asw-swipLayout__bullet {
  background-color: #fff;
  border-color: #00146E;
}
.campaign-swipe .asw-swipLayout__pagination-container .asw-swipLayout__bullet.asw-swipLayout__bullet--active {
  background-color: #00146E;
  border-color: #00146E;
}

/* 過去に閲覧したホテル（閲覧履歴） */
#history-section {
  margin-bottom: 64px;
}
#history-section .asw-container__body .asw-headline {
  background-image: url(/domestic/taas/image/history_title.png);
  background-repeat: no-repeat;
  background-position: 0 0;
  height: 27px;
  margin-top: 32px;
}
#history-section .asw-container__body .asw-headline .asw-headline__title {
  font-size: 0;
  color: transparent;
}
#history-section {
  padding: 1px 0 40px;
}
#history-section .asw-container__body .asw-container__inner > .aem-Grid {
  position: relative;
}

#hotel_access_history ul {
  width: 100%;
  white-space: nowrap;
  overflow-x: auto;
  padding-left: 8px;
  padding-bottom: 16px;
}
#hotel_access_history ul::-webkit-scrollbar {
  background-color: #fff;
  height: 8px;
  border-radius: 8px;
}
#hotel_access_history ul::-webkit-scrollbar-button {
  display: none;
}
#hotel_access_history ul::-webkit-scrollbar-thumb {
  background-color: #00AFD2;
  border-radius: 8px;
  cursor: pointer;
}
#hotel_access_history ul::-webkit-scrollbar-track {
}
#hotel_access_history ul li {
  display: inline-block;
  width: 240px;
  margin-right: 16px;
  border-radius: 10px;
  box-shadow: 0 8px 10px #b8c8cf;
}
#hotel_access_history ul li .list_inner {
  background-color: #fff;
  border-radius: 8px;
}
@media (min-width: 768px) {
  #hotel_access_history ul li .list_inner:hover .hotel_name {
    text-decoration: underline;
  }
}
#hotel_access_history ul li .list_inner .list_image a {
  display: block;
  background-color: #f0f0f0;
  border-radius: 8px 8px 0 0;
}
#hotel_access_history ul li .list_inner .list_image a img {
  width: 100%;
  min-height: 180px;
  border-radius: 8px 8px 0 0;
}
#hotel_access_history ul li .list_inner .list_data {
  padding: 16px;
  white-space: wrap;
  cursor: pointer;
}
#hotel_access_history ul li .list_inner .list_data .hotel_name {
  width: 100%;
  white-space: normal;
  word-break: break-all;
  min-height: 2.1em;
  line-height: 1.1;
  margin: 0 0 5px;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	overflow: hidden;
  -webkit-line-clamp: 2;
  font-feature-settings: "palt";
}
#hotel_access_history ul li .list_inner .list_data .hotel_link {
  display: none;
}
#hotel_access_history ul li .list_inner .list_data .access_data {
  color: #6E7377;
  font-size: 12px;
}
.hotel-history-pager {
  position: relative;
}
.hotel-history-pager > div {
  display: block;
  width: 40px;
  height: 40px;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 50%;
  position: absolute;
  top: -150px;
  cursor: pointer;
  box-shadow: 0 3px 4px rgba(0,0,0,.1);
}
.hotel-history-pager > div:after {
  content: "";
  position: absolute;
  border: 2px solid #757575;
  width: 14px;
  height: 14px;
  top: 9px;
}
.hotel-history-pager > div.prev {
  left: 30px;
  display: none;
}
.hotel-history-pager > div.prev:after {
  transform: rotateZ(45deg) translatex(12px) translatey(-8px);
  border-right: none;
  border-top: none;
}
.hotel-history-pager > div.next {
  right: 30px;
}
.hotel-history-pager > div.next:after {
  transform: rotateZ(45deg) translatex(8px) translatey(-3px);
  border-left: none;
  border-bottom: none;
}

/* おすすめのホテル */
#hotel-section .asw-container__body .asw-form-select {
  margin: 0 auto;
}
#hotel-section .asw-form-select__wrapper .asw-form-select__inner:before {
  content: "";
  font-family: "asw-icon";
  font-size: 1.55rem;
  margin: 1px 8px 1px 1px;
  width: 14px;
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translatey(-50%);
  color: #00146E;
  font-weight: 700;
}
#hotel-section .asw-form-select__wrapper .asw-form-select__inner .asw-form-select__box {
  padding-left: 40px;
  border-color: #00146E;
  color: #00146E;
  font-weight: 700;
}
@media (min-width: 0px) and (max-width: 767px) {
  #hotel-section .asw-container__body {
    position: relative;
  }
}
#hotel-section .asw-form-select__label {
	display:none;
}
@media (min-width: 0px) and (max-width: 767px) {
	#area-pulldown-wrap .asw-form-select__wrapper--open .asw-form-select-modal {
	  height: 40vh !important;
	}
}
#hotel-section .gadgetCarouselClass .asw-card__inner {
  box-shadow: 0 4px 8px rgba(0,0,0,.1);
  border-radius: 8px;
}
#hotel-section .gadgetCarouselClass .asw-card__inner .asw-tag-card__image {
  border-radius: 8px 8px 0 0;
}
#hotel-section .gadgetCarouselClass .asw-card__inner .asw-tag-card__contents {
  padding: 0 8px 8px;
}
#hotel-section .gadgetCarouselClass .asw-card__inner .asw-tag-card__contents .asw-tag-card__txt {
  font-size: 1.3rem;
}
/* おすすめの温泉地 */
#hotspring-section {
  padding-top: 80px;
}
#hotspring-section .asw-container__body .asw-form-select {
  margin: 0 auto;
}
#hotspring-section .asw-form-select__wrapper .asw-form-select__inner:before {
  content: "";
  font-family: "asw-icon";
  font-size: 1.55rem;
  margin: 1px 8px 1px 1px;
  width: 14px;
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translatey(-50%);
  color: #00146E;
  font-weight: 700;
}
#hotspring-section .asw-form-select__wrapper .asw-form-select__inner .asw-form-select__box {
  padding-left: 40px;
  border-color: #00146E;
  color: #00146E;
  font-weight: 700;
}
@media (min-width: 0px) and (max-width: 767px) {
  #hotspring-section {
    margin-top: -50px;
    background-position: 45% -10px;
  }
  #hotspring-section .asw-container__body {
    background-position: 0 30px;
    position: relative;
  }
  #hotspring-section .asw-container__body:before {
    position: absolute;
    display: block;
    content: "";
    width: 96vw;
    height: 160px;
    background-image: url(/domestic/taas/image/recommended_hotspring_bg.png);
    background-repeat: no-repeat;
    background-position: 96% 30px;
  }
}
#hotspring-section .asw-form-select__label {
	display:none;
}
@media (min-width: 0px) and (max-width: 767px) {
	#area-pulldown-wrap .asw-form-select__wrapper--open .asw-form-select-modal {
	  height: 40vh !important;
	}
}
#hotspring-section .gadgetCarouselClass .asw-card__inner {
  box-shadow: 0 4px 8px rgba(0,0,0,.1);
  border-radius: 8px;
}
#hotspring-section .gadgetCarouselClass .asw-card__inner .asw-tag-card__image {
  border-radius: 8px 8px 0 0;
}
#hotspring-section .gadgetCarouselClass .asw-card__inner .asw-tag-card__contents {
  padding: 0 8px 8px;
}
#hotspring-section .gadgetCarouselClass .asw-card__inner .asw-tag-card__contents .asw-tag-card__txt {
  font-size: 1.3rem;
}

/* おすすめのゴルフ場 */
#golf_section .asw-container__body .asw-form-select {
  margin: 0 auto;
}
#golf_section .asw-form-select__wrapper .asw-form-select__inner::before {
  content: "";
  font-family: "asw-icon";
  font-size: 1.55rem;
  margin: 1px 8px 1px 1px;
  width: 14px;
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translatey(-50%);
  color: #00146E;
  font-weight: 700;
}
#golf_section .asw-form-select__wrapper .asw-form-select__inner .asw-form-select__box {
  padding-left: 40px;
  border-color: #00146E;
  color: #00146E;
  font-weight: 700;
}

/* おすすめの特集 */
#tokushu-section .asw-container__body .asw-headline {
  background-image: url(/domestic/taas/image/featured_title.png);
  background-repeat: no-repeat;
  background-position: 50% 0;
  height: 66px;
}
#tokushu-section .asw-container__body .asw-headline .asw-headline__title {
  font-size: 0;
  color: transparent;
}
#tokushu-section.activity .asw-container__body .asw-headline {
  background-image: none;
}
#tokushu-section.activity .asw-container__body .asw-headline h2 {
  font-size: 2.8rem;
  color: #333;
}

#tokushu-section .asw-container__inner .asw-tile {
  width: 900px;
  max-width: 100%;
  margin: 0 auto;
  column-gap: 24px;
}
#tokushu-section .asw-container__inner .asw-tile .asw-tile__box .asw-guide-link__image:before {
  background-image: none;
  background-color: rgba(125, 125, 125, .27);
  border-radius: 0;
  height: 25%;
  backdrop-filter: blur(8px);
}
#tokushu-section .asw-container__inner .asw-tile .asw-tile__box:nth-child(1) .asw-guide-link__image:before {
  background-color: rgba(255, 255, 255, .70);
  height: 18%;
}
#tokushu-section .asw-container__inner .asw-tile .asw-tile__box .asw-guide-link__text {
  font-size: 1.5rem;
  bottom: 0;
  height: 23.5%;
  padding: 0 16px 4px;
  font-size: 1.3rem;
}
#tokushu-section .asw-container__inner .asw-tile .asw-tile__box:nth-child(1) .asw-guide-link__text {
  height: 16%;
  padding: 0 16px 16px;
  color: #333;
  font-size: 1.6rem;
}
@media (min-width: 0px) and (max-width: 767px) {
  #tokushu-section .asw-container__inner .asw-tile {
    column-gap: 14px;
  }
  #tokushu-section .asw-container__inner .asw-tile .asw-tile__box .asw-guide-link__text {
    font-size: 2.3vw;
    padding: 0 12px;
  }
}

/* アクティビティ：おすすめ特集 */
#tokushu-section.activity .asw-layout-grid--interval-s {
  margin-top: 40px;
}
#tokushu-section.activity .asw-layout-grid--interval-s .asw-tag-card__inner {
  padding-left: 0;
  padding-right: 0;
}
#tokushu-section.activity .asw-layout-grid--interval-s .asw-tag-card__inner .asw-tag-card__txt {
  font-weight: 700;
}


/* 関連タグ・関連ページ */
#related-section {
  margin-bottom: 64px;
}

/* フッターアコーディオン */
#footerlink-section {
  padding-top: 40px;
}
#footerlink-section .footerlink-accordion {
  background-color: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 8px rgba(0,0,0,.2);
}
#footerlink-section .footerlink-accordion li.asw-accordion__item:last-child {
  border-bottom: none;
}
#footerlink-section .footerlink-accordion li.asw-accordion__item .asw-accordion__title {
  padding: 24px;
}
#footerlink-section .footerlink-accordion li.asw-accordion__item .asw-accordion__title:before,
#footerlink-section .footerlink-accordion li.asw-accordion__item .asw-accordion__title:after {
  right: 17px;
}
#footerlink-section .footerlink-accordion li.asw-accordion__item .asw-accordion__title .asw-accordion__title-main {
  color: #333;
}
#footerlink-section .footerlink-accordion li.asw-accordion__item .asw-accordion__content {
  padding: 0 24px 0px;
  display: block;
  overflow: hidden;
  max-height: 0px;
  transition: .2s;
}
#footerlink-section .footerlink-accordion li.asw-accordion__item .asw-accordion__title--open + .asw-accordion__content {
  display: block;
  max-height: 600px;
}
#footerlink-section .footerlink-accordion li.asw-accordion__item .asw-accordion__content:before {
  background-color: transparent;
}
#footerlink-section .footerlink-accordion li.asw-accordion__item .asw-accordion__content .asw-text-link__item {
  border-top: 1px solid #dedede;
  margin: 0;
}
#footerlink-section .footerlink-accordion li.asw-accordion__item .asw-accordion__content .asw-text-link__item a {
  display: block;
  padding: 16px 0 16px 0;
  color: #333;
}
#footerlink-section .footerlink-accordion li.asw-accordion__item .asw-accordion__content .asw-text-link__item a:before {
  top: 50%;
  transform: translatey(-50%);
}
.footerlink-accordion .asw-text {
    margin-top: 0 !important;
    margin-bottom: 12px !important;
}
@media (min-width: 0px) and (max-width: 767px) {
  #footerlink-section .footerlink-accordion li.asw-accordion__item .asw-accordion__content .asw-text-link__item a {
    padding-right: 24px;
  }
}