@charset "UTF-8";
/*
 * 機能：clamp関数の文字列を返す
 * 引数：$size-at-min-width サイズ(フォントサイズなど)の最小値(pxやremなどの単位は必須)
 * 　　　$size-at-max-width サイズ(フォントサイズなど)の最大値(pxやremなどの単位は必須)
 * 　　　$min-width [省略可]サイズが最小値に到達する画面幅
 * 　　　$max-width [省略可]サイズが最大値に到達する画面幅
 * 使用方法：
 *　　デフォルトの最小画面幅$min-width-defaultと最大画面幅$max-width-defaultを事前に指定しておく
 *　　最小幅と最大幅をデフォルト以外にしたい場合は、引数にそれぞれ単位付きの画面幅を入れる
 */
/* ブレイクポイント
 =============================================== */
@media screen and (min-width: 960px) {
  .pc {
    display: inherit !important;
  }
}
@media screen and (max-width: 959px) {
  .pc {
    display: none !important;
  }
}
@media screen and (max-width: 480px) {
  .pc {
    display: none !important;
  }
}

@media screen and (min-width: 960px) {
  .tab {
    display: none !important;
  }
}
@media screen and (max-width: 959px) {
  .tab {
    display: inherit !important;
  }
}
@media screen and (max-width: 480px) {
  .tab {
    display: none !important;
  }
}

@media screen and (min-width: 960px) {
  .sp {
    display: none !important;
  }
}
@media screen and (max-width: 959px) {
  .sp {
    display: none !important;
  }
}
@media screen and (max-width: 480px) {
  .sp {
    display: inherit !important;
  }
}

@media screen and (max-width: 480px) {
  .pctab {
    display: none !important;
  }
}

@media screen and (min-width: 960px) {
  .tabsp {
    display: none !important;
  }
}

/* Variables */
:root {
  --theme-color: #CB050C;
  --content-width: 1500px;
  --content-gutter: clamp(32px, 5vw, 80px);
  --content-max-width: calc(100% - var(--content-gutter) * 2);
  --breakpoint: calc(var(--content-width) + var(--content-gutter) * 2 + 1px);
}

a:where(:not(.wp-element-button)) {
  text-decoration: inherit;
}

/* Base */
/* @font-face でローカルフォントを優先 */
@font-face {
  font-family: "Local Noto Sans JP";
  src: local("Noto Sans JP");
}
body {
  font-family: "Local Noto Sans JP", "Noto Sans JP", sans-serif;
  margin: 0;
  overflow-x: hidden;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 0.1em;
  font-style: normal;
  color: #28262F;
}
@media screen and (max-width: 959px) {
  body {
    font-size: 17px;
  }
}
@media screen and (max-width: 480px) {
  body {
    font-size: 16px;
  }
}
body:has([popover]:popover-open) {
  pointer-events: none;
}

/* Hero */
.hero {
  /* ヒーローはデザイン準拠で高さを抑制 */
  min-height: 100vh;
  min-height: 100svh; /* モバイルUI表示時 */
  min-height: 100dvh; /* 動的UIを除外した安定高さ */
  padding: 0 0 160px; /* ヘッダー分の余白 */
  position: relative;
  overflow: hidden;
  /* （任意）動きを控える設定に配慮 */
}
.hero__inner {
  max-width: var(--content-max-width);
  margin-inline: auto;
  position: relative;
}
@media screen and (max-width: 480px) {
  .hero__inner {
    max-width: 100%;
  }
}
.hero__media {
  /* 画像を全面に配置（テキストの背面） */
  --top-margin: 140px;
  padding-top: var(--top-margin);
  position: absolute; /* ← これで最初からフロー外 */
  top: 0;
  right: 0;
  width: 100vw;
  max-width: 100%;
  height: 100dvh;
  z-index: -1;
  pointer-events: none; /* 背景扱い */
  display: flex;
  justify-content: flex-end;
}
@media screen and (max-width: 480px) {
  .hero__media {
    --top-margin: 80px;
  }
}
.hero__media::before {
  position: absolute;
  width: 100%;
  height: calc(100% - var(--top-margin));
  content: "";
  bottom: 0;
  left: 0;
  z-index: -4;
}
.hero__media-motion {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: flex-end;
  pointer-events: none;
}
.hero__abstract {
  position: absolute;
  pointer-events: none;
  z-index: -999;
  --reveal-dur: 1500ms;
  --reveal-ease: cubic-bezier(.1,.29,0,.71);
  will-change: clip-path;
}
.hero__abstract svg {
  width: 100%;
}
.hero__abstract.stroke {
  bottom: -5vh;
  left: calc(var(--content-gutter) * -1 - 16px);
  width: 40vw;
  --reveal-dur: 7000ms;
  animation: reveal-stroke var(--reveal-dur) var(--reveal-ease) both infinite;
  animation-delay: 1.1s; /* ← 0.5秒遅らせる */
}
@media screen and (max-width: 959px) {
  .hero__abstract.stroke {
    width: inherit;
  }
}
.hero__abstract.circle {
  top: -30vw;
  left: -10vw;
  width: 40vw;
  animation: reveal-anticlockwise var(--reveal-dur) var(--reveal-ease) both, spin 120s linear infinite reverse;
  animation-delay: 1.4s; /* ← 0.5秒遅らせる */
}
@media screen and (max-width: 959px) {
  .hero__abstract.circle {
    top: -50vw;
    width: inherit;
  }
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes reveal-ltr {
  from {
    /* 右100%で全隠し： inset(top right bottom left) */
    clip-path: inset(0 100% 0 0);
  }
  to {
    /* 全面表示 */
    clip-path: inset(-20% -20% -20% -20%);
  }
}
@keyframes reveal-stroke {
  0% {
    /* 完全に隠れている（右端からスタート） */
    clip-path: inset(0 100% 0 0);
  }
  10% {
    /* 完全に隠れている（右端からスタート） */
    clip-path: inset(0 100% 0 0);
  }
  30% {
    /* 全面表示 */
    clip-path: inset(0 0 0 0);
  }
  70% {
    /* まだ全面表示のまま少しキープ */
    clip-path: inset(0 0 0 0);
  }
  90% {
    /* 左から右にまた隠れていく（左100%で全部消える） */
    clip-path: inset(0 0 0 100%);
  }
  100% {
    /* 左から右にまた隠れていく（左100%で全部消える） */
    clip-path: inset(0 0 0 100%);
  }
}
@keyframes reveal-anticlockwise {
  0% {
    clip-path: polygon(50% 50%, 50% 0%, 50% 0%, 50% 0%, 50% 0%, 50% 0%, 50% 0%, 50% 0%, 50% 0%);
  }
  12.5% {
    clip-path: polygon(50% 50%, 50% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 50% 0%);
  }
  25% {
    clip-path: polygon(50% 50%, 50% 0%, 0% 0%, 0% 50%, 0% 50%, 0% 50%, 0% 50%, 0% 50%, 50% 0%);
  }
  37.5% {
    clip-path: polygon(50% 50%, 50% 0%, 0% 0%, 0% 100%, 0% 100%, 0% 100%, 0% 100%, 0% 100%, 50% 0%);
  }
  50% {
    clip-path: polygon(50% 50%, 50% 0%, 0% 0%, 0% 100%, 50% 100%, 50% 100%, 50% 100%, 50% 100%, 50% 0%);
  }
  62.5% {
    clip-path: polygon(50% 50%, 50% 0%, 0% 0%, 0% 100%, 100% 100%, 100% 100%, 100% 100%, 100% 100%, 50% 0%);
  }
  75% {
    clip-path: polygon(50% 50%, 50% 0%, 0% 0%, 0% 100%, 100% 100%, 100% 50%, 100% 50%, 100% 50%, 50% 0%);
  }
  87.5% {
    clip-path: polygon(50% 50%, 50% 0%, 0% 0%, 0% 100%, 100% 100%, 100% 0%, 100% 0%, 100% 0%, 50% 0%);
  }
  100% {
    clip-path: polygon(50% 50%, 50% 0%, 0% 0%, 0% 100%, 100% 100%, 100% 0%, 50% 0%, 50% 0%, 50% 0%);
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero .reveal-clip {
    animation: none;
    clip-path: inset(0);
  }
}
.hero__slider {
  width: 70%;
  height: 100%;
  pointer-events: auto;
  background-color: #FFFFFF;
  --reveal-dur: 2000ms;
  --reveal-ease: cubic-bezier(0.11, 0.48, 0.14, 0.72);
  will-change: clip-path;
  animation: reveal-ltr var(--reveal-dur) var(--reveal-ease) both;
  animation-delay: 0.5s;
}
@media screen and (max-width: 959px) {
  .hero__slider {
    width: 80%;
    height: 70%;
  }
}
.hero__slider .splide__track,
.hero__slider .splide__list,
.hero__slider .splide__slide {
  height: 100%;
}
.hero__slide {
  height: 100%;
  overflow: hidden;
}
.hero__image {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
.hero__slide.is-active .hero__image {
  animation: scale 6s linear 0s normal both;
}
@keyframes scale {
  0% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
.hero__leadcontainer {
  left: 0;
  bottom: 30vh;
  position: absolute;
  transform: rotate(357deg);
}
@media screen and (max-width: 480px) {
  .hero__leadcontainer {
    bottom: 140px;
    left: var(--content-gutter);
    transform: rotate(359deg);
  }
}
.hero__lead {
  font-size: clamp(32px, 22.355px + 2.243vw, 56px);
  text-shadow: 4px 4px 0px #FFFFFF;
  line-height: 1.4;
}
@media screen and (max-width: 480px) {
  .hero__lead {
    text-shadow: 2.5px 2.5px 0px #FFFFFF;
  }
}
@media screen and (min-width: 2000px) {
  .hero__lead {
    font-size: 4rem;
  }
}
.hero__title {
  margin: 0;
  font-size: clamp(30px, 13.121px + 3.925vw, 72px);
  line-height: 1.4;
  text-shadow: 3px 3px 0px #f2f2f2;
}
@media screen and (max-width: 480px) {
  .hero__title {
    text-shadow: 2.5px 2.5px 0px #f2f2f2;
  }
}
@media screen and (min-width: 2000px) {
  .hero__title {
    font-size: 5rem;
  }
}
.hero__catchcopy { /* 互換のため残置 */
  position: relative;
  height: 100vh;
  z-index: 2;
}
.hero__body {
  display: grid;
  gap: 160px;
  position: relative;
  z-index: 2; /* テキストを上に重ねる */
  margin-top: 240px;
}
@media screen and (max-width: 959px) {
  .hero__body {
    gap: 120px;
  }
}
@media screen and (max-width: 480px) {
  .hero__body {
    gap: 80px;
    max-width: var(--content-max-width);
    margin-inline: auto;
    margin-top: 120px;
  }
}
.hero__bodytext {
  font-size: clamp(18px, 13.981px + 0.935vw, 28px);
  display: grid;
  gap: 80px;
}
@media screen and (min-width: 2000px) {
  .hero__bodytext {
    font-size: 2rem;
  }
}
.hero__paragraph {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 100%;
}
.hero .fademask {
  --hero-mask-progress: 0%;
  mask-image: linear-gradient(120deg, rgb(0, 0, 0) calc(var(--hero-mask-progress) - 50%), rgba(0, 0, 0, 0) var(--hero-mask-progress));
  -webkit-mask-image: linear-gradient(120deg, rgb(0, 0, 0) calc(var(--hero-mask-progress) - 50%), rgba(0, 0, 0, 0) var(--hero-mask-progress));
  mask-size: 100% 100%;
  -webkit-mask-size: 100% 100%;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  mask-position: 0% center;
  -webkit-mask-position: 0% center;
  text-shadow: 1px 1px 0px #eeeeee;
}
.hero__block {
  grid-column: 1/-1;
  z-index: 1;
}
@media (max-width: 1024px) {
  .hero__inner {
    grid-template-columns: 1fr;
  }
  .hero__media {
    grid-column: 1/-1;
    grid-row: 1;
  }
}

/* ScrollTriggerのpin-spacerはデフォルトのまま使用する */
.what-we-do {
  padding: 120px 0;
}
.what-we-do__title {
  width: var(--content-width);
  max-width: var(--content-max-width);
  margin: 0 auto 80px;
}
.what-we-do__inner {
  width: var(--content-width);
  max-width: var(--content-max-width);
  margin-inline: auto;
}
.what-we-do__layout {
  display: grid;
  grid-template-columns: 1fr clamp(320px, 35vw, 520px);
  gap: 48px;
  align-items: start;
}
@media screen and (max-width: 959px) {
  .what-we-do__layout {
    grid-template-columns: 1fr;
  }
}
.what-we-do__left {
  display: grid;
  gap: 40px;
}
.what-we-do__right {
  align-self: start;
  position: sticky;
  top: 100px;
}
.what-we-do__media {
  position: sticky;
  top: 100px; /* 固定開始位置（ヘッダー考慮） */
  width: 100%;
  height: 640px;
  border-radius: 16px;
  overflow: hidden;
  background: #eee;
}
@media screen and (max-width: 959px) {
  .what-we-do__media {
    display: none;
  }
}
.what-we-do__media img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

/* Section Title */
.section-title__main {
  font-family: "Bebas Neue", "Local Noto Sans JP", "Noto Sans JP", sans-serif;
  font-size: 96px;
  font-size: clamp(64px, 46.13px + 4.156vw, 96px);
  margin: 0;
  line-height: 1.4;
  letter-spacing: 0;
  font-weight: 400;
}
.section-title__main.split > * {
  line-height: 1;
}
.section-title__sub {
  font-size: 16px;
  font-weight: 600;
  margin: 0;
}
.section-title__sub.split > * {
  line-height: 1;
}
.section-title--light .section-title__main,
.section-title--light .section-title__sub {
  color: #fff;
}
.section-title--left {
  text-align: left;
}

/* Teams */
.teams {
  padding: 120px 0;
  /* マスク対応ブラウザでのみ表示 */
  /* Banner */
}
.teams__inner {
  width: var(--content-width);
  max-width: var(--content-max-width);
  margin-inline: auto;
  display: grid;
  gap: 80px;
  justify-items: center;
  scroll-margin-top: 80px;
}
.teams__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 160px;
  align-items: start;
}
@media screen and (max-width: 959px) {
  .teams__layout {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 480px) {
  .teams__layout {
    gap: 80px;
  }
}
.teams__left {
  position: sticky;
  top: 100px;
  display: grid;
  gap: 80px;
  /* 円の基準（::before とマスクで共有） */
  --c-left: -25vw;
  --c-top: -24vw;
  --c-width: clamp(400px,55vw,1200px);
  --c-radius: calc(var(--c-width) / 2);
  --cx: calc(var(--c-left) + var(--c-radius));
  --cy: calc(var(--c-top) + var(--c-radius));
}
@media screen and (max-width: 959px) {
  .teams__left {
    position: relative;
    top: 0;
    z-index: 1;
  }
}
@media screen and (max-width: 480px) {
  .teams__left {
    gap: 40px;
    --c-left: -60%;
    --c-top: -50%;
    --c-width: 480px ;
  }
}
.teams__left::before {
  content: "";
  position: absolute;
  top: var(--c-top);
  left: var(--c-left);
  width: var(--c-width);
  aspect-ratio: 1;
  background-color: var(--theme-color);
  border-radius: 50%;
  opacity: var(--teams-circle-opacity, 1);
  transform: scale(var(--teams-circle-scale, 1));
  transform-origin: center;
  transition: var(--teams-circle-transition, transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.3s ease-out);
  will-change: transform, opacity;
  z-index: -1;
  pointer-events: none;
}
.teams__left-copy {
  position: absolute;
  inset: 0;
  display: none; /* マスク非対応環境では無効化 */
  gap: 80px;
  color: #fff;
  pointer-events: none;
  /* マスク: 円内のみ表示 */
  -webkit-mask-image: radial-gradient(circle var(--c-radius) at var(--cx) var(--cy), #000 100%, transparent 100%);
  mask-image: radial-gradient(circle var(--c-radius) at var(--cx) var(--cy), #000 100%, transparent 100%);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}
@media screen and (max-width: 480px) {
  .teams__left-copy {
    gap: 40px;
  }
}
@supports ((-webkit-mask-image: radial-gradient(circle 10px at 10px 10px, #000 100%, transparent 100%)) or (mask-image: radial-gradient(circle 10px at 10px 10px, #000 100%, transparent 100%))) {
  .teams .teams__left-copy {
    display: grid;
  }
}
.teams__lead {
  font-size: clamp(16px, 13.766px + 0.519vw, 20px);
}
.teams__more {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
}
.teams__more-arrow {
  width: 40px;
  aspect-ratio: 1;
  background-color: var(--theme-color);
  border-radius: 50%;
  position: relative;
}
.teams__more-arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  transform: translate(-70%, -50%) rotate(45deg);
}
.teams__right {
  display: grid;
  gap: 56px;
  z-index: 2;
}
.teams__banner {
  overflow: hidden;
  width: 100%;
  height: 800px;
  margin-bottom: 200px;
}
@media screen and (max-width: 959px) {
  .teams__banner {
    height: 600px;
    margin-bottom: 160px;
  }
}
@media screen and (max-width: 480px) {
  .teams__banner {
    height: 460px;
    margin-bottom: 80px;
  }
}
.teams__banner img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (prefers-reduced-motion: reduce) {
  .teams__left::before {
    transition: none;
    transform: scale(1);
    opacity: 1;
  }
}

/* Commitment */
.commitment {
  position: relative;
  overflow: hidden;
}
.commitment__wrap {
  position: relative;
  height: 100dvh;
}
.commitment__halo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: auto;
  width: 600px;
  aspect-ratio: 1;
  border-radius: 50%;
  filter: blur(8px);
  opacity: 0.55;
  border: 1px solid var(--theme-color);
  pointer-events: none;
  z-index: 0;
}
@media screen and (max-width: 480px) {
  .commitment__halo {
    width: 480px;
  }
}
.commitment__texts {
  z-index: 1;
  height: 100dvh;
}
.commitment__text {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  transform: translate(-50%, -50%);
  text-align: center;
  padding: 0 24px;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 2;
  color: #28262F;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.6);
}
@media screen and (max-width: 959px) {
  .commitment__text {
    font-size: 1.2em;
  }
}
@media (prefers-reduced-motion: reduce) {
  .commitment__text {
    opacity: 1 !important;
  }
}

/* Team Card */
.team-card {
  position: relative;
  background-color: #fff;
  border: 1px solid #E9E9EE;
  border-radius: clamp(8px, 3.532px + 1.039vw, 16px);
  overflow: hidden;
  padding: clamp(16px, 2.597px + 3.117vw, 40px);
  padding: clamp(16px, 2cqi, 40px);
  gap: clamp(16px, 2.597px + 3.117vw, 40px);
  display: grid;
  container-type: inline-size;
  transition: background-color 0.3s;
}
.team-card:hover {
  background-color: var(--theme-color);
}
.team-card:hover .team-card__category {
  color: #FFFFFF;
}
.team-card:hover .team-card__title {
  color: #FFFFFF;
}
.team-card:hover .team-card__desc {
  color: #FFFFFF;
}
.team-card:hover .team-card__arrow {
  background-color: #FFFFFF;
}
.team-card:hover .team-card__arrow::after {
  border-top: 3px solid var(--theme-color);
  border-right: 3px solid var(--theme-color);
}
.team-card__media {
  width: 100%;
  aspect-ratio: 3/2;
  overflow: hidden;
  border-radius: clamp(8px, 3.532px + 1.039vw, 16px);
}
.team-card__media img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.team-card__content {
  display: grid;
  gap: clamp(8px, 3.532px + 1.039vw, 16px);
}
.team-card__content-sub {
  display: grid;
  grid-template-columns: 1fr max-content;
  align-items: flex-end;
  gap: 2cqi;
}
.team-card__category {
  display: inline-block;
  font-size: clamp(10px, 4cqi, 16px);
  color: var(--theme-color);
  transition: color 0.3s;
}
.team-card__title {
  font-size: clamp(18px, 6cqi, 28px);
  line-height: 1.4;
  transition: color 0.3s;
}
.team-card__desc {
  color: #666;
  font-size: clamp(14px, 5cqi, 18px);
  transition: color 0.3s;
}
.team-card__arrow {
  width: 36px;
  aspect-ratio: 1;
  background-color: var(--theme-color);
  border-radius: 50%;
  position: relative;
  display: inline-block;
  transition: background-color 0.3s;
}
.team-card__arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  transform: translate(-70%, -50%) rotate(45deg);
  transition: border-top 0.3s, border-right 0.3s;
}

/* Information */
.home .information {
  padding: 120px 0;
  background-color: #f8f8f8;
}
.information__inner {
  width: var(--content-width);
  max-width: var(--content-max-width);
  margin-inline: auto;
}
.information .section-title {
  margin-bottom: clamp(40px, 5vw, 80px);
}
.information__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.information__item {
  display: flex;
  align-items: baseline;
  padding: 20px 0;
  border-bottom: 1px solid #eee;
}
@media screen and (max-width: 480px) {
  .information__item {
    flex-direction: column;
  }
}
.information__date {
  flex-shrink: 0;
  width: 120px;
  font-size: 16px;
  font-weight: 600;
  margin-right: 40px;
}
@media screen and (max-width: 480px) {
  .information__date {
    color: #797979;
  }
}
.information__text {
  flex-grow: 1;
  font-size: 16px;
  line-height: 1.6;
}

/* Join Us */
.join-us {
  padding: 200px 0 320px;
  color: #fff;
  position: relative;
  overflow: hidden;
  clip-path: inset(0);
}
@media screen and (max-width: 959px) {
  .join-us {
    padding: 200px 0 320px;
  }
}
@media screen and (max-width: 480px) {
  .join-us {
    padding: 200px 0 240px;
  }
}
.join-us::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 0;
}
.join-us::after {
  content: "";
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  background-image: url("/wp-content/plugins/my-snow-monkey/assets/images/general/1752208584243_edited.webp");
  background-size: cover;
  z-index: -1;
}
.join-us__inner {
  --joinus-gutter: 120px;
  max-width: calc(100% - var(--joinus-gutter) * 2);
  width: var(--content-width);
  margin-inline: auto;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 959px) {
  .join-us__inner {
    --joinus-gutter: 64px;
  }
}
@media screen and (max-width: 480px) {
  .join-us__inner {
    --joinus-gutter: 32px;
  }
}
.join-us__cards {
  display: grid;
  grid-template-columns: 3fr 2fr;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
@media screen and (max-width: 959px) {
  .join-us__cards {
    grid-template-columns: 1fr;
  }
}
.join-us__content {
  margin-bottom: 180px;
}
@media screen and (max-width: 959px) {
  .join-us__content {
    margin-bottom: 144px;
  }
}
@media screen and (max-width: 480px) {
  .join-us__content {
    margin-bottom: 80px;
  }
}
.join-us__title {
  font-family: "Bebas Neue", "Local Noto Sans JP", "Noto Sans JP", sans-serif;
  font-size: clamp(72px, 39.658px + 7.521vw, 160px);
  margin: 0;
  line-height: 1;
  letter-spacing: 0;
  font-weight: 400;
  margin-bottom: 120px;
  max-width: 17ch;
}
@media (width < 1024px) {
  .join-us__title {
    max-width: 16ch;
  }
}
@media screen and (width < 540px) {
  .join-us__title {
    max-width: 10ch;
  }
}
@media screen and (max-width: 959px) {
  .join-us__title {
    margin-bottom: 100px;
  }
}
@media screen and (max-width: 480px) {
  .join-us__title {
    margin-bottom: 64px;
  }
}
.join-us__title .next {
  display: inline;
  margin: 0;
  line-height: 1;
  letter-spacing: 0;
}
@media (width > 1024px) {
  .join-us__title .next {
    display: inline-block;
    margin-left: 1em;
  }
}
.join-us__text {
  font-size: clamp(18px, 14.649px + 0.779vw, 24px);
  font-weight: 600;
  margin-bottom: 0;
}
.join-us__text-button-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

/* Logo Card */
.logo-card {
  background-color: #fff;
  border-radius: 16px;
  padding: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  width: 400px;
  height: 200px;
  flex-shrink: 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.logo-card:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}
.logo-card img {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  transition: transform 0.3s ease;
}

/* WHAT WE DO: カード */
.wwd-card {
  position: relative;
  background: #fff;
  border: 3px solid #E9E9EE;
  border-radius: 16px;
  padding: 120px 64px;
  overflow: hidden;
  transition: border 0.3s;
}
.wwd-card.active {
  border: 3px solid color-mix(in srgb, var(--theme-color) 60%, white);
}
.wwd-card__title {
  margin: 0 0 16px;
  font-size: 28px;
  font-size: clamp(22px, 18.649px + 0.779vw, 28px);
  color: var(--theme-color);
}
.wwd-card__body p {
  margin: 0;
}
.wwd-card__index {
  position: absolute;
  right: 8px;
  bottom: -0.2em;
  font-family: "Bebas Neue", "Local Noto Sans JP", "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: clamp(72px, 40px + 6vw, 120px);
  line-height: 1;
  letter-spacing: 0;
  color: var(--theme-color);
  opacity: 0.1;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
@media (max-width: 768px) {
  .wwd-card {
    padding: 44px 32px;
  }
}

/* Contact Section */
.contact-section {
  padding: 200px 0 400px;
  background-image: url("image/1752208581466_erasedlogo.webp");
  background-size: cover;
  background-position: center;
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.contact-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 0;
}
.contact-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background-size: cover;
  background-position: center bottom;
  background-color: var(--theme-color);
  border-radius: 100px 100px 0 0;
  z-index: 2;
}
.contact-section__inner {
  width: var(--content-width);
  max-width: var(--content-max-width);
  margin-inline: auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}
.contact-section .section-title {
  margin-bottom: 140px;
}
.contact-section__cards {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

/* Button */
.c-button {
  display: flex;
  align-items: center;
  gap: 24px;
  text-decoration: none;
  font-weight: 600;
  font-size: 20px;
  color: #28262F;
  transition: color 0.3s ease-in-out;
}
.c-button:hover {
  color: var(--theme-color);
}
.c-button__arrow {
  width: 80px;
  aspect-ratio: 1;
  background-color: var(--theme-color);
  border-radius: 50%;
  position: relative;
  transition: transform 0.3s ease-in-out;
}
.c-button__arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 16px;
  border-top: 5px solid #fff;
  border-right: 5px solid #fff;
  transform: translate(-70%, -50%) rotate(45deg);
}
.c-button:hover .c-button__arrow {
  transform: scale(1.1);
}
.c-button--dark {
  color: #fff;
}
.c-button--dark:hover {
  color: #fff;
}
.c-button--dark .c-button__arrow {
  background-color: #fff;
}
.c-button--dark .c-button__arrow::after {
  border-top: 5px solid var(--theme-color);
  border-right: 5px solid var(--theme-color);
}
.c-button--light {
  color: #28262F;
}
.c-button--light:hover {
  color: var(--theme-color);
}
.c-button--light .c-button__arrow {
  background-color: var(--theme-color);
}
.c-button--light .c-button__arrow::after {
  border-top: 5px solid #fff;
  border-right: 5px solid #fff;
}

/* Header */
.custom-logo-link {
  display: block;
  width: 300px;
}
@media screen and (max-width: 480px) {
  .custom-logo-link {
    width: 240px;
  }
}

.c-navbar .menu-item a {
  text-decoration: none;
  font-family: "Bebas Neue", "Local Noto Sans JP", "Noto Sans JP", sans-serif;
  font-size: 1.3rem;
  line-height: 1.2;
  letter-spacing: 0.03em;
  font-style: normal;
  color: #28262F;
  display: inline-block;
}
.c-navbar .menu-item a:hover {
  color: var(--theme-color);
}
.c-navbar .menu-item a:last-of-type {
  background-color: red;
}
.c-navbar .menu-item a.--button {
  background: linear-gradient(to bottom, color-mix(in srgb, var(--theme-color) 100%, white), color-mix(in srgb, var(--theme-color) 90%, white));
  color: #FFFFFF;
  padding: 0.5em 2em;
  border-radius: 999px;
  font-size: 1.3rem;
  transform: scale(1);
  transition: transform 0.3s;
}
.c-navbar .menu-item a.--button:hover {
  transform: scale(1.1);
}

.l-header {
  overflow: visible;
}

.l-1row-header {
  padding: 32px 50px 20px;
}
@media screen and (max-width: 1180px) {
  .l-1row-header {
    padding: 16px 20px;
  }
}
.l-1row-header .c-fluid-container {
  padding-inline: 0;
}
.l-1row-header .c-row {
  --_gap: 0;
}

.l-header--sticky-lg {
  position: fixed;
  top: 0;
  box-shadow: none;
  width: 100%;
  background-color: transparent;
}

.l-header__content {
  padding-block: 0;
}

.c-copyright--inverse {
  background-color: var(--theme-color);
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: transparent;
}
.header__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.header__nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
}
.header__nav-item {
  margin-left: 30px;
  display: flex;
  align-items: center;
}
.header__nav-link {
  text-decoration: none;
  font-family: "Bebas Neue", "Local Noto Sans JP", "Noto Sans JP", sans-serif;
  font-size: 1.5rem;
  line-height: 1.2;
  letter-spacing: 0.03em;
  font-style: normal;
  color: #28262F;
  display: inline-block;
}
.header__nav-link:hover {
  color: var(--theme-color);
}
.header__nav-link.--button {
  background: linear-gradient(to bottom, color-mix(in srgb, var(--theme-color) 100%, white), color-mix(in srgb, var(--theme-color) 90%, white));
  color: #FFFFFF;
  padding: 0.5em 2em;
  border-radius: 999px;
  font-size: 1.3rem;
  transform: scale(1);
  transition: transform 0.3s;
}
.header__nav-link.--button:hover {
  transform: scale(1.1);
}
.header__toggle {
  display: none;
  width: 56px;
  aspect-ratio: 1;
  border-radius: 50%;
  background-color: var(--theme-color);
  cursor: pointer;
  transition: border-color 0.3s ease, background-color 0.3s ease;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  position: relative;
  z-index: 999;
  box-shadow: 0px 3px 20px 0px rgba(0, 0, 0, 0.15);
  border: none;
}
.header__toggle-bar {
  display: block;
  width: 24px;
  height: 2px;
  background-color: #FFFFFF;
  border-radius: 999px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}
.header__toggle--active .header__toggle-bar:nth-of-type(1) {
  transform: translateY(8px) rotate(45deg);
}
.header__toggle--active .header__toggle-bar:nth-of-type(2) {
  opacity: 0;
}
.header__toggle--active .header__toggle-bar:nth-of-type(3) {
  transform: translateY(-8px) rotate(-45deg);
}
.header__overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  z-index: -1;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.header--white .header__logo-svg {
  color: white;
  transition: color 0.2s linear;
}
.header--white .header__nav-link {
  color: #FFFFFF;
  transition: color 0.2s linear;
}
.header--open .header__nav {
  opacity: 1;
  transform: scaleY(1);
  pointer-events: auto;
}
.header--open .header__overlay {
  z-index: 900;
  opacity: 1;
  pointer-events: auto;
}
@media screen and (max-width: 1180px) {
  .header__toggle {
    display: inline-flex;
    z-index: 910;
  }
  .header__nav {
    position: absolute;
    top: calc(100% + 12px);
    right: 20px;
    width: min(340px, 100vw - 40px);
    background-color: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(40, 38, 47, 0.12);
    border-radius: 16px;
    padding: 32px 24px;
    display: block;
    box-shadow: 0 16px 40px rgba(8, 43, 78, 0.1);
    transform-origin: top right;
    transform: scaleY(0.8);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.4s ease, opacity 0.4s ease;
    -webkit-backdrop-filter: blur(12px);
            backdrop-filter: blur(12px);
    z-index: 920;
  }
  .header__nav-list {
    display: grid;
    gap: 20px;
    justify-items: center;
  }
  .header__nav-item {
    margin: 0;
  }
  .header__nav-link {
    color: #28262F;
    font-size: clamp(20px, 12px + 1.667vw, 28px);
  }
}
@media (prefers-reduced-motion: reduce) {
  .header__toggle-bar, .header__nav, .header__overlay {
    transition: none !important;
  }
}

.cta {
  position: fixed;
  bottom: 40px;
  right: 40px;
  z-index: 9999;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
@media screen and (max-width: 480px) {
  .cta {
    bottom: 24px;
    right: 24px;
  }
}
.cta--hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(24px);
}
.cta .cta-button {
  background-color: var(--theme-color);
  color: #FFFFFF;
  width: 220px;
  aspect-ratio: 1;
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-align: center;
  position: relative;
  container-type: inline-size;
  box-shadow: 0px 3px 20px 0px rgba(0, 0, 0, 0.15);
  transform: scale(1);
  transform-origin: 100% 100%;
  transition: transform 0.3s;
}
@media screen and (max-width: 480px) {
  .cta .cta-button {
    width: 144px;
  }
}
.cta .cta-button:hover {
  transform: scale(1.05);
}
.cta .cta-button__club {
  font-size: 6cqi;
}
.cta .cta-button__maintext {
  font-size: 11cqi;
  line-height: 1.4;
}
.cta .cta-button__subtext {
  font-size: 7cqi;
}
.cta .cta-button__arrow {
  position: absolute;
  bottom: 0;
  right: 0;
  background-color: color-mix(in srgb, var(--theme-color) 60%, white);
  width: 30cqi;
  aspect-ratio: 1;
  border-radius: 50%;
  display: grid;
  place-items: center;
}
.cta .cta-button__arrow img {
  width: 6cqi;
}

@media (prefers-reduced-motion: reduce) {
  .cta {
    transition: none !important;
  }
}

/* Contact Card */
.contact-card {
  background-color: #fff;
  border-radius: 24px;
  padding: 40px;
  min-height: 280px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 32px;
  text-align: left;
  color: #28262F;
  text-decoration: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}
.contact-card:last-child:nth-child(odd) {
  grid-column: 1/-1; /* 全幅 */
}
.contact-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  background-color: var(--theme-color);
  color: #fff;
}
.contact-card:hover .contact-card__title,
.contact-card:hover .contact-card__subtitle,
.contact-card:hover .contact-card__text {
  color: #fff;
}
.contact-card:hover .contact-card__arrow {
  background-color: #fff;
}
.contact-card:hover .contact-card__arrow::after {
  border-top: 3px solid var(--theme-color);
  border-right: 3px solid var(--theme-color);
}
.contact-card__content {
  display: flex;
  flex-direction: column;
  gap: 32px;
  min-height: 100%;
  justify-content: space-between;
}
.contact-card__title {
  font-family: "Bebas Neue", "Local Noto Sans JP", "Noto Sans JP", sans-serif;
  font-size: clamp(54px, 49.532px + 1.039vw, 62px);
  margin: 0;
  line-height: 1.2;
  letter-spacing: 0.02em;
  font-weight: 400;
}
.contact-card__subtitle {
  font-size: 16px;
  font-weight: 600;
  margin: 0;
  color: var(--theme-color);
}
.contact-card__text {
  font-size: clamp(14px, 12.883px + 0.26vw, 16px);
  line-height: 1.6;
  margin: 0;
  font-weight: 600;
  flex: 1;
}
.contact-card__footer {
  display: flex;
  align-items: flex-start;
  gap: 24px;
}
.contact-card__arrow {
  width: 48px;
  height: 48px;
  background-color: var(--theme-color);
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
  align-self: center;
}
.contact-card__arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  transform: translate(-70%, -50%) rotate(45deg);
}

/* Footer */
.l-footer {
  background-color: var(--theme-color);
  color: #fff;
  padding: 120px 0 0;
  position: relative;
  overflow: visible;
}
.l-footer::before {
  content: "";
  position: absolute;
  width: 100%;
  --b-round-height: 100px;
  height: var(--b-round-height);
  top: calc(var(--b-round-height) * -1);
  left: 0;
  background-size: cover;
  background-position: center bottom;
  background-color: var(--theme-color);
  border-radius: 100px 100px 0 0;
  z-index: 2;
}
@media screen and (max-width: 959px) {
  .l-footer::before {
    --b-round-height: 64px;
  }
}
@media screen and (max-width: 480px) {
  .l-footer::before {
    --b-round-height: 40px;
  }
}
@media screen and (max-width: 480px) {
  .l-footer {
    padding: 80px 0 40px;
  }
}

.footer__inner {
  width: var(--content-width);
  max-width: var(--content-max-width);
  margin-inline: auto;
}
.footer__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 320px;
  gap: 4em;
}
@media screen and (max-width: 959px) {
  .footer__top {
    flex-direction: column;
    margin-bottom: 240px;
  }
}
@media screen and (max-width: 480px) {
  .footer__top {
    flex-direction: column;
    margin-bottom: 120px;
  }
}
.footer__left {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer__logo img {
  height: 80px;
}
.footer__company-name {
  font-size: clamp(16px, 12.649px + 0.779vw, 22px);
}
.footer__address {
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}
.footer__social {
  display: flex;
  gap: 20px;
}
.footer__social-link img {
  width: 32px;
  height: 32px;
  filter: brightness(0) invert(1);
}
.footer__right {
  display: flex;
  flex-direction: column;
  text-align: left;
  gap: 24px;
}
@media screen and (max-width: 480px) {
  .footer__right {
    width: 100%;
  }
}
.footer__catchphrase {
  font-weight: 600;
  font-size: clamp(28px, 21.299px + 1.558vw, 40px);
  max-width: 30ch;
}
.footer__bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 80px;
}
.footer__nav {
  margin-bottom: 24px;
}
.footer__nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 40px;
}
.footer__nav-link {
  font-family: "Bebas Neue", "Local Noto Sans JP", "Noto Sans JP", sans-serif;
  text-decoration: none;
  color: #fff;
  font-size: clamp(20px, 17.766px + 0.519vw, 24px);
  line-height: 1.2;
  letter-spacing: 0.03em;
  transition: opacity 0.3s ease;
}
.footer__nav-link:hover {
  opacity: 0.7;
}
.footer__links-list {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.footer__link {
  font-family: "Bebas Neue", "Local Noto Sans JP", "Noto Sans JP", sans-serif;
  text-decoration: none;
  color: #fff;
  line-height: 1.2;
  letter-spacing: 0.03em;
  transition: opacity 0.3s ease;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  gap: 8px;
}
.footer__link:hover {
  opacity: 0.7;
}
.footer__link img {
  width: 18px;
  display: block;
}
.footer__copyright {
  font-size: 14px;
  margin: 0;
}
@media screen and (max-width: 480px) {
  .footer__copyright {
    font-size: 10px;
  }
}

.l-footer--default .c-copyright {
  font-size: 0.7em;
  padding-top: 2rem;
}

/* Popover */
[popover] {
  position: fixed;
  inset: 0;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  margin: auto;
  border: none;
  background: white;
  border-radius: 1em;
  box-shadow: 0 0 1em rgba(0, 0, 0, 0.2);
  max-width: 80vw;
  overflow: visible;
  min-width: 500px;
  z-index: 999;
  transition: opacity 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
[popover]:popover-open {
  pointer-events: auto;
}

@starting-style {
  [popover]:popover-open {
    opacity: 0;
    transform: scale(0.8);
  }
}
.no-native-popover [popover] {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: scale(0.94);
}

.no-native-popover [popover].is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: scale(1);
}

.popover-fallback {
  position: fixed;
  inset: 0;
  z-index: 998;
  background: rgba(0, 0, 0, 0.4);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.popover-fallback--visible {
  opacity: 1;
  pointer-events: auto;
}

html.is-popover-locked,
html.is-popover-locked body {
  overflow: hidden;
}

.popover-content-wrapper {
  overflow: auto;
  padding: 3rem 4rem;
  position: relative;
  min-height: 400px;
  max-height: 90svh;
  display: grid;
  align-items: center;
}
@media screen and (max-width: 480px) {
  .popover-content-wrapper {
    padding: 2rem;
  }
}
.popover-content-wrapper h2 {
  margin-bottom: 0.75em;
}

.close-button {
  position: absolute;
  top: -0.75em;
  right: -0.75em;
  width: 2.5em;
  height: 2.5em;
  border-radius: 50%;
  border: none;
  background: var(--theme-color);
  color: white;
  font-size: 1em;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 0 0.5em rgba(0, 0, 0, 0.1);
  z-index: 1;
  text-align: center;
  display: grid;
  place-items: center;
}

[popover]::backdrop {
  background-color: rgba(0, 0, 0, 0.4);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  display: block;
}

/* Responsive & Motion */
@media (max-width: 1200px) {
  .contact-section__cards {
    flex-direction: column;
    align-items: center;
  }
}
@media (max-width: 480px) {
  [popover] {
    min-width: 90vw;
  }
  .close-button {
    top: 1em;
    right: 1em;
  }
}
@media (prefers-reduced-motion: reduce) {
  /* アニメーション/固定配置を無効化して可読性を優先 */
  .hero__media {
    position: static !important;
    left: auto !important;
    top: auto !important;
    height: auto !important;
    transform: none !important;
    filter: none !important;
    opacity: 1 !important;
  }
  .contact-card:hover {
    transform: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  .footer__nav-link,
  .footer__link {
    transition: none;
  }
  .popover-fallback,
  [popover] {
    transition: none !important;
  }
  .no-native-popover [popover] {
    transform: none;
  }
}
.autoscroll {
  padding: 24px 0;
  overflow: hidden;
}
.autoscroll__slide {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 88px;
}
.autoscroll__slide img {
  display: block;
  height: 64px;
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.carousel {
  margin-inline: auto;
  padding: 20px 0;
  overflow: hidden;
  display: flex;
}

.group {
  display: flex;
  gap: 40px;
  /* 最後のカードと最初のカードの間にギャップを作るために右にパディングを追加します。*/
  padding-right: 40px;
  justify-content: center;
  align-items: center;
  content-visibility: visible; /* auto を打ち消す */
  will-change: transform; /* ブラウザに親切にして、何をアニメーション化するか伝えましょう。*/
  animation: scrolling 20s linear infinite;
}
@media screen and (max-width: 480px) {
  .group {
    gap: 24px;
    padding-right: 24px;
  }
}

.card {
  width: 360px;
  flex: 0 0 auto;
  color: white;
  border-radius: 32px;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  background-color: #082B4E;
  --img-height: 400px;
  height: var(--img-height);
}
@media screen and (max-width: 480px) {
  .card {
    width: 180px;
  }
}
.card img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 480px) {
  .card {
    height: calc(var(--img-height) * 0.5);
  }
}
.card:nth-of-type(1) {
  --img-height: 740px;
}
.card:nth-of-type(2) {
  --img-height: 360px;
}
.card:nth-of-type(3) {
  --img-height: 640px;
}
.card:nth-of-type(4) {
  --img-height: 520px;
}
.card:nth-of-type(5) {
  --img-height: 610px;
}
.card:nth-of-type(6) {
  --img-height: 400px;
}
.card:nth-of-type(7) {
  --img-height: 560px;
}
.card:nth-of-type(8) {
  --img-height: 600px;
}

@keyframes scrolling {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
.button {
  display: inline grid;
  grid-template-columns: 2fr auto 3fr;
  -moz-column-gap: 1em;
       column-gap: 1em;
  align-items: center;
  inline-size: min(100%, 400px);
  border: 3px solid var(--theme-color);
  color: var(--theme-color);
  padding-block: 24px;
  padding-inline: 40px;
  border-radius: 999px;
  transition: background-color 0.3s, color 0.3s, border 0.3s;
  background-color: #FFFFFF;
  font-size: 0.9em;
}
@media screen and (max-width: 480px) {
  .button {
    -moz-column-gap: 0.5em;
         column-gap: 0.5em;
    padding-inline: 24px;
  }
}
.button::before {
  content: ""; /* 空の疑似要素を用意する */
}
.button::after {
  content: "";
  justify-self: end; /* 右寄せにするために必須 */
  inline-size: 0.5em;
  aspect-ratio: 1;
  border-block-start: 3px solid;
  border-inline-end: 3px solid;
  rotate: 45deg;
}
.button:hover {
  background-color: var(--theme-color);
  color: #FFFFFF;
  border: 3px solid white;
}

.split > * {
  overflow: hidden;
}

.section-below {
  padding-block: 2em;
}/*# sourceMappingURL=style.css.map */