@charset "UTF-8";
/*-----------------------------------------

※このスタイルシートはSCSSで生成されています。
cssへの直記入はなさらないようにしてください。

-----------------------------------------*/
/* 変数の定義
--------------------------------------------------*/
/*-----------------------------------------

※このスタイルシートはSCSSで生成されています。
cssへの直記入はなさらないようにしてください。

-----------------------------------------*/
/*-----------------------------------------

※このスタイルシートはSCSSで生成されています。
cssへの直記入はなさらないようにしてください。

-----------------------------------------*/
/* 色の定義
--------------------------------------------------*/
/* 色のクラス
--------------------------------------------------*/
.white {
  color: #fff;
}

.black {
  color: #000;
}

.blue {
  color: #2953ED;
}

.orange {
  color: #D56300;
}

/* フォントの定義
--------------------------------------------------*/
html,
body,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
img,
svg,
table,
tr,
th,
td,
a,
figure {
  font-family: "Noto Sans JP", serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.6;
  color: #000;
}

body,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
img,
svg,
a,
table,
tr,
th,
td,
figure {
  font-size: 1.6rem;
}
@media screen and (max-width: 999px) {
  body,
  ul,
  ol,
  dl,
  li,
  dt,
  dd,
  p,
  div,
  img,
  svg,
  a,
  table,
  tr,
  th,
  td,
  figure {
    font-size: 1.4rem;
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Noto Sans JP", serif;
  font-optical-sizing: auto;
  font-style: normal;
  letter-spacing: 0.05em;
  line-height: 1.4;
  font-weight: 700;
  color: #000;
}

/*-----------------------------------------

※このスタイルシートはSCSSで生成されています。
cssへの直記入はなさらないようにしてください。

-----------------------------------------*/
/*-----------------------------------------

※このスタイルシートはSCSSで生成されています。
cssへの直記入はなさらないようにしてください。

-----------------------------------------*/
/* 共通
--------------------------------------------------*/
body {
  word-break: break-word;
}

a {
  transition-duration: 0.3s;
  animation-timing-function: cubic-bezier(0.83, 0, 0.17, 1);
}

span {
  color: inherit;
  font-size: inherit;
  font-family: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  line-height: inherit;
}

section {
  position: relative;
  z-index: 1;
}

span.word {
  display: inline-block;
}

/* 404
--------------------------------------------------*/
/* ---------- Hero (KV) ---------- */
.hero {
  position: relative;
  min-height: 770px;
  background: transparent;
  /* KV用のスケール変数（フォントサイズに連動） */
  --kv-fs: clamp(28px, 7vw, 80px);
  --kv-line: 1.6;
  --kv-left-text: calc(var(--kv-fs) * 1.25); /* 100px相当 @fs=80px */
  --kv-left-band: calc(var(--kv-fs) * 1); /* 80px相当 @fs=80px */
  --kv-top-text: calc(var(--kv-fs) * 2); /* 212px相当 @fs=80px */
  --kv-top-band1: calc(var(--kv-fs) * 2.125); /* 225px相当 @fs=80px */
  --kv-top-band2: calc(var(--kv-top-band1) + var(--kv-fs) * var(--kv-line)); /* 2行目は1行分下 */
  --kv-band-height: calc(var(--kv-fs) * 1.425); /* 114px相当 @fs=80px */
  --kv-band1-width: calc(var(--kv-fs) * 10.95); /* 876px相当 @fs=80px */
  --kv-band2-width: calc(var(--kv-fs) * 10.4); /* 832px相当 @fs=80px */
  /* 日本語キャッチの行数（英字の位置計算用）。改行数に応じて調整 */
  --kv-ja-lines: 2;
  /* 参考ミックスインで微調整（小さめ画面向け） */
  /* 初期状態（非表示・少し移動） */
  /* ロード後に順次表示 */
}
@media screen and (max-width: 768px) {
  .hero {
    /* SPでは日本語キャッチの見た目に合わせて数値を固定 */
    --kv-fs: 50px; /* .kv-ja の font-size と一致させる */
    --kv-top-text: 50px; /* .kv-ja の top と一致させる */
    --kv-ja-lines: 4; /* sp改行に合わせて4行想定 */
    /* 帯の位置を日本語キャッチに追従させる（1本目＝1行目、2本目＝3行目） */
    --kv-top-band1: calc(var(--kv-top-text));
    --kv-top-band2: calc(var(--kv-top-text) + var(--kv-fs) * var(--kv-line) * 2);
    min-height: 500px;
  }
}
.hero .hero-stage {
  position: relative;
  height: 770px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .hero .hero-stage {
    height: 600px;
    text-align: center;
  }
}
.hero .kv-bgbox {
  position: absolute;
  left: var(--kv-left-band);
  right: auto;
  background: rgba(7, 7, 53, 0.6);
  backdrop-filter: blur(10px);
}
.hero .kv-bgbox.kv-bg1 {
  top: var(--kv-top-band1);
  width: var(--kv-band1-width);
  height: var(--kv-band-height);
}
.hero .kv-bgbox.kv-bg2 {
  top: var(--kv-top-band2);
  width: var(--kv-band2-width);
  height: var(--kv-band-height);
}
@media screen and (max-width: 768px) {
  .hero .kv-bgbox {
    display: none;
  }
}
.hero .kv-ja {
  position: absolute;
  left: var(--kv-left-text);
  top: var(--kv-top-text);
  margin: 0;
  font-family: "Shippori Mincho B1", serif;
  font-weight: 800;
  font-size: var(--kv-fs);
  line-height: var(--kv-line);
  letter-spacing: 0.05em;
  color: #fff;
  text-shadow: 0 0 15px rgba(0, 0, 0, 0.41);
}
@media screen and (max-width: 768px) {
  .hero .kv-ja {
    position: static;
    top: auto;
    left: auto;
    right: auto;
    font-size: clamp(16px, 12.8vw, 50px);
    text-align: center;
    margin-inline: auto;
    margin-top: 100px;
  }
  .hero .kv-ja .line {
    display: inline;
    background: rgba(7, 7, 53, 0.6);
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
    padding: 0 0.2em;
  }
}
.hero .kv-en {
  position: absolute;
  left: var(--kv-left-text);
  top: calc(var(--kv-top-text) + var(--kv-ja-offset, 0px) + var(--kv-fs) * var(--kv-line) * var(--kv-ja-lines) + 45px);
  margin: 0;
  font-family: "EB Garamond", serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.6;
  letter-spacing: 0.05em;
  color: #fff;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  padding-right: 10px;
  /* SPでは日本語キャッチの直後に通常フローで配置し、50px下に固定 */
}
@media screen and (max-width: 999px) {
  .hero .kv-en {
    font-size: 14px;
  }
}
@media screen and (max-width: 768px) {
  .hero .kv-en {
    position: static;
    top: auto;
    left: auto;
    right: auto;
    margin-top: 50px;
    margin-inline: auto;
    text-align: center;
    padding-right: 0;
  }
}
.hero .kv-en br {
  display: none;
}
@media screen and (max-width: 999px) {
  .hero .kv-en br {
    display: block;
  }
}
.hero .scroll-indicator {
  position: absolute;
  right: 100px;
  top: 650px;
  width: 1px;
  height: 120px;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .hero .scroll-indicator {
    right: auto;
    left: 20px;
    top: 500px;
  }
}
.hero .scroll-indicator .line {
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
}
.hero .scroll-indicator .line.long {
  height: 120px;
  border-left: 1px solid #B6B6B6;
}
.hero .scroll-indicator .line.short {
  height: 30px;
  border-left: 1px solid #FFFFFF;
  left: 0px;
  z-index: 10;
}
.hero .scroll-indicator .scroll-text {
  position: absolute;
  top: 0px;
  left: 19px;
  transform: rotate(90deg);
  transform-origin: left top;
  font-family: "EB Garamond", serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.05em;
  width: 60px;
}
@media screen and (max-width: 768px) {
  .hero .scroll-indicator .scroll-text {
    font-size: 10px;
    left: 15px;
  }
}
.hero .kv-bgbox,
.hero .kv-ja,
.hero .kv-en {
  opacity: 0;
  will-change: transform, opacity;
}
.hero .kv-bgbox {
  transform: translateX(-20px);
}
.hero .kv-ja,
.hero .kv-en {
  transform: translateY(16px);
}
.hero.is-animated .kv-bgbox.kv-bg1 {
  animation: kvBandIn 0.9s cubic-bezier(0.2, 0.6, 0.2, 1) 0.2s forwards;
}
.hero.is-animated .kv-bgbox.kv-bg2 {
  animation: kvBandIn 0.9s cubic-bezier(0.2, 0.6, 0.2, 1) 0.35s forwards;
}
.hero.is-animated .kv-ja {
  animation: kvFadeUp 0.8s cubic-bezier(0.2, 0.6, 0.2, 1) 0.45s forwards;
}
.hero.is-animated .kv-en {
  animation: kvFadeUp 0.8s cubic-bezier(0.2, 0.6, 0.2, 1) 0.85s forwards;
}
@media (prefers-reduced-motion: reduce) {
  .hero .kv-bgbox,
  .hero .kv-ja,
  .hero .kv-en {
    opacity: 1;
    transform: none;
    animation: none !important;
  }
}

/* 画面背面に固定するKVレイヤ */
.kv-fixed {
  position: fixed;
  inset: 0;
  z-index: -1;
  background: url("../img/top/pc_kv.webp") center/cover no-repeat;
  min-height: 100vh; /* Fallback */
  min-height: calc(var(--vh, 1vh) * 100);
}
@media screen and (max-width: 768px) {
  .kv-fixed {
    background: url("../img/top/sp_kv.jpg") center/cover no-repeat;
  }
}

/* 英文KV */
.en_hero {
  --kv-fs: clamp(28px, 3.9vw, 54px);
  --kv-top-text: calc(var(--kv-fs) * 4);
  --kv-right-margin: clamp(24px, 3vw, 64px);
  --kv-band1-width: 0px;
  --kv-band2-width: 0px;
  --kv-ja-lines: 2;
  --kv-line: 1.7;
}

/* 英文は字間をやや詰めて帯内に収める */
.en_hero .kv-ja {
  letter-spacing: 0.03em;
  font-family: "EB Garamond", serif;
}
@media screen and (max-width: 768px) {
  .en_hero .kv-ja {
    font-size: 35px;
    width: 90%;
  }
}
.en_hero .kv-ja .line {
  display: inline;
  background: rgba(7, 7, 53, 0.6);
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  padding: 0.1em 0.2em;
}

/* 矩形帯自体は非表示（英語時） */
.en_hero .kv-bgbox {
  display: none;
}

/* KV用キーフレーム */
@keyframes kvBandIn {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes kvFadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* ---------- News ---------- */
.news {
  padding: 72px 0;
  background: #F5F6F9;
}
@media screen and (max-width: 768px) {
  .news {
    padding: 60px 0 80px;
  }
}
.news .container {
  width: calc(100% - 14.2857vw);
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .news .container {
    width: 90%;
  }
}
.news .news-grid {
  display: grid;
  grid-template-columns: 330px 1fr;
  gap: clamp(16px, 3vw, 40px);
}
@media screen and (max-width: 999px) {
  .news .news-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}
@media screen and (max-width: 999px) {
  .news .news-side .title-ja {
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 999px) {
  .news .news-side .btn {
    display: none;
  }
}
.news .news-list {
  display: grid;
}
.news .news-list li {
  display: flex;
  justify-content: space-between;
  gap: 50px;
  border-bottom: 1px solid #2953ED;
  padding: 30px 0;
}
@media screen and (max-width: 768px) {
  .news .news-list li {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 20px 0;
  }
}
.news .news-date {
  color: #858585;
  font-weight: 700;
  width: 110px;
  letter-spacing: 0.05em;
  font-size: 14px;
}
@media screen and (max-width: 768px) {
  .news .news-date {
    width: 100%;
  }
}
.news .news-text {
  color: #000;
  font-weight: 600;
  line-height: 1.6;
  width: calc(100% - 60px);
}
@media screen and (max-width: 768px) {
  .news .news-text {
    width: 100%;
  }
}
.news .sp-btn {
  display: none;
}
@media screen and (max-width: 999px) {
  .news .sp-btn {
    margin-top: 40px;
    display: inline-flex;
  }
}

html[lang=en-US] .news .title-en {
  margin-bottom: 10px !important;
}

/* ---------- Company ---------- */
.company .company-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0px;
  width: 100%;
  margin-inline: 0;
}
@media screen and (max-width: 768px) {
  .company .company-inner {
    grid-template-columns: 1fr;
  }
}
.company .company-col.bg {
  min-height: 521px;
  position: relative;
  /* 背景ぼかしは疑似要素で実装（backdrop-filterは使わない） */
  background: none;
  overflow: hidden;
  /* ぼかし用の背景レイヤ */
  /* 色味のオーバーレイ */
}
@media screen and (max-width: 768px) {
  .company .company-col.bg {
    min-height: auto;
  }
}
.company .company-col.bg::before {
  content: "";
  position: absolute;
  inset: -30px; /* blurのにじみ対策 */
  background: url("../img/top/pc_kv.webp") center/cover no-repeat fixed;
  filter: blur(30px);
  transform: scale(1.05);
  z-index: 0;
  width: 130%;
  height: 130%;
}
@media screen and (max-width: 768px) {
  .company .company-col.bg::before {
    background: url("../img/top/sp_kv.jpg") center/cover no-repeat fixed;
  }
}
.company .company-col.bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(27, 34, 59, 0.12);
  z-index: 1;
  width: 110%;
  height: 110%;
}
.company .company-col.bg .company-overlay {
  position: relative;
  z-index: 2;
  padding: 15%;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .company .company-col.bg .company-overlay {
    padding: 60px 5%;
  }
}
.company .company-col.bg .company-overlay .title-ja {
  color: #fff;
}
.company .company-col.content {
  align-content: center;
  background: #fff;
  padding: 60px clamp(50px, 7.14vw, 100px);
  width: 100%;
}
@media screen and (max-width: 768px) {
  .company .company-col.content {
    padding: 40px 5%;
  }
}
.company .content-inner {
  max-width: 500px;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .company .content-inner {
    max-width: none;
  }
}
.company .catch-ja {
  font-family: "Shippori Mincho B1", serif;
  font-weight: 700;
  font-size: clamp(16px, 2.7vw, 40px);
  line-height: 1.7;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .company .catch-ja {
    font-size: clamp(20px, 6.9vw, 27px);
  }
}
.company .lead {
  font-family: "Noto Sans JP", "Noto Sans CJK JP", sans-serif;
  max-width: 500px;
  margin-inline: auto;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .company .lead {
    max-width: none;
  }
}

html[lang=en-US] .company .catch-ja {
  font-family: "EB Garamond", serif !important;
}

/* ---------- Profile ---------- */
.profile {
  background: #F5F6F9;
}
.profile .container {
  width: 100%;
  margin-inline: 0;
}
@media screen and (max-width: 768px) {
  .profile .container {
    width: 90%;
    margin-inline: auto;
  }
}
.profile .profile-inner {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .profile .profile-inner {
    flex-direction: column;
  }
}
.profile .profile-col.content {
  width: 60%;
  padding: 7%;
}
@media screen and (max-width: 768px) {
  .profile .profile-col.content {
    width: 100%;
    padding: 60px 0;
  }
}
.profile .profile-col.content .lead {
  margin-bottom: 40px;
}
.profile .profile-col.content .title-en {
  margin-bottom: 0;
}
.profile .profile-col.media {
  overflow: hidden;
  width: 40%;
}
@media screen and (max-width: 768px) {
  .profile .profile-col.media {
    width: 100vw;
    margin-left: -5vw;
    margin-right: -5vw;
    max-width: 100vw;
    margin-bottom: 40px;
  }
}
.profile .profile-col.media img {
  width: 100%;
  height: 100%;
  background: #F4F4F4;
  object-fit: cover;
}
.profile .catch-ja {
  font-size: clamp(16px, 2.7vw, 40px);
  font-family: "Shippori Mincho B1", serif;
  font-weight: 800;
  line-height: 1.7;
  letter-spacing: 0.05em;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .profile .catch-ja {
    font-size: clamp(20px, 6.9vw, 27px);
  }
}

html[lang=en-US] .profile .catch-ja {
  font-family: "EB Garamond", serif !important;
}

/* ---------- Partners ---------- */
.partners {
  background: #fff;
}
.partners .container {
  width: 100%;
  margin-inline: 0;
}
.partners .partners-inner {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .partners .partners-inner {
    flex-direction: column;
  }
}
.partners .partners-col.media {
  width: 60%;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .partners .partners-col.media {
    width: 100%;
  }
}
.partners .partners-col.media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.partners .partners-col.content {
  padding: 7%;
  width: 40%;
}
@media screen and (max-width: 768px) {
  .partners .partners-col.content {
    width: 90%;
    padding: 60px 0;
    margin-inline: auto;
  }
}
.partners .partners-col.content .lead {
  margin-bottom: 40px;
  font-size: clamp(1.2rem, 1.4vw, 1.6rem);
}
.partners .partners-col.content .title-en {
  margin-bottom: 0;
}

html[lang=en-US] .partners .title-en {
  margin-bottom: 10px !important;
}/*# sourceMappingURL=top.css.map */