@charset "UTF-8";
/* A Modern CSS Reset */
* {
  margin: 0;
  padding: 0;
}

*,
::before,
::after {
  border-style: solid;
  box-sizing: border-box;
  border-width: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  line-height: 1.5;
  text-rendering: optimizeSpeed;
}

ul,
ol {
  list-style: none;
}

a {
  color: inherit;
  background-color: transparent;
  text-decoration: none;
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

img {
  width: 100%;
  display: block;
}

input,
button,
select,
textarea {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border: none;
  border-radius: 0;
  background: transparent;
  font: inherit;
  outline: none;
}

textarea {
  resize: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

body {
  font-family: "Hiragino Mincho Pro";
  font-weight: 400;
}

body {
  color: #000;
}

@media (max-width: 375px) {
  html {
    font-size: 2.6666666667vw;
  }
}
html {
  font-size: 10px;
}
@media screen and (max-width: 768px) {
  html {
    font-size: 0.7320644217vw;
  }
}
@media (min-width: 1366px) {
  html {
    font-size: 10px;
  }
}

@media screen and (max-width: 768px) {
  a {
    transition: 0.3s;
  }
  a:hover {
    opacity: 0.8;
  }
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 83px;
  z-index: 999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 15px;
  transition: background-color 0.6s ease;
  background-color: transparent; /* 初期状態 */
}
@media screen and (max-width: 768px) {
  .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}

.header.bg-active {
  background-color: rgba(0, 0, 0, 0.8); /* スクロール後の色 */
}

.header .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-logo h1 {
  color: #fff;
  font-family: "Cormorant Garamond";
  font-weight: 400;
  font-size: 24px;
  line-height: 100%;
  letter-spacing: 0%;
  height: 83px;
  display: flex;
  align-items: end;
  gap: 2px;
}

.header-logo h1 a {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.nav-menu a {
  color: #fff;
  font-family: "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
}

.nav-menu:nth-child(5) a {
  color: #000;
  font-size: 14px;
  background-color: #fff;
  padding: 8px 33px;
  border: 1px solid #000;
  box-shadow: 0 0 0 1px #fff, 0 0 0 2px #000, 0 0 0 3px #fff; /* 4 */
  transition: 0.5s;
}

.nav-menu:nth-child(5) a:hover {
  color: #fff;
  background-color: #000;
  border: 1px solid #fff;
  box-shadow: 0 0 0 1px #000; /* 2 */
}

.nav-wrapper.active .nav-menu:nth-child(5) a:hover {
  color: #fff;
}

.youtube {
  background-image: url(../img/youtube.svg);
  background-position: center;
  background-size: cover;
  width: 27px;
  height: 19px;
}
@media screen and (max-width: 768px) {
  .youtube {
    background-image: url(../img/youtube-black.svg);
  }
}

.instagram {
  background-image: url(../img/instagram.svg);
  background-position: center;
  background-size: cover;
  width: 22px;
  height: 22px;
}
@media screen and (max-width: 768px) {
  .instagram {
    background-image: url(../img/instagram-black.svg);
  }
}

.twitter {
  background-image: url(../img/twitter.svg);
  background-position: center;
  background-size: cover;
  width: 22px;
  height: 22px;
}
@media screen and (max-width: 768px) {
  .twitter {
    background-image: url(../img/twitter-black.svg);
  }
}

.facebook {
  background-image: url(../img/facebook.svg);
  background-position: center;
  background-size: cover;
  width: 22px;
  height: 22px;
}
@media screen and (max-width: 768px) {
  .facebook {
    background-image: url(../img/facebook-black.svg);
  }
}

.originalicon {
  background-image: url(../img/originalicon.svg);
  background-position: center;
  background-size: cover;
  width: 36px;
  height: 24px;
}
@media screen and (max-width: 768px) {
  .originalicon {
    background-image: url(../img/originalicon-black.svg);
  }
}

.youtube a {
  display: block;
  width: 27px;
  height: 19px;
}

.instagram a {
  display: block;
  width: 22px;
  height: 22px;
}

.twitter a {
  display: block;
  width: 22px;
  height: 22px;
}

.facebook a {
  display: block;
  width: 22px;
  height: 22px;
}

.originalicon a {
  display: block;
  width: 36px;
  height: 24px;
}

.icon-flex-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  border-left: 1px solid #fff;
  padding-left: 2rem;
}

header .nav-menus {
  display: flex;
  flex-direction: row;
  gap: clamp(20px, 15vw, 40px);
}
@media screen and (max-width: 768px) {
  header .nav-menus {
    display: flex;
    flex-direction: column;
    gap: clamp(20px, 15vw, 40px);
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100vh;
  }
}

@media screen and (max-width: 768px) {
  header .nav-wrapper {
    width: 120vw;
    height: 120vh;
    position: fixed;
    top: 0;
    left: 120%;
    z-index: 11;
    background-color: white;
    transition: 0.5s;
  }
}

.nav-wrapper.active {
  border-radius: 0;
  top: 0%;
  left: -10%;
}

.nav-wrapper.active .nav-menu a {
  color: #000;
}

.hamburger-btn {
  display: none;
}
@media screen and (max-width: 768px) {
  .hamburger-btn {
    display: block;
    position: fixed;
    top: 25px;
    right: 25px;
    z-index: 12;
  }
}

.hamburger {
  width: 50px;
  height: 50px;
  background-color: rgba(0, 0, 0, 0.8);
  position: relative;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 1px;
  background-color: #fff;
  position: absolute;
  transition: 0.5s;
}

.hamburger span:nth-child(1) {
  top: 25%;
  left: 25%;
}

.hamburger span:nth-child(2) {
  top: 50%;
  left: 25%;
}

.hamburger span:nth-child(3) {
  top: 75%;
  left: 25%;
}

.hamburger.active {
  background-color: initial;
}

.hamburger.active span {
  background-color: #000;
}

.hamburger.active span:nth-child(1) {
  top: 50%;
  transform: rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  top: 50%;
  transform: rotate(-45deg);
}

.article-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 83px;
  z-index: 999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 15px;
  transition: background-color 0.6s ease;
  background-color: transparent; /* 初期状態 */
}
@media screen and (max-width: 768px) {
  .article-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}

.article-header.bg-active {
  background-color: rgba(0, 0, 0, 0.8); /* スクロール後の色 */
}

.article-header .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.article .header-logo h1 {
  color: #000;
  font-family: "Cormorant Garamond";
  font-weight: 400;
  font-size: 24px;
  line-height: 100%;
  letter-spacing: 0%;
  height: 83px;
  display: flex;
  align-items: end;
}

.article .nav-menu a {
  color: #000;
  font-family: "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
}

.nav-menu:nth-child(5) a {
  color: #000;
  font-size: 14px;
  background-color: #fff;
  padding: 8px 33px;
  border: 1px solid #000;
  box-shadow: 0 0 0 1px #fff, 0 0 0 2px #000, 0 0 0 3px #fff; /* 4 */
  transition: 0.5s;
}

.nav-menu:nth-child(5) a:hover {
  color: #fff;
  background-color: #000;
  border: 1px solid #fff;
  box-shadow: 0 0 0 1px #000; /* 2 */
}

.nav-wrapper.active .nav-menu:nth-child(5) a:hover {
  color: #fff;
}

.article .youtube {
  background-image: url(../img/youtube-black.svg);
  background-position: center;
  background-size: cover;
  width: 27px;
  height: 19px;
}

.article .instagram {
  background-image: url(../img/instagram-black.svg);
  background-position: center;
  background-size: cover;
  width: 22px;
  height: 22px;
}

.article .twitter {
  background-image: url(../img/twitter-black.svg);
  background-position: center;
  background-size: cover;
  width: 22px;
  height: 22px;
}

.article .facebook {
  background-image: url(../img/facebook-black.svg);
  background-position: center;
  background-size: cover;
  width: 22px;
  height: 22px;
}

.article .originalicon {
  background-image: url(../img/originalicon-black.svg);
  background-position: center;
  background-size: cover;
  width: 36px;
  height: 24px;
}

.icon-flex-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  border-left: 1px solid #fff;
  padding-left: 2rem;
}

header .nav-menus {
  display: flex;
  flex-direction: row;
  gap: clamp(20px, 15vw, 40px);
}
@media screen and (max-width: 768px) {
  header .nav-menus {
    display: flex;
    flex-direction: column;
    gap: clamp(20px, 15vw, 40px);
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100vh;
  }
}

@media screen and (max-width: 768px) {
  header .nav-wrapper {
    width: 120vw;
    height: 120vh;
    position: fixed;
    top: 0;
    left: 120%;
    z-index: 11;
    background-color: white;
    transition: 0.5s;
  }
}

.nav-wrapper.active {
  border-radius: 0;
  top: 0%;
  left: -10%;
}

.nav-wrapper.active .nav-menu a {
  color: #000;
}

.hamburger-btn {
  display: none;
}
@media screen and (max-width: 768px) {
  .hamburger-btn {
    display: block;
    position: fixed;
    top: 25px;
    right: 25px;
    z-index: 12;
  }
}

.hamburger {
  width: 50px;
  height: 50px;
  background-color: rgba(0, 0, 0, 0.8);
  position: relative;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 1px;
  background-color: #fff;
  position: absolute;
  transition: 0.5s;
}

.hamburger span:nth-child(1) {
  top: 25%;
  left: 25%;
}

.hamburger span:nth-child(2) {
  top: 50%;
  left: 25%;
}

.hamburger span:nth-child(3) {
  top: 75%;
  left: 25%;
}

.hamburger.active {
  background-color: initial;
}

.hamburger.active span {
  background-color: #000;
}

.hamburger.active span:nth-child(1) {
  top: 50%;
  transform: rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  top: 50%;
  transform: rotate(-45deg);
}

.footer-img-lists {
  position: relative;
  padding-top: 30.1rem;
}

.footer-img-list:nth-child(1) {
  width: 39rem;
  position: absolute;
  top: 0;
  left: 5.6rem;
}

.footer-img-list:nth-child(3) {
  width: 28.3rem;
  position: absolute;
  top: 15.6rem;
  right: 18rem;
}

.footer-img-list:nth-child(2) .slider {
  position: relative;
  aspect-ratio: 1366/449;
  list-style: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.footer-img-list:nth-child(2) .slider-item {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 3s ease;
}

.footer-img-list:nth-child(2) .slider-item.active {
  opacity: 1;
}

/* 各背景画像 */
.footer-img-list:nth-child(2) .slider1 {
  background-image: url("../img/footer-slid-img.png");
}

.footer-img-list:nth-child(2) .slider2 {
  background-image: url("../img/footer-slid-img-02.png");
}

.footer-img-list:nth-child(2) .slider3 {
  background-image: url("../img/footer-slid-img-03.png");
}

.footer-menu {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  max-width: 125.4rem;
  margin: 2.3rem auto 0;
  padding: 0 3.5rem;
}
@media screen and (max-width: 768px) {
  .footer-menu {
    flex-direction: column;
    gap: 10rem;
  }
}

footer .nav-menus {
  display: flex;
  flex-direction: row;
  gap: clamp(20px, 15vw, 40px);
}
@media screen and (max-width: 768px) {
  footer .nav-menus {
    flex-direction: column;
    gap: 10px;
  }
}

.footer-logo h1 {
  color: #000;
  font-family: "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", sans-serif;
  font-size: clamp(18px, 1.5vw, 20px);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.footer-menu a {
  color: #000;
}

@media screen and (max-width: 768px) {
  .footer-menu .nav-menus .nav-menu:nth-child(4) {
    margin-top: 18px;
  }
}

.footer-menu .nav-menu:nth-child(4) a {
  color: #000;
  font-size: 14px;
  background-color: #fff;
  padding: 8px 33px;
  border: 1px solid #000;
  box-shadow: 0 0 0 1px #fff, 0 0 0 2px #000, 0 0 0 3px #fff;
  transition: 0.5s;
}

.footer-menu .nav-menu:nth-child(4) a:hover {
  color: #fff;
  background-color: #000;
  border: 1px solid #fff;
  box-shadow: 0 0 0 1px #000;
}

.sns-icon .youtube {
  background-image: url(../img/youtube-black.svg);
  background-position: center;
  background-size: cover;
  width: 27px;
  height: 19px;
}

.sns-icon .instagram {
  background-image: url(../img/instagram-black.svg);
  background-position: center;
  background-size: cover;
  width: 22px;
  height: 22px;
}

.sns-icon .twitter {
  background-image: url(../img/twitter-black.svg);
  background-position: center;
  background-size: cover;
  width: 22px;
  height: 22px;
}

.sns-icon .facebook {
  background-image: url(../img/facebook-black.svg);
  background-position: center;
  background-size: cover;
  width: 22px;
  height: 22px;
}

.sns-icon .originalicon {
  background-image: url(../img/originalicon-black.svg);
  background-position: center;
  background-size: cover;
  width: 36px;
  height: 24px;
}

.sns-icon {
  display: flex;
  flex-direction: row;
  justify-content: end;
  align-items: center;
  gap: 20px;
  max-width: 125.4rem;
  margin: 40px auto 0;
  padding: 0 3.5rem;
}

.footer-copy {
  text-align: center;
  color: #000;
  font-family: "Cormorant Garamond";
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-top: 14.9rem;
  padding-bottom: 2.7rem;
}

.inner {
  width: 100%;
  padding-right: 1.5625rem;
  padding-left: 1.5625rem;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .inner {
    max-width: 1366px;
    padding-right: 3.5rem;
    padding-left: 3.5rem;
  }
}

/* mv + live-info 全体を100vhに */
.hero-wrapper {
  position: relative;
}

/* mv-section と live-info を均等に */
.mv-section {
  width: 100%;
  height: 100vh;
}

.live-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}

.mv-wrapper {
  display: block;
  width: 100%;
  height: 100vh;
}

.mv-fast .slider {
  position: relative;
  width: 100%;
  height: 100%;
  list-style: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.mv-fast .slider-item {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 3s ease;
}

.mv-fast .slider-item.active {
  opacity: 1;
}

/* 各背景画像 */
.mv-fast .slider1 {
  background-image: url("../img/mv-img.png");
}

.mv-fast .slider2 {
  background-image: url("../img/mv-img-02.png");
}

.mv-fast .slider3 {
  background-image: url("../img/mv-img-03.png");
}

.mv-fast .slider4 {
  background-image: url("../img/mv-img-04.png");
}

.mv-bgc {
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100%;
  position: relative;
}

.mv-content {
  width: 100%;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.fv-shadow {
  width: 100%;
  height: 100%;
  position: absolute;
  top: -11px;
  left: 0;
}

.fv-title {
  position: absolute;
  top: 37%;
  right: 0;
  width: 100%;
  display: flex;
  justify-content: end;
}

.fv-title h2 {
  width: 58.5rem;
  margin-right: 5.6rem;
}

.article-fv-img-wrapper {
  position: relative;
  max-width: 1255px;
  margin: 100px auto 0;
  padding: 0 2.5rem;
}

.article-title {
  position: absolute;
  bottom: 5.6rem;
  left: 14.6rem;
  transform-origin: left bottom;
  color: #fff;
  font-family: "Cormorant Garamond";
  font-weight: 400;
  font-size: 9.4rem;
  line-height: 100%;
  letter-spacing: 6px;
  text-transform: capitalize;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.article-title span {
  font-family: "Hiragino Mincho Pro";
  font-weight: 300;
  font-size: 2rem;
  line-height: 100%;
  letter-spacing: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 2.4rem;
}

.article-title span::after {
  display: block;
  content: "";
  width: 4.3rem;
  border-bottom: 1px solid #fff;
}

.category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  max-width: 1255px;
  margin: 8px auto 0;
  padding: 0 3.9rem;
  font-family: "Hiragino Mincho Pro";
  font-weight: 400;
  font-size: 13px;
  line-height: 100%;
  letter-spacing: 0;
}

.top, .yazirusi {
  color: #797979;
  text-transform: uppercase;
}

.category-name {
  border-bottom: 1px solid #000;
}

/* wrapper */
.live-info {
  background: #efefef;
}

.live-info-inner {
  max-width: 130.4rem;
  margin: 0 auto;
  padding: 18px 25px 12px;
}

/* 3カラムの行 */
.live-row {
  display: flex;
  align-items: center;
  gap: 28px;
}
@media screen and (max-width: 768px) {
  .live-row {
    flex-wrap: wrap;
    gap: 18px;
  }
}

/* 左：小見出し */
.live-aside {
  min-width: 150px;
  width: 150px;
  text-align: center;
  color: var(--muted);
  letter-spacing: 0.04em;
}
@media screen and (max-width: 768px) {
  .live-aside {
    width: auto;
    min-width: 0;
    text-align: left;
  }
}

.live-aside .en {
  color: #43302F;
  font-family: "Cormorant Garamond";
  font-weight: 300;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0;
  text-align: center;
  margin-bottom: 0.35rem;
}

.live-aside .ja {
  color: #1C1C1C;
  font-family: "Hiragino Mincho Pro";
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0;
}

/* 中央 */
.live-main {
  width: 100%;
}

/* タイトル行 */
.live-title {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0.25rem 0 0.8rem;
  margin: 0 0 0.75rem 0;
  border-bottom: 1px solid #000;
}
@media screen and (max-width: 768px) {
  .live-title {
    flex-direction: column;
    align-items: end;
  }
}

.live-title h2 {
  font-family: "Hiragino Mincho Pro";
  font-weight: 400;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0;
  display: inline-block;
  margin: 0 0.4rem 0 0;
}

.badge {
  font-family: "Hiragino Mincho Pro";
  font-weight: 400;
  font-size: 13px;
  line-height: 100%;
  letter-spacing: 0;
  background-color: #fff;
  display: inline-flex;
  align-items: center;
  padding: 0 0.8rem;
  height: 20px;
}

/* タイトル下の水平ライン */
.live-title::after {
  content: "";
  display: block;
  height: 1px;
  background: var(--line);
  opacity: 0.55;
  margin-top: 0.6rem;
}

/* データ行 */
.live-meta-wrapper {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .live-meta-wrapper {
    flex-direction: column;
  }
}

.live-meta .row {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.live-meta .label {
  font-family: "Hiragino Mincho Pro";
  font-weight: 300;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0;
}

.live-meta .dot {
  font-size: 9px;
}

.live-meta .val {
  font-family: "Hiragino Mincho Pro";
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0;
  display: flex;
  align-items: center;
}

/* 右：詳細リンク */
.live-more {
  height: 28px;
  border-bottom: 1px solid #000;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .live-more {
    width: auto;
    min-width: 0;
    order: 3;
  }
}

.more-link {
  font-family: "Hiragino Mincho Pro";
  font-weight: 400;
  font-size: 13px;
  line-height: 28px;
  letter-spacing: 0;
  text-align: center;
  vertical-align: middle;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  position: relative;
}

.more-link::after {
  display: flex;
  content: "";
  width: 12px;
  height: 1px;
  background-color: #000;
  transition: 0.5s;
}

.more-link::before {
  display: block;
  content: "";
  width: 4px;
  height: 1px;
  background-color: #000;
  position: absolute;
  right: 0;
  transform: rotate(30deg); /* 斜めに回転させて矢印に */
  transform-origin: right center;
}

.more-link:hover::after {
  width: 24px;
}

.live-body {
  background-color: #F1F1F1;
}

.article-live-info {
  margin: 7.5rem 0 11.6rem;
}

.live-lists {
  max-width: 1056px;
  margin: 0 auto;
  padding: 0 2.5rem;
}

.live-list a {
  display: flex;
  flex-direction: row;
  gap: 7.1rem;
  align-items: center;
  padding-bottom: 16px;
  border-bottom: 1px solid #000;
}
@media screen and (max-width: 768px) {
  .live-list a {
    flex-direction: column;
  }
}

.live-list:nth-child(n+2) {
  margin-top: 40px;
}

.article-live-info .live-meta-wrapper {
  display: initial;
}

.article-live-info .live-title {
  border-bottom: initial;
  flex-direction: column;
  align-items: start;
  gap: 1.2rem;
  padding: 0 0 1.2rem;
  margin: 0;
}

.article-live-info .live-title h2 {
  font-size: 24px;
}

.article-live-info .badge {
  font-size: 16px;
}

.article-live-info .live-title::after {
  display: none;
}

.article-live-info .live-meta .label {
  font-size: 16px;
}

.article-live-info .live-meta .val {
  width: 84.3406593407%;
  gap: 12px;
}

/* ✅ スマホ（600px以下）のときは「1 2 … 10」だけ表示 */
@media screen and (max-width: 768px) {
  /* 3,4,5 を非表示にする */
  .page-item:nth-child(3),
  .page-item:nth-child(4),
  .page-item:nth-child(5) {
    display: none;
  }
}
.article-live-info h2 {
  position: relative;
  display: inline-block;
}

.article-live-info h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  height: 2px; /* ラインの太さ */
  width: 100%;
  background: #333;
  transform: scaleX(0); /* 最初は見えない状態 */
  transform-origin: left; /* 左から右に */
  transition: transform 0.5s ease;
}

.article-live-info a:hover h2::after {
  transform: scaleX(1); /* 左から右に伸びる */
}

.live-filter {
  display: flex;
  flex-direction: column;
}

.category-list {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 60px;
}

.live-filter span {
  font-family: "Hiragino Mincho Pro";
  font-weight: 400;
  font-size: 24px;
  line-height: 100%;
  letter-spacing: 0;
  width: 100%;
  text-align: center;
}

.live-filter a {
  font-family: "Hiragino Mincho Pro";
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0;
  margin-top: 2rem;
  background-color: #fff;
  padding: 2px 8px;
}

.article-live-content {
  margin-top: 7.5rem;
  margin-bottom: 11.6rem;
}

.live-content-wrapper {
  max-width: 1056px;
  padding: 0 2.5rem;
  margin: 0 auto;
}

.article-live-content .live-title {
  flex-direction: column;
  gap: 16px;
  border-bottom: initial;
  margin: initial;
  padding: initial;
}

.article-live-content .live-title h2 {
  font-size: 40px;
}

.article-live-content .live-title .badge {
  font-size: 16px;
}

.article-live-content .live-flex-box {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 7.1rem;
}
@media screen and (max-width: 768px) {
  .article-live-content .live-flex-box {
    flex-direction: column;
  }
}

.live-ikyatti {
  width: 350px; /* 横幅固定 */
  height: auto; /* 高さは画像に合わせる */
  overflow: hidden; /* はみ出す部分は隠さない場合は不要 */
  background-color: #f0f0f0; /* 読み込み前の背景色 */
}

.live-ikyatti .live-thumbnail {
  width: 100%; /* 横幅に合わせる */
  height: auto; /* 高さは自動調整 */
  display: block;
}

.article-live-content .live-meta .label {
  width: 64px;
}

.article-live-content .live-meta .val {
  flex-direction: column;
  align-items: start;
  font-size: 18px;
  gap: 4px;
  flex: 7;
}

.article-live-content .live-main {
  width: 52.7833001988%;
}
@media screen and (max-width: 768px) {
  .article-live-content .live-main {
    width: 100%;
  }
}

.article-live-content .live-meta-wrapper {
  display: initial;
}

.article-live-content .live-meta .row {
  padding: 12px 0;
  border-bottom: 1px solid #000;
}

.article-live-content .live-meta .row:nth-child(n+2) {
  margin-top: 2rem;
}

.muside {
  margin-top: 4.8rem;
}
@media screen and (max-width: 768px) {
  .muside {
    margin-top: 8.8rem;
  }
}

.muside-inner {
  max-width: 990px;
  margin: 0 auto;
  background-color: #fff;
  border: 1px solid #000;
  box-shadow: 0 0 0 8px #fff;
  padding: 3.2rem 3.6rem;
}

.muside-title-box {
  display: flex;
  justify-content: center;
}

.muside-title {
  width: 174px;
}

.muside-sab-title, .merit-title {
  font-family: "Hiragino Mincho Pro";
  font-weight: 400;
  font-size: 24px;
  line-height: 36px;
  letter-spacing: 10%;
  text-align: center;
  margin-top: 2.8rem;
}

.muside-text, .muside-process, .muside-list, .merit-text {
  font-family: "Hiragino Mincho Pro";
  font-weight: 400;
  font-size: 16px;
  line-height: 36px;
  letter-spacing: 1.5px;
}

.muside-text {
  margin-top: 1.6rem;
}

.muside-process {
  margin-top: 3.6rem;
}

.muside-lists {
  list-style-type: decimal;
  margin-left: 26px;
}

.note-text {
  font-family: "Hiragino Mincho Pro";
  font-weight: 400;
  font-size: 14px;
  line-height: 36px;
  letter-spacing: 10%;
  margin-top: 8px;
}

.merit-btn {
  display: flex;
  justify-content: center;
  margin-top: 2.8rem;
}

.merit-btn a {
  font-family: "Hiragino Mincho Pro";
  font-weight: 400;
  font-size: 14px;
  line-height: 36px;
  letter-spacing: 1.5px;
  border-bottom: 1px solid #000;
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
}

.merit-btn a::after {
  display: flex;
  content: "";
  width: 12px;
  border-bottom: 1px solid #000;
  transition: 0.5s;
}

.merit-btn a::before {
  display: flex;
  content: "";
  width: 4px;
  height: 1px;
  background-color: #000;
  position: absolute;
  right: 0px;
  transform: rotate(30deg);
  transform-origin: right center;
  transition: 0.5s;
}

.merit-btn a:hover::after {
  width: 24px;
  border-bottom: 1px solid #000;
}

.live-content-btn-position {
  margin-top: 4.8rem;
  display: flex;
  justify-content: center;
}

.about-section {
  padding-top: 5.9rem;
}

.about-flex-wrapper {
  position: relative;
}

.about-flex-box-01 {
  display: flex;
  flex-direction: row;
  align-items: end;
}
@media screen and (max-width: 768px) {
  .about-flex-box-01 {
    flex-direction: column;
    align-items: center;
  }
}

.about-flex-box-02 {
  position: absolute;
  top: 3.6rem;
  right: 20.6rem;
  display: flex;
  flex-direction: row;
  gap: 6rem;
}

.text-img {
  width: 7.6rem;
}

.name-img {
  width: 10.2rem;
}

.about-img {
  aspect-ratio: 778/402;
}

.about-text-wrapper {
  margin-top: 6.4rem;
  margin-left: 18rem;
  max-width: 65.5rem;
}
@media screen and (max-width: 768px) {
  .about-text-wrapper {
    max-width: 125.4rem;
    margin: 6.4rem auto 0;
  }
}

.about-text {
  color: #000;
  font-family: "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 36px; /* 225% */
  letter-spacing: 1.6px;
}

.about-text-wrapper .base-btn {
  margin-top: 4rem;
}

.about-last-img-wrapper {
  margin-top: 8.4rem;
  position: relative;
}

.about-img-01 {
  width: 27.3rem;
  position: absolute;
  top: 0;
  left: 8.7rem;
}

.about-img-02 {
  width: 17.5rem;
  position: absolute;
  bottom: -2.5rem;
  left: 24.2rem;
}

.about-img-03 {
  width: 36.6rem;
  position: absolute;
  bottom: -6rem;
  right: 0;
}

/* 初期状態：透明＋少し下にずらす */
.dissolve-in {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  will-change: opacity, transform;
}

/* 表示された状態 */
.dissolve-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* 順番に遅延をかける */
.about-img-01 {
  transition-delay: 0.3s;
}

.about-img-02 {
  transition-delay: 0.6s;
}

.about-img-03 {
  transition-delay: 0.9s;
}

/* アニメーション無効化（低モーション設定ユーザー配慮） */
@media (prefers-reduced-motion: reduce) {
  .dissolve-in {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}
.goods-section {
  padding: 12.3rem 0 14.7rem;
  background-image: url(../img/goods-bg-img.png);
  position: relative;
}

.goods-sec-bg-img {
  width: 43.5rem;
  position: absolute;
  bottom: 0;
  right: 0;
}

.goods-kippu {
  width: 4.9rem;
  position: absolute;
  bottom: -1px;
  right: 26px;
}

.goods-inner {
  max-width: 100.6rem;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .goods-inner {
    max-width: inherit;
  }
}

.fast-title {
  color: #000;
  font-family: "Cormorant Garamond";
  font-size: clamp(48px, 10.4166666667vw, 94px);
  font-weight: 400;
  line-height: normal;
  letter-spacing: 8.46px;
}

.second-title-flex-box {
  display: flex;
  flex-direction: row;
  gap: 13.3rem;
}
@media screen and (max-width: 768px) {
  .second-title-flex-box {
    flex-direction: column;
    gap: 3rem;
  }
}

.second-title {
  color: #000;
  font-family: "Hiragino Mincho Pro";
  font-size: 20px;
  font-weight: 300;
  line-height: normal;
}

.second-title:nth-child(1) {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.second-title:nth-child(1)::before {
  display: block;
  content: "";
  width: 43px;
  height: 1px;
  background-color: #000;
  position: absolute;
  right: -7.4rem;
}
@media screen and (max-width: 768px) {
  .second-title:nth-child(1)::before {
    display: none;
  }
}

.goods-text {
  color: #000;
  font-family: "Hiragino Mincho Pro";
  font-size: 16px;
  font-weight: 400;
  line-height: 36px; /* 225% */
  letter-spacing: 1.6px;
  margin-top: 5.6rem;
}

.goods-card-warapper {
  margin-top: 6.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.card-lists {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 4.1rem;
}
@media screen and (max-width: 768px) {
  .card-lists {
    grid-template-columns: 1fr;
  }
}

.card-list {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.card-img {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 4px;
  box-shadow: 0 0 0 4px #fff;
}

.card-img img {
  border-radius: 4px;
}

.goods-name {
  color: #000;
  font-family: "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 36px; /* 180% */
  letter-spacing: 0;
  margin-top: 2rem;
  display: flex;
  align-items: center;
  height: 56px;
}

.goods-money {
  color: #000;
  font-family: "Hiragino Mincho Pro";
  font-weight: 400;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 0;
  margin-top: 1rem;
  display: flex;
  justify-content: end;
}

.goods-money span {
  padding: 2px 8px;
  background-color: #fff;
}

.goods-card-warapper .base-btn {
  margin-top: 4rem;
}

.goods-card-warapper .base-btn a {
  padding: 20px 83px;
}

.goods-body {
  background-image: url(../img/goods-bg-img-02.png);
  background-size: cover;
  background-position: center;
  position: relative;
}

.goods-body::after {
  display: block;
  content: "";
  width: 100%;
  height: 104%;
  position: absolute;
  top: -100px;
  left: 0;
  z-index: -1;
  background-image: url(../img/goods-bg-img-02.png);
  background-size: cover;
  background-position: center;
}

.goods-body .goods-section {
  background-image: none;
}

.goods-body .fast-title {
  text-align: center;
}

.goods-body .second-title-flex-box {
  justify-content: center;
}

.goods-body .second-title:nth-child(1)::before {
  display: none;
}

.article-goods-sec-bg-img {
  bottom: 39rem;
  right: initial;
  left: -13rem;
  transform: rotate(90deg);
}
@media screen and (max-width: 768px) {
  .article-goods-sec-bg-img {
    display: none;
  }
}

/* モーダル全体 */
.modal {
  position: fixed;
  z-index: 1000;
  padding-top: 60px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.6);
  /* フェード用 */
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

/* 表示時 */
.modal.show {
  opacity: 1;
  visibility: visible;
}

/* モーダルの中身 */
.modal-content {
  background: #fff;
  margin: auto;
  padding: 100px 52px 32px;
  border-radius: 8px;
  max-width: 842px;
  position: relative;
  /* ふわっと動き用 */
  opacity: 0;
  transform: translateY(20px); /* 下からスッと */
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.modal.show .modal-content {
  opacity: 1;
  transform: translateY(0);
}

/* 閉じるボタン */
.close {
  color: #333;
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

/* モーダル内レイアウト */
.modal-inner {
  display: flex;
  flex-direction: row;
  gap: 4.4rem;
}
@media screen and (max-width: 768px) {
  .modal-inner {
    flex-direction: column;
  }
}

.modal-img {
  flex: 1 1 47%;
}

.modal-img img {
  max-width: 100%;
  border-radius: 6px;
}

.modal-text {
  flex: 1 1 55%;
}

.modal-text h2 {
  font-family: "Hiragino Mincho Pro";
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  margin-bottom: 16px;
}

.modal-text .price {
  font-family: "Hiragino Mincho Pro";
  font-weight: 400;
  font-size: 32px;
  line-height: 100%;
  text-align: end;
  margin-bottom: 24px;
}

.modal-text h3,
.modal-text p,
.modal-text li {
  font-family: "Hiragino Mincho Pro";
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  letter-spacing: 2px;
}

.modal-text p {
  margin-bottom: 16px;
}

.modal-btn {
  display: flex;
  justify-content: center;
  margin-top: 4rem;
}

.modal-btn a {
  color: #000;
  font-size: 14px;
  background-color: #fff;
  padding: 17px 27px;
  border: 1px solid #000;
  box-shadow: 0 0 0 1px #fff, 0 0 0 2px #000, 0 0 0 3px #fff;
  transition: 0.5s;
}

.modal-btn a:hover {
  color: #fff;
  background-color: #000;
  border: 1px solid #fff;
  box-shadow: 0 0 0 1px #000;
}

.contact-section {
  padding: 5rem 0 0;
  background-image: url(../img/contact-grid.png);
  margin-bottom: 10rem;
  position: relative;
  z-index: 2;
}

.gradation-img {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.contact-inner {
  max-width: 100.6rem;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .contact-inner {
    max-width: inherit;
  }
}

.contact-title {
  color: #000;
  font-family: "Cormorant Garamond";
  font-size: clamp(48px, 10.4166666667vw, 94px);
  font-weight: 400;
  line-height: normal;
  letter-spacing: 8.46px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.title-ja {
  color: #000;
  font-family: "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", sans-serif;
  font-size: clamp(18px, 1.5vw, 20px);
  font-weight: 300;
  line-height: normal;
}

.form-warapper {
  margin-top: 3rem;
  background-color: #F1F1F1;
}

form {
  max-width: 560px;
  margin: 0 auto;
  padding: 5.6rem 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (max-width: 768px) {
  form {
    width: 100%;
  }
}

form .form-lists {
  margin-bottom: 4rem;
}

.form-list {
  display: flex;
  flex-direction: row;
  align-items: center;
  -moz-column-gap: 3.6rem;
       column-gap: 3.6rem;
  margin-top: 4.8rem;
}
@media screen and (max-width: 768px) {
  .form-list {
    flex-direction: column;
  }
}

.form-list:nth-child(2), .form-list:nth-child(5) {
  align-items: start;
}

.select-lists {
  width: 100%;
}

label {
  font-family: "Hiragino Mincho Pro";
  font-weight: 400;
  font-size: 16px;
  line-height: 36px;
  letter-spacing: 0;
  width: 40%;
}
@media screen and (max-width: 768px) {
  label {
    width: 100%;
  }
}

input {
  background-color: #fff;
  width: 100%;
  height: 40px;
  border: 1px solid #000;
  font-size: 16px;
  padding: 10px;
}

textarea {
  background-color: #fff;
  border: 1px solid #000;
  font-size: 16px;
  padding: 0 10px;
  width: 100%;
}

.radio {
  display: none; /* デフォルトのラジオボタンを非表示 */
}

.select-list label {
  width: 100%;
  position: relative;
  padding-left: 30px;
  cursor: pointer;
  font-size: 16px;
  display: inline-block;
}

/* カスタムラジオボタンの円 */
.select-list label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 20px;
  width: 20px;
  border: 1px solid #000;
  border-radius: 50%;
  background-color: #fff;
}

/* ラジオボタン選択時の黒丸 */
.radio:checked + label::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 50%;
  transform: translateY(-50%);
  height: 8px;
  width: 8px;
  background-color: #000;
  border-radius: 50%;
}

.extra-fields {
  width: 100%;
}

.extra-fields .field-group {
  display: none; /* 初期は非表示 */
  margin-top: 1em;
}

.extra-fields label {
  display: block;
  margin: 0.5em 0 0.2em;
  font-weight: bold;
}

.extra-fields select,
.extra-fields textarea {
  width: 100%;
  padding: 0.5em;
  background-color: #fff;
  border: 1px solid #000;
  font-family: "Hiragino Mincho Pro";
  font-weight: 400;
  font-size: 16px;
  line-height: 36px;
  letter-spacing: 0;
}

.extra-fields option {
  font-family: "Hiragino Mincho Pro";
  font-weight: 400;
  font-size: 16px;
  line-height: 36px;
  letter-spacing: 0;
}

.submit-btn {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  margin-top: 5rem;
}

.submit-btn input {
  width: 203px;
  height: 52px;
  color: #fff;
  background-color: #43302F;
  font-family: "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: normal;
  border: 1px solid #000;
  border-radius: 50px;
  padding: 1rem;
  transition: 0.5s;
}

.submit-btn input:hover {
  color: #43302F;
  background-color: #fff;
}

.biography-inner {
  max-width: 105.6rem;
  margin: 7.5rem auto 11.6rem;
  padding: 0 2.5rem;
}

.biography-text-box {
  margin-top: 4rem;
}

.biography-text-box .text {
  font-family: "Hiragino Mincho Pro";
  font-weight: 400;
  font-size: 16px;
  line-height: 36px;
  letter-spacing: 1.5px;
}

.biography-text-box .text:nth-child(n+2) {
  margin-top: 4rem;
}

.biography-flex-box-02 {
  display: flex;
  flex-direction: row;
  gap: 8.8rem;
  margin-top: 6.2rem;
}
@media screen and (max-width: 768px) {
  .biography-flex-box-02 {
    flex-direction: column;
  }
}

.biography-img-02 {
  aspect-ratio: 359/456;
}

.biography-flex-box-02 .biography-text-box {
  width: 55.9rem;
}
@media screen and (max-width: 768px) {
  .biography-flex-box-02 .biography-text-box {
    width: 100%;
  }
}

.biography-flex-box-03 {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  gap: 9.7rem;
  margin-top: 7.2rem;
}
@media screen and (max-width: 768px) {
  .biography-flex-box-03 {
    flex-direction: column;
  }
}

.biography-img-03 {
  aspect-ratio: 350/434;
}

.biography-flex-box-03 .biography-text-box {
  width: 55.9rem;
  margin-top: 0;
}
@media screen and (max-width: 768px) {
  .biography-flex-box-03 .biography-text-box {
    width: 100%;
  }
}

.biography-text {
  font-family: "Hiragino Mincho Pro";
  font-weight: 400;
  font-size: 16px;
  line-height: 36px;
  letter-spacing: 1.5px;
  margin-top: 7.2rem;
}

.concept-text-box {
  background-color: #F1F1F1;
  border: 1px solid #000;
  box-shadow: 0 0 0 10px #F1F1F1;
  padding: 20px 32px;
  margin-top: 4rem;
}

.concept-title {
  font-family: "Hiragino Mincho Pro";
  font-weight: 400;
  font-size: 16px;
  line-height: 36px;
  letter-spacing: 1.5px;
}

.concept-text {
  font-family: "Hiragino Mincho Pro";
  font-weight: 400;
  font-size: 16px;
  line-height: 36px;
  letter-spacing: 1.5px;
}

.base-btn {
  display: inline-flex;
  align-items: center;
  position: relative;
}

.base-btn span {
  opacity: 0;
  display: flex;
  position: absolute;
  top: 3px;
  left: 0;
  border: 1px solid #000;
  border-radius: 60px;
  width: 100%;
  height: 64px;
  transition: 0.6s;
}

.base-btn a {
  font-family: "Hiragino Mincho Pro";
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  letter-spacing: 0;
  text-align: center;
  vertical-align: middle;
  padding: 20px 76px 20px 40px;
  border: 1px solid #000;
  border-radius: 60px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  position: relative;
  z-index: 10;
}

.base-btn::after {
  display: flex;
  content: "";
  width: 12px;
  border-bottom: 1px solid #000;
  transition: 0.5s;
  position: absolute;
  right: 40px;
  transition: 0.5s;
}

.base-btn::before {
  display: flex;
  content: "";
  width: 4px;
  height: 1px;
  background-color: #000;
  position: absolute;
  right: 40px;
  transform: rotate(30deg);
  transform-origin: right center;
  transition: 0.5s;
}

.base-btn:hover span {
  opacity: 1;
}

.base-btn:hover::after {
  right: 28px;
  width: 24px;
  border-bottom: 1px dashed #000;
}

.base-btn:hover::before {
  right: 28px;
}

.double-line-btn {
  text-align: center;
  margin-top: 6.1rem;
}

.double-line-btn a {
  color: #000;
  font-size: 14px;
  background-color: #fff;
  padding: 17px 49px;
  border: 1px solid #000;
  box-shadow: 0 0 0 1px #fff, 0 0 0 2px #000, 0 0 0 3px #fff;
  transition: 0.5s;
}

.double-line-btn a:hover {
  color: #fff;
  background-color: #000;
  border: 1px solid #fff;
  box-shadow: 0 0 0 1px #000;
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 4.8rem;
}

.page-list {
  display: flex;
  align-items: end;
  padding: 0;
  margin: 0;
  gap: 8px;
}

.page-item {
  width: 55px;
  height: 56px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #000;
  border-radius: 40px;
  cursor: pointer;
  transition: 0.2s;
}

.page-item.active {
  background: #000;
  color: #fff;
}

.page-numbers {
  width: 55px;
  height: 56px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #000;
  border-radius: 40px;
  cursor: pointer;
  transition: 0.2s;
  font-family: "Hiragino Mincho Pro";
  font-weight: 600;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0;
  text-align: center;
  vertical-align: middle;
}

.page-numbers.active {
  background: #000;
  color: #fff;
}

.coming-soon-img {
  aspect-ratio: 1255/542;
}

.coming-soon-title {
  color: #000;
}

.coming-soon-text {
  font-family: "Hiragino Mincho Pro";
  font-weight: 300;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  margin: 16rem 0 11.6rem;
}

.u-desktop {
  display: none;
}
@media screen and (max-width: 768px) {
  .u-desktop {
    display: block;
  }
}

@media screen and (max-width: 768px) {
  .u-mobile {
    display: none;
  }
}/*# sourceMappingURL=style.css.map */