@charset "UTF-8";

html {
  box-sizing: border-box;
  font-size: clamp(13px, 1.4vw, 16px);
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

body {
  margin: 0;
  line-height: 1.8;
  position: relative;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  background-image: url(../img/back_noise.jpg);
  background-size: 150%;
  background-repeat: repeat-y;
  position: relative;
}

.body_line {
  position: absolute;
  height: 100%;
  background-color: initial;
  z-index: 10;
}

.body_line_left {
  left: 2.3vw;
  border-left: 1px solid #fff;
}
.body_line_right {
  right: 2.3vw;
  border-right: 1px solid #fff;
}
.fix_text {
  position: fixed;
  width: 1.25vw;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 20;
}
.fix_text.left {
  left: 1.2vw;
}
.fix_text.right {
  right: 0vw;
}
@media (max-width: 540px) {
  .body_line_left {
    left: 3.8vw;
  }
  .body_line_right {
    right: 3.8vw;
  }
  .fix_text {
    width: 2.2vw;
  }
  .fix_text.left {
    left: 2.2vw;
  }
}
footer {
  margin-top: auto;
}

/* ↓ 共通コンテンツ横幅とマージン ------------------------*/
/*pcの横幅*/

.pcWidth-l {
  max-width: 1080px;
  width: 90%;
  margin: 0 auto;
}

.pcWidth-m {
  max-width: 960px;
  width: 90%;
  margin: 0 auto;
}

.pcWidth-s {
  max-width: 880px;
  width: 90%;
  margin: 0 auto;
}

@media screen and (max-width: 540px) {
  .pcWidth-l {
    width: 85%;
  }

  .pcWidth-m {
    width: 85%;
  }

  .pcWidth-s {
    width: 85%;
  }
}

/* ↓ リンクと共通パーツ ------------------------*/
.textalign-center {
  text-align: center;
}

.textalign-left {
  text-align: left;
}

.textalign-right {
  text-align: right;
}

a {
  color: #333333;
  text-decoration: none;
}

a:hover {
  opacity: 0.7;
}

img {
  width: 100%;
}

.eng {
  font-family: "Josefin Slab", serif;
  font-optical-sizing: auto;
  font-style: normal;
}

.sec_head {
  text-align: center;
  font-size: 3rem;
  font-weight: 500;
  margin-bottom: 4rem;
}

.sec_head .eng {
  line-height: 1.4;
}

.sec_head .sub {
  font-size: 1rem;
}
@media (max-width: 540px) {
  .sec_head {
    text-align: center;
    font-size: 2.75rem;
    font-weight: 500;
    margin-bottom: 2rem;
  }

  .sec_head .eng {
    line-height: 1.4;
  }

  .sec_head .sub {
    font-size: 0.9rem;
  }
}
/* ↓ ナビゲーションバー ------------------------*/
.header {
  position: relative;
  z-index: 100;
}

.header_logo {
  position: fixed;
  top: 2.5vw;
  left: 4vw;
  width: 10vw;
  max-width: 8rem;
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
@media (max-width: 540px) {
  .header_logo {
    width: 6rem;
    left: 6vw;
  }
}

/* 表示状態 */
.header_logo.is-show {
  opacity: 1;
  transform: translateY(0);
}


.menu-btn {
  position: fixed;
  top: 2.5vw;
  right: 5vw;
  padding: 8px 16px;
  border: none;
  background: transparent;
  color: #d6d6d6;
  cursor: pointer;
  z-index: 120;
  display: inline-block;
}



@media (max-width: 540px) {
  /* ボタン自体の配置 */
  .menu-btn {
    position: fixed;
    top: 1.5vw;
    right: 4vw;
    padding: 8px 16px;
    border: none;
    background: transparent;
    cursor: pointer;
    z-index: 120;
    display: inline-block;
  }
}

/* MENU テキスト */
.menu-btn__label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.1rem;
  text-align: center;
}

/* ★ アイコン用の箱（ここが基準座標になる） */
.menu-btn__icon {
  position: relative;
  width: 3.5rem; /* 線と同じ長さ */
  height: 1.2rem; /* 3本分の高さ */
  margin: 0.5rem auto 0;
  display: block;
}

/* 3本線を絶対配置で重ねる */
.menu-btn__line {
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background-color: #d6d6d6;
  transform-origin: center center;
  transition: transform 0.35s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.25s ease;
}

/* 初期位置（ハンバーガー） */
.menu-btn__line--top {
  top: 0;
}
.menu-btn__line--middle {
  top: 50%;
  transform: translateY(-50%);
}
.menu-btn__line--bottom {
  bottom: 0;
}

/* 開いた状態（中央でキレイなバッテン） */
.menu-btn.is-open .menu-btn__line--top {
  top: 50%;
  transform: translateY(-50%) rotate(25deg);
}

.menu-btn.is-open .menu-btn__line--middle {
  opacity: 0;
}

.menu-btn.is-open .menu-btn__line--bottom {
  bottom: auto;
  top: 50%;
  transform: translateY(-50%) rotate(-25deg);
}

/* フルスクリーンメニュー -------------------------------------- */
.global-nav {
  position: fixed;
  inset: 0;
  background: rgba(0, 142, 191, 0.9);
  opacity: 0;
  pointer-events: none;
  transform: scale(1.02);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  z-index: 110;
}

.global-nav__inner {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.global-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
}

.global-nav_logomark {
  width: 8rem;
  margin: auto;
  margin-bottom: 2rem;
}
.global-nav_logo {
  width: 17rem;
  margin-bottom: 2rem;
}

@media (max-width: 540px) {
  .global-nav_logo {
    width: 19rem;
  }
}

.global-nav__item {
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  font-size: 1.2rem;
}

.global-nav__item:last-child {
  margin-bottom: 0;
}

.global-nav__item a {
  color: #ffffff;
  font-size: 1.75rem;
  text-decoration: none;
}
.global-nav__item small {
  font-size: 0.9rem;
  margin-left: 1rem;
}
/* OPEN時のふわっと表示 */
.is-nav-open .global-nav {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}

/* メニュー項目をディレイさせて1つずつ出す */
.is-nav-open .global-nav__item {
  opacity: 1;
  transform: translateY(0);
}

.is-nav-open .global-nav__item:nth-child(1) {
  transition-delay: 0.05s;
}
.is-nav-open .global-nav__item:nth-child(2) {
  transition-delay: 0.1s;
}
.is-nav-open .global-nav__item:nth-child(3) {
  transition-delay: 0.15s;
}
.is-nav-open .global-nav__item:nth-child(4) {
  transition-delay: 0.2s;
}
.is-nav-open .global-nav__item:nth-child(5) {
  transition-delay: 0.25s;
}
.is-nav-open .global-nav__item:nth-child(6) {
  transition-delay: 0.3s;
}
/*---------------------------------------------

	テストコード

---------------------------------------------*/
/* ↓ セクション ｜ ファーストビュー ------------------------*/
.fv {
  position: relative;
  height: 100vh;
  min-height: 700px;
  background-color: #fff;
}

.main_logo{
  width: 34rem;
  position: absolute;
  top: 47%;
  left: 50%;
  transform: translate(-50%,-50%);
}

.fv_image {
  width: 100%;
  position: relative;
}
.top_news {
  width: 100%;
  margin-top: -3.5rem;
}
@media screen and (max-width: 540px) {
  .fv {
    min-height: initial;
    height: 60vh;
  }
  .main_logo{
    top: 50%;
    width: 23rem;
  }
}
.top_news .inner {
  position: relative;
  display: flex;
  height: 42vw;
  padding: 5.2rem;
  border-radius: 4px;
  z-index: 10;
  background-color: #f4f4f4;
  box-shadow: 0 0 40px 0 rgba(194, 2, 2, 0.25);
}

/* ▼ SP（スマホ）のレイアウト */
@media screen and (max-width: 540px) {
  .top_news .inner {
    display: block; /* 左右ではなく上下に並べる */
    height: auto; /* 固定高さをやめて中身に合わせる */
    padding: 2rem;
  }
}

.top_news .inner .left {
  width: 20%;
  font-size: 2.5rem;
  flex-shrink: 0;
  font-weight: 500;
}

@media screen and (max-width: 540px) {
  .top_news .inner .left {
    width: 100%;
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }
}

.top_news .inner .left .small {
  font-size: 0.9rem;
  line-height: 100%;
}

/* ★ right を「枠」にする */
.top_news .inner .right {
  width: 80%;
  height: 100%;
  position: relative;
}

@media screen and (max-width: 540px) {
  .top_news .inner .right {
    width: 100%;
    height: auto; /* 親の高さに依存させない */
    position: relative;
  }
}

.top_news .inner .right .scroll-content {
  height: 100%;
  overflow-y: auto;
  padding-right: 1.5rem;
  scrollbar-width: none;
}
.top_news .inner .right .scroll-content::-webkit-scrollbar {
  width: 0;
  height: 0;
}

/* ▼ SP時：スクロールさせる高さを制限（ここが“窓”になる） */
@media screen and (max-width: 540px) {
  .top_news .inner .right .scroll-content {
    max-height: 30vh;
  }

  .top_news .inner .right .scrollbar {
    height: 50vh; /* track も同じ高さに揃える */
  }
}

/* ★ 自作バー（track = 薄グレー） */
.top_news .inner .right .scrollbar {
  position: absolute;
  top: 0;
  right: 0;
  width: 4px; /* 太さ */
  height: 100%;
  background: #e5e5e5; /* track の薄グレー */
  border-radius: 4px;
}

/* つまみ（thumb） */
.top_news .inner .right .scrollbar-thumb {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  border-radius: 5px;
  background: #9ac4d1;
  cursor: pointer;
  transition: background 0.2s;
}

.top_news .inner .right .scrollbar-thumb:hover {
  background: #666;
}

/* ドラッグ中にテキスト選択されるのを防ぐ用 */
.no-select {
  user-select: none;
}

/* ここから下は元のままのスタイル */

.top_news .inner .right .row:first-child {
  padding-top: 0rem;
}
.top_news .inner .right .row {
  display: flex;
  padding-bottom: 3rem;
  padding-top: 2rem;
  border-bottom: 1px dotted #d9d9d9;
  position: relative;
}

.top_news .inner .right .row .read_more {
  font-size: 0.85rem;
  display: flex;
  justify-content: end;
  align-items: center;
  position: absolute;
  bottom: 1rem;
  right: 0;
  font-weight: 500;
}
@media screen and (max-width: 540px) {
  .top_news .inner .right .row .read_more {
    font-size: 0.9rem;
  }
}
.top_news .inner .img_jaket {
  width: 10rem;
  flex-shrink: 0;
  margin-right: 2rem;
}

@media screen and (max-width: 540px) {
  .top_news .inner .img_jaket {
    width: 6rem;
  }
}

.top_news .inner .text {
  font-size: 0.9rem;
  padding-right: 2rem;
}
@media screen and (max-width: 540px) {
  .top_news .inner .text {
    padding-right: 0rem;
  }
}

.top_news .inner .text .eng {
  font-size: 1rem;
  color: #9b9b9b;
  font-weight: 600;
}
/*---------------------------------------------

	LIVE

---------------------------------------------*/
.live_info {
  padding: 8rem 0 8rem;
  color: #fff;
}

@media screen and (max-width: 540px) {
  .live_info {
    padding: 6rem 0 6rem;
    color: #fff;
  }
}
@media screen and (max-width: 540px) {
  .live_info {
    padding-bottom: 7rem;
    color: #fff;
  }
}

.live_info .sec_head {
  color: #fff;
}

/* カード幅 & 見切れ量（PC 基本値） */
:root {
  --live-card-width: min(70vw, 1080px); /* カード幅（最大1080px） */
  --live-peek: 4vw; /* 見切れ量（PC用） */
}

/* =========================
   横スクロールレール
========================= */
.live_info .box {
  width: 100%;
  overflow-x: auto;
  scroll-snap-type: x mandatory; /* スナップ親 */
}

.live_info .box::-webkit-scrollbar {
  display: none; /* デザインの邪魔なら消す */
}

/* =========================
   カード群（ul）
========================= */
.live_info .box ul {
  display: flex;
  align-items: flex-start; /* ← stretch をやめて上揃えにする */
  gap: 3.5rem;
  /* gap: 2rem; */
  padding: 0;
  margin: 0;
}

/* =========================
   各カード（li 共通）
========================= */
.live_info .box li {
  scroll-snap-align: center;
  list-style: none;
}

/* 実カード（ライブ情報） */
.live_info .box li.live_item {
  flex: 0 0 var(--live-card-width);
  max-width: var(--live-card-width);
  border-radius: 4px;
  background: rgba(241, 241, 241, 0.95);
  box-shadow: 0 0 40px 0 rgba(0, 142, 187, 0.25);
  display: flex;
  padding: 4rem;
  padding-bottom: 3rem;
  color: #181818;
}

/* 両端のスペーサー（見た目ナシ、幅だけ持つ）
   → これで「中央＋右だけ見切れ」の位置を作る（PC・SP共通のロジック） */
.live_info .box li.live_spacer {
  flex: 0 0 calc((100% - var(--live-card-width)) / 2 - var(--live-peek));
  max-width: calc((100% - var(--live-card-width)) / 2 - var(--live-peek));
  min-width: calc((100% - var(--live-card-width)) / 2 - var(--live-peek));

  padding: 0;
  background: transparent;
  box-shadow: none;
}

/* ====== カード内部レイアウト（PC 基本） ====== */

.live_info .box li .left {
  width: 50%;
  padding-right: 3rem;
}

.live_info .box li .left img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 1rem;
}

.live_info .box li .right {
  width: 50%;
}

.live_info .box li .right .day {
  font-size: 1.5rem;
  color: #9b9b9b;
}
.live_info .box li .right .day span {
  font-weight: bold;
  margin-right: 0.5rem;
}

.live_info .box li .right .title {
  font-size: 1.75rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.live_info .box li .right .info {
  line-height: 1.7;
  margin-bottom: 1rem;
}

.live_info .box li .right .btn_info {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.live_info .box li .right .btn_info a {
  background-color: #262626;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1rem;
  padding: 0.5rem;
  width: 47%;
  font-size: 0.9rem;
}

.live_info .box li .right .btn_info .item::after {
  background-color: #262626;
  content: "";
  display: inline-block;
  background-image: url(../img/icon_otherlink.svg);
  background-position: center;
  margin-left: 0rem;
  width: 1rem;
  height: 1rem;
  background-repeat: no-repeat;
}

.live_info .box li .right .read_more {
  font-size: 0.85rem;
  display: flex;
  justify-content: end;
  align-items: center;
}
@media screen and (max-width: 540px) {
  .live_info .box li .right .read_more {
    font-size: 1rem;
  }
}

.read_more::after {
  content: "";
  display: inline-block;
  background-image: url(../img/icon_more.svg);
  background-position: center;
  margin-left: 0.5rem;
  width: 1rem;
  height: 1rem;
  background-repeat: no-repeat;
}

@media screen and (max-width: 540px) {
  :root {
    --live-card-width: 78vw;
    --live-peek: 10vw;
  }

  .live_info .box li.live_item {
    display: block;
    padding: 2.5rem 2rem 2rem;
  }

  .live_info .box li .left,
  .live_info .box li .right {
    width: 100%;
    padding-right: 0;
  }

  .live_info .box li .left {
    margin-bottom: 1.5rem;
  }

  .live_info .box li .right .day {
    font-size: 1.2rem;
  }

  .live_info .box li .right .title {
    font-size: 1.4rem;
  }
}

/* ===== モーダル ===== */
.live_modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.live_modal.is-active {
  opacity: 1;
  pointer-events: auto;
}

.live_modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 142, 191, 0.9);
}

.live_modal__panel {
  position: relative;
  max-width: 900px;
  width: min(90vw, 900px);
  max-height: 80vh;
  overflow-y: auto;
  background: rgba(241, 241, 241, 0.95);
  border-radius: 10px;
  padding: 5rem 5rem 2rem;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.35);
  position: relative;
}

@media screen and (max-width: 540px) {
  .live_modal__panel {
    padding: 2rem;
  }
}

.live_modal__close {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  width: 4rem;
  height: 4rem;
  border: none;
  border-radius: 64px;
  background: #e5ecef;
  color: #262626;
  box-shadow: 0 0 1rem 0 rgba(0, 0, 0, 0.25);
  font-size: 2.5rem;
  font-weight: 100;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.4s ease;
}

.live_modal__close:hover {
  background-color: #f4f4f4;
  transition: 0.4s ease;
}

@media screen and (max-width: 540px) {
  .live_modal__close {
    top: 0.9rem;
    right: 0.9rem;
    width: 3rem;
    height: 3rem;
    font-size: 2rem;
  }
}
.live_modal__panel .jkt {
  width: 90%;
  max-width: 400px;
  margin: auto;
  text-align: center;
}

.live_modal__panel .day {
  font-size: 1rem;
  font-weight: bold;
  color: #9b9b9b;
}

.live_modal__panel h2 {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  font-weight: 400;
}
@media screen and (max-width: 540px) {
  .live_modal__panel h2 {
    font-size: 1.25rem;
  }
}
.live_modal__panel .btn_info_wrap {
  margin-bottom: 1rem;
}

.live_modal__panel .btn_info {
  display: flex;
  flex-wrap: wrap;
}

.live_modal__panel img {
  margin-bottom: 2rem;
}

.live_modal__panel p {
  margin-bottom: 2rem;
}
.live_modal__panel p iframe {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  font-weight: 400;
}
.live_modal__panel .btn_info a {
  background-color: #262626;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1rem;
  margin-right: 1rem;
  padding: 0.5rem;
  width: 17rem;
  font-size: 0.9rem;
}
@media screen and (max-width: 540px) {
  .live_modal__panel .btn_info a {
    width: 46%;
  }
}

.live_modal__panel .btn_info .item::after {
  background-color: #262626;
  content: "";
  display: inline-block;
  background-image: url(../img/icon_otherlink.svg);
  background-position: center;
  margin-left: 0.5rem;
  background-size: contain;
  width: 0.8rem;
  height: 0.8rem;
  background-repeat: no-repeat;
}

.live_modal__panel .read_more {
  font-size: 0.85rem;
  display: flex;
  justify-content: end;
  align-items: center;
}
@media screen and (max-width: 540px) {
  .live_modal__panel .read_more {
    font-size: 1rem;
  }
}
/*---------------------------------------------

	RELEASE

---------------------------------------------*/
.sec_release {
  padding: 8rem 0 8rem;
  background-color: #f3f3f3;
}
@media screen and (max-width: 540px) {
  .sec_release {
    padding: 6rem 0 6rem;
  }
}
.sec_release .row {
  display: flex;
  justify-content: space-around;
}
@media screen and (max-width: 540px) {
  .sec_release .row {
    display: block;
  }
}
.sec_release .row .left {
  width: 45%;
}
.sec_release .row .right {
  width: 45%;
}
@media screen and (max-width: 540px) {
  .sec_release .row .left {
    width: 100%;
  }
  .sec_release .row .right {
    width: 100%;
  }
}

.sec_release .row .left .title {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}
.sec_release .row .left .btn_preadd {
  background-color: #262626;
  color: #fff;
  width: 47%;
  min-width: 12rem;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 0.9rem;
}
.sec_release .row .left .btn_preadd::after {
  background-color: #262626;
  content: "";
  display: inline-block;
  background-image: url(../img/icon_otherlink.svg);
  background-position: center;
  margin-left: 0.5rem;
  background-size: contain;
  width: 0.8rem;
  height: 0.8rem;
  background-repeat: no-repeat;
}

.sec_release .row .left .btn_preadd a{
  color: #fff;
}

.sec_release .row .left .note_head {
  margin-bottom: 1rem;
}

@media screen and (max-width: 540px) {
  .sec_release .row .left .note {
    margin-bottom: 2rem;
  }
}
/*---------------------------------------------

	MOVIE

---------------------------------------------*/
.sec_movie {
  padding: 8rem 0 8rem;
}
@media screen and (max-width: 540px) {
  .sec_movie {
    padding: 6rem 0 6rem;
  }
}
.sec_movie .sec_head {
  color: #fff;
}
.yt-wrap {
  width: 100%;
  aspect-ratio: 16 / 9; /* ←ここで比率を指定 */
}
.yt-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.historyslider li {
  margin: 0 12px; /* 横方向の間隔 */
}

.historyslider li a:hover {
  opacity: initial;
}
/*---------------------------------------------

	HISTORY

---------------------------------------------*/
.sec_history {
  padding: 8rem 0 8rem;
  background-color: #f3f3f3;
}
@media screen and (max-width: 540px) {
  .sec_history {
    padding: 6rem 0 6rem;
  }
}
.yt-wrap {
  width: 100%;
  aspect-ratio: 16 / 9; /* ←ここで比率を指定 */
}
.yt-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.topslider li {
  margin: 0 0.5rem; /* 横方向の間隔 */
}
/*---------------------------------------------

	フッター

---------------------------------------------*/
.footer-menu {
  text-align: center;
  padding: 5rem 0rem 3rem;
}
.footer-menu .sns {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4rem;
}
.footer-menu .sns li {
  width: 1.5rem;
  margin: 0 1.2rem;
}
@media screen and (max-width: 540px) {
  .footer-menu .sns li {
    width: 2.5rem;
  }
}
.official a {
  display: inline-block;
  background-color: #262626;
  color: #fff;
  padding: 1rem 2rem;
  text-align: center;
  margin-bottom: 5rem;
}
.official a::after {
  background-color: #262626;
  content: "";
  display: inline-block;
  background-image: url(../img/icon_otherlink.svg);
  background-position: center;
  margin-left: 0.5rem;
  width: 0.8rem;
  height: 0.8rem;
  background-size: contain;
  background-repeat: no-repeat;
}

.footerMenu-menus {
  margin-top: 1.5rem;
  margin-bottom: 1rem;
  color: white;
}

.footerMenu-menus a {
  color: white;
}

.footerMenu-copy {
  font-size: 0.8rem;
  font-weight: 300;
  letter-spacing: normal;
}

/* ↓ PCとSP表示切り替え（末尾に設置） ------------------------*/
.pcArea {
  display: block;
}

.spArea {
  display: none;
}

@media screen and (max-width: 540px) {
  .pcArea {
    display: none;
  }

  .spArea {
    display: block;
  }
}
