@import url("https://fonts.googleapis.com/css?family=Noto+Sans+JP:400,700,900&display=swap");

/** キャンペーンページ **/
:root {
  --windowW: 375;
  --contentW: 335;
  --winW: calc(100vw / var(--windowW));

  /* color */
  --main-color: #01A0C2;
  --text-color: #505050;
  --white: #FFFFFF;
  --light-grey: #DCDCDC;
  --bg-color: #F8F8F8;
  --accent-color: #EA4553;

  /* summer */
  --summer-blue: #1D8FA8;
  --summer-orange: #F28A5C;
  --summer-bg: #FEF7EF;
}

.is-sp {
  display: block;
}

.is-pc {
  display: none;
}

@media only screen and (min-width: 767px) {
  .is-sp {
    display: none;
  }

  .is-pc {
    display: block;
  }
}

h2 {
  color: var(--text-color);
}

a {
  display: inline-block;
}

.campaign-bold {
  font-weight: bold;
}

/* =========================
  Header
========================= */
.campaign-header-wrap .header {
  background-color: #ffffff;
}
.header_logo {
  opacity: 1;
  pointer-events: auto;
}

.campaign-header_inner .header_nav_list a {
  color: var(--main-color);
}

.campaign-header_inner .header_nav_list:last-child {
  border: solid 1px var(--main-color);
}

.campaign-header_inner .header-ico {
  color: var(--main-color);
}

/* ハンバーガーメニュー */
@media screen and (max-width: 767px) {
  .campaign-humberger span {
    background-color: var(--main-color);
  }
}

/* =========================
  MV
========================= */
.campaign-mv {
  height: 668px;
  display: grid;
  place-items: center;
  background-image: url("/img/campaign/campaign-mv-bg-summer.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.campaign-mv__inner {
  margin-top: -94px;
  width: 300px;
}

@media screen and (max-width: 767px) {
  .campaign-mv {
    margin-top: 54px;
    height: auto;
    min-height: 474px;
    padding: 40px 16px 0;
  }

  .campaign-mv__inner {
    margin-top: -165px;
    width: 100%;
    max-width: 256px;
  }
}

/* =========================
  Info
========================= */
.campaign-info,
.campaign-detail {
  background-color: var(--summer-bg);
}

.campaign-info {
  padding: 14px 10px 0;
}

.campaign-info__wrap {
  text-align: center;
}

.campaign-info__contents {
  display: inline-block;
  position: relative;
  padding: 0 120px;
}

.campaign-info__contents::before,
.campaign-info__contents::after {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 213px;
}

/* 左側 */
.campaign-info__contents::before {
  left: 0;
  background-image: url("/img/campaign/img-decoration-left-orange.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

/* 右側 */
.campaign-info__contents::after {
  right: 0;
  background-image: url("/img/campaign/img-decoration-right-orange.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.campaign-info__head {
  font-weight: bold;
  font-size: 32px;
}

.campaign-info__text {
  font-size: 16px;
  margin-top: 20px;
}

.campaign-info__text span{
  font-weight: 700;
}

@media screen and (max-width: 767px) {
  .campaign-info {
    padding: 0 8px;
    position: relative;
    margin-top: -28px;
    background-color: transparent;
  }

  .campaign-info:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--summer-bg);
    z-index: -1;
}

  .campaign-info__contents {
    padding: 0;
  }

  .campaign-info__contents::before,
  .campaign-info__contents::after {
    content: none;
  }

  .campaign-info__head {
    font-weight: bold;
    font-size: 20px;
    display: inline-block;
    position: relative;
    padding: 0 45px;
  }

  .campaign-info__head::before,
  .campaign-info__head::after {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 17px;
    height: 106px;
  }

  .campaign-info__head::before {
    left: 0;
    background-image: url("/img/campaign/img-decoration-left-orange.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
  }

  .campaign-info__head::after {
    right: 0;
    background-image: url("/img/campaign/img-decoration-right-orange.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
  }

  .campaign-info__text {
    font-size: 12px;
    line-height: 1.8;
    margin-top: 35px;
  }
}

/* =========================
  Detail
========================= */
.campaign-detail__inner {
  max-width: 1070px;
  margin: 0 auto;
  padding: 84px 20px 113px;
}

@media screen and (max-width: 767px) {
  .campaign-detail__inner {
    padding: 28px 16px 90px;
  }
}

/* =========================
  Summer Campaign Main
========================= */
.summer-campaign {
  padding: 9px 50px 50px;
  background-color: var(--white);
}

.summer-campaign__inner {
  max-width: 1000px;
  margin: 0 auto;
}

/* Hero */
.summer-campaign__hero {
  position: relative;
  text-align: center;
  margin-bottom: 57px;
  max-width: 680px;
  margin-inline: auto;
}

.summer-campaign__title {
  font-size: 56px;
  color: var(--summer-blue);
  line-height: 1.2;
}

.summer-campaign__title span {
  font-size: 88px;
  margin: 0 5px;
}

.summer-campaign__subtitle {
  font-size: 48px;
  color: var(--summer-blue);
  line-height: 1.2;
  position: relative;
  margin-top: -25px;
}

.summer-campaign__subtitle span {
  color: var(--summer-orange);
}

.summer-campaign__note {
  font-size: 16px;
  color: #3B719D;
}

/* Decoration */
.deco-bird {
  position: absolute;
  display: block;
  background: url('/img/campaign/img-birds.png') no-repeat center / contain;
  width: 50px;
  height: 40px;
  top: -18%;
  left: -2.7%;
}

.deco-sparkle {
  position: absolute;
  display: block;
  background: url('/img/campaign/img-sparkle.png') no-repeat center / contain;
  width: 40px;
  height: 40px;
  top: 27%;
  right: -5%;
}

/* Flex row */
.summer-campaign__flex-row {
  display: flex;
  flex-direction: column-reverse;
  gap: 20px;
  margin-bottom: 20px;
  padding-bottom: 30px;
  border-bottom: 1px solid #DCDCDC;
}

.summer-campaign__image-area img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 320 / 205;
}

@media (min-width: 768px) {
  .summer-campaign__flex-row {
    flex-direction: row;
    align-items: flex-start;
    margin-bottom: 40px;
    padding-bottom: 60px;
  }
  
  .summer-campaign__info-area {
    flex: 1;
  }
  
  .summer-campaign__image-area {
    flex: 1;
  }
  
  .summer-campaign__image-area img {
    aspect-ratio: 460 / 320;
  }
}

/* Period */
.summer-campaign__period dl {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 8px;
  border-bottom: 1px solid #DCDCDC;
  padding: 0px 20px 8px;
}

.summer-campaign__period dt {
  width: 140px;
  font-weight: bold;
  color: var(--summer-blue);
  flex-shrink: 0;
}

.summer-campaign__period dd {
  margin-left: 0;
  font-size: 20px;
  color: var(--summer-blue);
}

.summer-campaign__period dd span {
  font-size: 30px;
  font-weight: bold;
}

.summer-campaign__period dd small {
  display: block;
  font-size: 12px;
  color: var(--summer-blue);
  text-align: right;
}

/* Notes */
.summer-campaign__small-notes {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 12px;
  line-height: 1.8;
  color: #AAABAB;
  margin-top: 18px;
  padding-left: 20px;
}

.summer-campaign__small-notes li {
  line-height: 1.6;
}

/* Guide */
.summer-campaign__guide {
  text-align: center;
  line-height: 2;
  font-size: 16px;
}

.summer-campaign__guide span {
  color: var(--summer-blue);
  font-weight: bold;
  border-bottom: 1px solid var(--summer-blue);
}

/* Caution */
.summer-campaign__caution {
  padding: 30px 0;
}

.summer-campaign__caution-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  text-align: center;
  color: var(--summer-orange);
  font-size: 16px;
  margin-bottom: 20px;
}

.summer-campaign__caution-title::before,
.summer-campaign__caution-title::after {
  content: "";
  width: 67px;
  flex-shrink: 0;
  border-top: 2px dotted var(--summer-orange);
}

/* =========================
  Price Table
========================= */
.summer-campaign__price-table {
  max-width: 680px;
  margin: 0 auto 40px;
  padding: 0 10px;
}

.price-table__container {
  display: flex;
  align-items: stretch;
  border: 1px solid var(--summer-blue);
  background-color: var(--white);
  position: relative;
}

/* 左側ラベル */
.price-table__label {
  background-color: var(--summer-blue);
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  width: 160px;
  flex-shrink: 0;
}

.price-table__label-main {
  font-size: 24px;
  letter-spacing: 0.1em;
  color: #FBC559;
}

.price-table__label-sub {
  font-size: 12px;
  margin-top: 5px;
  background: rgba(255,255,255,0.2);
  padding: 2px 8px;
  border-radius: 2px;
  font-weight: bold;
}

.price-table__label-note {
  font-size: 10px;
  margin-top: 10px;
}

/* 中央コンテンツ */
.price-table__content {
    flex: 1;
    padding: 20px 25px 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.price-table__row {
  display: flex;
  align-items: baseline;
  padding: 8px 0;
  border-bottom: 1px dotted var(--light-grey);
}

.price-table__row:last-of-type {
  border-bottom: none;
}

.price-table__date {
  font-size: 16px;
  width: 160px;
}
.price-table__date span {
  font-size: 12px;
}

.price-table__old-price {
  font-size: 12px;
  text-decoration: line-through;
  color: #888;
  margin-right: 15px;
}

.price-table__new-price {
  font-size: 20px;
  font-weight: 900;
  color: var(--text-color);
}

/* 20%OFF */
.price-table__badge {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--summer-orange);
  color: var(--white);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  text-align: center;
  box-shadow: 0 4px 10px rgba(242, 138, 92, 0.3);
}

.badge-num {
  font-size: 32px;
  font-weight: 900;
  line-height: 1.4;
}

.badge-num span {
  font-size: 12px;
}


.badge-unit {
  font-size: 22px;
  font-weight: bold;
  line-height: 0.8;
  margin-left: 2px;
}

/* モバイル対応 */
@media (max-width: 767px) {
  .summer-campaign__price-table {
    margin-bottom: 30px;
  }

  .price-table__container {
    flex-direction: column;
  }

  .price-table__label {
    width: 100%;
    padding: 10px;
    gap: 10px;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .price-table__label-main { font-size: 18px; }

  .price-table__content {
    padding: 15px;
  }

  .price-table__date {
    width: 100%;
    display: block;
    margin-bottom: 4px;
  }

  .price-table__row {
    flex-wrap: wrap;
    padding: 10px 0;
  }

  .price-table__badge {
    right: -5px;
    top: 30px;
}

}


/* =========================
  Common bottom button / notes
========================= */
.campaign-detail__bottom {
  margin-inline: auto;
  max-width: 609px;
  width: 100%;
}

.campaign-detail__bottom-btn {
  border: 1px solid var(--summer-orange);
  padding: 3px;
  background-color: var(--white);
  box-sizing: border-box;
}

.campaign-detail__bottom-btn a {
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  box-sizing: border-box;
  min-height: 84px;
  padding: 16px 20px 16px 16px;
  width: 100%;
  font-size: 24px;
  font-weight: 600;
  color: var(--white);
  background-color: var(--summer-orange);
}

.campaign-detail__bottom-btn__balance {
  width: 28px;
  flex-shrink: 0;
}

.campaign-detail__bottom-btn__text {
  flex: 1;
  text-align: center;
}

.campaign-detail__bottom-btn__icon {
  width: 28px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  line-height: 1;
}

.campaign-detail__bottom-notes {
  margin-top: 20px;
  padding: 0;
  margin-inline: auto;
  width: 600px;
  padding-left: 15px;
}

.campaign-detail__bottom-note {
  font-size: 12px;
  line-height: 1.6;
  position: relative;
  padding-left: 1.5em;
  text-indent: 0;
  list-style: none;
}

.campaign-detail__bottom-note::before {
  content: "※";
  position: absolute;
  left: 0;
  top: 0;
}

.campaign-detail__bottom-note span {
  font-weight: bold;
}

@media (max-width: 1045px) {
  .summer-campaign__period dl {
    flex-direction: column;
  }
}

@media (max-width: 767px) {
  .summer-campaign {
    padding: 15px 16px 38px;
  }

  .summer-campaign__hero {
    margin-bottom: 25px;
    max-width: 310px;
  }

  .summer-campaign__caution {
    padding: 30px 0 20px;
  }

  .summer-campaign__title {
    font-size: 24px;
  }

  .summer-campaign__title span {
    font-size: 40px;
  }

  .summer-campaign__subtitle {
    font-size: 22px;
    margin-top: -10px;
  }

  .campaign-detail__bottom-notes {
    width: 100%;
  }

  .summer-campaign__note {
    font-size: 10px;
  }

  .deco-bird {
    width: 25px;
    height: 18px;
    left: -3%;
    top: -19%;
  }

  .deco-sparkle {
    width: 22px;
    height: 22px;
    right: -6%;
    top: 23%;
  }

  .summer-campaign__period dl {
    justify-content: flex-start;
    flex-direction: row;
    gap: 16px;
    padding: 0px 8px 10px;
  }

  .summer-campaign__period dt {
    width: auto;
    font-size: 12px;
  }

  .summer-campaign__period dd {
    font-size: 15px;
  }

  .summer-campaign__period dd span {
    font-size: 22px;
  }

  .summer-campaign__period dd small {
    font-size: 9px;
  }

  .summer-campaign__small-notes {
    font-size: 10px;
    padding-left: 10px;
  }

  .summer-campaign__guide p{
    font-size: 12px;
    line-height: 1.8;
    letter-spacing: -0.01em;
  }

  .summer-campaign__caution-title {
    font-size: 12px;
  }

  .campaign-detail__bottom-btn a {
    font-size: 16px;
    min-height: 56px;
    padding: 10px 12px 10px 10px;
    gap: 8px;
  }

  .campaign-detail__bottom-btn__balance,
  .campaign-detail__bottom-btn__icon {
    width: 24px;
  }

  .campaign-detail__bottom-btn__icon {
    font-size: 18px;
  }

  .campaign-detail__bottom-note {
    font-size: 11px;
    line-height: 1.8;
  }
}

.btn-booking {
  position: fixed;
  left: 0;
  bottom: 0;
}

.price_table_after_text{
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 12px;
    line-height: 1.8;
    color: #AAABAB;
}