@charset "utf-8";

/* 画面幅表示ボックス:後で消す */
.viewport-width-display {
  display: none;
  position: fixed;
  top: 10px;
  right: 10px;
  padding: 5px 10px;
  font-size: 12px;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  z-index: 99999;
  border-radius: 4px;
}

/* ファーストビュー */
.top-fv {
  position: relative;
  background-image: url(../img/top-fv-pc.jpg);
  background-size: cover;
  background-position: center 34%;
  /* background-position: 100% center; */
  height: 140vh;
  /* height: 146dvh; */
}

/*1000px以下のとき以下を採用*/
@media (max-width: 1000px) {
  .top-fv {
    background-position: right -4rem top 0;
    height: 126vh;
  }
}

/*1000px以下のとき以下を採用*/
@media (max-width: 798px) {
  .top-fv {
    background-position: right -84px top -1px;
    background-size: 163% auto;
    background-repeat: no-repeat;
    height: 126vh;
  }
}
/*600px以下のとき以下を採用*/
@media (max-width: 600px) {
  .top-fv {
    height: 90vh;
  }
}
/*1000px以下のとき以下を採用*/
@media (max-width: 450px) {
  .top-fv {
    background-position: right -110px top 0px;
    background-size: 175% auto;

    height: 67vh;
  }
}

.top-fv-left {
  position: absolute;
  /* 上からの距離 → 画面高さに対する比率 */
  top: 23.5vh;
  /* 左からの距離 → 画面幅に対する比率 */
  left: 8vw;
  /* コピーエリアの幅 → 画面幅に対する比率 */
  width: 35vw;
  /* 行が長くなりすぎないよう上限もつける */
  max-width: 35vw;
  min-width: 36vw;
}

/*768px以下のとき以下を採用*/
@media (max-width: 1000px) {
  .top-fv-left {
    left: 4vw;
    width: 45vw;
    max-width: 47vw;
  }
}

@media (max-width: 500px) {
  .top-fv-left {
    top: 17rem;

    /* 左からの距離 → 画面幅に対する比率 */
    width: 50%;
    /* 行が長くなりすぎないよう上限もつける */
    max-width: 50%;
    min-width: 50%;
  }
}

.top-fv-copy-wrapper {
  position: relative;
}
.top-fv-left-wrapper {
}
.top-fv-copy-main {
  display: inline-block;
  padding: 45px 0;
  position: relative;
  /* font-size: clamp(3rem, 6.2vw, 10rem); */
  width: 80%;
}
.top-fv-big-logo {
  color: #fff;
}
/*1000px以下のとき以下を採用*/
@media (max-width: 1000px) {
  .top-fv-copy-main {
    display: block;
    padding: 45px 0;
    position: relative;
    font-size: clamp(3rem, 6.2vw, 10rem);
  }
}

.top-fv-copy-main::before {
  display: none;
  /* 疑似要素を表示 */
  content: "";
  /* 絶対配置 */
  position: absolute;
  /* 左端に合わせる */
  left: 0;
  /* 右端に合わせる */
  right: 0;
  /* 上端の位置 */
  top: 0;
  /* 高さ（模様画像の高さに合わせて調整） */
  height: 22px;
  /* 模様画像を指定 */
  background-image: url("../img/top-fv-line.svg");
  /* 横方向にリピート */
  background-repeat: repeat-x;
  /* 高さ方向をフィットさせる */
  background-size: auto 100%;
}

.top-fv-copy-main::after {
  display: none;

  /* 疑似要素を表示 */
  content: "";
  /* 絶対配置 */
  position: absolute;
  /* 左端に合わせる */
  left: 0;
  /* 右端に合わせる */
  right: 0;
  /* 上端の位置 */
  bottom: 0;
  /* 高さ（模様画像の高さに合わせて調整） */
  height: 22px;
  /* 模様画像を指定 */
  background-image: url("../img/top-fv-line.svg");
  /* 横方向にリピート */
  background-repeat: repeat-x;
  /* 高さ方向をフィットさせる */
  background-size: auto 100%;
}

/* scroll用のコード */
/* SCROLLセット全体 */
.scroll-indicator {
  position: absolute;
  top: calc(100% + 50px);
  left: 38%;

  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 45px;
}

/*1000px以下のとき以下を採用*/
@media (max-width: 1000px) {
  .scroll-indicator {
    left: 37%;
  }
}

/*600px以下のとき以下を採用*/
@media (max-width: 600px) {
  .scroll-indicator {
    display: none;
  }
}

/* 「SCROLL」を縦書きに */
.scroll-indicator__text {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: 12px;
  letter-spacing: 0.2em;

  /* ← 追加：上下反転 */
  transform: rotate(180deg);
}

.arrow {
  position: relative;
  display: inline-block;
  width: 1px;
  height: 210px;
  margin-top: 3px;
  border-radius: 9999px;
  background-color: #6b4bff;
}

/*1000px以下のとき以下を採用*/
@media (max-width: 1000px) {
  .arrow {
    height: 15rem;
  }
}

.arrow::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: calc(50% - 1px);
  width: 1px;
  height: 22px;
  border-radius: 9999px;
  background-color: #6b4bff;
  transform: rotate(-14deg);
  transform-origin: 50% calc(100% - 3px);
}

/* 20周年ロゴ */
.top-fv-catch-right {
  display: none;
  width: 20vw;
  position: absolute;
  bottom: -5rem;
  right: 2rem;
}

/*1000px以下のとき以下を採用*/
@media (max-width: 1000px) {
  .top-fv-catch-right {
    width: 23vw;

    bottom: 0;
    right: 1rem;
  }
}

/*650px以下のとき以下を採用*/
@media (max-width: 650px) {
  .top-fv-catch-right {
    width: 23vw;

    bottom: 6rem;
    right: 1rem;
  }
}

/*450px以下のとき以下を採用*/
@media (max-width: 450px) {
  .top-fv-catch-right {
    width: 25vw;

    bottom: 8rem;
    left: 0;
  }
}

/* top-fvのキャッチコピー */

.top-fv-catch-container {
  position: relative;
  font-size: 6.9vw;
  font-family: var(--oubun-font);
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 2.66px;
  line-height: 1.06;
  margin-left: 4rem;
  margin-bottom: 1.8rem;
}

/*768px以下のとき以下を採用*/
@media (max-width: 768px) {
  .top-fv-catch-container {
    font-size: clamp(25px, 8vw, 47px);
    margin-left: 2rem;
  }
}

.top-fv-bottom-catch-wrapper {
  margin-top: clamp(10rem, 9vw, 17rem);
}
@media (max-width: 900px) {
  .top-fv-bottom-catch-wrapper {
    margin-top: 0px;
  }
}

.top-fv-bottom-catch {
  /* position: absolute; */
  padding-bottom: clamp(8rem, 20vw, 30rem);
}

.fv-accent {
  color: var(--ili-t-color);
}

.top-fv-bottom-catch-p ::before {
}

.top-fv-bottom-catch-p {
  display: inline-block;
  padding-top: 1rem;
  border-top: 1px solid var(--ili-t-color);
  color: var(--ili-t-color);
}

.top-fv-bottom-catch-p p {
  margin-left: 4rem;
  letter-spacing: 2.32px;
  font-family: var(--japan-font);
  color: var(--ili-t-color);
  font-size: clamp(2rem, 1.5vw, 33.5rem);
}

/*768px以下のとき以下を採用*/
@media (max-width: 768px) {
  .top-fv-bottom-catch-p p {
    margin-left: 2rem;
  }
}

.top-fv-br-sp {
  display: none;
}

@media (max-width: 470px) {
  .top-fv-br-sp {
    display: block;
  }
}

/*--------------------- */
/* トップメッセージ */
/* --------------------- */

.top-message {
  background-color: #fcfbff;
}

/*1280px以下のとき以下を採用*/
@media (max-width: 1280px) {
  .top-message {
    background-image: url(../img/top-message-sp-bg.jpg);
    background-size: cover;
  }
}

.top-message-top {
  font-size: 3rem;
}

.top-message-container-in-bg {
  background-image: url(../img/top-message-inner-bg.png);
  background-position: center bottom;
  background-repeat: no-repeat;
}

.top-message-container {
  margin-left: 3.1vw;
  text-align: left;
  padding: 30rem 0 50rem;
}

/*1280px以下のとき以下を採用*/
@media (max-width: 1280px) {
  .top-message-container {
    margin-left: 3.1vw;
    text-align: left;
    padding: 25rem 0 25rem;
  }
}
/*768px以下のとき以下を採用*/
@media (max-width: 768px) {
  .top-message-container {
    margin: 0 2rem;
    text-align: left;
    padding: 10rem 0 15rem;
  }

  .top-message-container-in-bg {
    background-image: url(../img/top-message-inner-bg.png);
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: auto 76%;
  }
}

.top-message-title {
  position: relative;
  padding-left: 32vw;
  color: var(--ili-t-color);
  font-family: var(--oubun-font);
  letter-spacing: 2.7px;
  padding-bottom: 20rem;
}

/*768px以下のとき以下を採用*/
@media (max-width: 768px) {
  .top-message-title {
    text-align: center;
    padding-left: 0;
    padding-bottom: 10rem;
  }
}

.top-message-img-bg {
  position: absolute;
  background-color: var(--ili-t-color);
  width: 62vw;
  height: 43vw;
  left: 0;
  top: 10vw;
}

/*1280px以下のとき以下を採用*/
@media (max-width: 1280px) {
  .top-message-img-bg {
    width: 60%;
    height: clamp(20%, 55vw, 48rem);
    top: clamp(20%, 32vw, 19rem);
    left: -4rem;
  }
}

/*768px以下のとき以下を採用*/
@media (max-width: 768px) {
  .top-message-img-bg {
    display: none;
  }
}

/* タイトルテキストのすぐ左に線を出すためのラッパー */
.top-message-title-wrapper {
  position: relative;
  display: inline-block;
  padding-left: 60px;
}

/*768px以下のとき以下を採用*/
@media (max-width: 768px) {
  .top-message-title-wrapper {
    padding-left: 0;
  }
}

/* 左側の横線 */
.top-message-title-wrapper::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 40px; /* 線の長さ：ここを調整 */
  height: 1px; /* 線の太さ */
  background-color: var(--ili-t-color);
  transform: translateY(-50%);
}

/*768px以下のとき以下を採用*/
@media (max-width: 768px) {
  .top-message-title-wrapper::before {
    display: none;
  }
}

/* top-message-img */

.top-message-img {
  position: relative;
  /* ↑画像右のテキスト用 */
  padding-left: 32vw;
  margin-bottom: 20rem;
}
/*1100px以下のとき以下を採用*/
@media (max-width: 1100px) {
  .top-message-img {
    padding-left: 37vw;
  }
}

/*768px以下のとき以下を採用*/
@media (max-width: 768px) {
  .top-message-img {
    position: relative;
    /* ↑画像右のテキスト用 */
    padding-left: 0;
    margin-bottom: 10rem;
  }
}

/*768px以下のとき以下を採用*/
@media (max-width: 768px) {
  .top-message-img img {
    filter: drop-shadow(-5rem -2rem 0rem #6037b7);
  }
}

.top-message-img-left-text {
  position: absolute;
  top: 0;
  left: 0;
  padding-left: 5.8rem;
}

/*768px以下のとき以下を採用*/
@media (max-width: 1000px) {
  .top-message-img-left-text {
    padding-left: 0;
  }
}

@media (max-width: 768px) {
  .top-message-img-left-text {
    display: none;
  }
}

.top-message-img-left-text-wrapper {
  margin-bottom: clamp(2rem, 16vw, 30rem);
  border-left: 1px solid rgb(255, 255, 255, 0.5);
  padding-left: 7.8rem;
  /* 元2vW */
}

/*1280px以下のとき以下を採用*/
@media (max-width: 1480px) {
  .top-message-img-left-text-wrapper {
    margin-bottom: clamp(2rem, 4vw, 6rem);
    padding-left: 1.8rem;
  }
}

.top-message-img-left-text-wrapper p {
  color: #fff;
}

.top-message-img-left-text-wrapper-sp {
  display: none;
}

/*768px以下のとき以下を採用*/
@media (max-width: 768px) {
  .top-message-img-left-text-wrapper-sp {
    position: relative;
    display: block;
    margin-top: 7rem;
  }
}

/* トップメッセージ左側ＩＬＩロゴ */
.top-message-img-left-logo {
  padding-left: 7.8rem;
  width: clamp(20%, 18vw, 100%);
}

/*1280px以下のとき以下を採用*/
@media (max-width: 1480px) {
  .top-message-img-left-logo {
    padding-left: 1.8rem;
    width: clamp(20%, 18vw, 100%);
  }
}

.top-message-text {
  padding-left: 32vw;
}

/*768px以下のとき以下を採用*/
@media (max-width: 768px) {
  .top-message-text {
    padding-left: 0;
  }
}

.top-message-text-wrapper {
  position: relative;
  margin-right: 8vw;
}

.top-message-text-wrapper p {
  margin-bottom: 5rem;
}

/*768px以下のとき以下を採用*/
@media (max-width: 768px) {
  .top-message-text-wrapper {
    margin-right: 0;
  }

  .top-message-text-wrapper p {
    margin-bottom: 5rem;
  }
}

/* 見出し＋線のコンテナ */
.top-message-heading {
  display: flex;
  align-items: center;
  margin-bottom: 7rem;
}

.top-message-heading-2 {
  margin-bottom: 4.7rem;
}

/* 見出しテキスト */
.top-message-text-h3 {
  color: var(--ili-t-color);
  margin-right: 3.8rem; /* 文字と線の間隔 */
  font-size: 1.9rem;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 1.28px;
}

/* 右側の横線（wrapper内に収める） */
.top-message-heading::after {
  content: "";
  flex: 1; /* 余った幅いっぱいに伸びる */
  height: 1px;
  background-color: var(--ili-t-color);
  opacity: 0.4;
}

/* topメッセージここまで */

/* ---------------------
PHILOSOPHY PC
--------------------- */
.top-philosophy {
  background-image: url(../img/top-philosophy-bg.jpg);
  background-position: right center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}

.top-philosophy-sp {
  display: none;
}

.top-philosophy-container {
  display: flex;
  flex-direction: row;
}

.top-philosophy-container::before {
  /* 疑似要素を表示 */
  content: "";
  /* 絶対配置 */
  position: absolute;
  /* 左端に合わせる */
  left: 0;
  /* 右端に合わせる */
  right: 0;
  /* 上端の位置 */
  top: -20px;
  /* 高さ（模様画像の高さに合わせて調整） */
  height: 22px;
  /* 模様画像を指定 */
  background-image: url("../img/top-fv-line.svg");
  /* 横方向にリピート */
  background-repeat: repeat-x;
  /* 高さ方向をフィットさせる */
  background-size: auto 100%;
  opacity: 0.5;
}

.top-philosophy-container::after {
  /* 疑似要素を表示 */
  content: "";
  /* 絶対配置 */
  position: absolute;
  /* 左端に合わせる */
  left: 0;
  /* 右端に合わせる */
  right: 0;
  /* 上端の位置 */
  bottom: -20px;
  /* 高さ（模様画像の高さに合わせて調整） */
  height: 22px;
  /* 模様画像を指定 */
  background-image: url("../img/top-fv-line.svg");
  /* 横方向にリピート */
  background-repeat: repeat-x;
  /* 高さ方向をフィットさせる */
  background-size: auto 100%;
  opacity: 0.5;
}

.top-philosophy-container-left {
  text-align: center;
  width: 50%;
  padding-top: 12vw;
  padding-bottom: 8.7vw;
}

.top-philosophy-container-right {
}

.top-philosophy-heading {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.5vw;
}

.top-philosophy-heading-main {
  font-family: var(--oubun-font);
  font-size: 3rem;
  font-weight: 400;
  line-height: 1.26;
  /* 126.667% 38px*/
  letter-spacing: 2.4px;
  color: var(--ili-t-color);
}
.top-philosophy-heading-sub {
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 400;
  line-height: 2.57; /* 257.143% */
  letter-spacing: 1.12px;
  color: var(--ili-t-color);
}

/* VIEW MOREボタン用 */

/* ボタン全体 */
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  padding: 12px 28px;
  border: 1px solid #5a2a73;
  color: #5a2a73;
  border-radius: 999px;
  font-size: 1.3rem;
  letter-spacing: 2px;
  text-decoration: none;
  transition: 0.3s ease;
  font-family: var(--oubun-font);
}

/* ホバー時（色反転） */
.btn-outline,
.btn-circle-outline:hover {
  /* background: #5a2a73; */
  /* color: #fff; */
  transform: scale(1.05);
  transition: 0.3s ease;
}

/* アイコン画像 */
.btn-icon img {
  width: 6px; /* ★画像サイズはここで固定 */
  height: auto; /* 比率を維持 */
  display: block; /* 行間のズレ防止 */
}

/* ホバー時に矢印を右へ */
.btn-outline:hover .btn-icon img {
  transform: translateX(4px);
  transition: 0.3s ease;
}

/* ---------------------
PHILOSOPHY-スマホ用
--------------------- */

.top-philosophy-container-sp {
  padding: 10rem 0 7rem;
}

/*768px以下のとき以下を採用*/
@media (max-width: 768px) {
  .top-philosophy {
    display: none;
  }
  .top-philosophy-sp {
    display: block;
    position: relative;
  }

  .top-philosophy-heading-sp {
    display: flex;
    flex-direction: column;
    margin-bottom: 2rem;
  }

  .top-philosophy-heading-main-sp {
    font-family: var(--oubun-font);
    font-size: 3rem;
    font-weight: 400;
    line-height: 1.26;
    /* 126.667% 38px*/
    letter-spacing: 2.4px;
    color: var(--ili-t-color);
  }
  .top-philosophy-heading-sub-sp {
    font-family: "Noto Sans JP";
    font-size: 1.4rem;
    font-style: normal;
    font-weight: 400;
    line-height: 2.57; /* 257.143% */
    letter-spacing: 1.12px;
    color: var(--ili-t-color);
  }
  .top-philosophy-sp-img img {
    width: 100%;
  }

  .top-philosophy-container-left-sp {
    text-align: center;
    margin: 0 auto;
    width: 90%;
    padding-bottom: 8.7vw;
  }

  .top-philosophy-container-sp::before {
    /* 疑似要素を表示 */
    content: "";
    /* 絶対配置 */
    position: absolute;
    /* 左端に合わせる */
    left: 0;
    /* 右端に合わせる */
    right: 0;
    /* 上端の位置 */
    top: -20px;
    /* 高さ（模様画像の高さに合わせて調整） */
    height: 22px;
    /* 模様画像を指定 */
    background-image: url("../img/top-fv-line.png");
    /* 横方向にリピート */
    background-repeat: repeat-x;
    /* 高さ方向をフィットさせる */
    background-size: auto 100%;
    opacity: 0.5;
  }

  .top-philosophy-container-sp::after {
    /* 疑似要素を表示 */
    content: "";
    /* 絶対配置 */
    position: absolute;
    /* 左端に合わせる */
    left: 0;
    /* 右端に合わせる */
    right: 0;
    /* 上端の位置 */
    bottom: -20px;
    /* 高さ（模様画像の高さに合わせて調整） */
    height: 22px;
    /* 模様画像を指定 */
    background-image: url("../img/top-fv-line.png");
    /* 横方向にリピート */
    background-repeat: repeat-x;
    /* 高さ方向をフィットさせる */
    background-size: auto 100%;
    opacity: 0.5;
  }
}

/* ---------------------
ABOUT US
--------------------- */

.top-about-us {
  background-image: url(../img/top-about-us-bg.svg);

  background-size: 80vw auto;
  background-position: center 85%;

  background-repeat: no-repeat;
}

/*1300px以下のとき以下を採用*/
@media (max-width: 1300px) {
  .top-about-us {
    background-size: 80% auto;
    background-position: center 62%;
  }
}

/*768px以下のとき以下を採用*/
@media (max-width: 768px) {
  .top-about-us {
    background-image: url(../img/top-about-us-bg.svg);

    background-size: 133vw auto;
    background-position: center 25%;
  }
}

.top-about-us-container {
  padding: 30rem 0;
}

/*768px以下のとき以下を採用*/
@media (max-width: 768px) {
  .top-about-us-container {
    padding: 15rem 0 15rem;
  }
}

.top-about-us-heading {
  text-align: center;
  margin-bottom: 30rem;
}
/*768px以下のとき以下を採用*/
@media (max-width: 768px) {
  .top-about-us-heading {
    margin-bottom: 15rem;
  }
}

.top-about-us-heading-main {
  font-family: var(--oubun-font);
  font-size: 3rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.26; /* 126.667% */
  letter-spacing: 2.4px;
  color: var(--ili-t-color);
}

/* ↓カードリンク部分 */

/* 4枚のカード全体レイアウト */
.top-about-us-cards {
  /* 2列×2行で並べる */
  display: grid;
  /* 列数を指定 */
  grid-template-columns: repeat(2, 1fr);
  /* 画像同士の隙間なし */
  gap: 0;
  background-color: var(--ili-t-color);
}

/* 各カード共通 */
.top-about-us-card {
  /* 背景画像を敷く親 */
  position: relative;
  /* 高さ（デザインに合わせて調整） */
  height: 28vw;
  /* 中央寄せのためのflex28vw */
  display: flex;
  /* 縦方向中央 */
  align-items: center;
  /* 横方向中央 */
  justify-content: center;
  /* 下線を消す */
  text-decoration: none;
  /* 文字色は白 */
  color: #ffffff;
  /* 画像ははみ出さない */
  overflow: hidden;
  /* 背景画像のトリミング */
  background-size: cover;
  /* 背景画像の位置 */
  background-position: center;

  transition: transform 0.4s ease;
}
.top-about-us-card:hover {
  transform: scale(0.98);
}
/* 紫帯（共通） */
.top-about-us-card::before {
  /* 擬似要素を表示 */
  content: "";
  /* 位置基準をカード全体に */
  position: absolute;
  /* 左端から配置 */
  left: 0;
  /* 右端まで伸ばす */
  right: 0;
  /* 帯の高さ */
  height: 80px;
  /* 紫の半透明帯 */
  background: rgba(111, 84, 187, 0.4);
  /* 縦位置を中央に */
  top: 50%;
  /* 完全中央揃え */
  transform: translateY(-50%);
}

/* テキストボックス */
.top-about-us-card-text {
  /* 紫帯より前面に出す */
  position: relative;
  /* 中央揃え */
  text-align: center;
  /* 擬似要素より上に表示 */
  z-index: 2;
}

/* 見出し全体 */
.top-about-us-card-text h3 {
  /* 縦方向にメインとサブを積む */
  display: flex;
  /* 縦並び */
  flex-direction: column;
  /* 行間の余白 */
  gap: 0px;
  color: #fff;
}

/* 英語タイトル */
.top-about-us-card-main {
  font-family: var(--oubun-font);
  font-size: 3rem;
  font-weight: 400;
  letter-spacing: 2.4px;
  margin-top: -0.6rem;
  margin-bottom: -0.5rem;
}

/*768px以下のとき以下を採用*/
@media (max-width: 768px) {
  .top-about-us-card-main {
    font-size: 2rem;
    margin-top: -0.6rem;
    margin-bottom: 0.1rem;
  }
}

/* 日本語サブタイトル */
.top-about-us-card-sub {
  font-size: 1.2rem;
  letter-spacing: 1px;
}
/* 文字専用影 */
.top-about-us-card-main,
.top-about-us-card-sub {
  text-shadow: 0 4px 4px rgba(80, 53, 122, 0.35);
}

/* 各カードごとの背景画像 */
.top-about-us-card1 {
  /* 1枚目の背景画像 */
  background-image: url("../img/top-about-us-company-bg.jpg");
}

.top-about-us-card2 {
  /* 2枚目の背景画像 */
  background-image: url("../img/top-about-us-business-bg.jpg");
}

.top-about-us-card3 {
  /* 3枚目の背景画像 */
  background-image: url("../img/top-about-us-strategy-bg.jpg");
}

.top-about-us-card4 {
  /* 4枚目の背景画像 */
  background-image: url("../img/top-about-us-owned-bg.jpg");
}

/* スマホ時は1列表示にする例 */
@media (max-width: 768px) {
  .top-about-us-cards {
    /* 1列に変更 */
    grid-template-columns: 1fr;
  }
  .top-about-us-card {
    /* 高さを少し低めに調整 */
    height: 22rem;
  }
}

/* ↑カードリンク部分 */

/* ---------------------
NEWS
--------------------- */

.top-news-heading-main {
  font-family: var(--oubun-font);
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  line-height: 38px; /* 126.667% */
  letter-spacing: 2.4px;
  color: var(--ili-t-color);
}
.top-news-heading {
  text-align: center;
  margin-bottom: 30rem;
}
/*768px以下のとき以下を採用*/
@media (max-width: 768px) {
  .top-news-heading {
    text-align: center;
    margin-bottom: 10rem;
  }
}

/* news リスト */

.top-news-container {
}

/* ULの余白を全削除 */
.top-news-list {
  width: 50%;
  margin: 0 auto 100px;
}

/*768px以下のとき以下を採用*/
@media (max-width: 768px) {
  .top-news-list {
    width: 90%;
    margin: 0 auto 100px;
  }
}

/* 各記事 */
.top-news-item {
  border-bottom: 1px solid var(--text-color); /* 下線 */
}

.top-news-item:first-child {
  border-top: 1px solid var(--text-color);
}

/* 1記事全体がリンク */
.top-news-item a {
  gap: 24px; /* 日付とタイトルの間 */
  padding: 20px 0;
  text-decoration: none;
  color: var(--text-color);
  transition: 0.3s ease;
}

/* ホバー時（上品に少し右へ動く） */
.top-news-item a:hover {
  opacity: 0.7;
  transform: translateX(4px);
}

/* 日付 */
.top-news-date {
  display: block;
  font-size: 14px;
  color: var(--ili-t-color);
  font-family: var(--oubun-font);
  letter-spacing: 1px;
  margin-bottom: 24px;
  padding-top: 66px;
}

/* タイトル */
.top-news-title {
  display: block;

  font-size: 15px;
  color: var(--text-color);
  letter-spacing: 1.2px;
  padding-bottom: 100px;
}
/* ---------------------
NEWSリストここまで
--------------------- */

.top-news-more-wrapper {
  text-align: right;
  padding-right: 16rem;
  padding-bottom: 20rem;
}
/*768px以下のとき以下を採用*/
@media (max-width: 768px) {
  .top-news-more-wrapper {
    padding-right: 0;
    padding-bottom: 10rem;
  }
}

.circle-btn {
  width: 4.5rem; /* 円の大きさ */
  border-radius: 50%; /* これで円になる */
  display: flex; /* 中の点を中央揃え */
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.btn-circle-outline {
  display: inline-flex;
  align-items: center;
  gap: 1.6rem;
  padding: 1.2rem 2.8rem;
  color: #5a2a73;
  border-radius: 999px;
  font-size: 13px;
  letter-spacing: 2px;
  text-decoration: none;
  transition: 0.3s ease;
  font-family: var(--oubun-font);
}
