@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Heebo:wght@100..900&family=Noto+Sans+JP:wght@100..900&family=Zen+Old+Mincho:wght@400;500;600;700&display=swap");
/* ボックスサイズ初期化 */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* html / body 初期化 */
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  color: #000;
  background: #fff;
  margin: 0;
  padding: 0;
}

/* 各要素の余白をリセット */
body,
h1, h2, h3, h4, h5, h6,
p, ul, ol, li,
figure, blockquote, dl, dd {
  margin: 0;
  padding: 0;
}

/* テキスト要素のフォント系リセット */
address, caption, cite, code, dfn, em, strong, th, var {
  font-style: normal;
  font-weight: normal;
}

h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
  font-weight: normal;
}

/* リストのデフォルトスタイルを削除 */
ul, ol {
  list-style: none;
}

/* テーブルの見た目を初期化 */
table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}

/* フォーム要素をフラットに＆継承設定 */
input,
textarea,
select,
button {
  font: inherit;
  color: inherit;
  background: transparent;
  border: none;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  border-radius: 0;
}

/* テキストエリアは縦リサイズ可 */
textarea {
  resize: vertical;
  display: block;
}

/* チェックボックスやラジオボタンはデザイン前提で非表示に */
input[type=checkbox],
input[type=radio] {
  display: none;
}

/* 操作可能な要素にカーソル */
button,
label,
select,
input[type=submit],
input[type=button] {
  cursor: pointer;
}

/* select の三角形を非表示（モダンブラウザ） */
select::-ms-expand {
  display: none;
}

/* aタグの初期スタイルを削除 */
a {
  text-decoration: none;
  color: inherit;
}

/* imgタグの余白・幅の制御 */
img {
  display: block;
  width: 100%;
  height: auto;
}

/* SVGもblockで扱いやすく */
svg {
  display: block;
}

/* mainタグをblockに（IE対応不要なら削除してOK） */
main {
  display: block;
}

/* なめらかなフォント表示（Mac用） */
* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* 本文text14/R (パンくず/フッター）*/
/* button (ボタン/タグ/ヘッダー）*/
/* 本文text16/R (本文テキスト）*/
/* 本文text18/M (本文テキスト）*/
/* 本文text18/high (本文テキスト）*/
/* 本文text24/M (本文テキスト）*/
/* 本文text32/M (本文テキスト）*/
/* 本文text36/M (タイトルなど）*/
/* 14rs */
/* 14R */
/* 14m */
/* 16r */
/*16m*/
/* 16b */
/* 18r */
/* 20m */
body {
  font-size: 1rem;
  line-height: 2;
  letter-spacing: 2px;
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif;
  color: #444C55;
  background: #FAFAFA;
  position: relative;
}
body.is-fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  z-index: 9999;
}

a[href^="tel:"] {
  pointer-events: auto;
}
@media screen and (max-width: 767px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

.header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  height: 68px;
  z-index: 99;
  transition: background-color 0.3s;
}
.header.scrolled {
  background-color: #FAFAFA;
}
@media screen and (max-width: 1023px) {
  .header {
    height: 60px;
  }
}

.header-inner {
  width: 100%;
  height: 100%;
  padding-left: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 1279px) {
  .header-inner {
    padding-left: 20px;
  }
}
@media screen and (max-width: 1023px) {
  .header-inner {
    padding-left: 30px;
  }
}
@media screen and (max-width: 767px) {
  .header-inner {
    padding-left: 0;
  }
}

.header-logo {
  width: 400px;
}
@media screen and (max-width: 1279px) {
  .header-logo {
    width: 330px;
  }
}

.header-logo__link {
  transition: opacity 0.3s;
}
@media (hover: hover) and (pointer: fine) {
  .header-logo__link:hover {
    opacity: 0.6;
  }
}

.header-drawer {
  display: none;
}
@media screen and (max-width: 1023px) {
  .header-drawer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    width: 64px;
    height: 100%;
    background: linear-gradient(90deg, #69A7D3 0%, #72CDE2 100%);
    position: relative;
    z-index: 99;
  }
  .header-drawer.is-checked .header-drawer-bar:nth-child(1) {
    top: 4px;
    transform: rotate(25deg);
  }
  .header-drawer.is-checked .header-drawer-bar:nth-child(2) {
    top: 4px;
    transform: rotate(-25deg);
  }
}

@media screen and (max-width: 1023px) {
  .header-drawer__icon {
    display: block;
    width: 27px;
    height: 8px;
    position: relative;
  }
}

@media screen and (max-width: 1023px) {
  .header-drawer-bar {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2.57px;
    background-color: #FAFAFA;
    border-radius: 8px;
    transition: all 0.3s;
  }
  .header-drawer-bar:nth-child(1) {
    top: 0;
  }
  .header-drawer-bar:nth-child(2) {
    bottom: 0;
  }
}

@media screen and (max-width: 1023px) {
  .header-drawer__text {
    font-family: "Heebo", sans-serif;
    font-size: 0.625rem;
    line-height: 1.2;
    letter-spacing: 1px;
    font-weight: 300;
    color: #FAFAFA;
  }
}

.header-nav {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 40px;
}
@media screen and (max-width: 1279px) {
  .header-nav {
    gap: 24px;
  }
}
@media screen and (max-width: 1023px) {
  .header-nav {
    position: fixed;
    top: 60px;
    right: 0;
    width: 100%;
    height: 620px;
    background-color: #FAFAFA;
    padding-block: 48px;
    padding-inline: 100px;
    flex-direction: column;
    justify-content: start;
    gap: 44px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    /* ハンバーガーの影 */
  }
  .header-nav::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: calc(100% + 60px); /* nav + header */
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.6s;
  }
}
@media screen and (max-width: 767px) {
  .header-nav {
    padding-inline: 32px;
  }
}
.header-nav.is-checked {
  transform: translateX(0);
}
.header-nav.is-checked::before {
  opacity: 1;
}

.header-nav__list {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 40px;
}
@media screen and (max-width: 1279px) {
  .header-nav__list {
    gap: 24px;
  }
}
@media screen and (max-width: 1023px) {
  .header-nav__list {
    width: 100%;
    flex-direction: column;
    align-items: start;
    gap: 0;
  }
}

@media screen and (max-width: 1023px) {
  .header-nav__item {
    width: 100%;
  }
}

@media screen and (max-width: 1023px) {
  .header-nav__link {
    display: inline-flex;
    align-items: end;
    justify-content: start;
    gap: 16px;
    width: 100%;
    padding-block: 24px;
    position: relative;
  }
  .header-nav__link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, #69A7D3 0%, #72CDE2 100%);
  }
}
@media (hover: hover) and (pointer: fine) {
  .header-nav__link:hover .header-nav__title-jp {
    color: #053391;
    font-weight: 500;
  }
}

.header-nav__contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 190px;
  height: 100%;
  color: #FAFAFA;
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: 3px;
  font-weight: 400;
  transition: color 0.3s;
  position: relative;
  z-index: 1;
  /* グラデーション背景（ふわっと切り替えるため擬似要素使用） */
}
.header-nav__contact::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #69A7D3 0%, #72CDE2 100%);
  opacity: 1;
  transition: opacity 0.3s;
  z-index: -1;
}
@media screen and (max-width: 1279px) {
  .header-nav__contact {
    min-width: 140px;
  }
}
@media screen and (max-width: 1023px) {
  .header-nav__contact {
    min-width: 0;
    width: 100%;
    height: 52px;
    border-radius: 58px;
    overflow: hidden;
  }
}
@media (hover: hover) and (pointer: fine) {
  .header-nav__contact:hover {
    color: #444C55;
  }
  .header-nav__contact:hover::before {
    opacity: 0;
  }
}

.header-nav__title-jp,
.header-nav__title-en {
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: 3px;
  font-weight: 400;
}

@media screen and (max-width: 1279px) {
  .header-nav__title-jp {
    letter-spacing: 2px;
  }
}
@media screen and (max-width: 1023px) {
  .header-nav__title-jp {
    font-size: 1.125rem;
    line-height: 1;
  }
}

.header-nav__title-en {
  display: none;
}
@media screen and (max-width: 1023px) {
  .header-nav__title-en {
    display: inline-block;
    font-size: 0.875rem;
    line-height: 1;
    letter-spacing: 3px;
    color: #6DA9D3;
  }
}

.footer {
  position: relative;
  z-index: 50;
  padding-block: 100px 26px;
  background-color: #EDF4FD;
}
@media screen and (max-width: 767px) {
  .footer {
    padding-block: 40px 16px;
  }
}

.footer-top {
  padding-bottom: 64px;
  display: flex;
  align-items: start;
  justify-content: space-between;
}
@media screen and (max-width: 1279px) {
  .footer-top {
    flex-direction: column;
    justify-content: start;
    gap: 52px;
  }
}
@media screen and (max-width: 767px) {
  .footer-top {
    padding-bottom: 32px;
    gap: 32px;
  }
}

.footer-logo {
  max-width: 400px;
  flex-shrink: 0;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 20px;
}
@media screen and (max-width: 1279px) {
  .footer-logo {
    margin-left: -20px;
    max-width: max-content;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}
@media screen and (max-width: 539px) {
  .footer-logo {
    max-width: 400px;
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
  }
}

.footer-logo__link {
  display: block;
  max-width: 460px;
  transition: opacity 0.3s;
}
@media (hover: hover) and (pointer: fine) {
  .footer-logo__link:hover {
    opacity: 0.8;
  }
}
@media screen and (max-width: 1279px) {
  .footer-logo__link {
    max-width: 400px;
  }
}

.footer-logo__img {
  aspect-ratio: 353/58;
  object-fit: contain;
}

@media screen and (max-width: 1023px) {
  .footer-nav {
    width: 100%;
    max-width: 800px;
  }
}
@media screen and (max-width: 767px) {
  .footer-nav {
    width: 100%;
    max-width: 640px;
  }
}
@media screen and (max-width: 539px) {
  .footer-nav {
    max-width: 100%;
  }
}
@media screen and (max-width: 539px) {
  .footer-nav.is-pc {
    display: none;
  }
}
.footer-nav.is-sp {
  display: none;
}
@media screen and (max-width: 539px) {
  .footer-nav.is-sp {
    display: block;
  }
}

.footer-nav__boxes {
  display: flex;
  align-items: start;
  gap: 72px;
}
@media screen and (max-width: 1279px) {
  .footer-nav__boxes {
    gap: 140px;
  }
}
@media screen and (max-width: 1023px) {
  .footer-nav__boxes {
    justify-content: space-between;
    gap: 72px;
  }
}
@media screen and (max-width: 767px) {
  .footer-nav__boxes {
    gap: 0;
  }
}

@media screen and (max-width: 1023px) {
  .footer-nav__box {
    max-width: 195px;
  }
}
@media screen and (max-width: 767px) {
  .footer-nav__box {
    min-width: 96px;
    max-width: 170px;
  }
}

.footer-nav__list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
@media screen and (max-width: 767px) {
  .footer-nav__list {
    gap: 22px;
  }
}
@media screen and (max-width: 539px) {
  .footer-nav__list .button-primary {
    width: 100%;
  }
}

.footer-nav__title,
.footer-nav__link {
  font-size: 1.125rem;
  line-height: 1.3333333333;
  letter-spacing: 3px;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .footer-nav__title,
  .footer-nav__link {
    font-size: 1rem;
    line-height: 1.5;
    letter-spacing: 1px;
    font-weight: 500;
  }
}

@media (hover: hover) and (pointer: fine) {
  .footer-nav__link:hover {
    color: #053391;
  }
}

.footer-subnav__list {
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media screen and (max-width: 767px) {
  .footer-subnav__list {
    margin-top: 18px;
    gap: 18px;
  }
}

@media screen and (max-width: 539px) {
  .footer-subnav__item {
    position: relative;
    padding-left: 16px;
  }
  .footer-subnav__item:before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 1px;
    background-color: #444C55;
  }
}

.footer-subnav__link {
  font-size: 0.875rem;
  line-height: 1.7142857143;
  letter-spacing: 2px;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .footer-subnav__link {
    font-size: 0.875rem;
    letter-spacing: 1px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .footer-subnav__link:hover {
    color: #053391;
  }
}

.footer-bottom {
  padding-top: 30px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  position: relative;
}
.footer-bottom::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 0.5px;
  width: 100%;
  background: linear-gradient(90deg, #69A7D3 0%, #72CDE2 100%);
}
@media screen and (max-width: 1023px) {
  .footer-bottom {
    padding-top: 16px;
    align-items: center;
    flex-direction: column;
    gap: 32px;
  }
}
@media screen and (max-width: 767px) {
  .footer-bottom {
    gap: 20px;
  }
}
@media screen and (max-width: 539px) {
  .footer-bottom {
    gap: 32px;
  }
}

.footer-references {
  display: flex;
  align-items: end;
  gap: 16px;
}
@media screen and (max-width: 767px) {
  .footer-references {
    gap: 12px;
  }
}
@media screen and (max-width: 539px) {
  .footer-references {
    gap: 10px;
  }
}

.footer-references__img {
  max-width: 194px;
}
.footer-references__img img {
  aspect-ratio: 194/57;
}
@media screen and (max-width: 767px) {
  .footer-references__img {
    max-width: 147px;
  }
  .footer-references__img img {
    aspect-ratio: 147/43;
  }
}

.footer-references__message {
  display: flex;
  align-items: center;
  font-size: 0.875rem;
  line-height: 1.8;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 1279px) {
  .footer-references__message {
    flex-direction: column;
    align-items: start;
  }
}
@media screen and (max-width: 767px) {
  .footer-references__message {
    flex-direction: row;
    font-size: 0.6875rem;
    letter-spacing: 0;
  }
}
@media screen and (max-width: 539px) {
  .footer-references__message {
    flex-direction: column;
  }
}

.footer-copyright {
  font-size: 0.875rem;
  line-height: 1.8;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .footer-copyright {
    font-size: 0.625rem;
    letter-spacing: 0;
  }
}

.inner {
  margin-inline: auto;
  width: 100%;
  max-width: 1260px;
  padding-inline: 30px;
}
@media screen and (max-width: 767px) {
  .inner {
    padding-inline: 32px;
  }
}

.inner-medium {
  margin-inline: auto;
  width: 100%;
  max-width: 1340px;
  padding-inline: 30px;
}
@media screen and (max-width: 767px) {
  .inner-medium {
    padding-inline: 16px;
  }
}

.inner-wide {
  margin-inline: auto;
  width: 100%;
  max-width: 1420px;
  padding-inline: 30px;
}
@media screen and (max-width: 767px) {
  .inner-wide {
    padding-inline: 16px;
  }
}

.page-section-inner {
  margin-inline: auto;
  max-width: 1100px;
  width: 100%;
  padding-inline: 30px;
}
@media screen and (max-width: 767px) {
  .page-section-inner {
    padding-inline: 16px;
  }
}

.button-primary {
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: 3px;
  font-weight: 400;
  display: inline-block;
  padding: 12px 36px;
  color: white;
  text-align: center;
  background: linear-gradient(90deg, #69A7D3 0%, #72CDE2 100%);
  border-radius: 58px;
  transition: all 0.3s;
  position: relative;
  /* hoverした時のグラデーション枠 */
}
.button-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 2px;
  border-radius: inherit;
  background: linear-gradient(90deg, #69A7D3 0%, #72CDE2 100%);
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 0;
  /* 内側をくり抜き → 枠だけ残す */
  -webkit-mask: linear-gradient(#fff, #fff) content-box, linear-gradient(#fff, #fff) border-box;
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .button-primary {
    padding: 11px 31px;
    font-size: 0.875rem;
    line-height: 1.7142857143;
    letter-spacing: 2px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .button-primary:hover {
    background: #FAFAFA;
    color: #444C55;
  }
  .button-primary:hover::before {
    opacity: 1;
  }
}

.button-primary--arrow {
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: 3px;
  font-weight: 400;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 12px 36px;
  color: white;
  text-align: center;
  background: linear-gradient(90deg, #69A7D3 0%, #72CDE2 100%);
  border-radius: 58px;
  transition: all 0.3s;
  position: relative;
  /* hoverした時のグラデーション枠 */
}
.button-primary--arrow::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 2px;
  border-radius: inherit;
  background: linear-gradient(90deg, #69A7D3 0%, #72CDE2 100%);
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 0;
  /* 内側をくり抜き → 枠だけ残す */
  -webkit-mask: linear-gradient(#fff, #fff) content-box, linear-gradient(#fff, #fff) border-box;
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.button-primary--arrow::after {
  content: "";
  display: block;
  width: 20px;
  height: 10px;
  background: url("../images/arrow-white.svg") no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .button-primary--arrow {
    padding: 11px 31px;
    font-size: 0.875rem;
    line-height: 1.7142857143;
    letter-spacing: 2px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .button-primary--arrow:hover {
    background: #FAFAFA;
    color: #444C55;
  }
  .button-primary--arrow:hover::before {
    opacity: 1;
  }
  .button-primary--arrow:hover::after {
    background-image: url("../images/arrow-black.svg");
  }
}

.button-link {
  padding-right: 42px;
  position: relative;
}
.button-link::before, .button-link::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.button-link {
  /* 丸枠 */
}
.button-link::before {
  width: 32px;
  aspect-ratio: 1/1;
  border-radius: 9999px;
  border: 1px solid transparent;
  background: linear-gradient(90deg, #69A7D3 0%, #72CDE2 100%);
  transition: all 0.3s ease;
}
.button-link {
  /* 矢印 */
}
.button-link::after {
  right: 8px;
  width: 16px;
  height: 8px;
  background: url("../images/arrow-white.svg") no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .button-link {
    font-size: 0.875rem;
    line-height: 1.7142857143;
    letter-spacing: 1px;
    font-weight: 400;
    padding-right: 32px;
  }
  .button-link::before {
    width: 24px;
  }
  .button-link::after {
    right: 5px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .button-link:hover::before {
    background: transparent;
    border-color: #6DA9D3;
    transition: all 0.3s ease;
  }
  .button-link:hover::after {
    background-image: url("../images/arrow-black.svg");
  }
}

.button-submit-wrapper {
  display: inline-flex;
  min-width: 182px;
  align-items: center;
  justify-content: center;
  padding: 12px 36px;
  color: #FAFAFA;
  text-align: center;
  background: linear-gradient(90deg, #69A7D3 0%, #72CDE2 100%);
  border-radius: 58px;
  position: relative;
}
.button-submit-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 2px;
  border-radius: inherit;
  background: linear-gradient(90deg, #69A7D3 0%, #72CDE2 100%);
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 0;
  /* 内側をくり抜き → 枠だけ残す */
  -webkit-mask: linear-gradient(#fff, #fff) content-box, linear-gradient(#fff, #fff) border-box;
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.button-submit-wrapper::after {
  content: "";
  display: inline-block;
  margin-left: 12px;
  width: 20px;
  height: 10px;
  background: url("../images/arrow-white.svg") no-repeat center/contain;
}
@media (hover: hover) and (pointer: fine) {
  .button-submit-wrapper:hover {
    background: #FAFAFA;
    color: #444C55;
  }
  .button-submit-wrapper:hover::before {
    opacity: 1;
  }
  .button-submit-wrapper:hover::after {
    display: none;
  }
}

.button-submit {
  width: 100%;
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: 3px;
  font-weight: 400;
}

.button-top {
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: 3px;
  font-weight: 400;
  display: inline-flex;
  min-width: 182px;
  align-items: center;
  justify-content: center;
  padding: 12px 36px;
  color: #FAFAFA;
  text-align: center;
  background: linear-gradient(90deg, #69A7D3 0%, #72CDE2 100%);
  border-radius: 58px;
  position: relative;
}
.button-top::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 2px;
  border-radius: inherit;
  background: linear-gradient(90deg, #69A7D3 0%, #72CDE2 100%);
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 0;
  /* 内側をくり抜き → 枠だけ残す */
  -webkit-mask: linear-gradient(#fff, #fff) content-box, linear-gradient(#fff, #fff) border-box;
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.button-top::after {
  content: "";
  display: inline-block;
  margin-left: 12px;
  width: 20px;
  height: 10px;
  background: url("../images/arrow-white.svg") no-repeat center/contain;
}
@media (hover: hover) and (pointer: fine) {
  .button-top:hover {
    background: #FAFAFA;
    color: #444C55;
  }
  .button-top:hover::before {
    opacity: 1;
  }
  .button-top:hover::after {
    display: none;
  }
}

.section-title {
  display: flex;
  flex-direction: column;
  align-items: start;
}

.section-title__en {
  font-size: 7.5rem;
  line-height: 1.1666666667;
  letter-spacing: 10px;
  font-weight: 300;
  color: #6DA9D3;
}
@media screen and (max-width: 1279px) {
  .section-title__en {
    font-size: 6.25rem;
  }
}
@media screen and (max-width: 1023px) {
  .section-title__en {
    font-size: 5rem;
  }
}
@media screen and (max-width: 767px) {
  .section-title__en {
    font-size: 3rem;
    line-height: 1.0833333333;
    letter-spacing: 4px;
  }
}

.section-title__jp {
  font-size: 1.5rem;
  line-height: 1.3333333333;
  letter-spacing: 8px;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .section-title__jp {
    font-size: 0.875rem;
    line-height: 1.7142857143;
    letter-spacing: 2px;
    font-weight: 500;
  }
}

.page-top {
  position: fixed;
  right: 0;
  display: inline-block;
  width: 72px;
  aspect-ratio: 1/1;
  background: linear-gradient(90deg, #69A7D3 0%, #72CDE2 100%);
  border-radius: 9999px;
  z-index: 50;
  transition: opacity 0.3s;
}
.page-top::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-90deg);
  width: 36px;
  height: 19px;
  background: url("../images/arrow-white.svg") no-repeat center/contain;
}
@media screen and (max-width: 1023px) {
  .page-top {
    width: 52px;
  }
  .page-top::after {
    width: 28px;
    height: 14px;
  }
}
@media screen and (max-width: 767px) {
  .page-top {
    width: 36px;
  }
  .page-top::after {
    width: 18px;
    height: 9px;
  }
}

.shape-section {
  position: absolute;
  pointer-events: none;
  z-index: -1;
  width: 240px;
  aspect-ratio: 1/1;
  top: -70px;
  left: -20px;
}
@media screen and (max-width: 1023px) {
  .shape-section {
    width: 200px;
  }
}
@media screen and (max-width: 767px) {
  .shape-section {
    width: 140px;
  }
}

.shape-page {
  position: fixed;
  top: 100px;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
  width: 120%;
  height: 100vh;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  transition: transform 0.3s;
}
@media screen and (max-width: 767px) {
  .shape-page {
    top: 70px;
  }
}
.shape-page .shape__blue {
  background: radial-gradient(circle, #b5d3eb, rgba(181, 211, 235, 0));
  width: 80%;
}
@media screen and (max-width: 767px) {
  .shape-page .shape__blue {
    width: 100%;
  }
}
.shape-page .shape__blue:nth-child(1) {
  margin-top: 200px;
}
@media screen and (max-width: 767px) {
  .shape-page .shape__blue:nth-child(1) {
    margin-top: 80px;
  }
}
.shape-page .shape__blue:nth-child(2) {
  margin-top: 500px;
  animation-delay: 0.5s;
}
@media screen and (max-width: 767px) {
  .shape-page .shape__blue:nth-child(2) {
    margin-top: 240px;
  }
}
.shape-page .shape__blue:nth-child(4) {
  margin-top: 340px;
  animation-delay: 1s;
}
@media screen and (max-width: 767px) {
  .shape-page .shape__blue:nth-child(4) {
    margin-top: 300px;
  }
}

.shape__blue {
  display: block;
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 9999px;
  background: radial-gradient(circle at center, rgba(56, 155, 237, 0.35) 0px, rgba(56, 155, 237, 0.35) 70px, rgba(56, 155, 237, 0) 200px);
  opacity: 0.75;
  filter: blur(clamp(28px, 5vw, 50px));
  animation: float-up 2.6s ease-in-out infinite alternate;
}
@media screen and (max-width: 767px) {
  .shape__blue {
    opacity: 0.8;
    animation: float-up-sp 2.6s ease-in-out infinite alternate;
  }
}

@keyframes float-up {
  0% {
    transform: translateY(-100px) scale(0.8);
  }
  100% {
    transform: translateY(0px) scale(1);
  }
}
@keyframes float-up-sp {
  0% {
    transform: translateY(-50px) scale(0.8);
  }
  100% {
    transform: translateY(0px) scale(1);
  }
}
.page-contents {
  position: relative;
  z-index: 5;
}

.page-kv {
  padding-block: 60px 40px;
  overflow-y: visible;
  overflow-x: clip;
  position: relative;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .page-kv {
    padding-block: 16px;
  }
}

.page-kv-title {
  display: flex;
  flex-direction: column;
}

.page-kv-title__en {
  font-family: "Heebo", sans-serif;
  color: #6DA9D3;
  font-size: 5rem;
  line-height: 1.1;
  letter-spacing: 10px;
  font-weight: 300;
}
@media screen and (max-width: 767px) {
  .page-kv-title__en {
    font-size: 3rem;
    line-height: 1.0833333333;
    letter-spacing: 4px;
  }
}

.page-kv-title__jp {
  font-size: 1.25rem;
  line-height: 1.3;
  letter-spacing: 8px;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .page-kv-title__jp {
    font-size: 0.875rem;
    line-height: 1.7142857143;
    letter-spacing: 2px;
    font-weight: 500;
  }
}

.page-kv-text {
  margin-top: 40px;
  font-size: 1.125rem;
  line-height: 1.8;
  letter-spacing: 8px;
}
@media screen and (max-width: 1023px) {
  .page-kv-text {
    font-size: 1rem;
    letter-spacing: 4px;
  }
}
@media screen and (max-width: 767px) {
  .page-kv-text {
    margin-top: 32px;
    line-height: 1.875;
    letter-spacing: 4px;
  }
}
@media screen and (max-width: 539px) {
  .page-kv-text {
    font-size: 1rem;
    line-height: 1.5;
    letter-spacing: 2px;
    font-weight: 400;
  }
}

.breadcrumb-list {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 8px;
}
@media screen and (max-width: 767px) {
  .breadcrumb-list {
    gap: 6px;
    flex-wrap: wrap;
  }
  .breadcrumb-list .breadcrumb-item:last-child(3) {
    flex-basis: 100%; /* 強制的に次の行に送る */
    text-align: right;
  }
}

.breadcrumb-item {
  color: #707B87;
}
.breadcrumb-item:not(:last-child) {
  display: inline-flex;
  gap: 8px;
}
.breadcrumb-item:not(:last-child)::after {
  content: "/";
  font-size: 0.875rem;
  line-height: 1.7142857143;
  letter-spacing: 2px;
  font-weight: 400;
  color: #707B87;
}
@media screen and (max-width: 767px) {
  .breadcrumb-item:not(:last-child) {
    gap: 6px;
  }
  .breadcrumb-item:not(:last-child)::after {
    font-size: 0.6875rem;
    line-height: 1.2727272727;
    letter-spacing: 1px;
  }
}

.breadcrumb-link {
  font-size: 0.875rem;
  line-height: 1.7142857143;
  letter-spacing: 2px;
  font-weight: 400;
  color: #707B87;
}
@media screen and (max-width: 767px) {
  .breadcrumb-link {
    font-size: 0.6875rem;
    line-height: 1.3636363636;
    letter-spacing: 2px;
  }
}
.breadcrumb-link.is-active {
  display: block;
  color: #444C55;
}

.pagination {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 40px;
}
.pagination .pagination-prev {
  grid-auto-columns: 1;
  justify-self: end;
}
.pagination .pagination-number {
  grid-column: 2;
  justify-self: center;
}
.pagination .pagination-next {
  grid-column: 3;
  justify-self: start;
}
@media screen and (max-width: 767px) {
  .pagination {
    gap: 0;
  }
  .pagination .pagination-prev {
    justify-self: start;
  }
  .pagination .pagination-next {
    justify-self: end;
  }
}

.pagination-single {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 95px;
}
.pagination-single .pagination-prev {
  grid-auto-columns: 1;
  justify-self: end;
}
.pagination-single .pagination-return {
  grid-column: 2;
  justify-self: center;
}
.pagination-single .pagination-next {
  grid-column: 3;
  justify-self: start;
}
@media screen and (max-width: 767px) {
  .pagination-single {
    gap: 0;
  }
  .pagination-single .pagination-prev {
    justify-self: start;
  }
  .pagination-single .pagination-next {
    justify-self: end;
  }
}

.pagination-number {
  display: flex;
  align-items: center;
  gap: 26px;
}

.pagination-item {
  font-family: "Heebo", sans-serif;
  font-size: 0.875rem;
  line-height: 1.7142857143;
  letter-spacing: 0;
  color: #707B87;
  transition: color 0.3s;
}
.pagination-item.is-active {
  color: #444C55;
}
@media (hover: hover) and (pointer: fine) {
  .pagination-item:hover {
    color: #444C55;
  }
}

.pagination-prev,
.pagination-next {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: #444C55;
}
.pagination-prev::after,
.pagination-next::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  display: inline-block;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  opacity: 0;
  transition: opacity 0.3s;
}
@media screen and (max-width: 767px) {
  .pagination-prev,
  .pagination-next {
    font-size: 0.875rem;
    line-height: 1.7142857143;
    letter-spacing: 1px;
    font-weight: 400;
  }
}
@media (hover: hover) and (pointer: fine) {
  .pagination-prev:hover::after,
  .pagination-next:hover::after {
    opacity: 1;
  }
}

.pagination-prev::before {
  content: "";
  margin-top: -2px;
  display: inline-block;
  width: 5px;
  height: 11px;
  background: url("../images/chevron-left.svg") no-repeat center/contain;
}

.pagination-next {
  flex-direction: row-reverse;
}
.pagination-next::before {
  content: "";
  margin-top: -2px;
  display: inline-block;
  width: 5px;
  height: 11px;
  background: url("../images/chevron-right.svg") no-repeat center/contain;
}

.pagination-return {
  color: #444C55;
  position: relative;
}
.pagination-return::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  display: inline-block;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  opacity: 0;
  transition: opacity 0.3s;
}
@media screen and (max-width: 767px) {
  .pagination-return {
    font-size: 0.875rem;
    line-height: 1.7142857143;
    letter-spacing: 1px;
    font-weight: 400;
  }
}
@media (hover: hover) and (pointer: fine) {
  .pagination-return:hover::after {
    opacity: 1;
  }
}

.cta {
  position: relative;
}

@media screen and (max-width: 767px) {
  .cta-inner {
    padding-inline: 16px;
  }
}

.cta-card {
  display: block;
  padding: 80px 100px;
  background-color: rgba(250, 250, 250, 0.45);
  border-radius: 22px;
  box-shadow: 4px 4px 18px rgba(0, 0, 0, 0.08);
  text-align: center;
  position: relative;
  z-index: 1;
  /* hoverした時のグラデーション枠線 */
}
.cta-card::after {
  content: "";
  position: absolute;
  inset: 0;
  padding: 3px;
  border-radius: inherit;
  background: linear-gradient(90deg, #69A7D3 0%, #72CDE2 100%);
  opacity: 0;
  transition: opacity 0.3s;
  /* 内側をくり抜き → 枠だけ残す */
  -webkit-mask: linear-gradient(#fff, #fff) content-box, linear-gradient(#fff, #fff) border-box;
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
@media screen and (max-width: 1023px) {
  .cta-card {
    padding-inline: 60px;
  }
}
@media screen and (max-width: 767px) {
  .cta-card {
    padding: 40px 15px;
    border-radius: 16px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .cta-card:hover {
    box-shadow: none;
  }
  .cta-card:hover::after {
    opacity: 1;
  }
  .cta-card:hover .button-primary--arrow {
    background: #FAFAFA;
    color: #444C55;
  }
  .cta-card:hover .button-primary--arrow::before {
    opacity: 1;
  }
  .cta-card:hover .button-primary--arrow::after {
    background-image: url("../images/arrow-black.svg");
  }
}

.cta-content {
  position: relative;
}

.cta-lead {
  font-size: 2.25rem;
  line-height: 1.7777777778;
  letter-spacing: 6px;
  font-weight: 500;
  color: #6DA9D3;
}
@media screen and (max-width: 1023px) {
  .cta-lead {
    font-size: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .cta-lead {
    font-size: 1.125rem;
    line-height: 1.3333333333;
    letter-spacing: 3px;
    font-weight: normal;
  }
}
@media screen and (max-width: 539px) {
  .cta-lead {
    letter-spacing: 2px;
  }
}

.cta-text {
  margin-top: 8px;
  font-size: 1.125rem;
  line-height: 2.2222222222;
  letter-spacing: 2px;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .cta-text {
    margin-top: 32px;
    font-size: 1rem;
    line-height: 1.5;
    letter-spacing: 2px;
  }
}

.cta-button-wrapper {
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .cta-button-wrapper {
    margin-top: 32px;
  }
}

.cta-decoration {
  overflow: hidden;
  white-space: nowrap;
  position: absolute;
  inset: 0;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: inline-flex;
  will-change: transform;
  z-index: 0;
}

.cta-decoration__text {
  display: inline-block;
  font-family: "Heebo", sans-serif;
  font-weight: 300;
  font-size: 13.75rem;
  line-height: normal;
  letter-spacing: 0.12em;
  color: #EDF4FD;
  animation: marquee 30s linear infinite;
}
@media screen and (max-width: 1023px) {
  .cta-decoration__text {
    font-size: 7.5rem;
  }
}
@media screen and (max-width: 767px) {
  .cta-decoration__text {
    font-size: 4.5rem;
    animation: marquee 20s linear infinite;
  }
}

.t-mv {
  height: 680px;
  position: relative;
}
@media screen and (max-width: 539px) {
  .t-mv {
    height: 485px;
  }
}

.t-mv-img {
  height: 100%;
  overflow: hidden;
}
.t-mv-img img {
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 1023px) {
  .t-mv-img img {
    transform: scale(1.2);
    object-position: center 160px;
  }
}
@media screen and (max-width: 767px) {
  .t-mv-img {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 85%;
  }
  .t-mv-img img {
    transform: scale(1.5);
    object-position: -120px 100px;
  }
}
@media screen and (max-width: 539px) {
  .t-mv-img img {
    object-position: -90px 80px;
  }
}

.t-mv-message {
  padding-left: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  width: 59%;
  position: absolute;
  inset: 0;
}
.t-mv-message::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(235, 242, 253, 0.88);
  clip-path: polygon(0 0, 100% 0, 79% 100%, 0% 100%);
  z-index: 1;
}
@media screen and (max-width: 1279px) {
  .t-mv-message {
    padding-left: 40px;
  }
}
@media screen and (max-width: 1023px) {
  .t-mv-message {
    width: 100%;
    padding: 40px 30px;
    justify-content: start;
  }
  .t-mv-message::before {
    clip-path: polygon(0 0, 100% 0, 100% 20%, 0% 73%);
    background: linear-gradient(to bottom, rgba(235, 242, 253, 0.96) 0%, rgba(235, 242, 253, 0.88) 100%);
  }
}
@media screen and (max-width: 767px) {
  .t-mv-message {
    padding-block: 40px;
  }
  .t-mv-message::before {
    clip-path: polygon(0 0, 100% 0, 100% 20%, 0% 66%);
    background: linear-gradient(to bottom, rgba(235, 242, 253, 0.9) 0%, rgba(235, 242, 253, 0.88) 100%);
  }
}
@media screen and (max-width: 539px) {
  .t-mv-message {
    padding: 16px 28px;
  }
}

.t-mv-lead,
.t-mv-text {
  z-index: 2;
}

.t-mv-lead {
  font-family: "Zen Old Mincho", serif;
  font-size: 3.75rem;
  font-weight: 900;
  letter-spacing: 9px;
  line-height: normal;
  position: relative;
}
.t-mv-lead::before {
  content: "";
  position: absolute;
  top: -30px;
  left: -90px;
  width: 240px;
  aspect-ratio: 1/1;
  background: radial-gradient(circle, #fcffd7 3%, #ebf2fd 100%);
  filter: blur(50px);
  z-index: -1;
}
@media screen and (max-width: 1279px) {
  .t-mv-lead {
    font-size: 2.875rem;
  }
}
@media screen and (max-width: 1023px) {
  .t-mv-lead {
    font-size: 3.25rem;
    letter-spacing: 5px;
  }
}
@media screen and (max-width: 767px) {
  .t-mv-lead {
    font-size: 2.75rem;
  }
}
@media screen and (max-width: 539px) {
  .t-mv-lead {
    font-size: 1.875rem;
    letter-spacing: 4px;
  }
}

.t-mv-text {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 6px;
}
@media screen and (max-width: 1279px) {
  .t-mv-text {
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 1023px) {
  .t-mv-text {
    letter-spacing: 4px;
  }
}
@media screen and (max-width: 539px) {
  .t-mv-text {
    font-size: 1rem;
    line-height: 1.7777777778;
    letter-spacing: 1px;
  }
}

.t-mv-decoration {
  overflow: hidden;
  white-space: nowrap;
  position: absolute;
  left: 0;
  bottom: -99px;
  width: 100%;
  z-index: 5;
}
@media screen and (max-width: 1023px) {
  .t-mv-decoration {
    bottom: -84px;
  }
}
@media screen and (max-width: 767px) {
  .t-mv-decoration {
    bottom: -42px;
  }
}

.t-mv-decoration__text {
  display: inline-block;
  font-family: "Heebo", sans-serif;
  font-weight: 300;
  font-size: 10.1875rem;
  line-height: normal;
  letter-spacing: 0.12em;
  background: linear-gradient(90deg, #eaf2ff 10%, #fdffd6 22%, #ebf2fd 43%);
  /*文字にだけ背景をクリップする */
  -webkit-background-clip: text;
  background-clip: text;
  /* 文字色を透明にして背景が見えるようにする */
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: marquee 60s linear infinite;
}
@media screen and (max-width: 1023px) {
  .t-mv-decoration__text {
    font-size: 7.5rem;
  }
}
@media screen and (max-width: 767px) {
  .t-mv-decoration__text {
    font-size: 4.5rem;
    letter-spacing: 4px;
    animation: marquee 20s linear infinite;
  }
}

.t-news {
  padding-block: 64px 80px;
  position: relative;
  z-index: 3;
}
@media screen and (max-width: 767px) {
  .t-news {
    padding-block: 48px 24px;
  }
}

.t-news-content {
  padding: 33px 40px;
  border-radius: 22px;
  background-color: #FAFAFA;
  box-shadow: 4px 4px 18px 0 rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  gap: 10%;
}
@media screen and (max-width: 1279px) {
  .t-news-content {
    gap: 50px;
  }
}
@media screen and (max-width: 1023px) {
  .t-news-content {
    flex-direction: column;
    align-items: start;
    gap: 16px;
  }
}
@media screen and (max-width: 767px) {
  .t-news-content {
    padding: 16px;
    border-radius: 16px;
  }
}

.t-news-head {
  width: 18%;
  flex-shrink: 0;
}
@media screen and (max-width: 1279px) {
  .t-news-head {
    width: 20%;
  }
}

.t-news-title {
  font-family: "Heebo", sans-serif;
  font-size: 4rem;
  font-weight: 300;
  line-height: normal;
  letter-spacing: 10px;
  color: #6DA9D3;
}
@media screen and (max-width: 1279px) {
  .t-news-title {
    font-size: 3.25rem;
  }
}
@media screen and (max-width: 767px) {
  .t-news-title {
    font-size: 1.5rem;
    line-height: 1.125;
    letter-spacing: 2px;
  }
}

.t-news-body {
  flex-grow: 1;
}
@media screen and (max-width: 1023px) {
  .t-news-body {
    width: 100%;
  }
}

.t-news-list {
  display: flex;
  flex-direction: column;
}

.t-news-item {
  list-style: none;
}
@media screen and (max-width: 767px) {
  .t-news-item:not(:first-child) {
    display: none;
  }
}

.t-news__button-wrapper {
  display: none;
}
@media screen and (max-width: 1023px) {
  .t-news__button-wrapper {
    margin-top: 24px;
    display: block;
    text-align: right;
  }
}

.t-about {
  padding-bottom: 72px;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .t-about {
    padding-bottom: 48px;
  }
}

.t-about-inner {
  max-width: 1440px;
  padding-right: 80px;
}
@media screen and (max-width: 1023px) {
  .t-about-inner {
    padding: 0;
  }
}

.t-about-content {
  position: relative;
}
@media screen and (max-width: 1023px) {
  .t-about-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

.t-about-img {
  width: 65%;
  border-radius: 0 20px 20px 0;
  overflow: hidden;
  position: relative;
}
.t-about-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(255, 255, 255, 0.6);
  border-radius: 0 20px 20px 0;
}
.t-about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 947/716;
}
@media screen and (max-width: 1023px) {
  .t-about-img {
    width: 100%;
    border-radius: 0;
  }
  .t-about-img::after {
    border-radius: 0;
  }
  .t-about-img img {
    aspect-ratio: 375/213;
  }
}

.t-about-message {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  max-width: 554px;
  padding: 40px;
  background-color: #FAFAFA;
  border-radius: 22px;
  box-shadow: 4px 4px 18px rgba(0, 0, 0, 0.08);
  z-index: 10;
  /* hoverした時のグラデーション枠線 */
}
.t-about-message::after {
  content: "";
  position: absolute;
  inset: 0;
  padding: 3px;
  border-radius: inherit;
  background: linear-gradient(90deg, #69A7D3 0%, #72CDE2 100%);
  opacity: 0;
  transition: opacity 0.3s;
  /* 内側をくり抜き → 枠だけ残す */
  -webkit-mask: linear-gradient(#fff, #fff) content-box, linear-gradient(#fff, #fff) border-box;
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
@media screen and (max-width: 1279px) {
  .t-about-message {
    width: 50%;
    padding: 30px;
  }
}
@media screen and (max-width: 1023px) {
  .t-about-message {
    position: relative;
    transform: none;
    margin-top: -32px;
    width: 91.4%;
    max-width: 100%;
    padding: 40px 60px;
  }
  .t-about-message::after {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .t-about-message {
    padding: 30px;
  }
}
@media screen and (max-width: 539px) {
  .t-about-message {
    padding: 18px 16px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .t-about-message:hover {
    box-shadow: none;
  }
  .t-about-message:hover::after {
    opacity: 1;
  }
  .t-about-message:hover .button-link::before {
    background: transparent;
    border-color: #6DA9D3;
    transition: all 0.3s ease;
  }
  .t-about-message:hover .button-link::after {
    background-image: url("../images/arrow-black.svg");
  }
}

.t-about-lead {
  font-size: 2rem;
  line-height: 1.75;
  letter-spacing: 2.8px;
  font-weight: 500;
}
@media screen and (max-width: 1279px) {
  .t-about-lead {
    font-size: 1.625rem;
  }
}
@media screen and (max-width: 767px) {
  .t-about-lead {
    font-size: 1.25rem;
    line-height: 1.3;
    letter-spacing: 6px;
    font-weight: 500;
  }
}

@media screen and (max-width: 767px) {
  .t-about-text {
    font-size: 1rem;
    line-height: 1.5;
    letter-spacing: 2px;
    font-weight: 400;
  }
}

.t-about__button-wrapper {
  margin-top: 92px;
  text-align: right;
}
@media screen and (max-width: 1279px) {
  .t-about__button-wrapper {
    margin-top: 40px;
  }
}
@media screen and (max-width: 767px) {
  .t-about__button-wrapper {
    margin-top: 8px;
  }
}

.t-service {
  z-index: 1;
}

@media screen and (max-width: 767px) {
  .t-service-text {
    font-size: 1rem;
    line-height: 1.5;
    letter-spacing: 2px;
    font-weight: 400;
  }
}

.t-service-content {
  margin-top: 64px;
  background: url("../images/service-cards-bg.jpg") no-repeat center/cover;
  position: relative;
}
.t-service-content::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(255, 255, 255, 0.6);
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .t-service-content {
    margin-top: 24px;
  }
}
@media screen and (max-width: 539px) {
  .t-service-content {
    background-position: -340px center;
  }
}

.t-service-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 1023px) {
  .t-service-cards {
    grid-template-columns: repeat(1, 1fr);
  }
}

.t-service-card {
  display: inline-block;
  box-shadow: 4px 4px 18px rgba(0, 0, 0, 0.08);
  border-radius: 22px;
  background-color: rgba(251, 252, 252, 0.64);
  padding: 24px;
  position: relative;
  /* hover時のグラデーション枠 */
}
.t-service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  padding: 3px;
  border-radius: inherit;
  background: linear-gradient(90deg, #69A7D3 0%, #72CDE2 100%);
  opacity: 0;
  transition: opacity 0.3s;
  /* 内側をくり抜き → 枠だけ残す */
  -webkit-mask: linear-gradient(#fff, #fff) content-box, linear-gradient(#fff, #fff) border-box;
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
@media screen and (max-width: 1023px) {
  .t-service-card {
    padding: 40px 60px;
  }
}
@media screen and (max-width: 767px) {
  .t-service-card {
    padding: 40px;
  }
}
@media screen and (max-width: 539px) {
  .t-service-card {
    padding: 32px 16px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .t-service-card:hover {
    box-shadow: none;
  }
  .t-service-card:hover::after {
    opacity: 1;
  }
  .t-service-card:hover .button-link::before {
    background: transparent;
    border-color: #6DA9D3;
    transition: all 0.3s ease;
  }
  .t-service-card:hover .button-link::after {
    background-image: url("../images/arrow-black.svg");
  }
}

.t-service-card__title {
  font-size: 2rem;
  line-height: 1.75;
  letter-spacing: 2.8px;
  font-weight: 500;
  color: #6DA9D3;
  text-align: center;
  min-height: 112px;
  display: grid;
  place-items: center;
}
@media screen and (max-width: 1279px) {
  .t-service-card__title {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 1023px) {
  .t-service-card__title {
    min-height: 0;
  }
}
@media screen and (max-width: 767px) {
  .t-service-card__title {
    font-size: 1.25rem;
    line-height: 1.3;
    letter-spacing: 6px;
    font-weight: 500;
  }
}

.t-service-card__text {
  margin-top: 32px;
  min-height: 192px;
}
@media screen and (max-width: 1023px) {
  .t-service-card__text {
    min-height: 0;
  }
}
@media screen and (max-width: 767px) {
  .t-service-card__text {
    margin-top: 16px;
    font-size: 1rem;
    line-height: 1.5;
    letter-spacing: 2px;
    font-weight: 400;
  }
}

.t-service-card__button-wrapper {
  margin-top: 52px;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .t-service-card__button-wrapper {
    margin-top: 16px;
  }
}

@media screen and (max-width: 767px) {
  .t-clients {
    margin-bottom: 36px;
  }
}

@media screen and (max-width: 767px) {
  .t-clients-text {
    font-size: 1rem;
    line-height: 1.5;
    letter-spacing: 2px;
    font-weight: 400;
  }
}

.t-clients__button-wrapper {
  width: 100%;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .t-clients__button-wrapper {
    margin-top: 32px;
  }
}

.t-clients-image {
  --h: 200px; /* 表示高さ */
  --tile: 1200px; /* 画像1枚ぶんの横幅（px） */
  --speed: 18s; /* 流れる速さ */
  width: 100%;
  height: var(--h);
  background-image: url("../images/clients-sample-pc.png");
  background-repeat: repeat-x;
  background-size: var(--tile) 100%;
  background-position: 0 50%;
  animation: loopScroll 16s linear infinite;
  will-change: background-position;
}
@media screen and (max-width: 767px) {
  .t-clients-image {
    --h: 140px;
    --tile: 800px;
    background-image: url("../images/clients-sample-sp.png");
  }
}

@keyframes loopScroll {
  from {
    background-position: 0 50%;
  }
  to {
    background-position: calc(-1 * var(--tile)) 50%;
  } /* ← 距離=タイル幅 */
}
.news-card {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 12px 8px;
  border-bottom: 1px solid #6DA9D3;
  transition: background-color 0.3s;
}
@media screen and (max-width: 767px) {
  .news-card {
    flex-direction: column;
    align-items: start;
    gap: 6px;
    padding-block: 18px;
    padding-inline: 0;
  }
  .news-card:active {
    background-color: #e8eef7;
  }
}
@media (hover: hover) and (pointer: fine) {
  .news-card:hover {
    background-color: #e8eef7;
  }
}

.news-card__head {
  display: flex;
  align-items: center;
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .news-card__head {
    gap: 6px;
  }
}

@media screen and (max-width: 767px) {
  .news-card__body {
    width: 100%;
    position: relative;
  }
}

@media screen and (max-width: 767px) {
  .news-card__title {
    padding-right: 16px;
    position: relative;
    font-size: 0.875rem;
    line-height: 1.7142857143;
    letter-spacing: 1px;
  }
  .news-card__title::after {
    content: "";
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 11px;
    background: url("../images/chevron-right.svg") no-repeat center/contain;
  }
}

.news-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 100px;
  background-color: #FAFAFA;
  border: 1px solid currentColor;
  border-radius: 22px;
  font-size: 0.75rem;
  line-height: 1.3333333333;
  letter-spacing: 0;
}
.news-label.is-important {
  color: #cf4343;
}
.news-label.is-news {
  color: #fcab6c;
}
.news-label.is-event {
  color: #66c15f;
}
.news-label.is-other {
  color: #053391;
}
@media screen and (max-width: 767px) {
  .news-label {
    font-size: 0.875rem;
    line-height: 1.4285714286;
    letter-spacing: 1px;
    font-weight: 400;
    min-width: 120px;
  }
}

.news-date {
  font-family: "Heebo", sans-serif;
  line-height: 1.5;
  letter-spacing: 2px;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .news-date {
    font-size: 0.875rem;
    line-height: 1.4285714286;
    letter-spacing: 1px;
  }
}

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

@media screen and (max-width: 767px) {
  .news-inner {
    max-width: 640px;
  }
}

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

.news-tab__list {
  display: flex;
  justify-content: center;
  gap: 8px;
}
@media screen and (max-width: 1023px) {
  .news-tab__list {
    width: 95%;
    margin-inline: auto;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
  }
}
@media screen and (max-width: 767px) {
  .news-tab__list {
    margin-inline: auto;
    width: 90%;
    display: flex;
    justify-content: start;
    flex-wrap: wrap;
    column-gap: 19px;
    row-gap: 16px;
  }
}

.news-tab__title {
  display: grid;
  place-items: center;
  min-width: 166px;
  height: 48px;
  background-color: #E1E1E1;
  border-radius: 12px 12px 0 0;
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: 3px;
  font-weight: 400;
}
@media screen and (max-width: 1023px) {
  .news-tab__title {
    min-width: 0;
    max-width: 166px;
    font-size: 0.875rem;
    line-height: 1.7142857143;
    letter-spacing: 1px;
  }
}
@media screen and (max-width: 767px) {
  .news-tab__title {
    height: 40px;
    border-radius: 8px;
    padding: 8px 12px;
    box-shadow: 4px 4px 18px rgba(0, 0, 0, 0.08);
  }
}
.news-tab__title.selected {
  color: #FAFAFA;
  font-weight: 700;
}
.news-tab__title.selected.is-all {
  background-color: #6DA9D3;
}
.news-tab__title.selected.is-important {
  background-color: #CF4343;
}
.news-tab__title.selected.is-news {
  background-color: #FCAB6C;
}
.news-tab__title.selected.is-event {
  background-color: #66C15F;
}
.news-tab__title.selected.is-other {
  background-color: #053391;
}

.news-tab__container {
  display: none;
}
@media screen and (max-width: 767px) {
  .news-tab__container {
    margin-top: 32px;
  }
}
.news-tab__container.show {
  display: block;
}
.news-tab__container .news-tab__box {
  padding: 48px 100px;
  background-color: #FAFAFA;
  box-shadow: 0 4px 23px rgba(0, 0, 0, 0.08);
  border-radius: 22px;
}
@media screen and (max-width: 1023px) {
  .news-tab__container .news-tab__box {
    padding: 40px;
  }
}
@media screen and (max-width: 767px) {
  .news-tab__container .news-tab__box {
    padding: 24px 16px 32px;
    border-radius: 16px;
  }
}

.news-single-content {
  position: relative;
  z-index: 1;
}

.news-single-inner {
  max-width: 1060px;
}

.news-single-head {
  padding-bottom: 8px;
  position: relative;
}
.news-single-head::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, #69A7D3 0%, #72CDE2 100%);
}
@media screen and (max-width: 767px) {
  .news-single-head {
    padding-bottom: 4px;
  }
}

.news-single-head__label {
  display: flex;
  align-items: center;
  gap: 32px;
  padding-block: 12px;
  padding-left: 20px;
  position: relative;
}
.news-single-head__label::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 12px;
  height: 100%;
  background: linear-gradient(90deg, #69A7D3 0%, #72CDE2 100%);
}
@media screen and (max-width: 767px) {
  .news-single-head__label {
    gap: 6px;
    padding-block: 0;
    padding-left: 12px;
  }
  .news-single-head__label::before {
    width: 4px;
  }
}

.news-single-title {
  margin-top: 44px;
  font-size: 2rem;
  line-height: 1.75;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .news-single-title {
    margin-top: 32px;
    font-size: 1rem;
    line-height: 1.5;
    letter-spacing: 2px;
    font-weight: 600;
  }
}

.news-single-body {
  margin-top: 56px;
  padding-bottom: 56px;
  position: relative;
}
.news-single-body::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, #69A7D3 0%, #72CDE2 100%);
}
.news-single-body > * + * {
  margin-top: 56px;
}
.news-single-body img {
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .news-single-body {
    margin-top: 28px;
    padding-bottom: 8px;
  }
  .news-single-body > * + * {
    margin-top: 24px;
  }
}

.contact {
  position: relative;
  z-index: 5;
}

.contact-inner {
  max-width: 1100px;
}
@media screen and (max-width: 767px) {
  .contact-inner {
    padding-inline: 16px;
  }
}

.contact-text {
  max-width: 78%;
  margin: 0 auto;
}
@media screen and (max-width: 1023px) {
  .contact-text {
    max-width: 90%;
  }
}
@media screen and (max-width: 767px) {
  .contact-text {
    max-width: 93%;
    font-size: 1rem;
    line-height: 1.5;
    letter-spacing: 2px;
    font-weight: 400;
    letter-spacing: 1px;
  }
}

.contact-attention {
  margin-inline: auto;
  margin-top: 12px;
  max-width: 78%;
  font-size: 0.9375rem;
}
@media screen and (max-width: 1023px) {
  .contact-attention {
    max-width: 90%;
    letter-spacing: 0;
  }
}
@media screen and (max-width: 767px) {
  .contact-attention {
    max-width: 93%;
    line-height: 1.5;
  }
}

.contact-card {
  padding: 80px 120px;
  background-color: #FAFAFA;
  border-radius: 64px;
  box-shadow: 4px 4px 18px rgba(0, 0, 0, 0.08);
}
@media screen and (max-width: 1023px) {
  .contact-card {
    border-radius: 32px;
  }
}
@media screen and (max-width: 767px) {
  .contact-card {
    padding: 32px 16px;
    border-radius: 22px;
  }
}

.contact-fields {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.contact-field {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-field-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  line-height: 2;
  letter-spacing: 2px;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .contact-field-label {
    font-size: 0.875rem;
    line-height: 1.7142857143;
    letter-spacing: 2px;
    font-weight: 500;
  }
}

.contact-field-tag {
  display: grid;
  place-items: center;
  height: 22px;
  width: 34px;
  background-color: #707B87;
  border-radius: 5px;
  font-size: 0.75rem;
  line-height: normal;
  letter-spacing: normal;
  font-weight: 600;
  color: #FAFAFA;
}
@media screen and (max-width: 767px) {
  .contact-field-tag {
    line-height: 1.3333333333;
    width: 38px;
    border-radius: 6px;
    font-weight: 500;
  }
}

.input-text {
  padding: 10px 18px;
  width: 100%;
  border: 1px solid #E1E1E1;
  border-radius: 5px;
  transition: border-color 0.3s;
}
.input-text::placeholder {
  color: #b1b1b1;
}
@media screen and (max-width: 767px) {
  .input-text {
    padding: 12px 16px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .input-text:hover {
    border-color: #6DA9D3;
  }
}
.input-text:focus {
  border-color: #6DA9D3;
}

.contact-field-text {
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .contact-field-text {
    font-size: 0.875rem;
    line-height: 1.7142857143;
    letter-spacing: 2px;
    font-weight: 500;
  }
}

.contact-textarea {
  padding: 16px 18px;
  width: 100%;
  min-height: 171px;
  border: 1px solid #E1E1E1;
  border-radius: 5px;
}
.contact-textarea::placeholder {
  color: #b1b1b1;
}
@media screen and (max-width: 767px) {
  .contact-textarea {
    padding: 12px 16px;
    min-height: 192px;
  }
  .contact-textarea::placeholder {
    font-size: 1rem;
    line-height: 1.5;
    letter-spacing: 2px;
    font-weight: 400;
  }
}
@media (hover: hover) and (pointer: fine) {
  .contact-textarea:hover {
    border-color: #6DA9D3;
  }
}
.contact-textarea:focus {
  border-color: #6DA9D3;
}

.contact-privacy {
  margin-top: 32px;
  margin-inline: auto;
  width: fit-content;
}

.wpcf7-list-item label input[type=checkbox]:checked + .wpcf7-list-item-label::before {
  border-color: #6DA9D3;
}
.wpcf7-list-item label input[type=checkbox]:checked + .wpcf7-list-item-label::after {
  opacity: 1;
}

.wpcf7-list-item-label {
  padding-left: 28px;
  position: relative;
}
.wpcf7-list-item-label::before, .wpcf7-list-item-label::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.wpcf7-list-item-label {
  /* 四角 */
}
.wpcf7-list-item-label::before {
  left: 0;
  width: 20px;
  height: 20px;
  border: 1px solid #E1E1E1;
  transition: border-color 0.3s;
}
.wpcf7-list-item-label {
  /* チェックアイコン */
}
.wpcf7-list-item-label::after {
  width: 16px;
  height: 16px;
  background: url("../images//check-icon.svg") no-repeat center/contain;
  left: 2px;
  opacity: 0;
  transition: opacity 0.3s;
}
.wpcf7-list-item-label a {
  text-decoration: underline;
}
@media screen and (max-width: 767px) {
  .wpcf7-list-item-label {
    font-size: 0.875rem;
    line-height: 1.7142857143;
    letter-spacing: 1px;
    font-weight: 400;
  }
}

.input-checkbox {
  width: 1px;
  height: 1px;
  position: absolute;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
}

.contact-privacy-text {
  padding-left: 44px;
  font-size: 0.875rem;
  line-height: 1.7142857143;
  letter-spacing: 2px;
  font-weight: 400;
}

.contact-button-wrapper {
  text-align: center;
}
.contact-button-wrapper .wpcf7-spinner {
  display: contents;
}

.contact-thanks {
  padding-top: 56px;
}
@media screen and (max-width: 767px) {
  .contact-thanks {
    padding-top: 16px;
  }
}

.contact-thanks-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 72px;
}
@media screen and (max-width: 767px) {
  .contact-thanks-content {
    gap: 48px;
  }
}

.contact-thanks-title {
  font-size: 2rem;
  line-height: normal;
  letter-spacing: 8px;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .contact-thanks-title {
    font-size: 1.25rem;
    line-height: 1.3;
    letter-spacing: 6px;
    font-weight: 500;
    text-align: center;
  }
}

@media screen and (max-width: 767px) {
  .contact-thanks-text {
    font-size: 1rem;
    line-height: 1.5;
    letter-spacing: 2px;
    font-weight: 400;
  }
}

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

.greeting-message-inner {
  max-width: 1360px;
}
@media screen and (max-width: 1023px) {
  .greeting-message-inner {
    max-width: 90%;
  }
}
@media screen and (max-width: 767px) {
  .greeting-message-inner {
    max-width: 100%;
  }
}

.greeting-message-content {
  padding: 80px;
  background-color: #FAFAFA;
  border-radius: 64px;
  box-shadow: 4px 4px 18px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: stretch;
  gap: 64px;
}
@media screen and (max-width: 1279px) {
  .greeting-message-content {
    padding: 52px;
    border-radius: 40px;
    gap: 40px;
  }
}
@media screen and (max-width: 1023px) {
  .greeting-message-content {
    flex-direction: column;
  }
}
@media screen and (max-width: 767px) {
  .greeting-message-content {
    padding: 40px;
    border-radius: 16px;
  }
}
@media screen and (max-width: 539px) {
  .greeting-message-content {
    padding: 32px 16px;
    gap: 16px;
  }
}

.greeting-message-image {
  border-radius: 64px;
  overflow: hidden;
}
.greeting-message-image img {
  height: 100%;
  object-fit: cover;
  object-position: cnter;
  aspect-ratio: 613/680;
}
@media screen and (max-width: 1279px) {
  .greeting-message-image {
    border-radius: 30px;
  }
}
@media screen and (max-width: 1023px) {
  .greeting-message-image {
    order: 2;
  }
  .greeting-message-image img {
    aspect-ratio: 4/3;
  }
}
@media screen and (max-width: 767px) {
  .greeting-message-image {
    border-radius: 16px;
  }
  .greeting-message-image img {
    aspect-ratio: 311/326;
  }
}

.greeting-message-body {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media screen and (max-width: 1023px) {
  .greeting-message-body {
    display: contents;
  }
}
@media screen and (max-width: 767px) {
  .greeting-message-body {
    gap: 16px;
  }
}

.greeting-message-lead {
  font-family: "Zen Old Mincho", serif;
  font-size: 2.125rem;
  line-height: normal;
  letter-spacing: 6px;
  font-weight: 600;
}
@media screen and (max-width: 1279px) {
  .greeting-message-lead {
    font-size: 1.875rem;
    letter-spacing: 4px;
  }
}
@media screen and (max-width: 1023px) {
  .greeting-message-lead {
    order: 1;
  }
}
@media screen and (max-width: 539px) {
  .greeting-message-lead {
    font-size: 1.25rem;
    line-height: 1.8;
    letter-spacing: 4px;
    font-weight: 600;
  }
}

.greeting-message-textbox {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media screen and (max-width: 1023px) {
  .greeting-message-textbox {
    order: 3;
    gap: 10px;
  }
}

@media screen and (max-width: 767px) {
  .greeting-message-text {
    font-size: 1rem;
    line-height: 1.5;
    letter-spacing: 2px;
    font-weight: 400;
  }
}

.greeting-message-sign {
  text-align: right;
}
@media screen and (max-width: 1023px) {
  .greeting-message-sign {
    order: 4;
  }
}

.greeting-message-company,
.greeting-message-role {
  line-height: normal;
  letter-spacing: 4px;
}
@media screen and (max-width: 1279px) {
  .greeting-message-company,
  .greeting-message-role {
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 767px) {
  .greeting-message-company,
  .greeting-message-role {
    line-height: 1.7142857143;
    letter-spacing: 1px;
  }
}

.greeting-message-name {
  margin-top: 2px;
  font-family: "Zen Old Mincho", serif;
  font-size: 2rem;
  line-height: normal;
  letter-spacing: 3px;
}
@media screen and (max-width: 1279px) {
  .greeting-message-name {
    font-size: 1.75rem;
  }
}
@media screen and (max-width: 767px) {
  .greeting-message-name {
    font-size: 1.3125rem;
    letter-spacing: 6px;
  }
}

.greeting-mpv {
  padding-block: 180px;
}
@media screen and (max-width: 767px) {
  .greeting-mpv {
    padding-block: 48px;
  }
}

.greeting-mpv-cards {
  display: flex;
  flex-direction: column;
  gap: 180px;
}
@media screen and (max-width: 767px) {
  .greeting-mpv-cards {
    gap: 48px;
  }
}

.greeting-mpv-title {
  display: flex;
  flex-direction: column;
  color: #6DA9D3;
  line-height: normal;
}

.greeting-mpv-title__en {
  font-family: "Heebo", sans-serif;
  font-size: 3.5rem;
  letter-spacing: 3px;
  padding-left: 28px;
  position: relative;
}
.greeting-mpv-title__en::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-59%);
  width: 12px;
  height: 48px;
  background: url("../images/title-deco.png") no-repeat center/contain;
}
.greeting-mpv-title__en::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 56%;
  height: 1px;
  background: linear-gradient(90deg, #69A7D3 0%, #72CDE2 100%);
}
@media screen and (max-width: 1023px) {
  .greeting-mpv-title__en {
    font-size: 3rem;
  }
}
@media screen and (max-width: 767px) {
  .greeting-mpv-title__en {
    font-size: 1.5rem;
    padding-left: 16px;
  }
  .greeting-mpv-title__en::before {
    width: 4px;
    height: 18px;
  }
  .greeting-mpv-title__en::after {
    width: 60%;
  }
}
@media screen and (max-width: 539px) {
  .greeting-mpv-title__en::after {
    width: 50%;
  }
}

.greeting-mpv-title__jp {
  background: linear-gradient(90deg, #69A7D3 0%, #72CDE2 100%);
  /*文字にだけ背景をクリップする */
  -webkit-background-clip: text;
  background-clip: text;
  /* 文字色を透明にして背景が見えるようにする */
  -webkit-text-fill-color: transparent;
  color: transparent;
  font-size: 1.375rem;
  letter-spacing: 8px;
  font-weight: 700;
  padding-left: 28px;
}
@media screen and (max-width: 767px) {
  .greeting-mpv-title__jp {
    font-size: 1rem;
    line-height: 1;
    letter-spacing: 2px;
    font-weight: 500;
    padding-left: 16px;
  }
}

.greeting-mpv-body {
  margin-top: 40px;
  padding-left: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media screen and (max-width: 1023px) {
  .greeting-mpv-body {
    padding-left: 28px;
  }
}
@media screen and (max-width: 767px) {
  .greeting-mpv-body {
    margin-top: 16px;
    padding-left: 14px;
    gap: 8px;
  }
}

.greeting-mpv-lead {
  font-family: "Zen Old Mincho", serif;
  font-size: 3rem;
  line-height: 1.7708333333;
  letter-spacing: 8px;
  font-weight: 900;
}
@media screen and (max-width: 1279px) {
  .greeting-mpv-lead {
    font-size: 2.625rem;
  }
}
@media screen and (max-width: 1023px) {
  .greeting-mpv-lead {
    font-size: 1.875rem;
  }
}
@media screen and (max-width: 767px) {
  .greeting-mpv-lead {
    font-size: 1.375rem;
    letter-spacing: 6px;
    font-weight: 900;
  }
}
@media screen and (max-width: 539px) {
  .greeting-mpv-lead {
    font-size: 1.25rem;
    line-height: 1.7777777778;
    letter-spacing: 1px;
  }
}
.greeting-mpv-lead .is-sp-break {
  display: none;
}
@media (max-width: 404px) {
  .greeting-mpv-lead .is-sp-break {
    display: block;
  }
}

.greeting-mpv-text {
  max-width: 704px;
}
@media screen and (max-width: 1023px) {
  .greeting-mpv-text {
    max-width: 694px;
    letter-spacing: 1px;
  }
}
@media screen and (max-width: 767px) {
  .greeting-mpv-text {
    max-width: 100%;
    font-size: 1rem;
    line-height: 1.5;
    letter-spacing: 2px;
    font-weight: 400;
    letter-spacing: 1px;
  }
}

.about-top {
  position: relative;
  z-index: 1;
}

.about-top-inner {
  max-width: 1420px;
}
@media screen and (max-width: 767px) {
  .about-top-inner {
    padding-inline: 16px;
  }
}

.about-top-card {
  padding: 80px 160px;
  border-radius: 63px;
  background-color: #FAFAFA;
  box-shadow: 4px 4px 18px rgba(0, 0, 0, 0.08);
}
@media screen and (max-width: 1279px) {
  .about-top-card {
    padding-inline: 100px;
  }
}
@media screen and (max-width: 1023px) {
  .about-top-card {
    padding: 60px;
  }
}
@media screen and (max-width: 767px) {
  .about-top-card {
    padding: 32px 28px;
    border-radius: 16px;
  }
}
@media screen and (max-width: 539px) {
  .about-top-card {
    padding-inline: 16px;
  }
}

.about-top-list {
  display: flex;
  flex-direction: column;
  gap: 36px;
}
@media screen and (max-width: 767px) {
  .about-top-list {
    gap: 20px;
  }
}

.about-top-item {
  display: flex;
  align-items: center;
  padding-bottom: 18px;
  border-bottom: 1px solid #6DA9D3;
}
@media screen and (max-width: 539px) {
  .about-top-item {
    flex-direction: column;
    align-items: start;
    gap: 4px;
    padding-bottom: 8px;
  }
}

.about-top-item__head {
  font-size: 1.125rem;
  line-height: 1.3333333333;
  letter-spacing: 3px;
  font-weight: 500;
  width: 24%;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .about-top-item__head {
    font-size: 1rem;
    line-height: 1.5;
    letter-spacing: 1px;
    font-weight: 500;
    color: #053391;
  }
}

.about-top-item__body {
  font-size: 1.125rem;
  line-height: 2.2222222222;
  letter-spacing: 2px;
  font-weight: 400;
  flex-grow: 1;
}
@media screen and (max-width: 767px) {
  .about-top-item__body {
    font-size: 1rem;
    line-height: 1.5;
    letter-spacing: 2px;
    font-weight: 400;
  }
}

/* 所在地のbodyの中身 */
.about-top-address {
  display: flex;
  align-items: center;
  gap: 24px;
}
@media screen and (max-width: 1023px) {
  .about-top-address {
    flex-direction: column;
    align-items: start;
    gap: 0;
  }
}

/* 事業のリスト */
.about-top-business__item a {
  text-decoration: underline;
  transition: opacity 0.3s;
}
@media (hover: hover) and (pointer: fine) {
  .about-top-business__item a:hover {
    opacity: 0.6;
  }
}

.about-top-business__sub-list {
  display: flex;
  flex-direction: column;
  align-items: start;
}

.about-top-business__sub-item {
  font-size: 1rem;
  padding-left: 20px;
  position: relative;
}
.about-top-business__sub-item::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 16px;
  width: 4px;
  aspect-ratio: 1/1;
  border-radius: 9999px;
  background-color: #444C55;
}
@media screen and (max-width: 767px) {
  .about-top-business__sub-item {
    font-size: 0.875rem;
  }
  .about-top-business__sub-item::before {
    top: 10px;
  }
}

/* 沿革のリスト */
.about-top-history__list {
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 1023px) {
  .about-top-history__list {
    gap: 14px;
  }
}

.about-top-history__item {
  display: flex;
  align-items: start;
  gap: 24px;
}
@media screen and (max-width: 1023px) {
  .about-top-history__item {
    flex-direction: column;
    gap: 0;
  }
}

.about-top-history__head {
  min-width: 100px;
}

.about-section {
  padding-block: 120px;
}
@media screen and (max-width: 767px) {
  .about-section {
    padding-block: 48px;
  }
}

.about-section-inner {
  max-width: 1100px;
}

.about-section-title {
  font-size: 2.25rem;
  line-height: 1.7777777778;
  letter-spacing: 6px;
  font-weight: 500;
  padding-left: 28px;
  position: relative;
}
.about-section-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 80%;
  background: url("../images/title-deco.png") no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .about-section-title {
    font-size: 1.25rem;
    line-height: 1.3;
    letter-spacing: 2px;
    padding-left: 16px;
  }
  .about-section-title::after {
    width: 4px;
  }
}

.about-section-content {
  margin-top: 72px;
}
@media screen and (max-width: 767px) {
  .about-section-content {
    margin-top: 32px;
  }
}

.about-financial-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media screen and (max-width: 767px) {
  .about-financial-list {
    gap: 16px;
  }
}

.about-financial-link {
  font-size: 1.125rem;
  line-height: 1.3333333333;
  letter-spacing: 3px;
  font-weight: 500;
  color: #FAFAFA;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #6DA9D3;
  border: 1px solid transparent;
  border-radius: 12px;
  box-shadow: 4px 4px 18px rgba(0, 0, 0, 0.08);
  padding: 16px 48px;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  .about-financial-link {
    font-size: 0.875rem;
    line-height: 1.4285714286;
    letter-spacing: 2px;
    padding: 16px 12px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .about-financial-link:hover {
    background-color: #FAFAFA;
    border-color: #6DA9D3;
    color: #6DA9D3;
  }
}

.about-financial-icon {
  width: 24px;
  aspect-ratio: 1/1;
}

@media screen and (max-width: 767px) {
  .about-access {
    scroll-margin-top: 30px;
  }
}

.about-access-card {
  display: flex;
  align-items: stretch;
  gap: 32px;
}
@media screen and (max-width: 1023px) {
  .about-access-card {
    flex-direction: column;
  }
}

.about-access-body {
  width: 46%;
  flex-shrink: 0;
}
@media screen and (max-width: 1023px) {
  .about-access-body {
    width: 100%;
  }
}

.about-access-address {
  font-size: 1.125rem;
  line-height: 1.3333333333;
  letter-spacing: 3px;
}
@media screen and (max-width: 767px) {
  .about-access-address {
    line-height: 1.4444444444;
    letter-spacing: 2px;
  }
}

.about-access-boxes {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 16px;
}
@media screen and (max-width: 767px) {
  .about-access-boxes {
    gap: 24px;
  }
}

.about-access-box-head {
  font-size: 1.125rem;
  line-height: 1.3333333333;
  letter-spacing: 3px;
  font-weight: 700;
  padding: 8px 12px;
  border-bottom: 1px solid #6DA9D3;
}

.about-access-box-body {
  margin-top: 12px;
  line-height: 1.625;
  letter-spacing: 3px;
}
@media screen and (max-width: 767px) {
  .about-access-box-body {
    font-size: 1rem;
    line-height: 1.5;
    letter-spacing: 2px;
    font-weight: 400;
  }
}

.about-access-map {
  flex-grow: 1;
}
.about-access-map iframe {
  width: 100%;
  height: 100%;
  border-radius: 22px;
  object-fit: cover;
}
@media screen and (max-width: 1023px) {
  .about-access-map iframe {
    aspect-ratio: 2/1;
  }
}
@media screen and (max-width: 767px) {
  .about-access-map iframe {
    aspect-ratio: 1/1;
    border-radius: 16px;
  }
}

@media screen and (max-width: 767px) {
  .service-inner {
    padding-inline: 16px;
  }
}

.service-top {
  padding-block: 60px 80px;
}
@media screen and (max-width: 767px) {
  .service-top {
    padding-block: 52px 32px;
  }
}

.service-bottom .service-section:not(:first-child) {
  margin-top: 72px;
}
@media screen and (max-width: 767px) {
  .service-bottom .service-section:not(:first-child) {
    margin-top: 48px;
  }
}

.service-section-title {
  display: flex;
  align-items: end;
  justify-content: space-between;
  padding-left: 28px;
  padding-bottom: 8px;
  border-bottom: 1px solid #6DA9D3;
  position: relative;
}
.service-section-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 80%;
  background: url("../images/title-deco.png") no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .service-section-title {
    padding-left: 16px;
    padding-bottom: 4px;
  }
  .service-section-title::before {
    width: 4px;
    height: 90%;
  }
}

.service-section-title__jp {
  font-size: 2.25rem;
  line-height: 1.7777777778;
  letter-spacing: 6px;
  font-weight: 500;
}
@media screen and (max-width: 1023px) {
  .service-section-title__jp {
    font-size: 1.625rem;
    letter-spacing: 3px;
  }
}
@media screen and (max-width: 767px) {
  .service-section-title__jp {
    font-size: 1.125rem;
    line-height: 1.3;
    letter-spacing: 2px;
  }
}

.service-section-title__num {
  font-family: "Heebo", sans-serif;
  font-size: 1.125rem;
  line-height: 1.4444444444;
  letter-spacing: 6px;
  color: #707B87;
}
@media screen and (max-width: 767px) {
  .service-section-title__num {
    font-size: 0.875rem;
    line-height: 1.625;
    letter-spacing: 4px;
  }
}
@media screen and (max-width: 539px) {
  .service-section-title__num {
    font-size: 0.5rem;
    letter-spacing: 2px;
  }
}

.service-section {
  scroll-margin-top: 80px;
}

.service-section-text {
  margin-top: 16px;
  font-size: 1.125rem;
  line-height: 2.2222222222;
  letter-spacing: 2px;
  font-weight: 400;
}
.service-section-text a {
  text-decoration: underline;
  transition: opacity 0.3s;
}
@media (hover: hover) and (pointer: fine) {
  .service-section-text a:hover {
    opacity: 0.6;
  }
}
@media screen and (max-width: 767px) {
  .service-section-text {
    font-size: 1rem;
    line-height: 1.625;
    letter-spacing: 2px;
  }
}

.service-section-cards {
  display: flex;
  flex-direction: column;
  gap: 80px;
}
@media screen and (max-width: 767px) {
  .service-section-cards {
    gap: 32px;
  }
}

.service-section-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  scroll-margin-top: 80px;
}

.service-section-card__image {
  width: 100%;
  border-radius: 25px;
  overflow: hidden;
}
.service-section-card__image img {
  aspect-ratio: 1200/277;
  object-fit: cover;
}
@media screen and (max-width: 767px) {
  .service-section-card__image {
    border-radius: 16px;
  }
  .service-section-card__image img {
    aspect-ratio: 243/100;
  }
}

.service-section-card__body {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media screen and (max-width: 767px) {
  .service-section-card__body {
    margin-top: 16px;
    gap: 8px;
  }
}

.service-section-card__title {
  font-size: 1.75rem;
  line-height: 1.4285714286;
  letter-spacing: 3px;
  font-weight: 500;
  color: #6DA9D3;
}
@media screen and (max-width: 767px) {
  .service-section-card__title {
    font-size: 1rem;
    line-height: 1.5;
    letter-spacing: 2px;
    font-weight: 400;
  }
}

.service-section-card__text {
  line-height: 2.25;
  letter-spacing: 6px;
}
@media screen and (max-width: 767px) {
  .service-section-card__text {
    font-size: 1rem;
    line-height: 1.5;
    letter-spacing: 2px;
    font-weight: 400;
  }
}

.service-works {
  padding-block: 73px;
  background: url("../images/service-works.jpg") no-repeat center/cover;
  position: relative;
}
.service-works::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.5);
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .service-works {
    padding-block: 48px;
  }
}

.service-works-mv__content {
  display: block;
  padding: 32px 80px;
  border-radius: 22px;
  background-color: rgba(251, 252, 252, 0.64);
  box-shadow: 4px 4px 18px rgba(0, 0, 0, 0.08);
  position: relative;
  z-index: 1;
  /* hoverした時のグラデーション枠線 */
}
.service-works-mv__content::after {
  content: "";
  position: absolute;
  inset: 0;
  padding: 3px;
  border-radius: inherit;
  background: linear-gradient(90deg, #69A7D3 0%, #72CDE2 100%);
  opacity: 0;
  transition: opacity 0.3s;
  /* 内側をくり抜き → 枠だけ残す */
  -webkit-mask: linear-gradient(#fff, #fff) content-box, linear-gradient(#fff, #fff) border-box;
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
@media screen and (max-width: 1023px) {
  .service-works-mv__content {
    padding-inline: 60px;
  }
}
@media screen and (max-width: 767px) {
  .service-works-mv__content {
    padding: 32px 16px;
    border-radius: 16px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .service-works-mv__content:hover {
    box-shadow: none;
  }
  .service-works-mv__content:hover::after {
    opacity: 1;
  }
  .service-works-mv__content:hover .button-link::before {
    background: transparent;
    border-color: #6DA9D3;
    transition: all 0.3s ease;
  }
  .service-works-mv__content:hover .button-link::after {
    background-image: url("../images/arrow-black.svg");
  }
}

.service-works-text {
  margin-top: 32px;
}
@media screen and (max-width: 767px) {
  .service-works-text {
    margin-top: 16px;
    font-size: 1rem;
    line-height: 1.5;
    letter-spacing: 2px;
    font-weight: 400;
  }
}

.service-works-button-wrapper {
  margin-top: 76px;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .service-works-button-wrapper {
    margin-top: 16px;
  }
}

.works {
  padding-block: 60px 80px;
}
@media screen and (max-width: 767px) {
  .works {
    padding-block: 52px 32px;
  }
}

.archive-desc p + p {
  margin-top: 1em;
}

@media screen and (max-width: 767px) {
  .works-inner {
    max-width: 500px;
    padding-inline: 16px;
  }
}

.works-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 70px;
  row-gap: 80px;
}
@media screen and (max-width: 1023px) {
  .works-cards {
    gap: 40px;
  }
}
@media screen and (max-width: 767px) {
  .works-cards {
    grid-template-columns: repeat(1, 1fr);
    row-gap: 32px;
  }
}

.works-card {
  padding: 32px;
  border-radius: 30px;
  background-color: #FAFAFA;
  box-shadow: 4px 4px 18px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  /* hoverした時のグラデーション枠線 */
}
.works-card::after {
  content: "";
  position: absolute;
  inset: 0;
  padding: 3px;
  border-radius: inherit;
  background: linear-gradient(90deg, #69A7D3 0%, #72CDE2 100%);
  opacity: 0;
  transition: opacity 0.3s;
  /* 内側をくり抜き → 枠だけ残す */
  -webkit-mask: linear-gradient(#fff, #fff) content-box, linear-gradient(#fff, #fff) border-box;
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
@media screen and (max-width: 1023px) {
  .works-card {
    padding: 20px;
    border-radius: 20px;
  }
}
@media screen and (max-width: 767px) {
  .works-card {
    padding: 18px 16px;
    border-radius: 16px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .works-card:hover:hover {
    box-shadow: none;
  }
  .works-card:hover:hover::after {
    opacity: 1;
  }
  .works-card:hover:hover .button-link::before {
    background: transparent;
    border-color: #6DA9D3;
    transition: all 0.3s ease;
  }
  .works-card:hover:hover .button-link::after {
    background-image: url("../images/arrow-black.svg");
  }
}

.works-card__image {
  width: 100%;
  border-radius: 30px;
  overflow: hidden;
}
.works-card__image img {
  aspect-ratio: 501/272;
  object-fit: cover;
}
@media screen and (max-width: 1023px) {
  .works-card__image {
    border-radius: 20px;
  }
}
@media screen and (max-width: 767px) {
  .works-card__image {
    border-radius: 16px;
  }
  .works-card__image img {
    aspect-ratio: 311/174;
  }
}

.works-card__heading {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.works-card__title {
  font-size: 1.5rem;
  line-height: 1.3333333333;
  letter-spacing: 8px;
  font-weight: 500;
}
@media screen and (max-width: 1023px) {
  .works-card__title {
    font-size: 1.25rem;
    line-height: 1.3;
    letter-spacing: 6px;
    font-weight: 500;
  }
}

.works-card__label {
  display: inline-block;
  width: fit-content;
  padding: 2px 8px;
  border: 1px solid #6DA9D3;
  border-radius: 22px;
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: 3px;
  font-weight: 400;
  color: #6DA9D3;
}
@media screen and (max-width: 767px) {
  .works-card__label {
    font-size: 1rem;
    line-height: 1.5;
    letter-spacing: 2px;
    font-weight: 400;
  }
}

.works-card-text {
  margin-top: 16px;
}
@media screen and (max-width: 767px) {
  .works-card-text {
    font-size: 1rem;
    line-height: 1.5;
    letter-spacing: 2px;
    font-weight: 400;
  }
}

.works-card__button-wrapper {
  margin-top: 32px;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .works-card__button-wrapper {
    margin-top: 16px;
  }
}

@media screen and (max-width: 767px) {
  .works-article-inner {
    padding-inline: 16px;
    max-width: 700px;
  }
}

.works-article-mv {
  padding: 80px 48px;
  background-color: #FAFAFA;
  border-radius: 22px;
  box-shadow: 4px 4px 18px rgba(0, 0, 0, 0.08);
}
@media screen and (max-width: 1279px) {
  .works-article-mv {
    padding: 50px 30px;
  }
}
@media screen and (max-width: 1023px) {
  .works-article-mv {
    padding-inline: 40px;
  }
}
@media screen and (max-width: 767px) {
  .works-article-mv {
    padding: 32px 16px;
  }
}

.works-article-mv__title {
  font-size: 2rem;
  line-height: 1.75;
  letter-spacing: 2.8px;
  font-weight: 500;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .works-article-mv__title {
    font-size: 1.25rem;
    line-height: 1.3;
    letter-spacing: 6px;
    font-weight: 500;
  }
}

.works-article-mv__lead {
  margin-top: 32px;
  font-size: 2rem;
  line-height: 1.75;
  letter-spacing: 2.8px;
  font-weight: 500;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .works-article-mv__lead {
    margin-top: 16px;
    font-size: 1rem;
    line-height: 1.5;
    letter-spacing: 1px;
    font-weight: 500;
  }
}

.works-article-mv__content {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media screen and (max-width: 1023px) {
  .works-article-mv__content {
    display: flex;
    flex-direction: column-reverse;
    gap: 16px;
  }
}
@media screen and (max-width: 767px) {
  .works-article-mv__content {
    margin-top: 16px;
  }
}

.works-article-mv__list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
@media screen and (max-width: 767px) {
  .works-article-mv__list {
    gap: 16px;
  }
}

.works-article-mv__item {
  padding: 8px;
  display: flex;
  align-items: start;
  gap: 16px;
  border-bottom: 1px solid #6DA9D3;
}
@media screen and (max-width: 539px) {
  .works-article-mv__item {
    padding-inline: 0;
    padding-bottom: 4px;
    flex-direction: column;
    gap: 4px;
  }
}

.works-article-mv__item-head {
  width: 20%;
  flex-shrink: 0;
  font-size: 1.125rem;
  line-height: 1.3333333333;
  letter-spacing: 3px;
  font-weight: 500;
}
@media screen and (max-width: 539px) {
  .works-article-mv__item-head {
    width: 100%;
    font-size: 1rem;
    line-height: 1.5;
    letter-spacing: 1px;
    font-weight: 500;
    color: #053391;
  }
}

.works-article-mv__item-body {
  flex-grow: 1;
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: 2px;
  font-weight: 400;
}
@media screen and (max-width: 1279px) {
  .works-article-mv__item-body {
    letter-spacing: 1px;
  }
}
@media screen and (max-width: 539px) {
  .works-article-mv__item-body {
    font-size: 0.875rem;
    line-height: 2;
    letter-spacing: 1px;
  }
}

.works-article-mv__image img {
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 767px) {
  .works-article-mv__image {
    aspect-ratio: 311/174;
  }
}

.works-article-cards {
  margin-top: 80px;
  display: flex;
  flex-direction: column;
  gap: 72px;
}
@media screen and (max-width: 767px) {
  .works-article-cards {
    margin-top: 24px;
    gap: 32px;
  }
}

.works-article-card {
  padding-inline: 80px;
}
.works-article-card:nth-child(even) .works-article-card__content {
  flex-direction: row-reverse;
}
@media screen and (max-width: 1023px) {
  .works-article-card {
    padding: 8px;
  }
}
@media screen and (max-width: 767px) {
  .works-article-card:nth-child(even) .works-article-card__content {
    flex-direction: column-reverse;
  }
}

.works-article-card__title {
  padding-block: 8px;
  border-bottom: 1px solid #6DA9D3;
  display: flex;
  align-items: start;
  gap: 8px;
  font-size: 1.75rem;
  line-height: 1.7857142857;
  letter-spacing: 2px;
  font-weight: 700;
  color: #6DA9D3;
}
@media screen and (max-width: 1279px) {
  .works-article-card__title {
    font-size: 1.625rem;
  }
}
@media screen and (max-width: 1023px) {
  .works-article-card__title {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .works-article-card__title {
    padding-block: 0 3px;
    align-items: start;
  }
}

@media screen and (max-width: 767px) {
  .works-article-card__title-num {
    font-size: 1.125rem;
    line-height: 1.3333333333;
  }
}

@media screen and (max-width: 767px) {
  .works-article-card__title-text {
    font-size: 1rem;
    line-height: 1.5;
  }
}

.works-article-card__content {
  margin-top: 24px;
  display: flex;
  gap: 80px;
}
@media screen and (max-width: 1023px) {
  .works-article-card__content {
    gap: 40px;
  }
}
@media screen and (max-width: 767px) {
  .works-article-card__content {
    margin-top: 8px;
    flex-direction: column-reverse;
    gap: 8px;
  }
}

.works-article-card__body {
  width: calc(50% - 40px);
}
@media screen and (max-width: 1023px) {
  .works-article-card__body {
    width: calc(50% - 20px);
  }
}
@media screen and (max-width: 767px) {
  .works-article-card__body {
    width: 100%;
  }
}

.works-article-card__person {
  display: flex;
  align-items: center;
  gap: 18px;
}
@media screen and (max-width: 767px) {
  .works-article-card__person {
    font-size: 0.875rem;
    line-height: 1.7142857143;
    letter-spacing: 1px;
  }
}

.works-article-card__name {
  padding-inline: 8px;
  border: 1px solid #444C55;
}

@media screen and (max-width: 767px) {
  .works-article-card__position {
    font-size: 0.875rem;
    line-height: 1.7142857143;
    letter-spacing: 1px;
    font-weight: 400;
  }
}

.works-article-card__text {
  margin-top: 18px;
}
@media screen and (max-width: 767px) {
  .works-article-card__text {
    font-size: 1rem;
    line-height: 1.5;
    letter-spacing: 2px;
    font-weight: 400;
  }
}

.works-article-card__image {
  width: calc(50% - 40px);
}
.works-article-card__image img {
  height: 100%;
  aspect-ratio: 480/260;
  object-fit: cover;
  object-position: center top;
}
@media screen and (max-width: 1023px) {
  .works-article-card__image {
    width: calc(50% - 20px);
  }
}
@media screen and (max-width: 767px) {
  .works-article-card__image {
    width: 100%;
  }
}

.works-empty {
  display: grid;
  place-items: center;
}

.works-empty__title {
  font-size: 1.25rem;
}
@media screen and (max-width: 767px) {
  .works-empty__title {
    font-size: 1.125rem;
  }
}

.member {
  padding-block: 60px 80px;
}
@media screen and (max-width: 767px) {
  .member {
    padding-block: 52px 32px;
  }
}

.member-cards {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 80px;
}
@media screen and (max-width: 767px) {
  .member-cards {
    gap: 40px;
  }
}

@media screen and (max-width: 767px) {
  .member-card {
    padding: 8px 16px;
  }
}

.member-card__title {
  font-size: 1.5rem;
  line-height: 2.3333333333;
  letter-spacing: 3px;
  font-weight: 700;
  border-bottom: 1px solid #6DA9D3;
}
@media screen and (max-width: 767px) {
  .member-card__title {
    font-size: 1.25rem;
    line-height: 1.3;
    letter-spacing: 6px;
    font-weight: 500;
    padding-bottom: 4px;
  }
}

.member-card__content {
  margin-top: 16px;
  display: flex;
  align-items: stretch;
  gap: 42px;
}
@media screen and (max-width: 1023px) {
  .member-card__content {
    gap: 24px;
  }
}
@media screen and (max-width: 767px) {
  .member-card__content {
    margin-top: 8px;
    flex-direction: column;
    gap: 8px;
  }
}

.member-card__image {
  width: 30%;
  flex-shrink: 0;
}
.member-card__image img {
  height: 100%;
  object-fit: cover;
  object-position: center;
  aspect-ratio: 290/346;
}
@media screen and (max-width: 767px) {
  .member-card__image {
    width: 100%;
  }
}

.member-card__body {
  flex-grow: 1;
}

.member-card__person {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media screen and (max-width: 767px) {
  .member-card__person {
    gap: 0;
  }
}

.member-card__name {
  font-size: 1.125rem;
  line-height: 1.3333333333;
  letter-spacing: 3px;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .member-card__name {
    font-size: 1rem;
    line-height: 1.5;
    letter-spacing: 2px;
    font-weight: 400;
  }
}

@media screen and (max-width: 767px) {
  .member-card__position {
    font-size: 0.875rem;
    line-height: 1.7142857143;
    letter-spacing: 1px;
  }
}

.member-card__text {
  margin-top: 32px;
}
@media screen and (max-width: 1279px) {
  .member-card__text {
    letter-spacing: 1px;
  }
}
@media screen and (max-width: 767px) {
  .member-card__text {
    margin-top: 16px;
    font-size: 1rem;
    line-height: 1.5;
    letter-spacing: 2px;
    font-weight: 400;
    letter-spacing: 1px;
  }
}

.member-card__button-wrapper {
  margin-top: 24px;
  text-align: right;
}

.member-card__list {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 32px;
}

.u-visually-hidden {
  position: absolute !important;
  white-space: nowrap !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  border: 0 !important;
  padding: 0 !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  margin: -1px !important;
}

@media screen and (max-width: 767px) {
  .u-hidden-sp {
    display: none;
  }
}

.u-hidden-pc {
  display: none;
}
@media screen and (max-width: 767px) {
  .u-hidden-pc {
    display: block;
  }
}

.u-hidden-down-lg {
  display: none;
}
@media screen and (max-width: 1023px) {
  .u-hidden-down-lg {
    display: block;
  }
}

@media screen and (max-width: 1279px) {
  .u-hidden-xl {
    display: none;
  }
}

.u-display-md-lg {
  display: none;
}
@media screen and (max-width: 1023px) {
  .u-display-md-lg {
    display: block;
  }
}
@media screen and (max-width: 539px) {
  .u-display-md-lg {
    display: none;
  }
}

.u-display-lg {
  display: none;
}
@media screen and (max-width: 1023px) {
  .u-display-lg {
    display: block;
  }
}

@media screen and (max-width: 1023px) {
  .u-hidden-lg {
    display: none;
  }
}

@media screen and (max-width: 1023px) {
  .u-hidden-sm-lg {
    display: none;
  }
}
@media screen and (max-width: 539px) {
  .u-hidden-sm-lg {
    display: block;
  }
}

.u-display-sm {
  display: none;
}
@media screen and (max-width: 539px) {
  .u-display-sm {
    display: block;
  }
}

@media screen and (max-width: 539px) {
  .u-hidden-sm {
    display: none;
  }
}

/* padding-top:120px(セクション上部）*/
.pt-120 {
  padding-top: 120px;
}
@media screen and (max-width: 767px) {
  .pt-120 {
    padding-top: 48px;
  }
}

/*　上下余白120px */
.ptb-120 {
  padding-block: 120px;
}
@media screen and (max-width: 767px) {
  .ptb-120 {
    padding-block: 48px;
  }
}

/* 上下余白80px */
.ptb-80 {
  padding-block: 80px;
}
@media screen and (max-width: 767px) {
  .ptb-80 {
    padding-block: 48px;
  }
}

.mt-80 {
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .mt-80 {
    margin-top: 48px;
  }
}

.mt-72 {
  margin-top: 72px;
}
@media screen and (max-width: 767px) {
  .mt-72 {
    margin-top: 16px;
  }
}

.mt-48 {
  margin-top: 48px;
}

.mt-32 {
  margin-top: 32px;
}
@media screen and (max-width: 767px) {
  .mt-32 {
    margin-top: 8px;
  }
}

.u-relative {
  position: relative;
  isolation: isolate;
}

.fade-up {
  opacity: 0;
  transform: translateY(50px);
  transition: all 1.2s ease-in;
}
.fade-up.is-inview {
  opacity: 1;
  transform: translateY(0);
}

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