@charset "UTF-8";
body {
  font-family: "San Francisco", "Hiragino Kaku Gothic ProN", Roboto, "Noto Sans CJK";
  font-size: 14px;
  line-height: 1.8;
  color: #2d2d2d;
  letter-spacing: 0.03em;
  background-color: #f2f2f2;
}

.container {
  width: 100%;
}

.contents {
  display: flex;
  flex-direction: column;
  max-width: 500px;
  min-height: 100vh;
  background-color: #f2f2f2;
}
.contents .footer {
  margin-top: auto;
}

.nav-global {
  display: none;
}

.sns-global {
  display: none;
}

@media screen and (min-width: 500px) {
  .wrapper::before {
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
    display: block;
    width: 100%;
    height: 100vh;
    content: "";
    background-image: url("/background_visual/pc.webp");
    background-repeat: no-repeat;
    background-size: cover;
  }

  .container {
    padding-top: 60px;
  }

  .contents {
    min-height: calc(100vh - 60px);
    margin: 0 auto;
    border-radius: 20px 20px 0 0;
    box-shadow: 0 6px 20px 0 rgba(45, 45, 45, 0.3);
  }
}
@media screen and (min-width: 1025px) {
  .contents {
    margin: 0 21% 0 auto;
  }

  .nav-global {
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 27%;
    max-width: 518px;
    height: 100%;
    padding: 13.671875vh 54px 94px;
    /* 画面縦幅に対する相対値で余白を設定（140px / 1024px）で計算 */
    background-color: #fff;
  }
  .nav-global__logo {
    width: 100%;
    max-width: 320px;
  }

  .nav-global-list {
    width: 100%;
    max-width: 320px;
    margin-top: 4.1015625vh;
    /* 画面縦幅に対する相対値で余白を設定（42px / 1024px）で計算 */
    list-style: none;
    background-color: #fff;
  }
  .nav-global-list__item:not(:last-of-type) {
    border-bottom: 1px solid #e8e8e8;
  }
  .nav-global-list__link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 1.171875vh 8px;
    /* 画面縦幅に対する相対値で余白を設定（12px / 1024px）で計算 */
    font-size: 14px;
    font-weight: bold;
  }
  .nav-global-list__link::after {
    display: block;
    width: 24px;
    height: 24px;
    content: "";
    background: url("/majibu/d/cs/images/common/icons/icon_arrow_black.svg") no-repeat center;
    background-color: #f2f2f2;
    border-radius: 100px;
  }
  .nav-global-list__link:hover {
    width: 100%;
    height: 100%;
    background-color: rgba(163, 163, 163, 0.15);
  }

  .qr-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 4.6875vh;
    /* 画面縦幅に対する相対値で余白を設定（48px / 1024px）で計算 */
  }
  .qr-section__text {
    font-weight: bold;
  }
  .qr-section__text::before {
    display: inline-block;
    width: 7px;
    height: 11px;
    content: "";
    border-left: 1px solid #2d2d2d;
    transform: rotate(-38deg);
  }
  .qr-section__text::after {
    display: inline-block;
    width: 7px;
    height: 11px;
    content: "";
    border-right: 1px solid #2d2d2d;
    transform: rotate(38deg);
  }
  .qr-section__image-area {
    width: 9.166666666vw;
    /* 画面縦幅に対する相対値で余白を設定（132px / 1024px）で計算 */
    max-width: 130px;
    padding: 12px;
    margin-top: 1.953125vh;
    /* 画面縦幅に対する相対値で余白を設定（20px / 1024px）で計算 */
    border-radius: 10px;
    box-shadow: 0 2px 15px 0 rgba(45, 45, 45, 0.15);
  }
  .qr-section__image {
    width: 100%;
    height: 100%;
  }

  .sns-global {
    position: fixed;
    top: 0;
    right: 0;
    display: block;
    height: 100%;
    padding: 32px;
  }
  .sns-global__list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: flex-end;
    height: 100%;
  }
  .sns-global__link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background-color: #fff;
    border-radius: 100px;
    box-shadow: 0 2px 7px 0 rgba(45, 45, 45, 0.15);
  }
  .sns-global__link:hover {
    transition: scale 0.2s linear;
    scale: 1.1;
  }
}
@media screen and (min-width: 1601px) {
  .contents {
    width: calc(500px + 100vw - 1600px);
    max-width: 667px;
  }
}
@media screen and (min-width: 1221px) and (max-height: 800px) {
  .nav-global__logo {
    max-width: 280px;
  }

  .qr-section__image-area {
    max-width: 100px;
  }
}
h1 {
  font-size: 20px;
}

h2 {
  font-size: 18px;
}

h3 {
  font-size: 16px;
}

h4, h5 {
  font-size: 14px;
}

a {
  color: inherit;
  text-decoration: none;
}

@font-face {
  font-family: "Montserrat";
  font-weight: 100 900;
  src: url("/majibu/d/cs/font/Montserrat-VariableFont_wght.ttf");
}
.button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 48px;
  cursor: pointer;
  border: none;
  border-radius: 200px;
  box-shadow: 0 2px 7px 0 rgba(45, 45, 45, 0.15);
}
.button__text {
  font-size: 14px;
  font-weight: bold;
}
.button--primary {
  color: #fff;
  background-color: #eb5900;
}
.button--primary:active {
  background-color: #eb713c;
}
.button--primary:disabled, .button--primary.button--disabled {
  color: #6f6f6f;
  pointer-events: none;
  cursor: auto;
  background-color: #e8e8e8;
}
.button--secondary {
  color: #2d2d2d;
  background-color: #fff;
}
.button--secondary:active {
  background-color: #f1f1f1;
}
.button--secondary:disabled, .button--secondary.button--disabled {
  color: #cecece;
  pointer-events: none;
  cursor: auto;
  background-color: #fff;
}

.coupon {
  position: relative;
  width: 100%;
  min-width: 288px;
  color: #2d2d2d;
  filter: drop-shadow(0 4px 7px rgba(45, 45, 45, 0.15));
}
.coupon .button {
  position: absolute;
  bottom: 16px;
  left: 32px;
  z-index: 0;
  width: calc(100% - 116px);
  height: 40px;
}

.coupon-link-area {
  color: inherit;
  text-decoration: none;
}

.coupon--disabled .coupon-link-area,
.coupon--not-open .coupon-link-area {
  pointer-events: none;
}

.coupon__info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  padding: 24px 32px 0;
  font-size: 12px;
  list-style: none;
  background-color: #fff;
  border-radius: 12px 12px 0 0;
}

.coupon__facility {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
}

.coupon__facility-name {
  overflow: hidden;
  line-height: 1;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.coupon-content {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.6;
  color: #eb5900;
  text-align: center;
  word-break: break-all;
  overflow-wrap: break-word;
}

.available-times {
  display: flex;
  justify-content: center;
}
.available-times__term {
  flex-shrink: 0;
}
.available-times__count {
  word-break: break-all;
  overflow-wrap: break-word;
}

.coupon__tear-line {
  position: relative;
  width: 100%;
  height: 24px;
  background-color: #fff;
  -webkit-mask-image: radial-gradient(circle at left center, transparent 12px, #fff 12.5px, #fff 70%, transparent 70%), radial-gradient(circle at right center, transparent 12px, #fff 12.5px, #fff 70%, transparent 70%);
  mask-image: radial-gradient(circle at left center, transparent 12px, #fff 12.5px, #fff 70%, transparent 70%), radial-gradient(circle at right center, transparent 12px, #fff 12.5px, #fff 70%, transparent 70%);
}
.coupon__tear-line::after {
  position: absolute;
  top: calc(50% - 1px);
  right: 12px;
  left: 12px;
  width: auto;
  height: 2px;
  margin: 0 4px;
  content: "";
  background-image: repeating-linear-gradient(90deg, transparent 0, transparent 4px, #e8e8e8 5px, #e8e8e8 10px);
}

.coupon__button-area {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 60px;
  padding: 4px 32px 16px;
  background-color: #fff;
  border-radius: 0 0 12px 12px;
}

.favorite-button {
  position: absolute;
  right: 32px;
  bottom: 16px;
  z-index: 0;
  min-width: 40px;
  height: 40px;
  padding: 0;
  cursor: pointer;
  background: url("/majibu/d/cs/images/common/icons/icon_favorite_gray.svg") no-repeat center #fff;
  border: none;
  border-radius: 100px;
  box-shadow: 0 2px 7px 0 rgba(45, 45, 45, 0.15);
}

.favorite-button:active.favorite-button::before,
.coupon-link-area:active ~ .favorite-button::before {
  display: block;
  min-width: 100%;
  height: 100%;
  pointer-events: none;
  content: "";
  background-color: rgba(163, 163, 163, 0.15);
  border-radius: 100px;
}

.favorite-button.registered {
  background: url("/majibu/d/cs/images/common/icons/icon_favorite_orange_orange.svg") no-repeat center #fff;
}

.coupon--disabled {
  position: relative;
  pointer-events: none;
  filter: drop-shadow(0 2px 7px rgba(45, 45, 45, 0.15));
}
.coupon--disabled .disabled-message {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  max-width: 278px;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: bold;
  color: #fff;
  word-break: break-all;
  overflow-wrap: break-word;
  background-color: #a3a3a3;
  border-radius: 12px 0 8px;
}
.coupon--disabled .coupon__info {
  background-color: rgba(255, 255, 255, 0.6);
}
.coupon--disabled .coupon-content {
  color: rgba(235, 89, 0, 0.6);
}
.coupon--disabled .available-times {
  color: rgba(45, 45, 45, 0.6);
}
.coupon--disabled .coupon__tear-line {
  opacity: 0.6;
}
.coupon--disabled .coupon__button-area {
  background-color: rgba(255, 255, 255, 0.6);
}
.coupon--disabled .button--disabled {
  color: rgba(111, 111, 111, 0.6);
  background-color: rgba(232, 232, 232, 0.6);
}
.coupon--disabled .favorite-button {
  background-color: transparent;
}

.coupon--not-open {
  position: relative;
  pointer-events: none;
  filter: drop-shadow(0 2px 7px rgba(45, 45, 45, 0.15));
}
.coupon--not-open .disabled-message {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  max-width: 278px;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: bold;
  color: #fff;
  word-break: break-all;
  overflow-wrap: break-word;
  background-color: #a3a3a3;
  border-radius: 12px 0 8px;
}
.coupon--not-open .favorite-button {
  pointer-events: auto;
  background-color: #fff;
}

.coupon--soccer .coupon__info {
  padding: 24px 16px 0;
}
.coupon--soccer .game-info {
  padding: 12px;
  border: 1px solid #e8e8e8;
  border-radius: 8px;
}
.coupon--soccer .team {
  position: relative;
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
}
.coupon--soccer .cross {
  margin-bottom: 16px;
}
.coupon--soccer .team-icon {
  display: inline-block;
}
.coupon--soccer .team-name {
  display: flex;
  align-items: center;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.4;
  word-break: break-all;
  overflow-wrap: break-word;
}
.coupon--soccer .team-label {
  font-size: 10px;
  color: #6f6f6f;
  text-align: center;
}
.coupon--soccer .game-schedule {
  margin-top: 8px;
  font-weight: bold;
  text-align: center;
  word-break: break-all;
  overflow-wrap: break-word;
  background-color: #f2f2f2;
}
.coupon--soccer .venue {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 8px;
  color: #6f6f6f;
  word-break: break-all;
  overflow-wrap: break-word;
}
.coupon--soccer .venue::before {
  display: inline-block;
  min-width: 16px;
  min-height: 16px;
  content: "";
  background-color: #6f6f6f;
  -webkit-mask-image: url("/majibu/d/cs/images/common/icons/icon_pin.svg");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: 16px 16px;
  mask-image: url("/majibu/d/cs/images/common/icons/icon_pin.svg");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: 16px 16px;
}
.coupon--soccer .application-period {
  display: flex;
  justify-content: center;
}
.coupon--soccer .application-period__term {
  flex-shrink: 0;
}
.coupon--soccer .application-period__dates {
  word-break: break-all;
  overflow-wrap: break-word;
}
.coupon--soccer .button {
  width: calc(100% - 64px);
}

.coupon--soccer-disabled {
  pointer-events: none;
}

.coupon-link-area:active .coupon__info {
  position: relative;
}
.coupon-link-area:active .coupon__button-area {
  position: relative;
}
.coupon-link-area:active .coupon__info::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  content: "";
  background-color: rgba(163, 163, 163, 0.15);
  border-radius: 12px 12px 0 0;
}
.coupon-link-area:active .coupon__tear-line {
  background-color: #f1f1f1;
  -webkit-mask-image: radial-gradient(circle at left center, transparent 12px, #fff 12.5px, #fff 70%, transparent 70%), radial-gradient(circle at right center, transparent 12px, #fff 12.5px, #fff 70%, transparent 70%);
  mask-image: radial-gradient(circle at left center, transparent 12px, #fff 12.5px, #fff 70%, transparent 70%), radial-gradient(circle at right center, transparent 12px, #fff 12.5px, #fff 70%, transparent 70%);
}
.coupon-link-area:active .coupon__tear-line::after {
  background-image: repeating-linear-gradient(90deg, transparent 0, transparent 4px, #dedede 5px, #dedede 10px);
}
.coupon-link-area:active .coupon__button-area::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  content: "";
  background-color: rgba(163, 163, 163, 0.15);
  border-radius: 0 0 12px 12px;
}
.coupon-link-area:active ~ .button {
  color: #f1f1f1;
  background-color: #e06419;
}

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
}
.header__majibu-logo {
  display: flex;
  align-items: center;
  width: 168px;
  height: 28px;
  margin-right: 18px;
}
.header__list {
  display: flex;
  gap: 12px;
  align-items: center;
  padding-inline-start: 0;
  list-style: none;
}
.header__login {
  display: block;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: bold;
  line-height: 1.6;
  color: #eb5900;
  white-space: nowrap;
  border: 1px solid #eb5900;
  border-radius: 200px;
  box-shadow: 0 2px 7px 0 rgba(45, 45, 45, 0.15);
}
.header__favorite {
  display: block;
  width: 24px;
  height: 24px;
  background: url("/majibu/d/cs/images/common/icons/icon_favorite_orange.svg") no-repeat;
}
.header__menu {
  display: block;
  width: 24px;
  height: 24px;
  cursor: pointer;
  background: url("/majibu/d/cs/images/common/icons/icon_menu.svg") no-repeat;
  border: none;
}

.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
  display: none;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.6);
}

.menu {
  position: fixed;
  top: 0;
  right: -100vw;
  z-index: 1;
  display: flex;
  justify-content: flex-end;
  width: 100%;
  transition: right 0.5s;
}
.menu .button {
  padding: 0;
  letter-spacing: 0.03em;
}

.show-overlay {
  display: block;
}

.open-menu {
  right: 0;
}

body.open-menu {
  position: fixed;
  inset: 0;
  z-index: 0;
}

.menu-contents {
  max-width: 319px;
  height: 100%;
  overflow-y: scroll;
  background-color: #fff;
}
.menu-contents__info {
  padding: 24px 16px 32px;
}
.menu-contents .menu-personal-info {
  padding: 24px;
  background-color: #f5f5f5;
  border-radius: 8px;
}
.menu-contents .menu-personal-info__name {
  display: flex;
  font-size: 14px;
  white-space: nowrap;
}
.menu-contents .menu-personal-info__name .user-name {
  max-width: 100%;
  margin-right: 4px;
  overflow-x: hidden;
  font-size: 16px;
  font-weight: bold;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.menu-contents .menu-personal-info__name .honorifics {
  align-self: flex-end;
}
.menu-contents .menu-personal-info__user-id {
  margin-top: 8px;
}
.menu-contents .button {
  display: flex;
  gap: 4px;
  align-items: center;
  justify-content: center;
  margin-top: 16px;
}
.menu-contents .button--login::before {
  display: inline-block;
  width: 24px;
  height: 24px;
  content: "";
  background-color: #fff;
  -webkit-mask-image: url("/majibu/d/cs/images/common/icons/icon_login.svg");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: 24px 24px;
  mask-image: url("/majibu/d/cs/images/common/icons/icon_login.svg");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: 24px 24px;
}
.menu-contents .button--register::before {
  display: inline-block;
  width: 24px;
  height: 24px;
  content: "";
  background: url("/majibu/d/cs/images/common/icons/icon_account_add.svg") no-repeat center;
}
.menu-contents .button--logout::before {
  display: inline-block;
  width: 24px;
  height: 24px;
  content: "";
  background: url("/majibu/d/cs/images/common/icons/icon_logout.svg") no-repeat center;
}
.menu-contents .menu-info {
  margin-top: 32px;
}
.menu-contents .menu-info__header {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.6;
}
.menu-contents .menu-info__header--mypage::before {
  display: inline-block;
  width: 24px;
  height: 24px;
  content: "";
  background: url("/majibu/d/cs/images/common/icons/icon_account.svg") no-repeat center;
}
.menu-contents .menu-info__header--about::before {
  display: inline-block;
  width: 24px;
  height: 24px;
  content: "";
  background: url("/majibu/d/cs/images/common/icons/icon_question.svg") no-repeat center;
}
.menu-contents .menu-info__list {
  margin-top: 8px;
  list-style: none;
}
.menu-contents .menu-info__item {
  border-bottom: 1px solid #e8e8e8;
}
.menu-contents .menu-info__link {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 13px 8px;
  font-size: 14px;
  font-weight: bold;
}
.menu-contents .menu-info__link::after {
  display: block;
  width: 24px;
  height: 24px;
  content: "";
  background: url("/majibu/d/cs/images/common/icons/icon_arrow_black.svg") no-repeat center;
  background-color: #f2f2f2;
  border-radius: 100px;
}
.menu-contents .menu-info__link--open-in-new::after {
  display: block;
  width: 24px;
  height: 24px;
  content: "";
  background: url("/majibu/d/cs/images/common/icons/iconbtn_open_in_new_black_gray.svg") no-repeat center;
  border-radius: 100px;
}
.menu-contents .button--top {
  max-width: 238px;
  margin: 32px auto;
}
.menu-contents__image {
  width: 100%;
}

.close-menu {
  width: 24px;
  height: 24px;
  margin: 16px;
  cursor: pointer;
  background-color: #fff;
  border: none;
  -webkit-mask-image: url("/majibu/d/cs/images/common/icons/icon_close.svg");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: 24px 24px;
  mask-image: url("/majibu/d/cs/images/common/icons/icon_close.svg");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: 24px 24px;
}

@media screen and (max-width: 375px) {
  .menu-contents {
    width: calc(100% - 56px);
  }
}
.footer {
  margin-top: auto;
}

.info-nav-list {
  padding: 24px 16px;
  list-style: none;
  background-color: #fff;
}
.info-nav-list__item:not(:last-of-type) {
  border-bottom: 1px solid #e8e8e8;
}
.info-nav-list__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 13px 8px;
  font-size: 14px;
  font-weight: bold;
}
.info-nav-list__link::after {
  display: block;
  width: 24px;
  height: 24px;
  content: "";
  background: url("/majibu/d/cs/images/common/icons/icon_arrow_black.svg") no-repeat center;
  background-color: #f2f2f2;
  border-radius: 100px;
}

.sns {
  padding: 40px 30px 32px;
}
.sns__title {
  margin: 0 auto;
  font-family: "Montserrat";
  font-weight: 600;
  text-align: center;
}
.sns__title::before {
  display: inline-block;
  width: 7px;
  height: 11px;
  content: "";
  border-left: 1px solid #2d2d2d;
  transform: rotate(-38deg);
}
.sns__title::after {
  display: inline-block;
  width: 7px;
  height: 11px;
  content: "";
  border-right: 1px solid #2d2d2d;
  transform: rotate(38deg);
}
.sns__list {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 32px;
}
.sns__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background-color: #fff;
  border-radius: 100px;
  box-shadow: 0 2px 7px 0 rgba(45, 45, 45, 0.15);
}

.terms-list {
  display: flex;
  gap: 24px;
  justify-content: center;
  padding: 20px 16px 0;
}
.terms-list__link {
  font-size: 12px;
  line-height: 1.5;
  text-decoration: underline;
}

.recruit-logo {
  padding: 20px 20px 16px;
}
.recruit-logo__link {
  display: inline-block;
}

.label {
  display: inline-block;
  height: 20px;
  padding: 0 7px;
  font-size: 11px;
  font-weight: bold;
  line-height: 20px;
  text-align: center;
  text-wrap: nowrap;
  letter-spacing: 0.03em;
  border: 1px solid;
  border-radius: 3px;
}
.label--schedule, .label--condition {
  color: #eb5900;
  border-color: #eb5900;
}
.label--schedule-other, .label--condition-other {
  color: #6f6f6f;
  border-color: #a3a3a3;
}
.label--explanation {
  font-weight: normal;
  color: #eb5900;
  background: #fef6e7;
  border-color: #fef6e7;
}
.label--genre {
  padding: 0;
  font-size: inherit;
  font-weight: inherit;
  text-align: inherit;
  border: 0;
}

.register-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
  display: none;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.6);
}

.register-modal-overlay.is-register-modal-show {
  display: block;
}

.register-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 1;
  display: none;
  width: calc(100% - 32px);
  max-width: 560px;
  padding: 40px 24px;
  text-align: center;
  background-color: #fff;
  border-radius: 20px;
  transform: translate(-50%, -50%);
}
.register-modal .button {
  padding: 0;
  letter-spacing: 0.03em;
}

.register-modal.is-register-modal-show {
  display: block;
}

.register-modal-logo {
  display: inline-block;
  text-align: center;
}

.register-modal-text {
  margin-top: 16px;
  font-size: 16px;
  font-weight: bold;
  word-break: break-all;
  overflow-wrap: break-word;
}

.register-modal-caution {
  margin-top: 8px;
  word-break: break-all;
  overflow-wrap: break-word;
}

body.is-register-modal-show {
  position: fixed;
  inset: 0;
  z-index: 0;
}

.register-button-wrapper {
  margin-top: 20px;
}

.logout-button-wrapper {
  margin: 16px 16px 0;
}

.search-modal-overlay {
  position: relative;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  border-radius: 20px 20px 0 0;
}

.search-modal {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: calc(100% - 48px);
  /* overlayの高さ(48px)を全体から引きモーダルのコンテンツの高さを取得 */
  max-height: calc(100vh - 48px);
  background-color: #fff;
  border-radius: 12px 12px 0 0;
}
.search-modal__close-icon {
  position: absolute;
  top: -36px;
  right: 12px;
  width: 24px;
  height: 24px;
  cursor: pointer;
  content: "";
  background-color: #fff;
  mask-image: url("/majibu/d/cs/images/common/icons/icon_close.svg");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: 24px 24px;
  -webkit-mask-image: url("/majibu/d/cs/images/common/icons/icon_close.svg");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: 24px 24px;
}
.search-modal__header {
  padding: 16px;
  border-bottom: 1px solid #e8e8e8;
}
.search-modal__list {
  height: calc(100% - 130px);
  /* モーダルのコンテンツ内の固定値の高さを引きリストの高さを取得 */
  max-height: calc(100vh - 130px);
  overflow-y: auto;
}
.search-modal__item-wrapper {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  cursor: pointer;
}
.search-modal__checkbox {
  width: 24px;
  height: 24px;
  margin-right: 8px;
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
}
.search-modal__checkbox::before {
  display: inline-block;
  width: 24px;
  height: 24px;
  content: "";
  background-image: url("/majibu/d/cs/images/common/icons/checkbox_off.svg");
  background-size: contain;
}
.search-modal__checkbox:checked::before {
  content: "";
  background-image: url("/majibu/d/cs/images/common/icons/checkbox_on.svg");
}
.search-modal__checkbox:disabled::before {
  cursor: default;
  content: "";
  background-image: url("/majibu/d/cs/images/common/icons/checkbox_disable.svg");
}
.search-modal__checkbox:checked:disabled::before {
  cursor: default;
  content: "";
  background-image: url("/majibu/d/cs/images/common/icons/checkbox_on_disable.svg");
}
.search-modal__number-of-result {
  font-size: 12px;
  color: #6f6f6f;
}
.search-modal__area-name {
  display: flex;
  justify-content: space-between;
  padding: 0;
  background-color: #fff;
  border: none;
}
.search-modal__area-name > .search-modal__item-wrapper {
  flex-grow: 1;
}
.search-modal__accordion-area {
  padding: 12px 16px;
  cursor: pointer;
}
.search-modal__accordion-area::after {
  display: block;
  width: 24px;
  height: 24px;
  margin-left: auto;
  content: url("/majibu/d/cs/images/common/icons/icon_expand_open.svg");
}
.search-modal__accordion-area.is-open::after {
  content: url("/majibu/d/cs/images/common/icons/icon_expand_close.svg");
}
.search-modal__item {
  border-top: 1px solid #e8e8e8;
}
.search-modal__item:first-child {
  border-top: none;
}
.search-modal__item:last-child {
  border-bottom: 1px solid #e8e8e8;
}
.search-modal .is-disabled, .search-modal .is-disabled .search-modal__number-of-result {
  color: #a3a3a3;
}
.search-modal__item-middle-area {
  height: 0;
  overflow: hidden;
  transition: 0.3s ease height;
}
.search-modal__item-middle-area-item {
  border-top: 1px solid #e8e8e8;
}
.search-modal__item-middle-area-item > .search-modal__item-wrapper {
  padding-left: 32px;
}
.search-modal__button-area {
  padding: 12px 24px;
  background-color: #fff;
  box-shadow: 0 -2px 7px 0 rgba(45, 45, 45, 0.15);
}

.modal {
  display: none;
}
.modal.is-open {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
}
.modal.is-open .search-modal {
  animation-name: slide-up;
  animation-duration: 0.3s;
  animation-delay: 0s;
}

.contents.is-fixed {
  position: fixed;
  inset: 0;
}

@media screen and (min-width: 500px) {
  .contents.is-fixed {
    transform: translate(0);
  }
}
/*
 * SP表示時の場合は、ios15系対応のためwindowの高さをカスタム変数(--vh)から取得しコンテンツの高さを算出
*/
@media screen and (max-width: 500px) {
  .search-modal-overlay {
    height: 100vh;
    border-radius: 0;
  }

  .modal.is-open {
    height: 100vh;
  }

  .search-modal {
    height: calc(var(--vh, 1vh) * 100 - 48px);
  }
  .search-modal__list {
    height: calc(var(--vh, 1vh) * 100 - 178px);
  }
}
/*
 * ios依存のbackground-colorを打ち消すためのスタイル指定
*/
.search-modal input:is([type=checkbox]):checked:disabled {
  background-color: transparent;
}

@-webkit-keyframes slide-up {
  0% {
    transform: translateY(100%);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes slide-up {
  0% {
    transform: translateY(100%);
  }
  100% {
    transform: translateY(0);
  }
}
/*
 * aspect-ratioで領域を確保してレイアウトシフト防止
 * width: calc(100% - 50px);の50pxは画像両端の余白
*/
.main-visual {
  position: relative;
  width: calc(100% - 50px);
  height: auto;
  aspect-ratio: 325/523;
  margin: 0 auto 16px;
}
.main-visual__slide {
  z-index: 0;
}
.main-visual__copy {
  position: absolute;
  top: 8px;
  right: -8px;
  z-index: 1;
}
.main-visual__heading {
  position: absolute;
  bottom: 0;
  z-index: 1;
  width: 100%;
  padding: 0 8px;
}
.main-visual__heading-text {
  font-weight: bold;
  text-align: center;
  letter-spacing: 0.19em;
}
.main-visual__heading-text--emphasis {
  color: #eb5900;
}
.main-visual__slide-item {
  width: 100%;
  height: 100%;
}

/* フォントサイズはコンテンツ幅のpx値の3.7%にする */
@media screen and (max-width: 500px) {
  .main-visual__heading-text {
    font-size: 3.7vw;
  }
}
/* 画面幅が500px〜1600pxの場合、コンテンツ幅が500pxで固定のためフォントサイズも500pxの3.7%で固定 */
@media screen and (min-width: 501px) and (max-width: 1600px) {
  .main-visual__heading-text {
    font-size: 18.5px;
  }
}
/*
 * フォントサイズはコンテンツ幅のpx値の3.7%にする
 * コンテンツ幅の最大が667pxの3.7%をフォントサイズの最大値とする
*/
@media screen and (min-width: 1601px) {
  .main-visual__heading-text {
    font-size: min(calc((500px + (100vw - 1600px)) * 0.037), 24.679px);
  }
}

.description {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: center;
  padding: 16px 0;
  background-color: #fff;
}
.description__image {
  width: 67px;
}
.description__text {
  font-size: 12px;
  color: #6f6f6f;
}

.announcement {
  margin: 24px 16px 0;
}

.announcement-list {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 7px 0 rgba(45, 45, 45, 0.15);
}
.announcement-list__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  font-size: 14px;
  color: #eb5900;
}
.announcement-list__link::after {
  display: block;
  min-width: 24px;
  height: 24px;
  content: "";
  background: url("/majibu/d/cs/images/common/icons/iconbtn_open_in_new_orange_orange.svg") no-repeat center;
}
.announcement-list__item {
  padding: 0 16px;
}
.announcement-list__item:nth-of-type(n+2) .announcement-list__link {
  border-top: 1px solid #e8e8e8;
}

.section-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 24px;
}

.search {
  margin: 24px 16px 40px;
}

.search-select {
  padding: 24px 20px;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 7px 0 rgba(45, 45, 45, 0.15);
}
.search-select__input {
  display: flex;
  gap: 8px;
  align-items: center;
  padding: 12px;
  color: #6f6f6f;
  cursor: pointer;
  border: 1px solid #cecece;
  border-radius: 8px;
}
.search-select__input .is-active {
  color: #2d2d2d;
}
.search-select__input:nth-of-type(n+2) {
  margin-top: 16px;
}
.search-select__input--area::before {
  display: inline-block;
  min-width: 24px;
  min-height: 24px;
  content: "";
  background: url("/majibu/d/cs/images/common/icons/icon_pin.svg") no-repeat center;
}
.search-select__input--genre::before {
  display: inline-block;
  min-width: 24px;
  min-height: 24px;
  content: "";
  background: url("/majibu/d/cs/images/common/icons/icon_category.svg") no-repeat center;
}
.search-select__button-area {
  margin: 21px 0 4px;
}

.search-words {
  position: relative;
  margin-top: 15px;
}
.search-words::before {
  position: absolute;
  top: 50%;
  display: block;
  width: 26px;
  height: 26px;
  margin-left: 16px;
  content: "";
  background-color: #2d2d2d;
  mask-image: url("/majibu/d/cs/images/common/icons/icon_search.svg");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: 26px 26px;
  -webkit-mask-image: url("/majibu/d/cs/images/common/icons/icon_search.svg");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: 26px 26px;
  transform: translateY(-50%);
}
.search-words__input {
  width: 100%;
  height: 48px;
  padding: 12px 48px 12px 46px;
  font-size: 16px;
  -webkit-appearance: none;
  appearance: none;
  background-color: #fff;
  border: none;
  border-radius: 12px;
  box-shadow: 0 2px 7px 0 rgba(45, 45, 45, 0.15);
}
.search-words .delete-button {
  position: absolute;
  top: 50%;
  right: 0;
  display: none;
  width: 24px;
  height: 24px;
  padding: 0;
  margin-right: 16px;
  cursor: pointer;
  background-color: #f2f2f2;
  border: none;
  border-radius: 100px;
  transform: translateY(-50%);
}
.search-words .delete-button::before {
  display: block;
  width: 16px;
  height: 16px;
  margin: 0 auto;
  content: "";
  background-color: #2d2d2d;
  mask-image: url("/majibu/d/cs/images/common/icons/icon_close.svg");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: 16px 16px;
  -webkit-mask-image: url("/majibu/d/cs/images/common/icons/icon_close.svg");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: 16px 16px;
}
.search-words .delete-button.is-show {
  display: block;
}

.selected-term {
  display: block;
  overflow-x: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.campaign {
  padding: 40px 16px;
  background-color: #fff;
}

.subtitle {
  display: inline-block;
  font-family: "Montserrat";
  font-size: 12px;
  font-weight: 600;
  background: linear-gradient(90deg, #72d2bb 0%, #78acdc 10%, #c287cc 40%, #f5788e 60%, #f58a28 80%, #ea6d35 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.campaign-list__item:nth-of-type(n+2) {
  margin-top: 16px;
}
.campaign-list__image {
  word-break: break-all;
  overflow-wrap: break-word;
  border-radius: 12px;
  box-shadow: 0 2px 7px 0 rgba(45, 45, 45, 0.15);
}

.favorite-coupon {
  padding: 40px 16px;
}
.favorite-coupon__button-area {
  padding: 0 24px;
  margin-top: 24px;
}
.favorite-coupon .no-coupon {
  padding: 24px 24px;
  text-align: center;
  background: url("/majibu/d/cs/images/common/icons/icon_favorite_orange.svg") no-repeat center 24px #fff;
  background-size: 36px 36px;
  border-radius: 12px;
}
.favorite-coupon .no-coupon__text {
  margin-top: 44px;
}
.favorite-coupon .no-coupon__header {
  display: block;
  font-size: 14px;
  font-weight: bold;
}
.favorite-coupon .no-coupon__note {
  font-size: 12px;
}
.favorite-coupon .no-login {
  padding: 24px;
  text-align: center;
  background: url("/majibu/d/cs/images/common/icons/icon_favorite_orange.svg") no-repeat center 24px #fff;
  background-size: 36px 36px;
  border-radius: 12px;
}
.favorite-coupon .no-login__text {
  display: block;
  margin-top: 44px;
  font-size: 14px;
  font-weight: bold;
}
.favorite-coupon .no-login__button-area {
  margin-top: 10px;
}
.favorite-coupon .no-login__button-area .button--no-login {
  gap: 4px;
  height: 40px;
}
.favorite-coupon .no-login__button-area .button--no-login::before {
  display: inline-block;
  width: 24px;
  height: 24px;
  content: "";
  background-color: #fff;
  mask-image: url("/majibu/d/cs/images/common/icons/icon_login.svg");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: 24px 24px;
  -webkit-mask-image: url("/majibu/d/cs/images/common/icons/icon_login.svg");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: 24px 24px;
}

.coupon-list__item:nth-child(n+2) {
  margin-top: 16px;
}

.how-to-use {
  padding: 40px 16px;
  background-color: #fff;
}
.how-to-use .video-area {
  aspect-ratio: 4/3;
}
.how-to-use .link-area {
  display: flex;
  gap: 4px;
  align-items: center;
  margin-top: 16px;
}
.how-to-use .link-area::after {
  display: inline-block;
  min-width: 16px;
  min-height: 16px;
  content: "";
  background: url("/majibu/d/cs/images/common/icons/icon_open_in_new.svg") no-repeat center;
  background-size: 16px;
}
.how-to-use .link-area__link {
  font-size: 12px;
  color: #ff5800;
  text-decoration: underline;
}
.how-to-use .caption {
  margin-top: 12px;
  font-size: 12px;
  color: #6f6f6f;
}
.how-to-use__button-area {
  padding: 0 24px;
  margin-top: 24px;
}

.button__text span {
  color: #eb5900;
}

.outing-info {
  padding: 40px 0 0;
}
.outing-info .section-header {
  margin-bottom: 16px;
}

.banner-list {
  display: flex;
  gap: 12px;
  padding: 8px 16px;
  overflow-x: auto;
}
.banner-list__item {
  flex-shrink: 0;
}

.banner {
  width: 160px;
  height: 120px;
  word-break: break-all;
  overflow-wrap: break-word;
  border-radius: 12px;
  box-shadow: 0 2px 7px 0 rgba(45, 45, 45, 0.15);
}

.service {
  padding: 40px 16px;
}

.service-list {
  display: grid;
  grid-template-rows: 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}
.service-list__item {
  width: 100%;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 7px 0 rgba(45, 45, 45, 0.15);
}
.service-list__item--jalan {
  grid-column: 1/3;
}

.service-link {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 16px;
  line-height: 1;
}
.service-link .caption {
  font-size: 12px;
  line-height: 1.6;
  color: #6f6f6f;
}

.concept-image {
  width: 100%;
}