@charset "UTF-8";
/* Color Palette */
/* Padding */
/* Heder Space */
/* Wrap */
/*-----------
Root
-------------*/
:root {
  --large: 8rem;
  --medium: 5rem;
  --small: 2rem;
  --transition: all 0.3s ease; }

@media screen and (max-width: 1024px) {
  :root {
    --large: 5rem;
    --medium: 3rem;
    --small: 1.5rem; } }
@media screen and (max-width: 640px) {
  :root {
    --large: 3rem;
    --medium: 2rem;
    --small: 1rem; } }
*, *:before, *:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }

h1 {
  font-size: min(5vw, 3rem); }

h2 {
  color: #ffffff;
  padding-bottom: 2rem;
  margin: 0 auto;
  text-align: center;
  font-size: 36px; }
  @media (max-width: 1024px) {
    h2 {
      font-size: 28px; } }
  @media (max-width: 640px) {
    h2 {
      font-size: 24px;
      padding-bottom: 1rem; } }

h2 + p {
  margin: .5rem 0 0;
  font-weight: 600; }
  @media (max-width: 640px) {
    h2 + p {
      margin: 0 0 1rem; } }

body {
  background: #ffffff; }

section {
  padding: var(--large) 0; }

.wrap {
  width: 100%;
  padding: 8rem 0; }
  @media (max-width: 640px) {
    .wrap {
      padding: 4rem 0; } }

.note {
  font-size: 90%; }

/* ------------------
MAIN VISUAL 
------------------*/
.mv {
  width: 100%;
  height: 85vh;
  min-height: 650px;
  max-height: 800px;
  margin-top: 90px;
  position: relative;
  display: flex;
  justify-content: center; }
  @media (max-width: 1024px) {
    .mv {
      height: 60vw;
      min-height: auto; } }
  @media (max-width: 640px) {
    .mv {
      height: 100vw;
      min-height: auto;
      margin-top: 52px; } }

.mv_ttl {
  text-align: center;
  color: #FFF;
  font-feature-settings: 'palt';
  position: absolute;
  top: 1.5vw;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10; }
  .mv_ttl h1 {
    font-size: clamp(45px, 3.5vw, 72px);
    font-weight: 600;
    line-height: 1.4;
    filter: drop-shadow(0 0 12px rgba(0, 0, 0, 0.3)); }
    @media (max-width: 1024px) {
      .mv_ttl h1 {
        font-size: clamp(36px, calc( 15px + 3vw ), 48px); } }
    @media (max-width: 640px) {
      .mv_ttl h1 {
        font-size: clamp(27px, calc( 14px + 3vw ), 36px); } }
    .mv_ttl h1 span {
      line-height: 1.8;
      display: inline-block;
      font-size: 80%; }
  @media (max-width: 1024px) {
    .mv_ttl {
      top: 8vw; } }
  @media (max-width: 640px) {
    .mv_ttl {
      width: 90%;
      top: 11vw; } }

.main-visual, .kenburns-swiper {
  width: 100%;
  height: 100%; }

.swiper {
  z-index: 0; }

.swiper-slide, .kenburns-container {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden; }
  .swiper-slide img, .kenburns-container img {
    width: 100%;
    height: 100%;
    object-fit: cover; }

.kenburns-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  animation: none;
  animation: kenburnsZoom 9s linear infinite;
  transform-origin: center center;
  will-change: transform;
  /* ブラウザ最適化 */
  transform: translateZ(0);
  /* ハードウェアアクセラレーション */
  backface-visibility: hidden;
  animation-fill-mode: forwards;
  animation-play-state: paused; }

@keyframes kenburnsZoom {
  0% {
    transform: scale(1.1); }
  100% {
    transform: scale(1); } }
.credit {
  width: 97.5%;
  height: 98%;
  position: absolute;
  z-index: 8;
  color: #ffffff;
  font-weight: 400; }
  @media (max-width: 640px) {
    .credit {
      font-size: 11px;
      width: 95.5%;
      height: 99%; } }
  .credit p.c_name {
    position: absolute;
    text-align: right;
    top: 2%;
    right: 0%;
    filter: drop-shadow(0 0 6px rgba(0, 0, 0, 0.4)); }
  .credit p.c_copyright {
    position: absolute;
    text-align: right;
    bottom: 0;
    right: 0;
    filter: drop-shadow(0 0 6px rgba(0, 0, 0, 0.4));
    /*@include tab{
    	bottom: 14%;
    }*/ }
    @media (max-width: 640px) {
      .credit p.c_copyright {
        bottom: 4%; } }

.dim {
  position: absolute;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0) 80%);
  mix-blend-mode: multiply;
  z-index: 5;
  width: 100%;
  height: 100%;
  overflow: hidden; }

/* ------------------
キャンペーン要約
------------------*/
.cp-summary {
  display: flex;
  gap: 20px;
  margin: 2rem auto 0;
  justify-content: center;
  flex-wrap: wrap; }
  .cp-summary__block {
    flex: 1 1 22%;
    max-width: 290px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    padding: 2rem 1rem;
    text-align: center;
    position: relative; }
    .cp-summary__block h3 {
      font-size: clamp(18px, 2vw, 24px);
      margin-bottom: 5px;
      color: #1414d2; }
    .cp-summary__block .icon-wrap {
      margin: auto;
      padding-bottom: 1.5rem;
      width: 40%;
      max-width: 120px; }
      .cp-summary__block .icon-wrap img {
        width: 100%; }
    .cp-summary__block p {
      color: #000000;
      font-size: clamp(12px, 1vw, 16px); }
      .cp-summary__block p span {
        color: #1414d2;
        font-size: 140%;
        font-weight: 600; }
    .cp-summary__block .emphasize {
      display: flex;
      align-items: center;
      justify-content: center;
      margin-top: .5rem;
      gap: .5rem; }
      .cp-summary__block .emphasize p {
        display: inline-block;
        color: #1414d2;
        font-weight: 600;
        padding: 0; }
      .cp-summary__block .emphasize > p:first-child {
        font-size: 250%;
        line-height: 1; }
      .cp-summary__block .emphasize > p:last-child {
        line-height: 1.2;
        text-align: left;
        font-size: 120%; }
    .cp-summary__block::after {
      content: '';
      background: url("../img/icon_arrow.svg") no-repeat center/contain;
      width: 50px;
      height: 50px;
      border-radius: 50%;
      position: absolute;
      top: 50%;
      right: -35px;
      transform: translateY(-50%);
      z-index: 20; }
    .cp-summary__block:last-child::after {
      content: none; }
  @media (max-width: 1024px) {
    .cp-summary {
      display: none; } }

/* ------------------
キャンペーン要約　スマホビュー
------------------*/
.sp-summary_wrapper {
  display: none;
  background: #1414d2; }
  @media (max-width: 1024px) {
    .sp-summary_wrapper {
      display: block; } }

.sp-summary {
  width: 90%;
  max-width: 480px;
  margin: 0 auto;
  padding: 4rem 0;
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap; }
  @media (max-width: 640px) {
    .sp-summary {
      max-width: 420px;
      gap: 12px; } }
  .sp-summary__block {
    width: 100%;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    position: relative;
    display: flex;
    flex-direction: row; }
    @media (max-width: 640px) {
      .sp-summary__block {
        padding: 1.2rem; } }
    .sp-summary__block .icon-wrap {
      width: 20%;
      max-width: 80px;
      display: flex;
      align-items: center; }
      .sp-summary__block .icon-wrap img {
        width: 100%; }
    .sp-summary__block .summary-text {
      padding-left: 2rem;
      font-feature-settings: 'palt'; }
      @media (max-width: 640px) {
        .sp-summary__block .summary-text {
          padding-left: 1.2rem; } }
      .sp-summary__block .summary-text h3 {
        text-align: left;
        font-size: clamp(18px, 2vw, 24px);
        margin-bottom: 5px;
        color: #1414d2; }
      .sp-summary__block .summary-text p {
        text-align: left;
        color: #000000;
        font-size: clamp(12px, 1vw, 16px); }
        .sp-summary__block .summary-text p span {
          color: #1414d2;
          font-size: 140%;
          font-weight: 600; }
    .sp-summary__block::before {
      content: '';
      background: url("../img/icon_arrow.svg") no-repeat center/contain;
      width: 42px;
      height: 42px;
      border-radius: 50%;
      position: absolute;
      left: 50%;
      top: -32px;
      transform: translateX(-50%) rotate(90deg);
      z-index: 20; }
      @media (max-width: 640px) {
        .sp-summary__block::before {
          width: 30px;
          height: 30px;
          top: -21px; } }
    .sp-summary__block:first-child::before {
      content: none; }

/* ------------------
キャンペーン概要
------------------*/
.overview {
  width: 100%; }

.cpdate {
  text-align: center;
  font-weight: 600;
  font-size: clamp(30px, 4vw, 42px); }
  @media (max-width: 640px) {
    .cpdate {
      font-size: clamp(18px, calc( -12px + 9vw ), 24px); } }
  .cpdate span {
    font-size: clamp(21px, 3vw, 36px); }
    @media (max-width: 640px) {
      .cpdate span {
        font-size: clamp(16px, calc( -9px + 7vw ), 21px); } }
  .cpdate__ttl {
    font-size: clamp(12px, 2vw, 18px);
    color: #000000;
    font-weight: 400;
    padding-bottom: 20px; }
  .cpdate__card {
    color: #1414d2;
    font-size: 28px; }
    .cpdate__card span {
      font-size: 24px; }
    @media (max-width: 1412px) {
      .cpdate__card {
        font-size: 26px; }
        .cpdate__card span {
          font-size: 22px; } }
    @media (max-width: 1024px) {
      .cpdate__card {
        font-size: 23px; }
        .cpdate__card span {
          font-size: 20px; } }
    @media (max-width: 1024px) {
      .cpdate__card {
        font-size: 18px; }
        .cpdate__card span {
          font-size: 16px; } }
  .cpdate p {
    line-height: 1.2;
    font-feature-settings: 'palt'; }

.subject {
  margin: var(--medium) auto;
  display: flex;
  flex-wrap: wrap;
  gap: 4rem;
  align-items: stretch; }
  @media (max-width: 1024px) {
    .subject {
      gap: 1rem; } }
  .subject .destination, .subject .period {
    width: calc((100% - 4rem) / 2);
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    box-sizing: border-box; }
    @media (max-width: 1024px) {
      .subject .destination, .subject .period {
        width: calc((100% - 1rem) / 2); } }
    @media (max-width: 640px) {
      .subject .destination, .subject .period {
        width: 100%; } }
    .subject .destination .row, .subject .period .row {
      width: 100%;
      text-align: center;
      border: 3px solid #1414d2;
      padding: 1.5rem;
      font-weight: 400; }
      .subject .destination .row.content, .subject .period .row.content {
        border-radius: 0 0 10px 10px;
        flex: 1;
        padding: 2rem 1rem;
        line-height: 1.3;
        font-weight: 600;
        font-feature-settings: 'palt';
        font-size: 28px; }
        .subject .destination .row.content span, .subject .period .row.content span {
          font-size: 24px; }
        @media (max-width: 1412px) {
          .subject .destination .row.content, .subject .period .row.content {
            font-size: 26px; }
            .subject .destination .row.content span, .subject .period .row.content span {
              font-size: 22px; } }
        @media (max-width: 1024px) {
          .subject .destination .row.content, .subject .period .row.content {
            font-size: 23px; }
            .subject .destination .row.content span, .subject .period .row.content span {
              font-size: 20px; } }
        @media (max-width: 1024px) {
          .subject .destination .row.content, .subject .period .row.content {
            font-size: 17px; }
            .subject .destination .row.content span, .subject .period .row.content span {
              font-size: 15px; } }

/* ------------------
キャンペーン詳細
------------------*/
.detail {
  margin-top: var(--small);
  display: flex; }
  @media (max-width: 1024px) {
    .detail {
      flex-direction: column; } }
  .detail__image {
    width: 27%;
    min-width: 400px;
    position: relative;
    overflow: hidden;
    background: #f7f4f2;
    display: flex;
    flex-direction: column;
    justify-content: center; }
    .detail__image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center; }
    .detail__image .sec_logo {
      width: 50%;
      max-width: 300px;
      margin: auto;
      padding-bottom: var(--medium); }
      .detail__image .sec_logo img {
        width: 100%; }
    .detail__image .sec_cards {
      width: 70%;
      max-width: 240px;
      margin: auto;
      display: flex;
      flex-direction: column; }
      .detail__image .sec_cards img {
        width: 100%;
        transition: transform .3s ease;
        will-change: transform; }
        @media (max-width: 1024px) {
          .detail__image .sec_cards img {
            width: 100%; } }
        .detail__image .sec_cards img:hover {
          transform: scale(1.025); }
      @media (max-width: 1024px) {
        .detail__image .sec_cards {
          width: 80%;
          margin: auto;
          max-width: none;
          flex-direction: row; } }
    @media (max-width: 1024px) {
      .detail__image {
        width: 100%;
        min-width: auto;
        height: 350px; } }
    @media (max-width: 640px) {
      .detail__image {
        height: 200px; } }
  .detail__content {
    width: 73%;
    background: #ffffff;
    display: flex;
    align-items: center;
    min-width: 0; }
    @media (max-width: 1024px) {
      .detail__content {
        width: 100%;
        min-width: auto; } }
    .detail__content .text-wrap {
      width: 100%;
      color: #000000;
      padding: 3rem 0 3rem clamp(18px, 2vw, 40px);
      min-width: 0; }
      @media (max-width: 1024px) {
        .detail__content .text-wrap {
          padding-left: 5%; } }
      .detail__content .text-wrap.onlyif {
        position: relative;
        padding-top: 10rem; }
        .detail__content .text-wrap.onlyif::before {
          content: "チャンス①の3,000ボーナスマイル獲得者が対象";
          display: block;
          position: absolute;
          top: 0;
          left: 0;
          width: 100%;
          background: #551e5f;
          font-family: 'NeuePlak', 'Open Sans', 'Noto Sans JP', 'hiragino kaku gothic pro', sans-serif;
          color: #fff;
          font-weight: 600;
          font-size: clamp(16px, calc( 14.4px + 0.5vw ), 24px);
          line-height: 1.5;
          padding: 2.5rem 0 2.5rem clamp(18px, 2vw, 40px); }
          @media (max-width: 1024px) {
            .detail__content .text-wrap.onlyif::before {
              padding: 1.5rem 0 1.5rem 5%; } }
          @media (max-width: 640px) {
            .detail__content .text-wrap.onlyif::before {
              content: "チャンス その①の3,000ボーナスマイル\A獲得者が対象";
              white-space: pre; } }
    .detail__content .explain h4 {
      font-size: clamp(16px, calc( 14.4px + 0.5vw ), 24px);
      font-weight: 400;
      line-height: 1.8; }
      .detail__content .explain h4 span.strong {
        font-weight: 600; }
      .detail__content .explain h4 span.bigger {
        font-size: 140%; }
    .detail__content .how-to {
      margin-top: 4rem; }
      .detail__content .how-to__ttl {
        position: relative;
        padding-bottom: 2rem; }
        .detail__content .how-to__ttl h4 {
          font-size: clamp(16px, calc( 14.4px + 0.5vw ), 24px);
          font-weight: 500;
          display: inline-block; }
        .detail__content .how-to__ttl span {
          background: #FF5050;
          color: #ffffff;
          padding: .5rem 1rem; }
          .detail__content .how-to__ttl span.green {
            background: #5ad28c;
            color: #000000; }
        .detail__content .how-to__ttl::after {
          content: "";
          position: absolute;
          bottom: 0;
          left: 0;
          width: 100%;
          max-width: calc(930px + 3rem);
          height: 1px;
          background: rgba(0, 0, 0, 0.5); }
      .detail__content .how-to__scroller {
        width: 100%;
        padding-right: 1rem; }
        @media (max-width: 1412px) {
          .detail__content .how-to__scroller {
            overflow-x: auto;
            -webkit-overflow-scrolling: touch; } }
      .detail__content .how-to__box_wrap {
        margin: 2rem 0 1rem;
        display: flex;
        flex-wrap: nowrap;
        gap: 1.5rem;
        width: auto; }
        .detail__content .how-to__box_wrap::after {
          content: ""; }
          @media (max-width: 1412px) {
            .detail__content .how-to__box_wrap::after {
              flex: 0 0 1px; } }
        @media (max-width: 640px) {
          .detail__content .how-to__box_wrap.sec_column {
            flex-direction: column; }
            .detail__content .how-to__box_wrap.sec_column:last-child {
              gap: 0px; }
              .detail__content .how-to__box_wrap.sec_column:last-child > * {
                margin-bottom: 1.5rem; }
              .detail__content .how-to__box_wrap.sec_column:last-child > *:last-child {
                margin-bottom: 0; } }
      .detail__content .how-to__box {
        width: 310px;
        border: 3px solid #1414d2;
        border-radius: 10px;
        box-sizing: border-box;
        box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
        padding: 1.6rem;
        display: flex;
        flex-direction: column;
        flex: 0 0 auto; }
        @media (max-width: 1412px) {
          .detail__content .how-to__box {
            width: 310px; } }
        @media (max-width: 640px) {
          .detail__content .how-to__box.sec_sp_1 {
            width: 98%; } }
        .detail__content .how-to__box.big-box {
          width: 635px;
          /*@include sp {
          	width: 310px;
          }*/ }
          @media (max-width: 1412px) {
            .detail__content .how-to__box.big-box {
              margin-right: 1rem; } }
          .detail__content .how-to__box.big-box .btn {
            width: 60%; }
            @media (max-width: 640px) {
              .detail__content .how-to__box.big-box .btn {
                width: 100%; } }
          @media (max-width: 640px) {
            .detail__content .how-to__box.big-box.sec_sp_2 {
              width: 98%; } }
      .detail__content .how-to .step {
        width: 100%;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 3rem; }
        .detail__content .how-to .step p {
          font-size: 26px;
          line-height: 1;
          font-weight: 600; }
          .detail__content .how-to .step p span {
            position: relative;
            display: inline-block;
            padding-bottom: 4px;
            color: #1414d2; }
            .detail__content .how-to .step p span::after {
              content: "";
              position: absolute;
              left: 0;
              right: 0;
              bottom: 0;
              height: 2px;
              background: #1414d2; }
        .detail__content .how-to .step .step_icon {
          width: 32px;
          height: 32px;
          display: grid;
          place-items: center; }
          .detail__content .how-to .step .step_icon img {
            width: 100%;
            height: 100%;
            object-fit: contain; }
          .detail__content .how-to .step .step_icon.small-icon {
            width: 36px;
            height: 36px; }
      .detail__content .how-to .info {
        flex: 1 1 auto;
        display: flex;
        flex-direction: column; }
        .detail__content .how-to .info .notice {
          font-size: 80%;
          margin: 3rem 0; }
          .detail__content .how-to .info .notice span {
            color: #FF5050; }
        .detail__content .how-to .info .agree {
          font-size: 66%;
          text-align: center;
          color: rgba(0, 0, 0, 0.7);
          padding-bottom: 1rem; }
        .detail__content .how-to .info .further {
          font-size: 80%;
          position: relative;
          margin-top: auto;
          padding-top: 8px; }
          .detail__content .how-to .info .further::before {
            content: "";
            position: absolute;
            left: 0;
            right: 0;
            top: 0;
            height: 1px;
            background: rgba(0, 0, 0, 0.5); }
      .detail__content .how-to .btn {
        margin-top: auto; }
      .detail__content .how-to table {
        width: 100%;
        border-collapse: separate;
        border-spacing: 0;
        text-align: left;
        color: #000000;
        line-height: 1.5;
        box-sizing: border-box;
        margin: 1rem 0; }
        .detail__content .how-to table th {
          background: #d7d2ff;
          width: 20%;
          font-weight: 400;
          min-width: 60px;
          max-width: 150px; }
          @media (max-width: 640px) {
            .detail__content .how-to table th {
              width: 10%; } }
        .detail__content .how-to table td {
          background-color: #f7f4f2; }
        .detail__content .how-to table td, .detail__content .how-to table th {
          font-feature-settings: 'palt';
          font-size: 16px;
          padding: 1rem;
          border: 0px solid transparent;
          background-clip: padding-box;
          vertical-align: middle; }
          @media (max-width: 640px) {
            .detail__content .how-to table td, .detail__content .how-to table th {
              font-size: 14px; } }
        .detail__content .how-to table tr > th + td {
          border-left-width: 8px; }
          @media (max-width: 640px) {
            .detail__content .how-to table tr > th + td {
              border-left-width: 5px; } }
        .detail__content .how-to table tr + tr > th {
          border-top-width: 8px; }
          @media (max-width: 640px) {
            .detail__content .how-to table tr + tr > th {
              border-top-width: 5px; } }
        .detail__content .how-to table tr + tr > td {
          border-top-width: 8px; }
          @media (max-width: 640px) {
            .detail__content .how-to table tr + tr > td {
              border-top-width: 5px; } }

/* ------------------
羽田便バナー
------------------*/
h2.sarani {
  position: relative;
  display: block;
  text-align: center;
  width: fit-content;
  line-height: 1;
  padding: 0;
  margin-bottom: 2rem; }
  h2.sarani::before, h2.sarani::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    background: #1414d2; }
  h2.sarani::before {
    top: -8px; }
  h2.sarani::after {
    bottom: -8px; }

a.nodeco {
  color: #000000;
  padding: 0; }

.banner {
  width: 100%;
  max-width: 1080px;
  margin: var(--small) auto 0;
  /*border-radius: 10px;
  box-shadow: 0 0 8px rgba(0, 0, 0, .2);
  overflow: hidden;
  transition: transform .3s ease;
  will-change: transform;
  &:hover{
  	transform: scale(1.025);
  }*/ }
  .banner > a {
    display: flex;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    transition: transform .3s ease;
    transform-origin: center;
    backface-visibility: hidden; }
    .banner > a:hover {
      transform: scale(1.025); }
  .banner__image {
    width: 40%;
    position: relative; }
    @media (max-width: 1024px) {
      .banner__image {
        width: 30%; } }
    .banner__image img {
      width: 100%;
      height: 100%;
      object-fit: cover; }
    .banner__image .credit-bnr {
      position: absolute;
      z-index: 8;
      color: #ffffff;
      font-weight: 400;
      font-size: 70%;
      margin: .5rem 1rem; }
  .banner__content {
    width: 60%;
    position: relative;
    display: flex;
    align-items: center;
    padding: 3rem 1rem 2rem; }
    @media (max-width: 1024px) {
      .banner__content {
        width: 70%; } }
    .banner__content::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 10px;
      background: #1414d2; }
    .banner__content p {
      margin: 0 auto;
      font-size: clamp(16px, calc( 14.4px + 0.5vw ), 24px); }
      @media (max-width: 1024px) {
        .banner__content p {
          font-size: clamp(16px, calc( 7px + 1vw ), 21px); } }
      @media (max-width: 640px) {
        .banner__content p {
          font-size: clamp(14px, 2vw, 21px); } }
      .banner__content p span {
        font-size: 130%;
        font-weight: 600; }

/* ------------------
マイレージぷらmemberホテルオファー
------------------*/
@media (max-width: 640px) {
  #mpmember .large-wrapper {
    width: 100%; } }

.mp-logo {
  width: 50%;
  max-width: 300px;
  margin: 0 auto var(--medium); }
  .mp-logo img {
    width: 100%; }
  @media (max-width: 640px) {
    .mp-logo {
      max-width: 240px; } }

.hotel-wrap {
  width: 100%;
  margin: var(--small) auto 0;
  overflow: visible; }

.hotel-scroller {
  display: flex;
  gap: 30px; }
  @media (max-width: 1024px) {
    .hotel-scroller {
      gap: 16px; } }
  @media (max-width: 640px) {
    .hotel-scroller {
      padding: 1rem 5%;
      overflow-x: auto; } }

.hotel-card {
  width: calc((100% - 60px) / 3);
  display: flex;
  flex-direction: column;
  border-radius: 10px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  background: transparent;
  transition: transform .3s ease;
  will-change: transform; }
  @media (max-width: 1024px) {
    .hotel-card {
      width: calc((100% - 32px) / 3); } }
  @media (max-width: 640px) {
    .hotel-card {
      min-width: 240px; } }
  .hotel-card:hover {
    transform: scale(1.025); }
  .hotel-card__image {
    width: 100%;
    position: relative;
    border-radius: 10px 10px 0 0;
    overflow: hidden; }
    .hotel-card__image img {
      width: 100%;
      height: 100%;
      object-fit: cover; }
    .hotel-card__image .credit-bnr {
      position: absolute;
      z-index: 8;
      color: #ffffff;
      font-weight: 400;
      font-size: 70%;
      margin: .5rem 1rem; }
  .hotel-card__content {
    width: 100%;
    background: #ffffff;
    position: relative;
    display: flex;
    align-items: center;
    border-radius: 0 0 10px 10px; }
    .hotel-card__content::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 10px;
      background: #1414d2; }
    .hotel-card__content p {
      margin: 3rem auto;
      font-size: clamp(16px, calc( 14.4px + 0.5vw ), 24px); }
      @media (max-width: 1024px) {
        .hotel-card__content p {
          margin: 2rem auto 1.5rem; } }

/* ------------------
ループバナー
------------------*/
.swiper-loop-wrapper {
  position: relative;
  padding: var(--medium) 0; }

.swiper-loop, .swiper-loop-reverse {
  overflow: hidden; }
  .swiper-loop .swiper-wrapper, .swiper-loop-reverse .swiper-wrapper {
    transition-timing-function: linear; }
    .swiper-loop .swiper-wrapper .swiper-slide, .swiper-loop-reverse .swiper-wrapper .swiper-slide {
      width: auto;
      height: 100%;
      max-height: 500px; }
      @media (max-width: 1024px) {
        .swiper-loop .swiper-wrapper .swiper-slide, .swiper-loop-reverse .swiper-wrapper .swiper-slide {
          max-height: 460px; } }
      .swiper-loop .swiper-wrapper .swiper-slide img, .swiper-loop-reverse .swiper-wrapper .swiper-slide img {
        width: auto;
        height: 500px; }
        @media (max-width: 1024px) {
          .swiper-loop .swiper-wrapper .swiper-slide img, .swiper-loop-reverse .swiper-wrapper .swiper-slide img {
            max-height: 200px; } }

/* ------------------
ROUTE MAP
------------------*/
.routemap-img {
  margin-bottom: var(--small);
  width: 100%; }
  .routemap-img img {
    width: 100%; }

.routemap-note {
  text-align: right;
  font-weight: 400;
  margin: 2rem 0 1rem;
  font-size: 80%; }

/* ------------------
利用規約
------------------*/
#terms {
  display: grid;
  gap: 5rem;
  background: url("../img/bg_tng.jpg");
  background-size: cover;
  background-position: center top; }

.tnc_wrap {
  width: 90%;
  max-width: 1080px;
  margin: auto; }

.tnc {
  width: 100%;
  margin: var(--small) 0;
  border-radius: 10px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.2); }
  .tnc__button {
    border-radius: 10px; }
  .tnc button {
    appearance: none;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: none;
    cursor: pointer;
    position: relative; }
    .tnc button h3 {
      font-family: 'NeuePlak', 'Open Sans', 'Noto Sans JP', 'hiragino kaku gothic pro', sans-serif;
      color: #ffffff;
      font-feature-settings: 'palt';
      font-size: 21px;
      margin: var(--small) 0;
      padding-left: var(--medium);
      text-align: left; }
      @media (max-width: 640px) {
        .tnc button h3 {
          font-size: 18px; } }
    .tnc button:focus-visible {
      outline: 3px solid rgba(26, 26, 232, 0.35);
      outline-offset: 2px; }

.tnc.is-open .tnc__button {
  border-radius: 10px 10px 0 0; }

.tnc__icon {
  width: 2rem;
  height: 2rem;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: var(--small); }
  .tnc__icon svg {
    width: 100%;
    height: 100%;
    transition: transform .25s ease; }

.tnc.is-open .tnc__icon svg {
  transform: rotate(180deg); }

.tnc__panel {
  width: 100%;
  margin: 0 auto;
  background: #fff;
  border-radius: 0 0 10px 10px;
  overflow: hidden;
  display: none; }

.tnc.is-open .tnc__panel {
  display: block; }

.tnc__panel-inner {
  overflow: hidden;
  margin: var(--medium); }
  .tnc__panel-inner table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    text-align: left;
    color: #000000;
    line-height: 1.5;
    box-sizing: border-box; }
    @media (max-width: 640px) {
      .tnc__panel-inner table {
        border-collapse: collapse; } }
  @media (max-width: 640px) {
    .tnc__panel-inner tr {
      display: grid;
      grid-template-columns: 1fr; } }
  .tnc__panel-inner th {
    background: #1414d2;
    color: #ffffff;
    font-weight: 400;
    width: 20%;
    min-width: 135px;
    max-width: 150px; }
    @media (max-width: 640px) {
      .tnc__panel-inner th {
        width: 100%;
        min-width: auto;
        max-width: none; } }
  .tnc__panel-inner td {
    background-color: #f7f4f2; }
  .tnc__panel-inner td, .tnc__panel-inner th {
    font-feature-settings: 'palt';
    font-size: 16px;
    padding: 1rem;
    border: 0px solid transparent;
    background-clip: padding-box;
    vertical-align: middle; }
    .tnc__panel-inner td ul, .tnc__panel-inner th ul {
      padding-left: 1.5rem; }
      @media (max-width: 640px) {
        .tnc__panel-inner td ul, .tnc__panel-inner th ul {
          padding-left: 1rem; } }
      .tnc__panel-inner td ul li, .tnc__panel-inner th ul li {
        text-indent: -0.7em; }
    .tnc__panel-inner td ul.num, .tnc__panel-inner th ul.num {
      padding-left: 2rem; }
      .tnc__panel-inner td ul.num > li, .tnc__panel-inner th ul.num > li {
        text-indent: -1.2em; }
    .tnc__panel-inner td p span, .tnc__panel-inner th p span {
      font-weight: 600; }
  .tnc__panel-inner tr > th + td {
    border-left-width: 8px; }
    @media (max-width: 640px) {
      .tnc__panel-inner tr > th + td {
        border-left: none; } }
  .tnc__panel-inner tr + tr > th {
    border-top-width: 8px; }
    @media (max-width: 640px) {
      .tnc__panel-inner tr + tr > th {
        border-top: none; } }
  .tnc__panel-inner tr + tr > td {
    border-top-width: 8px; }
    @media (max-width: 640px) {
      .tnc__panel-inner tr + tr > td {
        border-top: none; } }
  .tnc__panel-inner .tnc-common ul {
    padding-left: 1.5rem; }
    @media (max-width: 640px) {
      .tnc__panel-inner .tnc-common ul {
        padding-left: 1rem; } }
    .tnc__panel-inner .tnc-common ul li {
      text-indent: -0.6em; }
      .tnc__panel-inner .tnc-common ul li p {
        font-feature-settings: 'palt'; }
