@charset "UTF-8";
/* ボックスサイズの基準 */
*, *::before, *::after {
  box-sizing: border-box;
}

/* 代表的な既定マージンの除去 */
body, h1, h2, h3, h4, h5, h6, p, figure, blockquote, dl, dd {
  margin: 0;
}

/* リストのパディングと箇条書きマーカーを除去 */
ul, ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* body の基本値 */
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  line-height: 1.5;
}

/* 見出しはプロジェクト側でサイズ/太さを管理 */
h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  font-weight: inherit;
}

/* 画像・メディア要素 */
img, svg, video, canvas, audio, iframe {
  display: block;
  max-width: 100%;
}

/* テーブル */
table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}

th, td {
  padding: 0;
}

/* フォーム要素 */
button, input, textarea, select {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  outline: 0;
}

button {
  cursor: pointer;
}

textarea {
  resize: vertical;
}

/* リンク */
a {
  color: inherit;
  text-decoration: none;
}

/* blockquote / q の引用符をリセット */
blockquote, q {
  quotes: none;
}

blockquote::before, blockquote::after, q::before, q::after {
  content: "";
  content: none;
}

/* hidden 属性の強制非表示 */
[hidden] {
  display: none !important;
}

/**
 * root-scale-plateau
 * 1920px→$base-size を基準に「幅に比例して縮小」し、
 * $plateau-vw 未満はその時点の値で固定（横スクロール前提）
 * 例: @include root-scale-plateau(10px, 1920px, 1200px);
 */
/**
 * root-scale-sp-fluid
 * 375px → 10px を基準に、画面幅に比例して拡大する。
 * 例: 375px = 10px, 750px = 20px, 750px以上はそのまま伸び続ける。
 */
/**
 * font-size-responsive
 * pctablet表示時の最低フォントサイズ14pxを保証するレスポンシブフォントサイズ
 * 例: @include font-size-responsive(1.8rem);  // 通常1.8rem、pctablet時最低14px
 */
.u-mt--10 {
  margin-top: 1rem !important;
}
.u-mt--20 {
  margin-top: 2rem !important;
}
.u-mt--24 {
  margin-top: 2.4rem !important;
}
.u-mt--30 {
  margin-top: 3rem !important;
}
.u-mt--40 {
  margin-top: 4rem !important;
}
.u-mt--50 {
  margin-top: 5rem !important;
}
.u-mt--60 {
  margin-top: 6rem !important;
}
.u-mt--70 {
  margin-top: 7rem !important;
}
.u-mt--80 {
  margin-top: 8rem !important;
}
.u-mt--110 {
  margin-top: 11rem !important;
}

.u-font-number {
  font-family: "Inter", sans-serif;
}

.u-highlighter {
  background: linear-gradient(transparent 70%, #fce629 70%);
}
@media screen and (max-width: 768px) {
  .u-highlighter {
    background: linear-gradient(transparent 80%, #fce629 80%);
  }
}

@keyframes pulse-scale {
  /* 0% (開始時) と 100% (終了時) は元のサイズ */
  0% {
    transform: scale(1);
  }
  /* 50% (中間点) で最大サイズ (1.1倍) */
  50% {
    transform: scale(1.1);
  }
  /* 100% は 0% と同じ状態に戻る (scale(1.0)) */
  100% {
    transform: scale(1);
  }
}
@keyframes loop {
  0% {
    background-position: -200rem 0;
  }
  100% {
    background-position: 0 0;
  }
}
@keyframes slider {
  0% {
    opacity: 0;
  }
  5% {
    opacity: 1;
  }
  25% {
    opacity: 1;
  }
  30% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
html {
  /* PCレイアウト リキッド処理 */
  font-size: 10px;
  font-size: clamp(5.4928571429px, 0.7142857143vw, 10px);
  /* SPレイアウト リキッド処理 */
  scroll-behavior: smooth;
}
@media screen and (max-width: 768px) {
  html {
    font-size: calc(2.6666666667vw);
  }
}

body {
  font-weight: 500;
  color: #333333;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
}

.inner {
  max-width: calc(120rem + 10%);
  padding: 0 5%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .inner {
    padding: 0 1.5rem;
  }
}

a {
  transition: all ease 0.3s;
}

.l-flex {
  display: flex;
}
.l-flex--jc-center {
  justify-content: center;
}
.l-flex--jc-space-between {
  justify-content: space-between;
}
.l-flex--ai-center {
  align-items: center;
}
.l-flex--column {
  flex-direction: column;
}
.l-flex--row-reverse {
  flex-direction: row-reverse;
}
@media screen and (max-width: 768px) {
  .l-flex--row-reverse-sp {
    flex-direction: row-reverse;
  }
}

.l-gap--20 {
  gap: 2rem;
}
.l-gap--40 {
  gap: 4rem;
}
.l-gap--55 {
  gap: 5.5rem;
}

.c-button--expedia {
  height: 6.4rem;
  width: 100%;
  max-width: 56.9rem;
  background-color: #fce629;
  color: #202746;
  border-radius: 6.4rem;
  font-size: 2.8rem;
  font-weight: 700;
  position: relative;
  padding-left: 1.2rem;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  transition: all ease 0.3s;
}
.c-button--expedia:hover {
  opacity: 0.7;
}
.c-button--expedia::before {
  content: "";
  display: inline-block;
  position: absolute;
  width: 1.4rem;
  height: 1.8rem;
  background-color: #202746;
  clip-path: polygon(0% 0%, 0% 100%, 100% 50%);
  left: 3.5rem;
  top: 50%;
  transform: translateY(-50%);
}

.pc-only {
  display: none;
}
@media screen and (min-width: 769px) {
  .pc-only {
    display: block;
  }
}

.sp-only {
  display: block;
}
@media screen and (min-width: 769px) {
  .sp-only {
    display: none;
  }
}

.page-top-button {
  position: fixed;
  bottom: 14rem;
  right: 2.5rem;
  width: 7rem;
  height: 8rem;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transition: all ease 0.8s;
}
@media screen and (max-width: 768px) {
  .page-top-button {
    bottom: 1rem;
    right: 1rem;
    width: 3.5rem;
    height: 4rem;
  }
}
.page-top-button.is-visible {
  opacity: 1;
  visibility: visible;
}
.page-top-button.is-visible:hover {
  opacity: 0.4;
}

.credit-text {
  text-align: right;
  margin-top: 0.8rem;
  font-size: 1.4rem;
  font-weight: 700;
  padding-right: 1.5rem;
}
@media screen and (max-width: 768px) {
  .credit-text {
    font-size: 1.2rem;
    margin-top: 0;
    padding-right: 1rem;
  }
}

.header {
  height: 9rem;
  background-color: transparent;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .header {
    height: auto;
  }
}
.header::before {
  content: "";
  display: inline-block;
  position: absolute;
  background: url(../img/header_shadow.png) no-repeat center/contain;
  width: 117rem;
  height: 27.2rem;
  z-index: -1;
  right: -50rem;
  top: -1rem;
  transition: all ease 0.3s;
}
.header.active::before {
  visibility: hidden;
  opacity: 0;
}
.header__nav {
  margin-left: auto;
  padding: 3rem;
  display: flex;
  justify-content: end;
  align-items: center;
  gap: 0 2.4rem;
  width: -moz-fit-content;
  width: fit-content;
  border-bottom-left-radius: 4.4rem;
  background-color: transparent;
  transition: all ease 0.8s;
}
@media screen and (max-width: 768px) {
  .header__nav {
    padding: 1.2rem 1rem;
    border-bottom-left-radius: 2rem;
    gap: 1rem;
  }
}
.header__nav a:hover {
  opacity: 0.7;
}
.header.active .header__nav {
  background-color: #f00909;
}
.header__tokyofm {
  height: 2.7rem;
}
@media screen and (max-width: 768px) {
  .header__tokyofm {
    height: 1.4rem;
  }
}
.header__tokyofm img {
  height: 100%;
}
.header__expedia {
  height: 2.3rem;
}
@media screen and (max-width: 768px) {
  .header__expedia {
    height: 1.2rem;
  }
}
.header__expedia img {
  height: 100%;
}
.header__booking-button {
  height: 3rem;
  width: 13rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fce629;
  font-size: 1.729rem;
  font-weight: 700;
  border-radius: 3rem;
}
@media screen and (max-width: 768px) {
  .header__booking-button {
    height: 1.6rem;
    width: 6.5rem;
    font-size: 0.86rem;
  }
}
.header__hamburger-button {
  height: 2.5rem;
  width: 3.3rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0;
  position: relative;
}
@media screen and (max-width: 768px) {
  .header__hamburger-button {
    width: 1.6rem;
    height: 1.2rem;
  }
}
.header__hamburger-button span {
  display: block;
  height: 0.3rem;
  background-color: #fff;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .header__hamburger-button span {
    height: 0.15rem;
  }
}
.header__hamburger-button::before {
  content: "";
  position: absolute;
  display: inline-block;
  width: 7rem;
  height: 7rem;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.header__menu {
  background-color: #fff;
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 999;
  display: flex;
  justify-content: center;
  align-items: center;
  border-left: 2rem solid #fddb32;
  border-right: 2rem solid #fddb32;
  padding: 9rem 0;
  opacity: 0;
  visibility: hidden;
  transition: all ease 0.3s;
}
@media screen and (max-width: 768px) {
  .header__menu {
    border-width: 0.5rem;
  }
}
.header__menu.active {
  opacity: 1;
  visibility: visible;
}
.header__menu::before, .header__menu::after {
  content: "";
  position: absolute;
  display: inline-block;
  height: 2rem;
  width: 100%;
  background-color: #f00909;
  left: 0;
}
@media screen and (max-width: 768px) {
  .header__menu::before, .header__menu::after {
    height: 0.5rem;
  }
}
.header__menu::before {
  top: 0;
}
.header__menu::after {
  bottom: 0;
}
.header__menu-wrapper {
  max-width: 37.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 3rem 0;
}
@media screen and (max-width: 768px) {
  .header__menu-wrapper {
    max-width: none;
  }
}
.header__menu-title {
  width: 19rem;
  margin: 0 auto;
  height: 30%;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .header__menu-title {
    width: 10rem;
  }
}
.header__menu-item {
  border-bottom: 1px dashed #f00909;
}
.header__menu-item a {
  display: block;
  width: 100%;
  height: 6.4rem;
  font-size: 2.2rem;
  color: #f00909;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 400;
  transition: all ease 0.3s;
}
.header__menu-item a:hover {
  font-weight: 500;
  transform: scale(1.1);
}
@media screen and (max-width: 768px) {
  .header__menu-item a:hover {
    transform: none;
    font-weight: 400;
  }
}
@media screen and (max-width: 768px) {
  .header__menu-item a {
    height: 5rem;
    font-size: 1.8rem;
  }
}
.header__menu-closeButton {
  display: block;
  position: absolute;
  width: 12rem;
  height: 12rem;
  right: -2rem;
  top: 0;
}
@media screen and (max-width: 768px) {
  .header__menu-closeButton {
    width: 10rem;
    height: 8rem;
  }
}
.header__menu-closeButton::before, .header__menu-closeButton::after {
  content: "";
  position: absolute;
  display: inline-block;
  width: 3rem;
  height: 0.2rem;
  background-color: #f00909;
  top: 50%;
  left: 50%;
}
@media screen and (max-width: 768px) {
  .header__menu-closeButton::before, .header__menu-closeButton::after {
    width: 2rem;
  }
}
.header__menu-closeButton::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.header__menu-closeButton::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.mainVisual {
  height: 89rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .mainVisual {
    height: 66rem;
  }
}
.mainVisual .swiper {
  height: 100%;
  position: relative;
  z-index: -1;
}
.mainVisual .swiper .swiper-wrapper {
  height: 100%;
}
.mainVisual .swiper .swiper-wrapper .swiper-slide {
  width: 100%;
  height: 100%;
  background: no-repeat top/cover;
  animation-name: slider;
  animation-duration: 24s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  position: absolute;
  left: 0;
  top: 0;
}
.mainVisual .swiper .swiper-wrapper .swiper-slide:nth-child(1) {
  background-image: url(../img/mainVisual_kv1.webp);
}
@media screen and (max-width: 768px) {
  .mainVisual .swiper .swiper-wrapper .swiper-slide:nth-child(1) {
    background-image: url(../img/mainVisual_kv1_sp.webp);
  }
}
.mainVisual .swiper .swiper-wrapper .swiper-slide:nth-child(2) {
  background-image: url(../img/mainVisual_kv2.webp);
  animation-delay: 6s;
  opacity: 0;
}
@media screen and (max-width: 768px) {
  .mainVisual .swiper .swiper-wrapper .swiper-slide:nth-child(2) {
    background-image: url(../img/mainVisual_kv2_sp.webp);
  }
}
.mainVisual .swiper .swiper-wrapper .swiper-slide:nth-child(3) {
  background-image: url(../img/mainVisual_kv3.webp);
  animation-delay: 12s;
  opacity: 0;
}
@media screen and (max-width: 768px) {
  .mainVisual .swiper .swiper-wrapper .swiper-slide:nth-child(3) {
    background-image: url(../img/mainVisual_kv3_sp.webp);
  }
}
.mainVisual .swiper .swiper-wrapper .swiper-slide:nth-child(4) {
  background-image: url(../img/mainVisual_kv4.webp);
  animation-delay: 18s;
  opacity: 0;
}
@media screen and (max-width: 768px) {
  .mainVisual .swiper .swiper-wrapper .swiper-slide:nth-child(4) {
    background-image: url(../img/mainVisual_kv4_sp.webp);
    background-position: bottom right 30%;
  }
}
.mainVisual__logo {
  width: 71.3rem;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  opacity: 0;
  transition: all ease 1s;
  transition-delay: 0.3s;
}
@media screen and (max-width: 768px) {
  .mainVisual__logo {
    width: 100%;
    top: 1.4rem;
  }
}
.mainVisual__logo.is-visible {
  opacity: 1;
}
.mainVisual__present-button {
  width: 23.3rem;
  height: 23.3rem;
  position: absolute;
  bottom: 5rem;
  right: 7.2rem;
  animation-name: pulse-scale;
  animation-duration: 2s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .mainVisual__present-button {
    width: 11.6rem;
    height: 11.6rem;
    bottom: 1.8rem;
    right: auto;
    left: 1.6rem;
  }
}
.mainVisual__present-button img {
  position: absolute;
  top: 0;
  left: 0;
  transition: all ease 0.8s;
}
.mainVisual__present-button img:last-child {
  opacity: 0;
}
.mainVisual__present-button.off img {
  opacity: 0;
}
.mainVisual__present-button.off img:last-child {
  opacity: 1;
}
.mainVisual__scroll-button {
  width: 3rem;
  height: 9rem;
  position: absolute;
  bottom: 3rem;
  right: 2rem;
}
.mainVisual__scroll-button img {
  height: 100%;
}

.leadText {
  padding: 4.6rem 0 12.2rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .leadText {
    padding: 4.2rem 0 6.4rem;
  }
}
.leadText::before {
  content: "";
  position: absolute;
  display: inline-block;
  width: 100%;
  height: 5.5rem;
  background: url(../img/section_separator.png) no-repeat center/cover;
  bottom: 2rem;
  left: 0;
}
@media screen and (max-width: 768px) {
  .leadText::before {
    height: 2rem;
  }
}
.leadText__heading {
  font-size: 3.1rem;
  color: #f00909;
  margin-bottom: 4.2rem;
}
@media screen and (max-width: 768px) {
  .leadText__heading {
    font-size: 1.9rem;
    letter-spacing: -0.02em;
    margin-bottom: 2.4rem;
  }
}
.leadText__flexBox {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .leadText__flexBox {
    flex-direction: column;
    gap: 3.2rem;
    align-items: center;
  }
}
.leadText__textBox {
  display: flex;
  flex-direction: column;
  gap: 3rem 0;
  justify-content: space-between;
  max-width: 86rem;
}
@media screen and (max-width: 768px) {
  .leadText__textBox {
    gap: 1.5rem;
  }
}
.leadText__text {
  font-size: 1.8rem;
  line-height: 1.66;
}
@media screen and (max-width: 768px) {
  .leadText__text {
    font-size: 1.5rem;
    letter-spacing: -0.02em;
  }
}
.leadText__youtube-button {
  width: 29.4rem;
  height: 11.1rem;
  border-radius: 11.1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid #cccccc;
  background-color: #fff;
  padding-top: 1.2rem;
  gap: 2rem 0;
  transition: all ease 0.3s;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .leadText__youtube-button {
    width: 17.8rem;
    height: 6.7rem;
    gap: 0.8rem;
    padding-top: 1rem;
  }
}
.leadText__youtube-button span {
  font-size: 1.42rem;
  font-weight: 700;
  color: #f00909;
}
@media screen and (max-width: 768px) {
  .leadText__youtube-button span {
    font-size: 0.853rem;
  }
}
.leadText__youtube-button figure {
  height: 3.4rem;
}
@media screen and (max-width: 768px) {
  .leadText__youtube-button figure {
    height: 2rem;
  }
}
.leadText__youtube-button figure img {
  height: 100%;
}
.leadText__youtube-button:hover {
  background-color: #cccccc;
}

.map {
  background-color: #f00909;
  padding: 9.5rem 0 9.1rem;
}
@media screen and (max-width: 768px) {
  .map {
    padding: 3.4rem 0;
  }
}
.map__content-wrapper {
  background: url(../img/map_bg.png) no-repeat center/contain;
  padding: 7.5rem 7rem 7rem 8.3rem;
  height: 77.5rem;
}
@media screen and (max-width: 768px) {
  .map__content-wrapper {
    padding: 4rem 2rem;
    height: 51.6rem;
    background-image: url(../img/map_bg_sp.png);
  }
}
.map__content {
  width: 100%;
  height: 100%;
  position: relative;
}
.map__title {
  width: 30rem;
}
@media screen and (max-width: 768px) {
  .map__title {
    width: 17.8rem;
  }
}
.map__article-item {
  position: absolute;
  width: 30.3rem;
  height: 42.8rem;
  padding: 1rem;
  opacity: 1;
  transition: opacity 1s ease;
}
@media screen and (max-width: 768px) {
  .map__article-item {
    width: 15.5rem;
    height: 22.5rem;
    padding: 0.5rem;
  }
}
.map__article-item::before {
  content: "";
  position: absolute;
  display: inline-block;
  width: 100%;
  height: 100%;
  background: url(../img/map_article_bg.png) no-repeat center/cover;
  left: 0;
  top: 0;
}
.map__article-item.taichung {
  left: 0;
  bottom: 0;
}
@media screen and (max-width: 768px) {
  .map__article-item.taichung {
    display: none;
  }
}
.map__article-item.taichung::after {
  content: "";
  position: absolute;
  display: inline-block;
  width: 21.9rem;
  height: 10.6rem;
  border-right: 0.7rem solid #f00909;
  border-bottom: 0.7rem solid #f00909;
  left: 100%;
  top: 1.2rem;
}
.map__article-item.taipei {
  top: 8rem;
  right: 0.4rem;
}
@media screen and (max-width: 768px) {
  .map__article-item.taipei {
    display: none;
  }
}
.map__article-item.taipei::after {
  content: "";
  position: absolute;
  display: inline-block;
  width: 12.2rem;
  height: 8.1rem;
  border-left: 0.7rem solid #f00909;
  border-bottom: 0.7rem solid #f00909;
  right: 100%;
  top: -3rem;
}
.map__article-item.sp {
  display: none;
  visibility: hidden;
}
@media screen and (max-width: 768px) {
  .map__article-item.sp {
    display: block;
    visibility: visible;
    left: -0.2rem;
    bottom: 7.5rem;
  }
}
.map__article-item.fade-out {
  opacity: 0;
}
.map__article-thumbnail {
  height: 20.2rem;
}
@media screen and (max-width: 768px) {
  .map__article-thumbnail {
    height: 10.5rem;
  }
}
.map__article-thumbnail img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: 100%;
}
.map__article-item-inner {
  background-color: #fff;
  position: relative;
  z-index: 1;
  height: 100%;
}
.map__article-textBox {
  padding: 1.4rem;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  height: 20.5rem;
  opacity: 1;
  transition: opacity 1s ease;
}
@media screen and (max-width: 768px) {
  .map__article-textBox {
    padding: 0.7rem;
    height: 11rem;
  }
}
.map__article-title {
  font-size: 1.89rem;
  font-weight: 700;
  color: #f00909;
  line-height: 1.3;
  margin-bottom: 1.2rem;
}
@media screen and (max-width: 768px) {
  .map__article-title {
    font-size: 1.2rem;
    margin-bottom: 0;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }
}
.map__article-desc {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
@media screen and (max-width: 768px) {
  .map__article-desc {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    line-height: 1.2;
  }
}
.map__article-bottom-flex {
  display: flex;
  justify-content: space-between;
}
.map__article-read-more {
  font-size: 1.4rem;
  color: #f00909;
}
@media screen and (max-width: 768px) {
  .map__article-read-more {
    font-size: 0.9rem;
  }
}
.map__article-tag {
  color: #fff;
  font-size: 1.4rem;
  font-weight: 900;
  width: 6.57rem;
  height: 2.4rem;
  border-radius: 2.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f00909;
}
@media screen and (max-width: 768px) {
  .map__article-tag {
    font-size: 0.85rem;
    width: 4.2rem;
    height: 1.5rem;
  }
}
.map__bottom-button {
  max-width: 30.8rem;
  width: 100%;
  height: 3.8rem;
  border-radius: 3.8rem;
  background-color: #fce629;
  color: #f00909;
  font-size: 1.85rem;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  padding-left: 1.85rem;
  bottom: 0;
  right: 0;
  transition: all ease 0.3s;
  border: 0.4rem solid #fce629;
}
@media screen and (max-width: 768px) {
  .map__bottom-button {
    font-size: 1.5rem;
    width: 25rem;
    height: 3.1rem;
    border-radius: 3.1rem;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    border-width: 0.1rem;
  }
}
.map__bottom-button::before {
  content: "";
  display: inline-block;
  position: absolute;
  width: 0.8rem;
  height: 1.1rem;
  background-color: #f00909;
  clip-path: polygon(0% 0%, 0% 100%, 100% 50%);
  left: 1.4rem;
  top: 54%;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .map__bottom-button::before {
    width: 0.6rem;
    height: 0.7rem;
  }
}
.map__bottom-button:hover {
  border-color: #f00909;
  background-color: #fff;
}

.report {
  position: relative;
  padding-bottom: 10rem;
}
@media screen and (max-width: 768px) {
  .report {
    padding-bottom: 4rem;
  }
}
.report.day1 {
  margin-top: 11rem;
}
@media screen and (max-width: 768px) {
  .report.day1 {
    margin-top: 3.8rem;
  }
}
.report__slider {
  margin-bottom: 4.8rem;
  height: 72.8rem;
  position: relative;
  width: 100%;
  background: repeat-x 0 0;
  background-size: 748.3rem 72.8rem;
  overflow: hidden;
  animation: loop 100s linear infinite;
  z-index: 10;
}
@media screen and (max-width: 768px) {
  .report__slider {
    height: 27rem;
    background-size: 276.8rem 27rem;
    margin-bottom: 13.8rem;
  }
}
.report__slider.item01 {
  background-image: url(../img/report_slide01.webp);
}
.report__slider.item02 {
  background-image: url(../img/report_slide02.webp);
}
@media screen and (max-width: 768px) {
  .report__slider.item02 {
    margin-bottom: 19.3rem;
  }
}
.report__title-area {
  position: absolute;
  top: 10rem;
  left: 8.2rem;
  z-index: 10;
}
@media screen and (max-width: 768px) {
  .report__title-area {
    top: 4.2rem;
    left: 3rem;
  }
}
.report__title {
  font-size: 4.207rem;
  writing-mode: vertical-rl;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 768px) {
  .report__title {
    font-size: 2.8rem;
  }
}
.report__title-wrapper {
  height: -moz-fit-content;
  height: fit-content;
  padding: 4rem 1.4rem;
  color: #f00909;
  border: 0.3rem solid #f00909;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .report__title-wrapper {
    padding: 2.2rem 0.8rem;
  }
}
.report__title-wrapper:first-child {
  background: #f00909;
  color: #fff;
}
.report__title-wrapper .small {
  font-size: 3rem;
  padding-top: 6.2rem;
  margin-top: 2rem;
  position: relative;
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .report__title-wrapper .small {
    font-size: 1.9rem;
    padding-top: 3.5rem;
    margin-top: 1rem;
  }
}
.report__title-wrapper .small::before {
  content: "";
  position: absolute;
  display: inline-block;
  height: 5.2rem;
  width: 0.2rem;
  background-color: #fff;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
}
@media screen and (max-width: 768px) {
  .report__title-wrapper .small::before {
    height: 2.7rem;
    width: 0.1rem;
  }
}
.report__text {
  font-size: 1.7rem;
  line-height: 2.117;
}
.report__text:not(:last-child) {
  margin-bottom: 4rem;
}
@media screen and (max-width: 768px) {
  .report__text:not(:last-child) {
    margin-bottom: 3rem;
  }
}
@media screen and (max-width: 768px) {
  .report__text {
    font-size: 1.45rem;
    letter-spacing: -0.04em;
  }
}
.report__linkButton {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  padding: 0 2.4rem 0 4.8rem;
  width: -moz-fit-content;
  width: fit-content;
  height: 4.4rem;
  border-radius: 3.85rem;
  border: 0.2rem solid #f00909;
  background-color: #fff;
  color: #f00909;
  font-size: 1.7rem;
  font-weight: 700;
  position: relative;
}
@media screen and (max-width: 768px) {
  .report__linkButton {
    width: 25.6rem;
    height: 3.7rem;
    border-width: 0.15rem;
    margin: 0 auto;
    padding: 0 0 0 2rem;
  }
}
.report__linkButton span {
  position: relative;
}
.report__linkButton span::before {
  content: "";
  display: inline-block;
  position: absolute;
  width: 0.9rem;
  height: 1.2rem;
  background-color: #f00909;
  clip-path: polygon(0% 0%, 0% 100%, 100% 50%);
  left: -1.2rem;
  top: 53%;
  transform: translateY(-50%);
  transition: all ease 0.3s;
}
@media screen and (max-width: 768px) {
  .report__linkButton span::before {
    width: 0.7rem;
    height: 1rem;
    left: -1rem;
  }
}
.report__linkButton:hover {
  background-color: #f00909;
  color: #fff;
}
.report__linkButton:hover span::before {
  background-color: #fff;
}

.recommend {
  padding: 10.5rem 0 8.6rem;
  background-color: #f9f7df;
}
@media screen and (max-width: 768px) {
  .recommend {
    padding: 5.8rem 0 5rem;
  }
}
.recommend__title {
  display: flex;
  align-items: center;
  gap: 0 1.2rem;
  font-size: 3.2rem;
  font-weight: 700;
  color: #202746;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 5rem;
}
@media screen and (max-width: 768px) {
  .recommend__title {
    font-size: 2.25rem;
    gap: 0 0.6rem;
    margin: 0 auto 2.6rem;
  }
}
.recommend__title img {
  margin-top: 0.5rem;
  height: 4rem;
}
@media screen and (max-width: 768px) {
  .recommend__title img {
    height: 2.6rem;
  }
}
.recommend__list {
  display: flex;
  justify-content: space-between;
  gap: 0 3rem;
  margin-bottom: 6rem;
}
@media screen and (max-width: 768px) {
  .recommend__list {
    flex-wrap: wrap;
    gap: 0.8rem 0;
    margin-bottom: 3.4rem;
  }
}
@media screen and (max-width: 768px) {
  .recommend__list-item {
    width: 16.2rem;
  }
}
.recommend__list-item figure .recommend__image-wrapper {
  overflow: hidden;
}
.recommend__list-item figure img {
  background-color: #fce629;
  transition: all ease 0.3s;
}
.recommend__list-item figure figcaption {
  line-height: 1.4;
  font-size: 1.6rem;
  font-weight: 700;
  font-feature-settings: "palt";
  letter-spacing: 0.05em;
  text-align: center;
  margin-top: 1.2rem;
}
@media screen and (max-width: 768px) {
  .recommend__list-item figure figcaption {
    font-size: 1.2rem;
    margin: 0.4rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
  }
}
.recommend__list-item:hover img {
  transform: scale(1.1);
}
.recommend__reserve-button {
  font-size: 2.7rem;
  border-radius: 0.9rem;
  max-width: 49.8rem;
  height: 5.5rem;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .recommend__reserve-button {
    font-size: 1.67rem;
    max-width: 30.3rem;
    height: 3.35rem;
    border-radius: 0.45rem;
  }
}
.recommend__reserve-button::before {
  width: 1rem;
  height: 1.5rem;
  left: 4.6rem;
  top: 53%;
}
@media screen and (max-width: 768px) {
  .recommend__reserve-button::before {
    width: 0.6rem;
    height: 0.8rem;
    left: 3rem;
  }
}

.rewardProgram {
  background-color: #f9f7df;
  padding: 0 0 10rem;
}
@media screen and (max-width: 768px) {
  .rewardProgram {
    padding: 0 0 2rem;
  }
}
.rewardProgram__title {
  font-size: 3.8rem;
  font-weight: 700;
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 6.4rem;
  padding-top: 8rem;
  border-top: 0.2rem solid #c8a82d;
}
@media screen and (max-width: 768px) {
  .rewardProgram__title {
    border: none;
    padding-top: 0;
    font-size: 1.9rem;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    margin-bottom: 1.6rem;
  }
}
.rewardProgram__title img {
  width: 24.2rem;
  height: 5.1rem;
  margin-top: 0.4rem;
}
@media screen and (max-width: 768px) {
  .rewardProgram__title img {
    width: 12.1rem;
    height: auto;
    margin-top: 0;
  }
}
.rewardProgram__flexBox {
  display: flex;
  gap: 4rem;
}
@media screen and (max-width: 768px) {
  .rewardProgram__flexBox {
    flex-direction: column;
    gap: 2rem;
  }
}
.rewardProgram__image {
  width: 48.3%;
}
@media screen and (max-width: 768px) {
  .rewardProgram__image {
    width: 90%;
    margin: 0 auto;
  }
}
.rewardProgram__textBox small {
  font-size: 1.458rem;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .rewardProgram__textBox small {
    font-size: 1.1rem;
    margin-bottom: 2rem;
  }
}
.rewardProgram__text {
  font-size: 2.454rem;
  text-align: center;
  letter-spacing: -0.03em;
  margin-bottom: 4rem;
}
@media screen and (max-width: 768px) {
  .rewardProgram__text {
    font-size: 1.4rem;
    margin-bottom: 1.6rem;
  }
}
.rewardProgram__linkButton {
  width: 40.8rem;
  height: 6.2rem;
  color: #fff;
  background-color: #191e3a;
  border-radius: 0.9rem;
  font-size: 2.4rem;
  font-weight: 700;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 2rem;
}
@media screen and (max-width: 768px) {
  .rewardProgram__linkButton {
    width: 90%;
    height: 4rem;
    font-size: 1.6rem;
    margin-bottom: 0.6rem;
  }
}
.rewardProgram__linkButton::before {
  content: "";
  display: inline-block;
  position: absolute;
  width: 1.4rem;
  height: 1.8rem;
  background-color: #fff;
  clip-path: polygon(0% 0%, 0% 100%, 100% 50%);
  left: 3.5rem;
  top: 50%;
  transform: translateY(-50%);
  transition: all ease 0.3s;
}
@media screen and (max-width: 768px) {
  .rewardProgram__linkButton::before {
    width: 0.6rem;
    height: 0.8rem;
    left: 5rem;
  }
}
.rewardProgram__linkButton:hover {
  background-color: #fce629;
  color: #191e3a;
}
.rewardProgram__linkButton:hover::before {
  background-color: #191e3a;
}
.rewardProgram__reward-list {
  margin-top: 6rem;
  display: flex;
  justify-content: space-between;
  gap: 2.4rem;
}
@media screen and (max-width: 768px) {
  .rewardProgram__reward-list {
    margin-top: 1.6rem;
    flex-wrap: wrap;
    gap: 0.9rem;
    justify-content: center;
  }
}
.rewardProgram__reward-list-item {
  padding: 2rem 1.6rem 3.2rem;
  border-radius: 1.2rem;
  border: 0.2rem dotted #191e3a;
  flex-grow: 1;
  flex-basis: 0%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .rewardProgram__reward-list-item {
    width: 16.1rem;
    padding: 0.6rem 1rem 1.4rem;
    flex-basis: auto;
    flex-grow: 0;
    border-radius: 0.6rem;
    border-width: 0.1rem;
  }
}
.rewardProgram__reward-list-item figure {
  width: 6.3rem;
  height: 6.3rem;
  margin-bottom: 2rem;
}
@media screen and (max-width: 768px) {
  .rewardProgram__reward-list-item figure {
    width: 2.75rem;
    height: 2.75rem;
    margin-bottom: 0.8rem;
  }
}
.rewardProgram__reward-list-item h3 {
  font-size: 2.4rem;
  font-weight: 700;
  text-align: center;
  letter-spacing: -0.04em;
  margin-bottom: 2.2rem;
}
@media screen and (max-width: 768px) {
  .rewardProgram__reward-list-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    letter-spacing: -0.04em;
    line-height: 1.2;
  }
}
.rewardProgram__reward-list-item p {
  font-size: 1.6rem;
  line-height: 1.8;
  letter-spacing: -0.04em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .rewardProgram__reward-list-item p {
    font-size: 0.79rem;
    line-height: 1.3;
  }
}

.radioProgram {
  padding: 8.4rem 0 11.4rem;
}
@media screen and (max-width: 768px) {
  .radioProgram {
    padding: 3rem 0 2.8rem;
  }
}
.radioProgram__title {
  height: 4.3rem;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 5rem;
}
@media screen and (max-width: 768px) {
  .radioProgram__title {
    height: 2rem;
    margin: 0 auto 2.5rem;
  }
}
.radioProgram__title img {
  height: 100%;
}
.radioProgram__content {
  padding: 7rem 7rem 6rem;
  border: 1px solid #f00909;
  display: flex;
  justify-content: space-between;
  gap: 0 7rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .radioProgram__content {
    padding: 2.4rem 1.4rem 2.4rem;
    flex-direction: column;
    gap: 2.3rem 0;
    align-items: center;
  }
}
.radioProgram__content::before {
  content: "";
  position: absolute;
  display: inline-block;
  width: calc(100% - 1.2rem);
  height: calc(100% - 1.2rem);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid #f00909;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .radioProgram__content::before {
    width: calc(100% + 1rem);
    height: calc(100% + 1rem);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid #f00909;
    z-index: -1;
  }
}
.radioProgram__content-text-box {
  width: 57.8rem;
}
@media screen and (max-width: 768px) {
  .radioProgram__content-text-box {
    width: 100%;
  }
}
.radioProgram__content-title {
  font-size: 3.226rem;
  font-weight: 700;
  color: #f00909;
  margin-bottom: 2.5rem;
  font-feature-settings: "palt";
  letter-spacing: 0;
}
.radioProgram__content-title .title-style {
  display: inline-block;
}
.radioProgram__content-title span {
  font-size: 2.347rem;
}
@media screen and (max-width: 768px) {
  .radioProgram__content-title {
    font-size: 2.4rem;
    text-align: center;
    margin-bottom: 2rem;
    line-height: 1.2;
  }
  .radioProgram__content-title .title-style {
    font-size: 1.65rem;
  }
  .radioProgram__content-title .title-style span {
    font-size: 1.2rem;
  }
}
.radioProgram__content-lead {
  font-size: 2.4rem;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .radioProgram__content-lead {
    font-size: 1.32rem;
    text-align: center;
  }
}
.radioProgram__note {
  display: block;
  margin-bottom: 2rem;
  font-size: 1.6rem;
}
@media screen and (max-width: 768px) {
  .radioProgram__note {
    font-size: 1rem;
    text-align: center;
  }
}
.radioProgram__content-text {
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 2.4rem;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .radioProgram__content-text {
    font-size: 1rem;
    margin-bottom: 2rem;
    line-height: 1.4;
  }
}
.radioProgram__content-linkButton-wrapper {
  position: relative;
}
.radioProgram__content-linkButton {
  width: 50.2rem;
  height: 4.5rem;
  border-radius: 4.5rem;
  border: 2px solid #0c68ab;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.258rem;
  font-weight: 700;
  color: #0c68ab;
  padding-left: 1rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .radioProgram__content-linkButton {
    width: 28.3rem;
    font-size: 1.2rem;
    height: 2.5rem;
    margin: 0 auto;
    border-radius: 1.1rem;
  }
}
.radioProgram__content-linkButton::before {
  content: "";
  display: inline-block;
  position: absolute;
  width: 1rem;
  height: 1.3rem;
  background-color: #0c68ab;
  clip-path: polygon(0% 0%, 0% 100%, 100% 50%);
  left: 5.7rem;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .radioProgram__content-linkButton::before {
    width: 0.4rem;
    height: 0.5rem;
    top: 53%;
    left: 4.5rem;
  }
}
.radioProgram__content-linkButton .tokyofm-logo {
  height: 2.4rem;
  margin: 0.3rem 0.8rem 0 0;
}
@media screen and (max-width: 768px) {
  .radioProgram__content-linkButton .tokyofm-logo {
    height: 1.2rem;
    margin: 0.3rem 0.4rem 0 0;
  }
}
.radioProgram__content-linkButton .podcast-logo {
  height: 2.4rem;
  margin: 0 1rem 0 0;
}
@media screen and (max-width: 768px) {
  .radioProgram__content-linkButton .podcast-logo {
    height: 1.2rem;
    margin: 0 0.4rem 0 0;
  }
}
.radioProgram__content-linkButton.original:hover {
  opacity: 0;
}
.radioProgram__content-linkButton.hover {
  color: #fff;
  background-color: #0c68ab;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .radioProgram__content-linkButton.hover {
    left: 50%;
    transform: translateX(-50%);
  }
}
.radioProgram__content-linkButton.hover::before {
  background-color: #fff;
}
.radioProgram__content-thumbnail {
  width: 38.6rem;
}
@media screen and (max-width: 768px) {
  .radioProgram__content-thumbnail {
    width: 19.3rem;
  }
}

.giftLottery {
  padding: 8.4rem 0 11.4rem;
  background-color: #f00909;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .giftLottery {
    padding: 3rem 0 4.7rem;
  }
}
@media screen and (max-width: 768px) {
  .giftLottery .inner {
    padding: 0 1rem;
  }
}
.giftLottery__title {
  height: 4.3rem;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 5rem;
}
@media screen and (max-width: 768px) {
  .giftLottery__title {
    height: 2rem;
    margin-bottom: 2.7rem;
  }
}
.giftLottery__title img {
  height: 100%;
}
.giftLottery__content {
  background-color: #fff;
  position: relative;
}
.giftLottery__section.version1 {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 9.4rem 2rem 15rem;
}
@media screen and (max-width: 768px) {
  .giftLottery__section.version1 {
    padding: 4rem 1.6rem;
    align-items: start;
  }
}
.giftLottery__section.version1 .giftLottery__leadText {
  font-size: 3.877rem;
  font-feature-settings: "palt";
  color: #f00909;
  line-height: 1.3;
  margin-bottom: 8rem;
}
@media screen and (max-width: 768px) {
  .giftLottery__section.version1 .giftLottery__leadText {
    font-size: 2.2rem;
    letter-spacing: -0.03em;
    line-height: 1.2;
    margin-bottom: 2.6rem;
  }
}
.giftLottery__section.version1 .giftLottery__leadText .u-font-number {
  font-size: 5.768rem;
  font-weight: 900;
}
@media screen and (max-width: 768px) {
  .giftLottery__section.version1 .giftLottery__leadText .u-font-number {
    font-size: 3.28rem;
  }
}
@media screen and (max-width: 768px) {
  .giftLottery__section.version1 .giftLottery__leadText .text-small {
    font-size: 1.64rem;
  }
}
.giftLottery__section.version1 .giftLottery__text {
  font-size: 2.82rem;
  color: #f00909;
  margin-bottom: 8rem;
}
@media screen and (max-width: 768px) {
  .giftLottery__section.version1 .giftLottery__text {
    font-size: 1.4rem;
    margin-bottom: 2.4rem;
  }
}
.giftLottery__section.version1 .giftLottery__button {
  font-size: 3rem;
  max-width: 70rem;
}
@media screen and (max-width: 768px) {
  .giftLottery__section.version1 .giftLottery__button {
    font-size: 1.6rem;
  }
}
.giftLottery__section.version1 .giftLottery__button.bg-yellow {
  position: relative;
}
.giftLottery__section.version1 .giftLottery__button.bg-yellow::before {
  content: "";
  display: inline-block;
  position: absolute;
  width: 20rem;
  height: 20rem;
  background: url(../img/giftLottery_check_video_balloon.webp) no-repeat center/contain;
  right: -15rem;
  top: -14rem;
  z-index: 10;
}
@media screen and (max-width: 768px) {
  .giftLottery__section.version1 .giftLottery__button.bg-yellow::before {
    background-image: url(../img/giftLottery_check_video_balloon_sp.png);
    width: 9.6rem;
    height: 9.6rem;
    left: auto;
    top: auto;
    right: 0rem;
    bottom: 3.5rem;
  }
}
@media screen and (max-width: 768px) {
  .giftLottery__section.version1 .giftLottery__button.bg-yellow span::before {
    left: -1.2rem;
  }
}
.giftLottery__section.version1 .giftLottery__due-date {
  font-size: 1.618rem;
  font-weight: 700;
  color: #f00909;
  margin-bottom: 9.4rem;
}
@media screen and (max-width: 768px) {
  .giftLottery__section.version1 .giftLottery__due-date {
    font-size: 0.8rem;
    width: 100%;
    text-align: center;
    margin-bottom: 2.4rem;
  }
}
.giftLottery__section.version1 .giftLottery__campaign-text {
  font-size: 3.226rem;
  color: #f00909;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .giftLottery__section.version1 .giftLottery__campaign-text {
    font-size: 2rem;
    letter-spacing: -0.05em;
  }
}
.giftLottery__section.version1 .giftLottery__campaign-text .u-font-number {
  font-size: 4rem;
  letter-spacing: 0.03em;
  margin: 0 0.2rem;
}
@media screen and (max-width: 768px) {
  .giftLottery__section.version1 .giftLottery__campaign-text .u-font-number {
    font-size: 2.2rem;
  }
}
.giftLottery__section.version1 .giftLottery__campaign-text .u-font-number.extra-bold {
  font-weight: 900;
  letter-spacing: -0.02em;
}
.giftLottery__section.version1 .giftLottery__campaign-text .font-small {
  font-size: 2.8rem;
}
.giftLottery__section.version2 {
  padding: 8rem 9rem 9rem;
}
@media screen and (max-width: 768px) {
  .giftLottery__section.version2 {
    padding: 3.2rem 1.8rem;
  }
}
.giftLottery__decor {
  width: 8rem;
  height: 8rem;
  position: absolute;
}
@media screen and (max-width: 768px) {
  .giftLottery__decor {
    width: 3.6rem;
    height: 3.6rem;
  }
}
.giftLottery__decor::before {
  content: "";
  display: inline-block;
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 4rem;
  background-color: #f00909;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 768px) {
  .giftLottery__decor::before {
    border-radius: 1.8rem;
  }
}
.giftLottery__decor::after {
  content: "";
  display: inline-block;
  position: absolute;
  width: 2.8rem;
  height: 2.8rem;
  background: url(../img/giftLottery_corner_icon.png) no-repeat center/contain;
}
@media screen and (max-width: 768px) {
  .giftLottery__decor::after {
    width: 1.4rem;
    height: 1.4rem;
  }
}
.giftLottery__decor:nth-child(1) {
  left: -4rem;
  top: -4rem;
}
.giftLottery__decor:nth-child(1)::after {
  bottom: 1.4rem;
  right: 1.4rem;
}
.giftLottery__decor:nth-child(2) {
  right: -4rem;
  top: -4rem;
}
.giftLottery__decor:nth-child(2)::after {
  left: 1.4rem;
  bottom: 1.4rem;
}
.giftLottery__decor:nth-child(3) {
  bottom: -4rem;
  left: -4rem;
}
.giftLottery__decor:nth-child(3)::after {
  top: 1.4rem;
  right: 1.4rem;
}
.giftLottery__decor:nth-child(4) {
  bottom: -4rem;
  right: -4rem;
}
.giftLottery__decor:nth-child(4)::after {
  top: 1.4rem;
  left: 1.4rem;
}
@media screen and (max-width: 768px) {
  .giftLottery__decor:nth-child(1) {
    left: -1.8rem;
    top: -1.8rem;
  }
  .giftLottery__decor:nth-child(1)::after {
    bottom: 0.8rem;
    right: 0.8rem;
  }
  .giftLottery__decor:nth-child(2) {
    right: -1.8rem;
    top: -1.8rem;
  }
  .giftLottery__decor:nth-child(2)::after {
    left: 0.8rem;
    bottom: 0.8rem;
  }
  .giftLottery__decor:nth-child(3) {
    bottom: -1.8rem;
    left: -1.8rem;
  }
  .giftLottery__decor:nth-child(3)::after {
    top: 0.8rem;
    right: 0.8rem;
  }
  .giftLottery__decor:nth-child(4) {
    bottom: -1.8rem;
    right: -1.8rem;
  }
  .giftLottery__decor:nth-child(4)::after {
    top: 0.8rem;
    left: 0.8rem;
  }
}
.giftLottery__quiz {
  gap: 2.7rem;
  margin-bottom: 8.2rem;
}
@media screen and (max-width: 768px) {
  .giftLottery__quiz {
    margin-bottom: 3rem;
  }
}
.giftLottery__quiz-text-img {
  padding-right: 2.7rem;
  margin-bottom: 3rem;
}
@media screen and (max-width: 768px) {
  .giftLottery__quiz-text-img {
    padding-right: 0;
  }
}
@media screen and (max-width: 768px) {
  .giftLottery__balloon-flexBox {
    display: flex;
    gap: 2rem;
  }
}
.giftLottery__quiz-balloon-text {
  margin-bottom: 3.8rem;
}
@media screen and (max-width: 768px) {
  .giftLottery__quiz-balloon-text {
    width: 100%;
    margin-bottom: 0.8rem;
  }
}
.giftLottery__quiz-thumbnail {
  max-width: 30.5rem;
}
@media screen and (max-width: 768px) {
  .giftLottery__quiz-thumbnail {
    width: 26.8rem;
    margin: 2rem auto 0;
  }
}
.giftLottery__hint-videos {
  padding: 3.6rem 2.4rem 4rem;
  border-radius: 1.4rem;
  border: 0.2rem dotted #f00909;
  margin-bottom: 7.4rem;
}
@media screen and (max-width: 768px) {
  .giftLottery__hint-videos {
    padding: 1.6rem 0 1.8rem;
    margin-bottom: 2.8rem;
    border: none;
    border-radius: 0;
    border-top: 0.1rem dotted #f00909;
    border-bottom: 0.1rem dotted #f00909;
  }
}
.giftLottery__hint-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4.6rem;
}
@media screen and (max-width: 768px) {
  .giftLottery__hint-heading {
    display: block;
    margin-bottom: 1rem;
  }
}
.giftLottery__hint-heading figure {
  width: 15.7rem;
}
@media screen and (max-width: 768px) {
  .giftLottery__hint-heading figure {
    width: 8rem;
    margin-bottom: 0.4rem;
  }
}
.giftLottery__hint-heading p {
  font-size: 2.5rem;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .giftLottery__hint-heading p {
    font-size: 1.4rem;
  }
}
.giftLottery__hint-heading p span {
  color: #f00909;
}
.giftLottery__youtube-video-flex {
  display: flex;
  justify-content: space-between;
  gap: 3.2rem;
}
@media screen and (max-width: 768px) {
  .giftLottery__youtube-video-flex {
    gap: 1rem;
  }
}
.giftLottery__youtube-video {
  width: 100%;
}
.giftLottery__youtube-video iframe {
  width: 100%;
  aspect-ratio: 590/332;
}
.giftLottery__bottom-text-img {
  max-width: 85rem;
  margin: 0 auto 5.5rem;
}
@media screen and (max-width: 768px) {
  .giftLottery__bottom-text-img {
    margin-bottom: 3rem;
  }
}
.giftLottery__bottom-text {
  font-size: 2.347rem;
  font-weight: 700;
  color: #f00909;
  text-align: center;
  margin-bottom: 7.2rem;
}
@media screen and (max-width: 768px) {
  .giftLottery__bottom-text {
    font-size: 1.2rem;
    text-align: left;
    margin-bottom: 2rem;
  }
}
.giftLottery__button {
  max-width: 64rem;
  width: 100%;
  height: 7.7rem;
  border-radius: 7.7rem;
  background-color: #fce629;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #f00909;
  font-size: 3.3rem;
  font-weight: 700;
  position: relative;
}
@media screen and (max-width: 768px) {
  .giftLottery__button {
    font-size: 1.9rem;
    height: 4.3rem;
  }
}
.giftLottery__button span {
  position: relative;
  z-index: 1;
}
.giftLottery__button span::before {
  content: "";
  display: inline-block;
  position: absolute;
  width: 1.4rem;
  height: 1.8rem;
  background-color: #f00909;
  clip-path: polygon(0% 0%, 0% 100%, 100% 50%);
  left: -3rem;
  top: 53%;
  transform: translateY(-50%);
  transition: all ease 0.3s;
}
@media screen and (max-width: 768px) {
  .giftLottery__button span::before {
    width: 0.8rem;
    height: 1rem;
    left: -2rem;
  }
}
.giftLottery__button:hover {
  color: #fff;
}
.giftLottery__button:hover span::before {
  background-color: #fff;
}
.giftLottery__button.check-video {
  max-width: 69.4rem;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 768px) {
  .giftLottery__button.check-video .giftLottery__button-wrapper {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 768px) {
  .giftLottery__button.check-video span::before {
    width: 0.6rem;
    height: 0.8rem;
    left: -1rem;
  }
}
.giftLottery__button.check-video::before {
  content: "";
  display: inline-block;
  position: absolute;
  width: 20rem;
  height: 20rem;
  background: url(../img/giftLottery_check_video_balloon.webp) no-repeat center/contain;
  right: -15rem;
  top: -14rem;
  z-index: 10;
}
@media screen and (max-width: 768px) {
  .giftLottery__button.check-video::before {
    background-image: url(../img/giftLottery_check_video_balloon_sp.png);
    width: 10rem;
    height: 10rem;
    left: auto;
    top: auto;
    right: 0;
    bottom: 3rem;
  }
}
.giftLottery__button.bg-red {
  background-color: #f00909;
  color: #fff;
  max-width: 69.4rem;
  margin: 3rem auto 1.4rem;
}
@media screen and (max-width: 768px) {
  .giftLottery__button.bg-red {
    margin: 2rem 0 0.7rem;
  }
}
@media screen and (max-width: 768px) {
  .giftLottery__button.bg-red .giftLottery__button-wrapper {
    font-size: 1.5rem;
  }
}
.giftLottery__button.bg-red .giftLottery__button-wrapper::after {
  background: #fce629;
}
.giftLottery__button.bg-red span::before {
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .giftLottery__button.bg-red span::before {
    left: -1.2rem;
  }
}
.giftLottery__button.bg-red:hover {
  color: #f00909;
}
.giftLottery__button.bg-red:hover span::before {
  background-color: #f00909;
}
.giftLottery__button-wrapper {
  overflow: hidden;
  width: 100%;
  height: 100%;
  border-radius: 7.7rem;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all ease 0.3s;
}
@media screen and (max-width: 768px) {
  .giftLottery__button-wrapper {
    height: 4.3rem;
  }
}
.giftLottery__button-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  background: #f00909;
  width: 100%;
  height: 100%;
  border-radius: 7.7rem;
  transition: transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transform: scale(0, 1);
  transform-origin: right top;
  z-index: 0;
}
.giftLottery__button-wrapper:hover::after {
  transform-origin: left top;
  transform: scale(1, 1);
}
.giftLottery .due-date {
  display: block;
  text-align: center;
  font-size: 1.618rem;
  color: #f00909;
  font-weight: 700;
  margin-top: 0.8rem;
}
@media screen and (max-width: 768px) {
  .giftLottery .due-date {
    font-size: 0.89rem;
  }
}

.promotion {
  padding: 8rem 0;
}
@media screen and (max-width: 768px) {
  .promotion {
    padding: 3rem 0 2.4rem;
  }
}
.promotion__title {
  font-size: 3.832rem;
  color: #f00909;
  margin-bottom: 5.6rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .promotion__title {
    font-size: 1.9rem;
    margin-bottom: 3rem;
  }
}
.promotion__article-links {
  display: flex;
  justify-content: center;
  gap: 1.6rem;
  margin-bottom: 11rem;
}
@media screen and (max-width: 768px) {
  .promotion__article-links {
    display: block;
    margin-bottom: 4.8rem;
  }
}
.promotion__link-item {
  display: block;
  width: 48.62rem;
  transition: all ease 0.3s;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .promotion__link-item {
    width: 24.5rem;
    margin: 0 auto 2rem;
  }
}
.promotion__link-item:hover {
  opacity: 0.7;
}
.promotion__link-item figure {
  position: relative;
  margin-bottom: 0.8rem;
}
@media screen and (max-width: 768px) {
  .promotion__link-item figure {
    margin-bottom: 0.4rem;
  }
}
.promotion__link-item figure::before {
  content: "";
  position: absolute;
  display: inline-block;
  width: 100%;
  height: 100%;
  border: 1rem solid rgba(255, 255, 255, 0.58);
  left: 0;
  top: 0;
}
@media screen and (max-width: 768px) {
  .promotion__link-item figure::before {
    border-width: 0.5rem;
  }
}
.promotion__link-item p {
  font-size: 1.8rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .promotion__link-item p {
    font-size: 0.9rem;
  }
}
.promotion__link-item p span {
  color: #f00909;
  margin-right: 0.4rem;
  position: relative;
}
.promotion__link-item p span::before {
  content: "";
  display: inline-block;
  position: absolute;
  width: 0.8rem;
  height: 1rem;
  background-color: #f00909;
  clip-path: polygon(0% 0%, 0% 100%, 100% 50%);
  left: -1.4rem;
  top: 53%;
  transform: translateY(-50%);
  transition: all ease 0.3s;
}
@media screen and (max-width: 768px) {
  .promotion__link-item p span::before {
    width: 0.4rem;
    height: 0.5rem;
    left: -0.7rem;
  }
}
.promotion__logo-group {
  display: flex;
  justify-content: center;
  gap: 6rem;
  margin-bottom: 5rem;
}
@media screen and (max-width: 768px) {
  .promotion__logo-group {
    gap: 2.4rem;
    margin-bottom: 2.5rem;
  }
}
.promotion__logo-item:nth-child(1) {
  width: 12.4rem;
}
@media screen and (max-width: 768px) {
  .promotion__logo-item:nth-child(1) {
    width: 6.4rem;
  }
}
.promotion__logo-item:nth-child(2) {
  width: 16.1rem;
}
@media screen and (max-width: 768px) {
  .promotion__logo-item:nth-child(2) {
    width: 8.4rem;
  }
}
.promotion__logo-item:nth-child(3) {
  width: 26rem;
}
@media screen and (max-width: 768px) {
  .promotion__logo-item:nth-child(3) {
    width: 12rem;
  }
}
.promotion__share-links {
  display: flex;
  justify-content: center;
  gap: 2.4rem;
}
@media screen and (max-width: 768px) {
  .promotion__share-links {
    gap: 1.2rem;
  }
}
.promotion__share-link-item {
  width: 5.44rem;
  height: 5.44rem;
}
@media screen and (max-width: 768px) {
  .promotion__share-link-item {
    width: 2.7rem;
    height: 2.7rem;
  }
}

.aboutTokyofm {
  border-top: 0.5rem double #f00909;
  border-bottom: 0.5rem double #f00909;
  padding-bottom: 3.6rem;
}
@media screen and (max-width: 768px) {
  .aboutTokyofm {
    border-width: 0.3rem;
    padding-bottom: 0;
  }
}
@media screen and (max-width: 768px) {
  .aboutTokyofm__pc-footer {
    display: none;
  }
}
@media screen and (min-width: 769px) {
  .aboutTokyofm__sp-footer {
    display: none;
  }
}

.footer {
  display: flex;
  justify-content: center;
  padding: 3.8rem 0 10rem;
}
@media screen and (max-width: 768px) {
  .footer {
    padding: 2.8rem 0 2.8rem 1rem;
    justify-content: start;
  }
}
.footer small {
  color: #f00909;
  font-size: 1.4rem;
}
@media screen and (max-width: 768px) {
  .footer small {
    font-size: 0.7rem;
  }
}/*# sourceMappingURL=style.css.map */