:root {
  --design-width: 1440;
  --root-font-size: 16;
}

/************
セクション共通　スタイル
************/
.container {
  position: relative;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 72px;
  box-sizing: border-box;
}
.s .container {
  padding-left: 4.1%;
  padding-right: 4.1%;
}

/************
アニメーション共通クラス
************/
/* 消える */
._hide {
  opacity: 0 !important;
  pointer-events: none;
}
/* フェードイン */
._fadeIn {
  opacity: 1 !important;
  transform: translate(0, 0) !important;
}

/* テキスト鼓動 */
._heartbeat_text {
  display: block;
  text-align: center;
  animation: heartbeat 2s infinite;
}

/************
BG
************/

svg#bg {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
}

.bg {
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  overflow: hidden;
  background: linear-gradient(to bottom, #001059, #0086de);
}

.bg-sun {
  position: absolute;
  inset: 0;
  margin: auto;
  transform-origin: center center;
  z-index: 4;
}

.bg-heatWave {
  position: absolute;
  width: 100%;
  height: 100%;
}
.bg-sunLight {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 44vw;
  height: 44vw;
  border-radius: 50%;
  box-shadow:
    0 0 100px 50px rgba(255, 94, 175, 0.5),
    0 30px 100px 20px rgba(255, 255, 255, 1);
  pointer-events: none;
}
.s .bg-sunLight {
  box-shadow:
    0 0 100px 20px rgba(255, 94, 175, 0.5),
    0 30px 100px 10px rgba(255, 255, 255, 1);
}

/************
BG（Fallback）
************/
.bgFallback {
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  overflow: hidden;
  display: none; /* デフォルトは非表示、SafariのみJSで表示 */
}
.bgFallback-sky {
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, #001059, #0086de);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.bgFallback-light {
  background: url('../images/top/light.webp');
  background-position: center;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 1;
  width: 100%;
  height: 100%;
  z-index: 2;
  transition: opacity 2s ease;
}
.bgFallback-noise {
  width: 100%;
  height: 100%;
  background: url('../images/top/noise_bg.webp');
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.2;
  z-index: 4;
}

.bgFallback-sun {
  position: absolute;
  inset: 0;
  margin: auto;
  transform-origin: center center;
  z-index: 3;
}

.bgFallback-sunCore {
  position: absolute;
  inset: 0;
  margin: auto;
  width: calc(672 / var(--design-width) * 100vw);
  height: calc(672 / var(--design-width) * 100vw);
  border-radius: 50%;
  filter: blur(2px);
  -webkit-filter: blur(2px);
}
.bgFallback-sunCore::before {
  content: '';
  position: absolute;
  inset: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  background-color: #ff0000;
  border-radius: 50%;
  box-shadow: inset 20px 20px 40px #ff8d1d;
}
.bgFallback-sunLight {
  position: absolute;
  inset: 0;
  margin: auto;
  width: calc(846 / var(--design-width) * 100vw);
  height: calc(846 / var(--design-width) * 100vw);
  overflow: visible;
}
.bgFallback-sunLight::before {
  content: '';
  position: absolute;
  inset: 0;
  margin: auto;
  width: 30%;
  height: 30%;
  border-radius: 50%;
  background: #fff;
  filter: blur(15px);
  transform: scale(3);
  will-change: transform, opacity;
  pointer-events: none;
}

.bgFallback-heatWave {
  position: absolute;
  inset: 0;
  margin: auto;
  width: calc(672 / var(--design-width) * 100vw);
  height: calc(672 / var(--design-width) * 100vw);
  border-radius: 50%;
  transform-origin: center center;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 999;
}

.bgFallback-heatWave.animate {
  opacity: 1;
}

.bgFallback-heatWaveItem {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0.3);
  transform-origin: center center;
  opacity: 0;
  pointer-events: none;
  z-index: 999;
  inset: 0;
  margin: auto;
  filter: blur(2px);
}

.bgFallback-heatWaveItem._typeA {
  box-shadow: inset 3px 3px 10px 10px rgba(255, 141, 29, 0.8);
}

.bgFallback-heatWaveItem._typeB {
  box-shadow: inset 3px 3px 10px 10px rgba(255, 198, 190, 0.8);
}

.bgFallback-heatWave.animate .bgFallback-heatWaveItem._typeA {
  animation: heatwave-pulseA 3s ease-out infinite;
}

.bgFallback-heatWave.animate .bgFallback-heatWaveItem._typeB {
  animation: heatwave-pulseB 3s ease-out infinite;
}

.bgFallback-heatWave.animate .bgFallback-heatWaveItem:nth-child(1) {
  animation-delay: 0s;
}

.bgFallback-heatWave.animate .bgFallback-heatWaveItem:nth-child(2) {
  animation-delay: 0.5s;
}

.bgFallback-heatWave.animate .bgFallback-heatWaveItem:nth-child(3) {
  animation-delay: 1s;
}

.bgFallback-heatWave.animate .bgFallback-heatWaveItem:nth-child(4) {
  animation-delay: 1.5s;
}

.bgFallback-heatWave.animate .bgFallback-heatWaveItem:nth-child(5) {
  animation-delay: 2s;
}

.bgFallback-heatWave.animate .bgFallback-heatWaveItem:nth-child(6) {
  animation-delay: 2.5s;
}

.bgFallback-heatWave.animate .bgFallback-heatWaveItem:nth-child(7) {
  animation-delay: 2.8s;
}

/************
KV
************/
.kv {
  position: relative;
  height: 720vh;
  z-index: 1;
}
.kv-greeting {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}

.heartbeatTextWrapper {
  animation: none;
}
.kv-copy {
  font-family: 'Jost', sans-serif;
  position: absolute;
  color: #fff;
  height: fit-content;
  inset: 0;
  margin: auto;
  z-index: 10;
  pointer-events: none;
}

.kv-copy svg {
  position: absolute;
  inset: 0;
  margin: auto;
  display: block;
  overflow: visible;
  width: 100%;
  max-width: 500px;
  height: auto;
}

g.heartbeatText text {
  fill: #fff;
  font-weight: 800;
  font-style: italic;
  text-anchor: middle;
  dominant-baseline: middle;
}
g.heartbeatText._normal text {
  font-style: normal;
}
g.heartbeatText._fs80 text {
  font-size: clamp(
    calc(52 / var(--root-font-size) * 1rem),
    calc(80 / var(--design-width) * 100vw),
    calc(80 / var(--root-font-size) * 1rem)
  );
}

g.heartbeatText._fs60 text {
  font-size: clamp(
    calc(18 / var(--root-font-size) * 1rem),
    calc(60 / var(--design-width) * 100vw),
    calc(60 / var(--root-font-size) * 1rem)
  );
}

g.heartbeatText._fs50 text {
  font-size: clamp(
    calc(18 / var(--root-font-size) * 1rem),
    calc(50 / var(--design-width) * 100vw),
    calc(50 / var(--root-font-size) * 1rem)
  );
}

g.heartbeatText._fs30 text {
  font-size: clamp(
    calc(40 / var(--root-font-size) * 1rem),
    calc(30 / var(--design-width) * 100vw),
    calc(30 / var(--root-font-size) * 1rem)
  );
}

g.heartbeatText._fs20 text {
  font-size: clamp(
    calc(18 / var(--root-font-size) * 1rem),
    calc(20 / var(--design-width) * 100vw),
    calc(20 / var(--root-font-size) * 1rem)
  );
}

.s g.heartbeatText._fs60 text {
  font-size: clamp(
    calc(40 / var(--root-font-size) * 1rem),
    calc(60 / var(--design-width) * 100vw),
    calc(60 / var(--root-font-size) * 1rem)
  );
}

.s g.heartbeatText._fs50 text {
  font-size: clamp(
    calc(70 / var(--root-font-size) * 1rem),
    calc(70 / var(--design-width) * 100vw),
    calc(70 / var(--root-font-size) * 1rem)
  );
}

.s g.heartbeatText._fs20 text {
  font-size: clamp(
    calc(40 / var(--root-font-size) * 1rem),
    calc(20 / var(--design-width) * 100vw),
    calc(20 / var(--root-font-size) * 1rem)
  );
}

.text-normal {
  opacity: 1;
  animation: none;
}
.js-firstCopyHeartbeat .text-normal {
  animation: normalFade 2s infinite;
}
._isSticky .text-normal {
  animation: none !important;
}

.text-effect {
  opacity: 0;
  animation: none;
}
.js-firstCopyHeartbeat .text-effect {
  animation: effectFade 2s infinite;
}
._isSticky .text-effect {
  animation: none !important;
}

@keyframes heartbeat {
  0%,
  35%,
  45%,
  55%,
  65%,
  100% {
    transform: scale(1);
  }
  38%,
  42%,
  58%,
  62% {
    transform: scale(1.1);
  }
}

@keyframes normalFade {
  0%,
  35%,
  45%,
  55%,
  65%,
  100% {
    opacity: 1;
  }
  38%,
  42%,
  58%,
  62% {
    opacity: 0;
  }
}

@keyframes effectFade {
  0%,
  35%,
  45%,
  55%,
  65%,
  100% {
    opacity: 0;
  }
  38%,
  42%,
  58%,
  62% {
    opacity: 1;
  }
}

.js-firstCopy {
  transition: transform 0.3s ease 0.5s;
  transform-origin: center;
  transform-box: fill-box;
}
.js-firstCopyWrapper {
  animation: none;
}
.js-firstCopyHeartbeat {
  animation: heartbeat 2s infinite;
  transform-origin: center;
  transform-box: fill-box;
}
._isSticky .js-firstCopyHeartbeat {
  animation: none !important;
}
.js-finalCopy {
  transition:
    opacity 0.3s ease 0.5s,
    transform 0.3s ease 0.5s;
  transform-origin: center;
}
.js-firstCopy._slideUp {
  transform: translateY(-250px);
}
.s .js-firstCopy._slideUp {
  transform: translateY(-265px);
}
.js-firstCopy._hide,
.js-finalCopy._hide {
  opacity: 0;
  transform: scale(2.5);
  pointer-events: none;
  transition:
    opacity 0.3s,
    transform 0.3s;
}
.kv-text {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  width: fit-content;
  height: 100%;
  inset: 0;
  margin: auto;
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  background-size: 300% 300%;
  background-image: linear-gradient(to bottom, #fff 30%, rgba(255, 255, 255, 0) 50%);
  background-position: center 100%;
  transition:
    background-position 1s,
    opacity 1s;
  margin-top: 5%;
}
.s .kv-text {
  width: 85vw;
  margin-top: 10%;
}
.kv-text._visible {
  background-position: center 150%;
  transition:
    background-position 1s ease 0.5s,
    opacity 1s ease 0.5s;
}

.kv-text > p {
  font-family: 'Jost', sans-serif;
  font-weight: 800;
  font-style: italic;
}
.kv-text > p:nth-child(1) {
  font-size: clamp(
    calc(18 / var(--root-font-size) * 1rem),
    calc(56 / var(--design-width) * 100vw),
    calc(56 / var(--root-font-size) * 1rem)
  );
  line-height: 1.3;
}
.s .kv-text > p:nth-child(1) {
  font-size: calc(34 / var(--root-font-size) * 1rem);
}

.kv-textBtnArea {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: clamp(16px, calc(20 / var(--design-width) * 100vw), 40px);
  opacity: 0;
  transition: opacity 0.3s ease 0.5s;
  visibility: hidden;
  pointer-events: none;
}
.s .kv-textBtnArea {
  gap: 10px;
}
.kv-textBtnArea._visible {
  opacity: 1;
  transition: opacity 0.3s ease 0.5s;
  visibility: visible;
  pointer-events: auto;
}
.kv-textBtn {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: clamp(
    calc(14 / var(--root-font-size) * 1rem),
    calc(18 / var(--design-width) * 100vw),
    calc(18 / var(--root-font-size) * 1rem)
  );
}
.s .kv-textBtn {
  font-size: calc(12 / var(--root-font-size) * 1rem);
  width: 150px;
  height: 40px;
}

.s .kv-textBtn._large {
  width: 170px;
  text-align: left;
  line-height: 1.2;
}

/* HeatWave Animation */
@keyframes heatwave-pulseA {
  0% {
    transform: scale(0.3) rotate(0deg);
    opacity: 1;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: scale(var(--heatwave-max-scale, 3)) rotate(-360deg);
    opacity: 0;
  }
}

@keyframes heatwave-pulseB {
  0% {
    transform: scale(0.3) rotate(0deg);
    opacity: 1;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: scale(var(--heatwave-max-scale, 3)) rotate(360deg);
    opacity: 0;
  }
}

#heatWave {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

#heatWave circle {
  transform-origin: 50% 50%;
  opacity: 0;
}

#heatWave.animate {
  opacity: 1;
}

#heatWave.animate circle {
  animation: heatwave-pulseA 3s ease-out infinite;
}

#heatWave.animate circle.typeB {
  animation: heatwave-pulseB 3s ease-out infinite;
}

#heatWave.animate circle:nth-child(1) {
  animation-delay: 0s;
}

#heatWave.animate circle:nth-child(2) {
  animation-delay: 0.5s;
}

#heatWave.animate circle:nth-child(3) {
  animation-delay: 1s;
}

#heatWave.animate circle:nth-child(4) {
  animation-delay: 1.5s;
}

#heatWave.animate circle:nth-child(5) {
  animation-delay: 2s;
}

#heatWave.animate circle:nth-child(6) {
  animation-delay: 2.5s;
}

.kv-text > p:nth-child(2) {
  font-size: clamp(
    calc(10 / var(--root-font-size) * 1rem),
    calc(32 / var(--design-width) * 100vw),
    calc(32 / var(--root-font-size) * 1rem)
  );
  line-height: 2;
  margin-top: clamp(16px, calc(20 / var(--design-width) * 100vw), 40px);
}
.s .kv-text > p:nth-child(2) {
  font-size: calc(16 / var(--root-font-size) * 1rem);
  margin-top: 4vw;
  line-height: 1.5;
}

.kv-walk {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  width: fit-content;
  height: fit-content;
  transition: opacity 0.3s;
}

.kv-walkImage {
  width: 25px;
}
.kv-walkImage img {
  width: 100%;
  height: auto;
}
.kv-walkLine {
  width: 1px;
  height: 59vh;
  margin: 0 auto;
  margin-top: 10px;
  writing-mode: vertical-rl;
}
.kv-walkLine > p {
  font-family: 'Jost', sans-serif;
  font-size: clamp(
    calc(8 / var(--root-font-size) * 1rem),
    calc(16 / var(--design-width) * 100vw),
    calc(16 / var(--root-font-size) * 1rem)
  );
  color: #fff;
  position: absolute;
  left: 0;
  top: 0;
  transform: translate(1vw, 50vh);
}
.s .kv-walkLine > p {
  font-size: calc(12 / var(--root-font-size) * 1rem);
  transform: translate(4vw, 85vw);
}
.kv-walkLineScrollBar {
  position: relative;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0));
  height: 100%;
  width: 100%;
}
.kv-walkLineScrollBarMoveLine {
  position: absolute;
  height: 65%;
  width: 1px;
  bottom: 13%;
  overflow: hidden;
  z-index: 999;
  left: 0;
}
.s .kv-walkLineScrollBar {
  height: 80%;
}
.kv-walkLineScrollBarMoveLine span {
  width: 1px;
  height: 20vh;
  background-image: linear-gradient(180deg, rgba(255, 255, 255, 1) 30%, rgba(255, 255, 255, 0));
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 999;
}
.s .kv-walkLineScrollBarMoveLine {
  height: 70%;
  bottom: 4%;
}
.kv-walkLineScrollBar._withScroll .kv-walkLineScrollBarMoveLine span {
  animation: scrolldown 2s ease-in-out infinite;
}
@keyframes scrolldown {
  0% {
    transform: translateY(-200%);
  }
  100% {
    transform: translateY(100%);
  }
}

.kv-news {
  position: absolute;
  bottom: 20px;
  right: 0;
  left: 0;
  margin: auto;
  width: fit-content;
  height: fit-content;
  font-size: calc(14 / var(--root-font-size) * 1rem);
  color: #fff;
  transition: opacity 0.3s;
  z-index: 5;
}
.s .kv-news {
  bottom: 32px;
  padding: 0 5%;
}
.kv-news a {
  font-size: calc(14 / var(--root-font-size) * 1rem);
  color: #fff;
  cursor: pointer;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* 低い高さのPC（例: CSS高さ720px以下）での見切れ対策 */
@media screen and (min-width: 1024px) and (max-height: 720px) {
  .kv-text {
    margin-top: 9vh;
  }

  .kv-text > p:nth-child(1) {
    font-size: clamp(
      calc(18 / var(--root-font-size) * 1rem),
      7.2vh,
      calc(48 / var(--root-font-size) * 1rem)
    );
    line-height: 1.2;
  }

  .kv-text > p:nth-child(2) {
    font-size: clamp(
      calc(10 / var(--root-font-size) * 1rem),
      3.8vh,
      calc(26 / var(--root-font-size) * 1rem)
    );
    line-height: 2;
    margin-top: clamp(8px, 1.5vh, 20px);
  }

  .kv-textBtnArea {
    gap: clamp(8px, 1.6vh, 16px);
    margin-top: clamp(8px, 2vh, 24px);
  }

  .kv-textBtn {
    font-size: 1.3vw;
    min-height: clamp(36px, 5.4vh, 44px);
    height: 9vh;
  }
  .js-firstCopy._slideUp {
    transform: translateY(-30vh);
  }
}
@media screen and (min-width: 769px) {
  .kv {
    height: 400vh;
  } 
}
/************
Message
************/

.message {
  position: relative;
  z-index: 1;
}

.message-box {
  position: relative;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.s .message-box {
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}
.message-img {
  width: clamp(144px, calc(400 / var(--design-width) * 100vw), 400px);
  height: auto;
  overflow: hidden;
  border-radius: 9999px 9999px 0 0;
}
.fadeIn_bottom {
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
  opacity: 0;
  transform: translate(0, 20px);
}
.s .message-img {
  width: 70vw;
}
.message-img img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.message-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  background-size: 300% 300%;
  background-image: linear-gradient(to bottom, #fff 30%, rgba(255, 255, 255, 0) 50%);
  background-position: center 100%;
  transition:
    background-position 0.3s,
    opacity 0.3s;
  transform: translate(-47px, 0);
  transform: translate(-6%, 0);
}

.s .message-content {
  width: 100%;
  transform: translate(0, 0);
  align-items: center;
  gap: 0;
}
.message-content._visible {
  background-position: center 150%;
  transition:
    background-position 0.3s,
    opacity 0.3s;
}
.message-title {
  font-family: 'Jost', sans-serif;
  font-size: clamp(
    calc(36 / var(--root-font-size) * 1rem),
    calc(170 / var(--design-width) * 100vw),
    calc(170 / var(--root-font-size) * 1rem)
  );
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.4vw;
  font-weight: 600;
}
.s .message-title {
  font-size: calc(70 / var(--root-font-size) * 1rem);
  text-align: left;
  width: 100%;
}
.message-subtitle {
  font-size: clamp(
    calc(8 / var(--root-font-size) * 1rem),
    calc(20 / var(--design-width) * 100vw),
    calc(20 / var(--root-font-size) * 1rem)
  );
  font-weight: 400;
}
.s .message-subtitle {
  font-size: calc(16 / var(--root-font-size) * 1rem);
  text-align: left;
  width: 100%;
}
.message-text {
  /* font-size: clamp(
    calc(20 / var(--root-font-size) * 1rem),
    calc(36 / var(--design-width) * 100vw),
    calc(36 / var(--root-font-size) * 1rem)
  ); */
  font-size: calc(40 / var(--root-font-size) * 1rem);
  font-weight: 900;
  line-height: 1.6;
  font-style: italic;
}
.s .message-text {
  font-size: calc(20 / var(--root-font-size) * 1rem);
  text-align: left;
  width: 100%;
  margin-top: calc(18 / var(--root-font-size) * 1rem);
  line-height: 1.6;
}
.message-btn {
  position: absolute;
  right: 0;
  bottom: -15%;
  width: 20%;
  height: 11%;
  min-width: auto;
  font-size: clamp(
    calc(10 / var(--root-font-size) * 1rem),
    calc(18 / var(--design-width) * 100vw),
    calc(18 / var(--root-font-size) * 1rem)
  );
  padding: 0 3%;
}
.s .message-btn {
  position: relative;
  bottom: 0;
}
.message-btn > .c-btnArrow {
  width: clamp(7px, calc(16 / var(--design-width) * 100vw), 16px);
  height: clamp(7px, calc(16 / var(--design-width) * 100vw), 16px);
  right: 10%;
}

.message-text-wrap {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  color: #fff;
  line-height: 1.8;
}

.message-lead {
  font-size: calc(26 / var(--root-font-size) * 1rem);
  font-weight: 700;
  margin-top: 2rem;
}

.s .message-lead {
  font-size: calc(18 / var(--root-font-size) * 1rem);
}

.message-text-detail {
  font-size: calc(16 / var(--root-font-size) * 1rem);
  margin-top: 1.5rem;
}

.message-name {
  font-size: calc(14 / var(--root-font-size) * 1rem);
  font-weight: 500;
  margin-top: 1.5rem;
}

@media screen and (min-width: 769px) {
  .message-title  {
    font-size: clamp(
      calc(15 / var(--root-font-size) * 1rem),
      calc(80 / var(--design-width) * 100vw),
      calc(80 / var(--root-font-size) * 1rem)
    );
  }
}

@media screen and (max-width: 768px) {
  .message {
    margin-top: -25vh;
  }
}


/************
note
************/
.note {
  position: relative;
  z-index: 1;
  padding-top: clamp(80px, calc(200 / var(--design-width) * 100vw), 200px);
  overflow: hidden;
}
.s .note {
  padding-top: 20vw;
  padding-bottom: 10vw;
}
.note-content {
  margin-top: clamp(20px, calc(15 / var(--design-width) * 100vw), 15px);
}
.note-lead {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  text-align: center;
  color: #fff;
  font-size: calc(20 / var(--root-font-size) * 1rem);
  margin-top: clamp(20px, calc(40 / var(--design-width) * 100vw), 40px);
}
.s .note-lead {
  font-size: calc(16 / var(--root-font-size) * 1rem);
  margin-top: 4vw;
}
.note-swiper {
  overflow: visible;
  width: 100%;
}
.s .note-swiper {
  overflow: hidden;
  padding: 0 5%;
}
.note-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-items: center;
  align-items: stretch;
  gap: 20px;
}
.note-list h3{
  margin-top: 15px;
  font-size: calc(16 / var(--root-font-size) * 1rem);
  color: #000;
}
.note-list > li,
.note-item {
  max-width: 392px;
  height: 100%;
  flex-shrink: 0;
}
.note-list > li > a {
  text-decoration: none;
}
.note-list > li > a > img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  border-radius: 10px;
}
.s .note-list {
  flex-direction: row;
  justify-content: flex-start;
  gap: 0;
}
.note-item {
  width: auto;
  background: #fff;
  padding: 15px;
  border-radius: 10px;
}
.note-groupIcon{
  width: 22px;
}
.note-date {
  color: #7d7e82;
  font-size: calc(12 / var(--root-font-size) * 1rem);
}
.note-creator{
  color: #7d7e82;
  font-size: calc(12 / var(--root-font-size) * 1rem);
}
.note-textGroup{
  display: flex;
  margin: 15px 0;
  justify-content: left;
  align-items: center;
  gap: 10px;
}
.note-like{
  text-decoration: none;
  color: #a4a6ab;

}
.note-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(
    calc(36 / var(--root-font-size) * 1rem),
    calc(120 / var(--design-width) * 100vw),
    calc(120 / var(--root-font-size) * 1rem)
  );
  font-weight: 800;
  line-height: 1;
  color: #fff;
  text-align: center;
}
.s .note-title {
  font-size: calc(70 / var(--root-font-size) * 1rem);
  text-align: center;
}



.note-btn {
  margin: clamp(
      calc(30 / var(--root-font-size) * 1rem),
      calc(60 / var(--design-width) * 100vw),
      calc(60 / var(--root-font-size) * 1rem)
    )
    auto 0;
    width: 260px;
}
/************
News
************/
.news {
  position: relative;
  z-index: 1;
  padding-top: clamp(80px, calc(200 / var(--design-width) * 100vw), 200px);
}

.s .news {
  padding-top: 20vw;
  padding-bottom: 10vw;
}
.news-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.news-title {
  font-family: 'Jost', sans-serif;
  font-size: clamp(
    calc(36 / var(--root-font-size) * 1rem),
    calc(200 / var(--design-width) * 100vw),
    calc(200 / var(--root-font-size) * 1rem)
  );
  font-weight: 800;
  line-height: 1;
  color: #fff;
}
.news-content {
  margin-top: clamp(30px, calc(65 / var(--design-width) * 100vw), 65px);
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 40px 50px;
  background: linear-gradient(90deg, rgba(0, 134, 222, 0.5) 0%, rgba(0, 134, 222, 0.35) 100%);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.news-sunTitle {
  font-size: clamp(
    calc(12 / var(--root-font-size) * 1rem),
    calc(20 / var(--design-width) * 100vw),
    calc(20 / var(--root-font-size) * 1rem)
  );
  color: #fff;
}

.news-newsList {
  display: flex;
  flex-direction: column;
  margin-top: 35px;
  gap: 20px;
}
.news-box {
  width: 100%;
}
.news-box:first-child .news-newsList {
  padding-right: 30px;
  border-right: 1px solid #fff;
}

.news-box:not(:first-child) .news-newsList {
  padding-left: 30px;
}

.news-newsItem {
  max-width: 620px;
}
.news-newsItem:hover .news-thumbnail > img {
  transform: scale(1.2);
}
a.news-newsLink {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  color: #fff;
  text-decoration: none;
  gap: 20px;
}
.s a.news-newsLink {
  gap: 10px;
}
.news-thumbnail {
  width: 200px;
  height: 112px;
  overflow: hidden;
  flex-shrink: 0;
}
.s .news-thumbnail {
  width: 32vw;
  height: calc(32vw * 0.56);
}
.news-thumbnail > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.3s ease;
}

.news-infoHead {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}
.news-date {
  font-size: calc(14 / var(--root-font-size) * 1rem);
  font-weight: 400;
}
.s .news-date {
  font-size: calc(12 / var(--root-font-size) * 1rem);
}
.news-infoTag {
  display: flex;
  gap: 10px;
  line-height: 1;
}
.s .news-infoTag {
  flex-wrap: wrap;
}
.news-infoTag > li {
  font-size: calc(14 / var(--root-font-size) * 1rem);
  font-weight: 400;
  border: 1px solid #fff;
  padding: 7px 10px;
  border-radius: 9999px;
}
.s .news-infoTag > li {
  font-size: calc(10 / var(--root-font-size) * 1rem);
  padding: 5px 8px;
}
.news-infoDescription {
  margin-top: 20px;
  font-size: calc(14 / var(--root-font-size) * 1rem);
  font-weight: 500;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.s .news-infoDescription {
  margin-top: 1vw;
}
@media screen and (min-width: 769px) {
  .news-title {
    font-size: clamp(
      calc(15 / var(--root-font-size) * 1rem),
      calc(80 / var(--design-width) * 100vw),
      calc(80 / var(--root-font-size) * 1rem)
    );
  }
} 
/* 1170px以下 */
@media screen and (max-width: 1170px) {
  .news-content {
    flex-direction: column;
    gap: 50px;
  }
  .s .news-content {
    gap: 7vw;
    padding: 7vw 5vw;
  }
  .news-box:first-child .news-newsList {
    padding-right: 0;
    border-right: none;
  }

  .news-box:not(:first-child) .news-newsList {
    padding-left: 0;
  }

  .news-box:not(:first-child) {
    padding-top: 50px;
    border-top: 1px solid #fff;
  }
  .s .news-box:not(:first-child) {
    padding-top: 7vw;
  }
  .news-newsItem {
    max-width: 100%;
  }
  .note-list > li,
  .note-item {
    height: auto;
  }
  .note-list > li > a {
    height: 100%;
  }
}
.s .news-newsList {
  margin-top: 4vw;
}
/************
about
************/
.about {
  position: relative;
  z-index: 1;
  height: 500vh;
  /* background-color: rgba(255, 141, 29, 0.2); */
}
body.s .about {
  height: auto;
  padding-bottom: 20vw;
  overflow-x: hidden;
}
.about-box {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}
body.s .about-box {
  position: relative;
  top: auto;
  height: auto;
  overflow: visible;
  padding-top: 45vw;
}
.about-title {
  font-family: 'Jost', sans-serif;
  font-weight: 800;
  line-height: 1;
  color: #fff;
  position: absolute;
  top: 3vw;
  text-align: center;
  width: 100%;
  z-index: 2;
  font-size: clamp(
    calc(36 / var(--root-font-size) * 1rem),
    calc(180 / var(--design-width) * 100vw),
    calc(180 / var(--root-font-size) * 1rem)
  );
  font-style: italic;
}
body.s .about-title {
  top: 15vw;
  pointer-events: none;
}

.about-frame {
  position: absolute;
  inset: 0;
  margin: auto;
}
.about-circleSlide {
  overflow: hidden;
  position: absolute;
  inset: 0;
}
body.s .about-circleSlide {
  position: relative;
  inset: auto;
  overflow: visible;
}
.about-line {
  width: 1px;
  height: 100px;
  position: absolute;
  bottom: 0;
  right: 120px;
  writing-mode: vertical-rl;
}
body.s .about-line {
  display: none;
}
.about-line > p {
  font-family: 'Jost', sans-serif;
  font-size: clamp(
    calc(8 / var(--root-font-size) * 1rem),
    calc(20 / var(--design-width) * 100vw),
    calc(20 / var(--root-font-size) * 1rem)
  );
  color: #fff;
  position: absolute;
  left: 0;
  top: 0;
}
.s .about-line > p {
  font-size: calc(12 / var(--root-font-size) * 1rem);
  transform: translate(0px, 35px);
}
.about-lineScrollBar {
  position: relative;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0));
  height: 100%;
  width: 100%;
  overflow: hidden;
}
.about-lineScrollBar span {
  width: 1px;
  height: 100px;
  background-image: linear-gradient(180deg, rgba(255, 255, 255, 1) 30%, rgba(255, 255, 255, 0));
  position: absolute;
  top: 0;
  left: 0;
  animation: scrolldown 2s ease-in-out infinite;
}
.about-circle {
  width: 111vw;
  /* height: 111vw; */
  height: 79vw;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 1);
  position: absolute;
  top: 50vh;
  left: 50%;
  transform: translateX(-50%);
}
.s .about-circle {
  display: none;
}
.about-square {
  width: calc(111vw / 1.414213);
  height: calc(111vw / 1.414213);
  position: absolute;
  top: calc(50vh + 55.5vw);
  left: 50%;
  transform: translate(-50%, -50%) rotate(135deg);
  transition: transform 0.5s ease-in-out;
}
body.s .about-square {
  position: relative;
  width: 100%;
  height: auto;
  top: auto;
  left: auto;
  transform: none;
  transition: none;
  overflow: hidden;
}

.about-list {
  position: relative;
  width: 100%;
  height: 100%;
}
body.s .about-list {
  display: flex;
  height: auto;
  position: relative;
}
.about-list > li {
  position: absolute;
  width: clamp(286px, calc(400 / var(--design-width) * 100vw), 400px);
  height: clamp(286px, calc(400 / var(--design-width) * 100vw), 400px);
}
body.s .about-list > li {
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  bottom: auto;
  transform: none;
  height: auto;
  flex-shrink: 0;
}
.about-list > li img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.3s ease;
}
.about-list > li:first-child {
  top: 0;
  left: 0;
  transform: translate(-50%, -50%) rotate(-45deg);
}
.about-list > li:nth-child(2) {
  top: 0;
  right: 0;
  transform: translate(50%, -50%) rotate(45deg);
}
.about-list > li:nth-child(3) {
  bottom: 0;
  right: 0;
  transform: translate(50%, 50%) rotate(-225deg);
}
.about-list > li:nth-child(4) {
  bottom: 0;
  left: 0;
  transform: translate(-50%, 50%) rotate(-135deg);
}
.about-itemThumb {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.about-itemThumb a {
  display: block;
  width: 100%;
  height: 100%;
  cursor:
    url('../images/top/cursor-custom.png') 62 62,
    pointer;
}

.about-itemThumb a:hover {
  cursor:
    url('../images/top/cursor-custom.png') 62 62,
    pointer;
}

@media screen and (max-width: 768px) {
  .about-itemThumb a:hover {
    opacity: 1;
  }
}


.about-itemThumb > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

body.s .about-itemThumb {
  height: 80vw;
}

.about-itemText { 
  position: absolute;
  inset: 0; 
  margin: 7rem auto auto 5rem;
  transform: translate(-180%, 20%);
  font-family: 'Zen Kaku Gothic New', sans-serif;
  width: fit-content;
  height: fit-content;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-style: italic;
  font-size: clamp(
    calc(12 / var(--root-font-size) * 1rem),
    calc(16 / var(--design-width) * 100vw),
    calc(16 / var(--root-font-size) * 1rem)
  );
  font-weight: 400;
  color: #fff;
  text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.4);
}
body.s .about-itemText {
  position: relative;
  inset: auto;
  transform: none;
  margin-top: 15px;
  text-align: center;
  width: 100%;
}

.about-list > li:empty {
  display: none;
}

/* 背景テキストスライダー */
.about-bgText {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
  height: auto;
  display: flex;
  gap: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

body.s .about-bgText {
  top: 15vw;
  transform: none;
}

.about-bgText img {
  flex-shrink: 0;
  height: auto;
  width: auto;
  max-height: 30vh;
  animation: bgTextSlide 20s linear infinite;
}

@keyframes bgTextSlide {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

.about-comment {
  position: absolute;
  inset: 0;
  margin: auto;
  width: fit-content;
  height: fit-content;
  transform: translate(55%, 245%);
}
.about-comment-link {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-style: italic;
  font-size: clamp(
    calc(12 / var(--root-font-size) * 1rem),
    calc(24 / var(--design-width) * 100vw),
    calc(24 / var(--root-font-size) * 1rem)
  );
  font-weight: 600;
  color: #fff;
  padding-top: 20px;
  text-decoration: none;
}

.about-itemThumb a.hover,
.about-comment-link.hover {
  opacity: 0.6;
}

@media (hover: hover) {
  .about-comment-link:hover {
    cursor: url('../images/top/cursor-custom.png') 62 62, pointer;
    opacity: 0.6;
  }
}
body.s .about-comment {
  position: relative;
  inset: auto;
  margin: 40px auto 0;
  padding: 0 5vw;
  transform: none;
  text-align: center;
  font-size: calc(14 / var(--root-font-size) * 1rem);
  font-style: normal;
}
.about-counter {
  position: absolute;
  inset: 0;
  margin: auto;
  width: fit-content;
  height: fit-content;
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(
    calc(12 / var(--root-font-size) * 1rem),
    calc(24 / var(--design-width) * 100vw),
    calc(24 / var(--root-font-size) * 1rem)
  );
  font-weight: 600;
  color: #fff;
  transform: translate(-240%, 320%);
  transition: inset 0.3s ease;
}
body.s .about-counter {
  position: relative;
  inset: auto;
  margin: 30px auto 0;
  transform: none;
  text-align: center;
  font-size: calc(14 / var(--root-font-size) * 1rem);
}
.about-counter > span {
  display: inline-block;
}
.about-counterCurrent {
  font-size: clamp(
    calc(50 / var(--root-font-size) * 1rem),
    calc(46 / var(--design-width) * 100vw),
    calc(46 / var(--root-font-size) * 1rem)
  );
  width: 20px;
}
.s .about-counterCurrent {
  font-size: calc(40 / var(--root-font-size) * 1rem);
  width: 16px;
}
.about-counterTotal {
  font-size: clamp(
    calc(14 / var(--root-font-size) * 1rem),
    calc(28 / var(--design-width) * 100vw),
    calc(28 / var(--root-font-size) * 1rem)
  );
}

.about-counterSlash {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: clamp(
    calc(12 / var(--root-font-size) * 1rem),
    calc(46 / var(--design-width) * 100vw),
    calc(46 / var(--root-font-size) * 1rem)
  );
  font-weight: 100;
  transform: rotate(10deg) translate(7px, 0px);
}
.s .about-counterSlash {
  font-size: calc(40 / var(--root-font-size) * 1rem);
  transform: rotate(5deg) translate(3px, 0px);
}
/* パフォーマンス最適化 */
.about-square {
  /* Safari最適化: 裏面非表示でレンダリング負荷軽減 */
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

@media screen and (min-width: 769px) {
  .about-title {
     font-size: clamp(
      calc(15 / var(--root-font-size) * 1rem),
      calc(80 / var(--design-width) * 100vw),
      calc(80 / var(--root-font-size) * 1rem)
    );
  } 
}



/**************
business
**************/

.business {
  position: relative;
  z-index: 1;
  padding-bottom: clamp(100px, calc(200 / var(--design-width) * 100vw), 200px);
}
.business-box {
  position: relative;
  top: 0;

  overflow: hidden;
}

.business-title {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: clamp(
    calc(30 / var(--root-font-size) * 1rem),
    calc(60 / var(--design-width) * 100vw),
    calc(60 / var(--root-font-size) * 1rem)
  );
  font-weight: 800;
  line-height: 1;
  color: #fff;
  position: relative;
  padding-top: 9.7vw;
  text-align: center;
  width: 100%;
  z-index: 2;
  font-style: italic;
}

.business-slider {
  position: absolute;
  inset: 0;
  margin: auto;
  width: fit-content;
  height: fit-content;
}

.business-sliderList {
  display: flex;
  justify-content: center;
  align-items: center;
}

.business-item-wrap {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 341px));
  justify-content: center;
  gap: 16px;
  padding-inline: 16px;
}

.s .business-item-wrap {
  grid-template-columns: repeat(2, 1fr);
}

.business-item {
  position: relative;
  box-sizing: border-box;
  margin: 0 auto;
  max-width: 341px;
}

.business-itemImg {
  overflow: hidden;
  flex-shrink: 0;
}

.business-itemImg > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.3s ease;
}
.business-itemContent {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  color: #fff;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 10%;
}
.business-itemContent:active {
  cursor: grabbing;
}
.business-item:hover .business-itemImg > img {
  transform: scale(1.1);
}
.business-itemTitle {
  font-size: 2vw;
  font-weight: 500;
  line-height: 1;
}
.s .business-itemTitle {
  font-size: 5vw;
  line-height: 1.2;
}
.business-itemDescription {
  margin-top: 1.5vw;
  font-size: 1.2vw;
  font-weight: 400;
  line-height: 1.5;
}
.s .business-itemDescription {
  font-size: 3.5vw;
  margin-top: 4vw;
}

@media screen and (min-width: 769px) { 
  .business {
    margin-top: -2vw;
  }

  .business-title {
    padding-top: 0;
  }
}

/* ===== Swiper layout ===== */
.slider-wrap {
  width: 23vw;
  margin: clamp(15px, calc(30 / var(--design-width) * 100vw), 30px) auto 0;
}
.s .slider-wrap {
  width: 90vw;
  margin: clamp(40px, calc(40 / var(--design-width) * 100vw), 40px) auto 0;
}

.swiper {
  padding: 12px 64px;
  overflow: visible !important;
}

.swiper-wrapper {
  align-items: stretch;
}

.swiper-slide {
  flex-shrink: 0;
  transition:
    transform 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94),
    opacity 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94),
    filter 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform-origin: center center;
  user-select: none;
}

/* ちょい補助：ドラッグ中の選択防止 */
.swiper * {
  -webkit-tap-highlight-color: transparent;
}

.business-btnArea {
  text-align: center;
  width: fit-content;
  margin: clamp(15px, calc(30 / var(--design-width) * 100vw), 30px) auto 0;
}
.s .business-btnArea {
  margin-top: 12vw;
}

/**************
regionalRevitalization
**************/
.regionalRevitalization {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.regionalRevitalization-slogan {
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
  margin: -12vw 0 0 auto;
  width: 50%;
  color: #fff;
  font-family: 'Zen Kaku Gothic New', sans-serif;
}
.s .regionalRevitalization-slogan {
  width: 83%;
  margin: 0 auto;
}
.regionalRevitalization-slogan > p {
  line-height: 1.8;
}
.regionalRevitalization-slogan > p:first-child {
  font-size: clamp(
    calc(30 / var(--root-font-size) * 1rem),
    calc(36 / var(--design-width) * 100vw),
    calc(36 / var(--root-font-size) * 1rem)
  );
  font-weight: 700;
  position: relative;
  text-align: left;
  width: 100%;
  z-index: 2;
  transform: skew(-2deg);
}
.s .regionalRevitalization-slogan > p:first-child {
  font-size: clamp(
    calc(17 / var(--root-font-size) * 1rem),
    calc(20 / var(--design-width) * 100vw),
    calc(30 / var(--root-font-size) * 1rem)
  );
  text-align: center;
  text-align: left;
}
.regionalRevitalization-slogan > p:last-child {
  font-size: clamp(
    calc(12 / var(--root-font-size) * 1rem),
    calc(20 / var(--design-width) * 100vw),
    calc(20 / var(--root-font-size) * 1rem)
  );
  font-weight: 400;
  margin-top: clamp(16px, calc(20 / var(--design-width) * 100vw), 20px);
}
.s .regionalRevitalization-slogan > p:last-child {
  font-size: calc(14 / var(--root-font-size) * 1rem);
  text-align: center;
  margin-top: 4vw;
  text-align: left;
}

.regionalRevitalization-linkArea {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-block: clamp(20px, calc(100 / var(--design-width) * 100vw), 100px);
}
.s .regionalRevitalization-linkArea {
  display: flex;
  flex-direction: column;
  margin-top: 10vw;
}
.regionalRevitalization-linkCard {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: fit-content;
  color: #fff;
  width: 45%;
  background-color: rgba(44, 117, 19, 0.3);
  padding: 50px 40px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  text-decoration: none;
}
.s .regionalRevitalization-linkCard {
  width: 100%;
  padding: 4vw 7vw 7vw;
}
.regionalRevitalization-linkTitle {
  font-size: calc(32 / var(--root-font-size) * 1rem);
  font-weight: 700;
}
.s .regionalRevitalization-linkTitle {
  font-size: calc(20 / var(--root-font-size) * 1rem);
}
.regionalRevitalization-linkImg {
  width: 100%;
  aspect-ratio: 548/308;
  overflow: hidden;
}
.regionalRevitalization-linkImg img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.regionalRevitalization-linkDescription > p {
  line-height: 1.8;
}

.regionalRevitalization-linkDescription > p:first-child {
  font-weight: 700;
  font-size: clamp(
    calc(12 / var(--root-font-size) * 1rem),
    calc(20 / var(--design-width) * 100vw),
    calc(20 / var(--root-font-size) * 1rem)
  );
}
.s .regionalRevitalization-linkDescription > p:first-child {
  font-size: calc(16 / var(--root-font-size) * 1rem);
}

.regionalRevitalization-linkDescription > p:last-child {
  font-weight: 400;
  font-size: clamp(
    calc(12 / var(--root-font-size) * 1rem),
    calc(14 / var(--design-width) * 100vw),
    calc(14 / var(--root-font-size) * 1rem)
  );
  margin-top: clamp(8px, calc(10 / var(--design-width) * 100vw), 10px);
}
.s .regionalRevitalization-linkDescription > p:last-child {
  font-size: calc(12 / var(--root-font-size) * 1rem);
}
.regionalRevitalization-linkBtn {
  margin: 0 0 0 auto;
}
/**************
other
**************/
.other {
  position: relative;
  z-index: 1;
  padding-bottom: clamp(50px, calc(100 / var(--design-width) * 100vw), 100px);
}
.s .other {
  margin-top: 20vw;
}
.other-title {
  font-size: clamp(
    calc(30 / var(--root-font-size) * 1rem),
    calc(60 / var(--design-width) * 100vw),
    calc(60 / var(--root-font-size) * 1rem)
  );
  font-weight: 800;
  line-height: 1;
  color: #fff;
  position: relative;
  padding-top: 9.7vw;
  text-align: center;
  width: 100%;
  z-index: 2;
  font-style: italic;
}

.other-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.s .other-container {
  gap: 12px;
}
.other-box {
  position: relative;
  display: flex;
  justify-content: center;
  align-self: center;
  gap: 20px;
  width: 100%;
}
.s .other-box {
  flex-direction: column;
  gap: 12px;
}

.other-item {
  width: 100%;
  color: #fff;
  background: linear-gradient(90deg, rgba(0, 134, 222, 0.3) 0%, rgba(0, 134, 222, 0.21) 100%);
  padding: 40px 20px 20px 40px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  height: 160px;
  position: relative;
  text-decoration: none;
}
.other-item:hover {
  opacity: 1;
}
.s .other-item {
  height: 100px;
  padding: 5vw;
}
.other-item._middle {
  height: 240px;
}
.s .other-item._middle {
  height: 140px;
}
.other-itemTitle {
  font-family: 'Jost', sans-serif;
  font-size: clamp(
    calc(20 / var(--root-font-size) * 1rem),
    calc(40 / var(--design-width) * 100vw),
    calc(40 / var(--root-font-size) * 1rem)
  );
  font-weight: 800;
  line-height: 1;
}
.s .other-itemTitle {
  font-size: calc(22 / var(--root-font-size) * 1rem);
}
.other-text {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: clamp(
    calc(10 / var(--root-font-size) * 1rem),
    calc(20 / var(--design-width) * 100vw),
    calc(20 / var(--root-font-size) * 1rem)
  );
  line-height: 1;
  margin-top: 20px;
}
.s .other-text {
  font-size: calc(14 / var(--root-font-size) * 1rem);
  margin-top: 2vw;
}
.other-itemBtn {
  position: absolute;
  right: 20px;
  bottom: 20px;
}
.other-itemBtn:hover {
  opacity: 1;
}
.s .other-itemBtn {
  right: 5vw;
  bottom: 5vw;
}

/* TOP NEWS */

