html,
body {
    overflow-x: hidden;
    font-family:
        "Noto Sans JP",
        sans-serif;
}

.font-en {
    font-family:
        "Futura PT",
        "Futura",
        sans-serif;
}

/* ===================================
Common
=================================== */

.container {
  max-width: 430px;
  margin: 0 auto;
}

.section-heading {
  margin-bottom: 20px;
}

.section-heading__en {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #f70b3f;
  font-size: 1rem;
  letter-spacing: .18em;
}

.section-heading__en::before {
  content: "";
  width: 36px;
  height: 2px;
  background: #f70b3f;
}

.section-heading__jp {
  margin-top: 10px;
  margin-bottom: 0;
  font-size: 2rem;
  font-weight: 650;
  line-height: 1.1;
}

.section-heading__jp span {
  color: #f70b3f;
}

.button-primary {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 100%;
  min-height: 64px;

  background: #f70b3f;

  border-radius: 999px;

  color: #fff;
  text-decoration: none;

  font-size: 1.2rem;
  font-weight: 600;
}

.card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 12px rgba(0,0,0,.08);
}

@media screen and (min-width:768px){

  .container{
    max-width:1200px;
  }

}

/* ===================================
Header
=================================== */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;

    background: #f70b3f;
}

.site-header__inner {

    display: flex;
    align-items: center;
    justify-content: space-between;

    height: 72px;

    padding: 0 20px;
}

.site-header__logo img {
    display: block;
    width: 120px;
    height: auto;
}

/* ---------------------
Menu Button
--------------------- */

.site-header__menu-button {

    position: relative;

    width: 36px;
    height: 36px;

    border: none;
    border-radius: 50%;

    background: #fff;

    cursor: pointer;
}

.site-header__menu-button span,
.site-header__menu-button span::before {

    content: "";

    position: absolute;

    top: 50%;
    left: 50%;

    width: 18px;
    height: 2px;

    background: #f70b3f;

    transform: translate(-50%, -50%);
}

.site-header__menu-button span::before {
    transform:
        translate(-50%, -50%)
        rotate(90deg);
}

.site-header__menu-button.is-open span {
    transform:
        translate(-50%, -50%)
        rotate(45deg);
}

.site-header__menu-button.is-open span::before {
    transform:
        translate(-50%, -50%)
        rotate(90deg);
}

/* ---------------------
Menu
--------------------- */

.global-menu {

    position: fixed;

    inset: 0;

    z-index: 999;

    visibility: hidden;
    opacity: 0;

    background: rgba(0,0,0,.92);

    transition: .3s;
}

.global-menu.is-open {

    visibility: visible;
    opacity: 1;
}

.global-menu__inner {

    display: flex;
    flex-direction: column;
    justify-content: center;

    height: 100%;

    padding: 40px;
}

.global-menu__list {

    list-style: none;

    margin: 0;
    padding: 0;
}

.global-menu__list li {
    margin-bottom: 24px;
}

.global-menu__list a {

    color: #fff;

    text-decoration: none;

    font-size: 2.4rem;
    font-weight: 700;
}

.global-menu__sns {

    display: flex;
    gap: 20px;

    margin-top: 40px;
}

.global-menu__sns a {

    color: #fff;
    text-decoration: none;
}

@media screen and (min-width:768px) {

    .site-header__inner {

        max-width: 1200px;

        margin: 0 auto;

        padding: 0 40px;
    }

    .site-header__logo img {
        width: 160px;
    }

}

/* ===================================
Hero
=================================== */

.hero {
  padding: 16px 14px 32px;
  background-image: url("../images/yudo-back.webp");
}

.hero__slider {
  overflow: hidden;
}

.hero__image {
  display: block;
  width: 100%;
  aspect-ratio: 320 / 400;
  object-fit: cover;
}

.hero__pagination-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 14px;
}

.hero__fraction {
  font-size: 14px;
  font-weight: 500;
  color: #f70b3f;
}

.hero__arrow {
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
}

.hero__arrow svg {
  fill: #f70b3f;
}

.hero__sns {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-top: 28px;
}

.hero__sns-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  transition: .3s;
  background-color: #f70b3f;
  border-radius: 100px;
}

.hero__sns-link img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    display: block;
}

.hero__sns-link:hover {
  opacity: .8;
}

@media (min-width: 768px) {

  .hero {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 40px 60px;
  }

  .hero__image {
    aspect-ratio: 16 / 9;
  }

  .hero__sns {
    gap: 24px;
  }

}

/* ===================================
Company Intro
=================================== */

.company-intro {
  position: relative;
  overflow: hidden;
  min-height: 760px;
  color: #fff;
}

.company-intro__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.company-intro__bg-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.company-intro__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.7);
}

.company-intro__inner {
  position: relative;
  z-index: 2;
  max-width: 430px;
  margin: 0 auto;
  padding: 60px 20px;
}

.company-intro__title {
  margin: 0 0 24px;
  text-align: center;
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: 0.04em;
}

.company-intro__title-white {
  color: #fff;
}

.company-intro__title-red {
  color: #f70b3f;
}

.company-intro__lead {
  font-size: 1rem;
  font-weight: 600;
  line-height: 2;
  letter-spacing: 0.02em;
}

.company-intro__lead p {
  margin: 0;
}

.company-intro__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 36px;
  border: 1px solid rgba(255, 255, 255, 0.85);
  background: #f70b3f;
}

.company-intro__stat {
  min-height: 80px;
  padding: 15px 8px 12px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.85);
  border-bottom: 1px solid rgba(255, 255, 255, 0.85);
}

.company-intro__stat:nth-child(2n) {
  border-right: none;
}

.company-intro__stat:nth-child(n + 3) {
  border-bottom: none;
}

.company-intro__stat-label {
  margin: 0 0 6px;
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1.3;
}

.company-intro__stat-value .font-en{
  margin: 0;
  font-size: 2.8rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.03em;
}

.company-intro__stat-value .support-unit {
  margin-left: 2px;
  font-size: 1.4rem;
  font-weight: 700;
}

/* PC */
@media screen and (min-width: 768px) {
  .company-intro {
    min-height: 760px;
  }

  .company-intro__inner {
    max-width: 1100px;
    padding: 96px 40px 80px;
  }

  .company-intro__title {
    text-align: left;
    font-size: 7.2rem;
  }

  .company-intro__lead {
    max-width: 720px;
    font-size: 2rem;
  }

  .company-intro__stats {
    max-width: 760px;
    margin-top: 48px;
  }

  .company-intro__stat {
    min-height: 120px;
    padding: 22px 16px 18px;
  }

  .company-intro__stat-label {
    font-size: 1.6rem;
  }

  .company-intro__stat-value {
    font-size: 5.6rem;
  }

  .company-intro__stat-value span {
    font-size: 2.8rem;
  }
}

/* ===================================
Company Tabs
=================================== */

.company-tabs {
  padding: 60px 20px;
  background-image: url("../images/yudo-back.webp");
  /* background-repeat: repeat;
  background-size: 320px auto; */
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.company-tabs__inner {
  max-width: 460px;
  margin: 0 auto;
}

.company-tabs__logo {
  margin-bottom: 28px;
  text-align: center;
}

.company-tabs__logo img {
  width: 200px;
  max-width: 100%;
  height: auto;
}

.company-tabs__buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.company-tabs__button {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 2px solid #a9cff6;
  border-radius: 999px;
  background: #fff;
  color: #111;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;

  transition: .3s;
}

.company-tabs__button--active {
  background: #a9cff6;
}

.company-tabs__button:hover {
  opacity: .8;
}

/* PC */

@media screen and (min-width: 768px) {

  .company-tabs {
    padding: 80px 40px;
  }

  .company-tabs__inner {
    max-width: 1200px;
  }

  .company-tabs__logo img {
    width: 320px;
  }

  .company-tabs__buttons {
    max-width: 500px;
    margin: 0 auto;
  }

  .company-tabs__button {
    min-height: 70px;
    font-size: 2.2rem;
  }
}

/* ===================================
News
=================================== */

.news-section {
  position: relative;
  padding: 80px 20px;
  background: white;
}

.news-section::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 80px;

  background: #fff;

  clip-path: ellipse(70% 100% at 50% 100%);
}

.news-section__inner {
  max-width: 420px;
  margin: 0 auto;
}

/* -------------------------
heading
------------------------- */

/* .section-heading {
  margin-bottom: 40px;
}

.section-heading__en {
  display: flex;
  align-items: center;
  gap: 14px;

  color: #f70b3f;
  font-size: 1.8rem;
  letter-spacing: 0.18em;
}

.section-heading__en::before {
  content: "";
  width: 36px;
  height: 2px;
  background: #f70b3f;
}

.section-heading__jp {
  margin-top: 10px;

  font-size: 5rem;
  font-weight: 800;
  line-height: 1.1;
}

.section-heading__jp span {
  color: #f70b3f;
} */

/* -------------------------
card
------------------------- */

.news-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.news-card {
  display: block;

  padding: 18px 18px 16px;

  background: #f5f3f3;

  border-radius: 18px;

  text-decoration: none;
  color: inherit;

  box-shadow: 0 3px 8px rgba(0,0,0,.08);
}

.news-card__meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 6px;
}

.news-card__date {
  color: #a5a5a5;
  font-size: 0.8rem;
  letter-spacing: 0.25em;
}

.news-card__category {
  font-size: 0.8rem;
  font-weight: 600;
}

.news-card__category--youtube {
  color: #ff4d4d;
}

.news-card__category--audition {
  color: #57d34b;
}

.news-card__category--model {
  color: #f6c03f;
}

.news-card__category--movie {
  color: #ff5ebf;
}

.news-card__title {
  font-size: 0.8rem;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 0;
  margin-top: 4px;
}

.news-section__button-wrap {
  margin-top: 48px;
}

.button-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 48px;
  background: #f70b3f;
  border-radius: 999px;
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 700;
}

/* -------------------------
PC
------------------------- */

@media screen and (min-width: 768px) {

  .news-section {
    padding: 120px 40px 140px;
  }

  .news-section__inner {
    max-width: 1100px;
  }

  .news-list {
    max-width: 760px;
  }

  .button-primary {
    width: 420px;
  }

}

/* ===================================
Events
=================================== */

.events-section {
  position: relative;
  padding: 80px 20px;
  background: #f4e8ea;
}

/* .events-section::before {
  content: "";
  position: absolute;
  top: -50px;
  left: 0;
  width: 100%;
  height: 80px;
  background: #f4e8ea;
  border-radius: 0 0 50% 50%;
} */

/* .events-section::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 80px;
  background: #fff;
  border-radius: 50% 50% 0 0;
} */

.events-section__inner {
  position: relative;
  z-index: 2;
  max-width: 420px;
  margin: 0 auto;
}

.events-section .section-heading__jp span {
  color: #f70b3f;
}

.event-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.event-card {
  display: block;
  padding: 20px;
  background: #f7f5f5;
  border-radius: 18px;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 3px 8px rgba(0,0,0,.08);
}

.event-card__schedule {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.event-card__datetime {
  flex: 0 0 72px;
  padding-right: 16px;
  border-right: 1px solid #d8d8d8;
}

.event-card__date {
  color: #333;
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.2;
}

.event-card__time {
  margin-top: 6px;
  color: #f70b3f;
  font-size: 0.85rem;
  font-weight: 600;
  line-height: 1.4;
}

.event-card__content {
  flex: 1;
  min-width: 0;
}

.event-card__category {
  display: inline-block;

  margin-bottom: 6px;

  font-size: 0.8rem;
  font-weight: 600;
}

.event-card__title {
  margin: 0;

  color: #222;

  font-size: 1rem;
  line-height: 1.6;
}

.event-card__category--youtube {
  color: #ff4d4d;
}

.event-card__category--tiktok {
  color: #48b8ff;
}

.event-card__category--talk {
  color: #ff66d9;
}

.events-section__button-wrap {
  margin-top: 48px;
}

@media screen and (min-width: 768px) {

  .events-section {
    padding: 140px 40px;
  }

  .events-section__inner {
    max-width: 1100px;
  }

  .event-list {
    max-width: 760px;
  }

}

/* ===================================
Models
=================================== */

.models-section {
  position: relative;
  padding: 80px 20px;
  background: white;
}

/* .models-section::before {
  content: "";
  position: absolute;
  top: -50px;
  left: 0;
  width: 100%;
  height: 80px;
  background: #f5f5f5;
  border-radius: 0 0 50% 50%;
} */

/* .models-section::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -50px;
  width: 100%;
  height: 80px;
  background: #f5f5f5;
  border-radius: 50% 50% 0 0;
} */

.models-section__inner {
  position: relative;
  z-index: 2;
  max-width: 430px;
  margin: 0 auto;
}

.models-section__lead {
  margin-top: 20px;

  color: #9a9a9a;

  font-size: 1rem;
  line-height: 1.6;
}

/* --------------------
Search
-------------------- */

.model-search {
  margin-top: 36px;
}

.model-search__field {
  position: relative;
}

.model-search__field::before {
  content: "⌕";
  position: absolute;
  top: 50%;
  left: 16px;
  transform: translateY(-60%);
  color: #f70b3f;
  font-size: 2rem;
}

.model-search__input {
  width: 100%;
  height: 48px;
  padding: 0 20px 0 52px;
  border: 2px solid #f6c8d3;
  border-radius: 999px;
  background: #fff;
  font-size: 1rem;
}

.model-search,
.model-search__field,
.model-search__input {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.model-search__input::placeholder {
  color: #c7c7c7;
}

/* --------------------
Filter
-------------------- */

.model-filter {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;

  margin-top: 20px;
}

.model-filter__button {
  height: 34px;

  padding: 0 16px;

  border: none;

  background: #f8d5de;

  color: #fff;

  font-size: 0.8rem;
  font-weight: 600;

  cursor: pointer;
}

.model-filter__button.is-active {
  background: #f70b3f;
}

/* --------------------
Grid
-------------------- */

.model-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 32px;
}

.model-card {
  overflow: hidden;
  background: #fff;
  border-radius: 12px;
  /* box-shadow: 0 3px 10px rgba(0,0,0,.08); */
}

.model-card a {
  display: block;
  color: inherit;
  text-decoration: none;
}

.model-card__image {
  aspect-ratio: 1 / 1.15;
  overflow: hidden;
  border-radius: 12px;
}

.model-card__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.model-card__name {
  font-size: 1.1rem;
  font-weight: 600;
  color: #f70b3f;
  margin-top: 12px;;
  margin-bottom: 0 !important;
}

.model-card__name-en {
  margin-top: 0;
  color: #9c9c9c;
  font-size: 0.7rem;
  font-weight: 400;
}

.model-card__birthday {
  margin-top: 10px;

  font-size: 1.6rem;
  font-weight: 500;
}

/* --------------------
Button
-------------------- */

.models-section__button-wrap {
  margin-top: 42px;
}

/* --------------------
PC
-------------------- */

@media screen and (min-width: 768px) {

  .models-section {
    padding: 140px 40px;
  }

  .models-section__inner {
    max-width: 1200px;
  }

  .model-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }

  .model-search {
    max-width: 520px;
  }

  .models-section__button-wrap {
    max-width: 420px;
  }

}

/* ===================================
Contents
=================================== */

.contents-section {
    position: relative;
    padding: 80px 20px;
    background: #f5f5f5;
}

.contents-section__inner {
    max-width: 430px;
    margin: 0 auto;
}

.contents-slider {
    margin-top: 40px;
    overflow: hidden;
}

.content-card {
    overflow: hidden;

    background: #fff;

    border-radius: 18px;

    box-shadow: 0 4px 14px rgba(0,0,0,.08);
}

.content-card a {
    display: block;
    color: inherit;
    text-decoration: none;
}

.content-card__image img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.content-card__body {
    padding: 24px;
}

.content-card__category{
    margin-bottom:12px;
}

.content-card__category img{
    display:block;
    width:90px;
    height:auto;
}

.content-card__title {
    margin-top: 16px;
    margin-bottom: 0;
    color: #f70b3f;
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.3;
}

.content-card__sub {
    margin-top: 4px;
    color: #f70b3f;
    font-size: 0.9rem;
    font-weight: 600;
}

.content-card__text {
    margin-top: 13px;
    margin-bottom: 0;
    color: #8d8d8d;
    font-size: 1rem;
    line-height: 1.8;
}

.contents-pagination {
    margin-top: 24px;
    text-align: center;
}

.contents-section__button-wrap {
    margin-top: 40px;
}

.content-card__category {
    margin-bottom: 12px;
}

.content-card__category img {
    display: block;
    width: 80px;
    height: auto;
}

/* ---------------------------------
PC
--------------------------------- */

@media screen and (min-width: 768px) {

    .contents-section {
        padding: 140px 40px;
    }

    .contents-section__inner {
        max-width: 1200px;
    }

    .contents-slider .swiper-wrapper {

        display: grid;

        grid-template-columns:
            repeat(4, minmax(0,1fr));

        gap: 24px;

        transform: none !important;
    }

    .content-card {
        width: auto !important;
    }

    .contents-pagination {
        display: none;
    }

}

/* ===================================
Auditions
=================================== */

.auditions-section {
    position: relative;
    padding: 80px 20px;
    background: white;
}

.auditions-section__inner {
    max-width: 430px;
    margin: 0 auto;
}

.auditions-section__lead {
    margin-top: 20px;
    color: #9d9d9d;
    font-size: 1rem;
    line-height: 1.6;
}

.audition-list {
    display: flex;
    flex-direction: column;
    gap: 32px;

    margin-top: 40px;
}

.audition-card {
    overflow: hidden;

    background: #fff;

    border-radius: 20px;

    box-shadow: 0 4px 14px rgba(0,0,0,.08);
}

.audition-card a {
    display: block;
    text-decoration: none;
    color: inherit;
}

.audition-card__image {
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.audition-card__image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.audition-card__body {
    position: relative;
    padding: 12px 24px;
    background: #000;
    color: #fff;
}

.audition-card__title {
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.5;
}

.audition-card__period {
    margin-top: 16px;
    font-size: 1rem;
    font-weight: 500;
}

.audition-card__conditions {
    margin-top: 16px;
    padding-left: 18px;
    font-size: 1rem;
    line-height: 1.8;
}

.audition-card__arrow {
    position: absolute;

    right: 20px;
    bottom: 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 40px;
    height: 40px;

    border: 2px solid #fff;
    border-radius: 50%;

    font-size: 1.6rem;
}

.audition-notice {
    margin-top: 40px;

    padding: 24px;

    background: #fff;

    border-radius: 16px;

    box-shadow: 0 4px 14px rgba(0,0,0,.08);
}

.audition-notice__title {
    margin-bottom: 12px;
    font-size: 1.2rem;
    font-weight: 600;
}

.audition-notice__text {
    color: #777;
    font-size: 1rem;
    line-height: 1.8;
}

/* -----------------------------
PC
----------------------------- */

@media screen and (min-width: 768px) {

    .auditions-section {
        padding: 140px 40px;
    }

    .auditions-section__inner {
        max-width: 1200px;
    }

    .audition-list {

        display: grid;

        grid-template-columns:
            repeat(2, minmax(0,1fr));

        gap: 32px;
    }

    .audition-notice {
        max-width: 760px;
    }

}

/* ======================================
Business
====================================== */

.business-section {
    padding: 80px 20px;
    background: #f5f5f5;
}

.business-section__inner {
    max-width: 430px;
    margin: 0 auto;
}

.business-cards {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 40px;
}

/* =========================
Card
========================= */

.business-card {
    perspective: 1200px;
}

.business-card__inner {
    position: relative;
    min-height: 210px;
    transition: transform .6s;
    transform-style: preserve-3d;
}

.business-card.is-flipped .business-card__inner {
    transform: rotateY(180deg);
}

.business-card__front,
.business-card__back {
    position: absolute;
    inset: 0;

    display: flex;
    flex-direction: column;

    padding: 28px;

    border-radius: 18px;
    background: #fff;

    border: 1px solid #e9e9e9;

    box-shadow: 0 4px 12px rgba(0,0,0,.05);

    backface-visibility: hidden;
}

.business-card__back {
    transform: rotateY(180deg);
}

/* =========================
Text
========================= */

.business-card__title {
    color: #f70b3f;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.4;
}

.business-card__text,
.business-card__detail {
    margin-top: 14px;

    color: #777;

    font-size: 1rem;
    line-height: 1.9;
}

/* =========================
Button
========================= */

.business-card__toggle {

    width: 32px;
    height: 32px;

    margin: auto auto 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border: none;
    border-radius: 50%;

    background: #f6a8b8;

    color: #fff;

    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1;

    cursor: pointer;
}

/* =========================
Bottom Button
========================= */

.business-section__button-wrap {
    margin-top: 40px;
    text-align: center;
}

/* ======================================
PC
====================================== */

@media screen and (min-width: 768px) {

    .business-section {
        padding: 140px 40px;
    }

    .business-section__inner {
        max-width: 1200px;
    }

    .business-cards {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 32px;
        margin-top: 60px;
    }

    .business-card__inner {
        min-height: 260px;
    }

    .business-card__front,
    .business-card__back {
        padding: 36px;
    }

    .business-card__title {
        font-size: 1.75rem;
    }

    .business-card__text,
    .business-card__detail {
        font-size: 1rem;
    }

    .business-card__toggle {
        width: 36px;
        height: 36px;
        font-size: 1.6rem;
    }
}

/* ===================================
CTA
=================================== */

.cta-section {

    position: relative;

    overflow: hidden;

    padding: 80px 20px;

    background: #a8c3ea;
}

.cta-section__inner {

    position: relative;
    z-index: 2;

    max-width: 760px;

    margin: 0 auto;

    text-align: center;
}

.cta-section__bg-text {

    position: absolute;

    inset: 0;

    display: flex;
    flex-direction: column;
    justify-content: center;

    z-index: 1;

    pointer-events: none;
}

.cta-section__bg-text span {

    display: block;

    color: rgba(255,255,255,.08);

    font-size: 10rem;
    font-weight: 900;

    line-height: .9;

    white-space: nowrap;
}

.cta-section__title {
    margin: 0;
    color: #fff;
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.2;
}

.cta-section__lead {
    margin-top: 24px;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.8;
}

.cta-section__button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 520px;
    height: 48px;
    margin: 40px auto 0;
    background: #fff;
    border-radius: 999px;
    color: #6e95c9;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    transition: .3s;
}

.cta-section__button:hover {

    transform: translateY(-2px);

    opacity: .9;
}

/* PC */

@media screen and (min-width: 768px) {

    .cta-section {

        padding: 120px 40px;
    }

    .cta-section__bg-text span {

        font-size: 18rem;
    }

    .cta-section__title {

        font-size: 7rem;
    }

    .cta-section__lead {

        font-size: 2.4rem;
    }

}

/* ===================================
Footer
=================================== */

.site-footer {

    position: relative;

    overflow: hidden;

    background: #f5f5f5;
}

.site-footer__inner {

    position: relative;

    max-width: 430px;

    margin: 0 auto;

    padding: 50px 20px;
}

/* --------------------
SNS
-------------------- */

.site-footer__sns {

    display: flex;

    justify-content: center;

    gap: 18px;

    margin-bottom: 40px;
}

.site-footer__sns a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #f70b3f;
    color: #fff;
    text-decoration: none;
    font-size: 1.2rem;
}

.site-footer__sns a img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    display: block;
}

/* --------------------
Brand
-------------------- */

.site-footer__logo {
    width: 200px;
    display: block;
}

.site-footer__catch {
    margin-top: 24px;
    font-size: 1rem;
    font-weight: 600;
    color: #444;
}

.site-footer__branding {

    margin-bottom: 50px;
}

/* --------------------
Heading
-------------------- */

.site-footer__heading {
    margin-bottom: 20px;
    color: #f70b3f;
    font-size: 1.2rem;
    letter-spacing: .15em;
    font-weight: 400;
}

.site-footer__nav,
.site-footer__info,
.site-footer__address {

    margin-bottom: 50px;
}

.site-footer__nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-footer__nav li {
    list-style: none;
}

.site-footer__menu,
.site-footer__list {

    list-style: none;

    margin: 0;
    padding: 0;
}

.site-footer__menu li,
.site-footer__list li {
    margin-bottom: 8px;
}

.site-footer__menu a,
.site-footer__list a {
    color: #444;
    text-decoration: none;
    font-size: 1rem;
}

.site-footer__address address {
    color: #444;
    font-style: normal;
    font-size: 1rem;
    line-height: 1.8;
}

/* --------------------
Background Text
-------------------- */

/* .site-footer::before {

    content: "温泉文化を、世界へ。";

    position: absolute;

    right: -70px;
    top: 100px;

    color: rgba(0,0,0,.04);

    font-size: 9rem;
    font-weight: 700;

    writing-mode: vertical-rl;

    pointer-events: none;
} */

.site-footer {
  position: relative;
  overflow: hidden;
}

.site-footer__inner,
.site-footer__copyright {
  position: relative;
  z-index: 2;
}

/* .site-footer::before {
  content: "温泉文化を、世界へ。";

  position: absolute;
  z-index: 1;

  right: -28px;
  top: 112px;

  color: rgba(0, 0, 0, .04);

  font-size: 6.4rem;
  font-weight: 700;
  line-height: 1;

  writing-mode: vertical-rl;
  text-orientation: mixed;
  white-space: nowrap;

  pointer-events: none;
} */

.site-footer__body {
    position: relative;
    overflow: hidden;
}

.site-footer__bg-text {
    position: absolute;
    z-index: 0;

    top: 0;
    right: 0;

    white-space: nowrap;

    transform: translateX(100%) rotate(90deg);
    transform-origin: top left;

    color: rgba(0,0,0,.04);

    font-size: 4rem;
    font-weight: 700;
    line-height: 1;

    pointer-events: none;
}

.site-footer__branding,
.site-footer__content {
    position: relative;
    z-index: 1;
}

/* --------------------
Copyright
-------------------- */

.site-footer__copyright {
    border-top: 1px solid #ddd;
    padding: 20px;
    text-align: center;
    color: #999;
    font-size: 0.6rem;
}

/* --------------------
PC
-------------------- */

@media screen and (min-width: 768px) {

    .site-footer__inner {

        max-width: 1200px;

        padding: 80px 40px;
    }

    .site-footer__content {

        display: grid;

        grid-template-columns:
            1.2fr 1fr 1fr;

        gap: 60px;
    }

    .site-footer__branding {

        margin-bottom: 60px;
    }

    .site-footer__logo {

        width: 280px;
    }

    .site-footer::before {

        right: 40px;

        font-size: 14rem;
    }

}