html,
body {
  /* width: 100%;
  height: 100%; */
  background: #fff;
  font-family: "Noto Sans JP", sans-serif;
}
/* ヘッダー */
@media only screen and (min-width: 1920px) {
  header > .inner {
    padding-top: 50px;
    padding-bottom: 50px;
    padding-left: 80px;
    padding-right: 80px;
  }
}
@media only screen and (min-width: 1680px) {
  header > .inner {
    padding-top: 50px;
    padding-bottom: 50px;
    padding-left: 50px;
    padding-right: 50px;
  }
}
@media only screen and (min-width: 1024px) {
  header > .inner .logo {
    opacity: 0;
    height: 50px;
    width: 185px;
  }
}
@media only screen and (min-width: 1024px) {
  header > .inner {
    padding-top: 32px;
    padding-bottom: 32px;
    padding-left: 95px;
    padding-right: 95px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    background: #fff;
    position: relative;
    z-index: 1;
  }
}
@media only screen and (min-width: 1680px) {
  header > .inner menu .items .item a {
    font-size: 16px;
  }
}
@media only screen and (min-width: 1024px) {
  header > .inner menu .items .item a {
    font-weight: 500;
    font-size: 16px;
    line-height: 1;
    position: relative;
  }
}

@media only screen and (min-width: 1920px) {
  .container.detail .content {
    padding-top: 114px;
  }
}

@media only screen and (min-width: 1680px) {
  .container.detail .content {
    padding-top: 114px;
  }
}
@media only screen and (min-width: 1024px) {
  .container.detail .content {
    background: #fff;
    padding-top: 114px;
  }
}

header > .inner .logo {
  z-index: 100;
  transition: all 0.4s;
}
.header__input {
  display: none;
}

.header__button {
  display: none;
}
.header__bg {
  display: none;
}
@media only screen and (max-width: 1023px) {
  .header__button {
    display: block;
    z-index: 100;
    position: relative;
    width: 24px;
    height: 24px;
    border-radius: 5px;
    cursor: pointer;
  }

  .header__button-mark {
    display: block;
    width: 25px;
    height: 2px;
    background-color: #a9a9a9;
    margin: 4px 0;
    transition: all 0.4s;
  }
  .header__button-mark:nth-of-type(2) {
    top: 7px;
  }
  .header__button-mark:nth-of-type(3) {
    top: 14px;
  }
  .header__bg {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 50;
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s;
  }
  body:has(#hamburger:checked) {
    overflow: hidden;
    touch-action: none;
  }
  .header__nav {
    display: block !important;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    opacity: 0;
    background-color: #e60012;
    padding: 100px 20px 20px;
    z-index: 80;
    color: #fff;
    transition: 0.3s all;
  }
  .header__input:checked ~ .logo .logo_b {
    display: none;
  }
  .header__input:checked ~ .logo .logo_w {
    display: block;
  }
  #hamburger:checked ~ .header__nav {
    opacity: 1;
    transform: translateY(0);
    overflow-y: auto;
    max-height: 100vh;
  }
  #hamburger:checked ~ .header__bg {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  #hamburger:checked ~ .header__button .header__button-mark:nth-of-type(1) {
    transform: translateY(6px) rotate(-45deg);
    top: 2px;
    right: 4px;
    background-color: #fff;
  }
  #hamburger:checked ~ .header__button .header__button-mark:nth-of-type(2) {
    opacity: 0;
  }
  #hamburger:checked ~ .header__button .header__button-mark:nth-of-type(3) {
    transform: translateY(-6px) rotate(45deg);
    top: 2px;
    left: 4px;
    background-color: #fff;
  }
}

/* 共通 */
section {
  position: relative;
}

p {
  letter-spacing: 0.05em;
  font-weight: 500;
}

.btn {
  color: #fff;
  display: inline-block;
  background: #e60012;
  padding: 14px 40px;
  font-size: 18px;
  font-weight: bold;
}

.sp-only {
  display: none;
}
.mobile-only {
  display: none;
}
@media only screen and (max-width: 1023px) {
  .pc-only {
    display: none;
  }
  .mobile-only {
    display: block;
  }
}
@media only screen and (max-width: 768px) {
  .pc-only {
    display: none;
  }
  .sp-only {
    display: block;
  }
}

/* ロゴ */
#logo-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: auto;
  aspect-ratio: 40 / 21;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 1s ease;
}

@media only screen and (min-width: 768px) and (max-width: 1023px) {
  #logo-screen {
    aspect-ratio: initial;
    height: calc(100vh - 60px);
  }
}

@media only screen and (max-width: 767px) {
  #logo-screen {
    aspect-ratio: 5 / 8;
    height: auto;
  }
}

#logo {
  width: 220px;
}

/* 写真フェード */
#photo-container {
  position: relative;
  width: 100vw;
  height: auto;
  z-index: 99;
  overflow: hidden;
  aspect-ratio: 40 / 21;
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  #photo-container {
    aspect-ratio: initial;
    height: calc(100vh - 60px);
  }
}

@media only screen and (max-width: 767px) {
  #photo-container {
    aspect-ratio: 5 / 8;
    height: auto;
  }
}

.photo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: auto;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.fade-in {
  opacity: 1;
}

.fade-in-slow {
  opacity: 1;
  transition: opacity 0.5s ease;
}
.hero {
  background: #fff;
}

.hero-center {
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 90%;
  z-index: 100;
  visibility: hidden;
  transition: opacity 0.7s ease;
}
.hero-center.is-visible {
  opacity: 1;
  visibility: visible;
}
.hero-center .hero-center__btn {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.7s ease;
}
.hero-center.is-visible .hero-center__btn {
  opacity: 1;
  visibility: visible;
}
.hero-center.is-visible .hero-center__btn:hover {
  opacity: 0.6;
}
@media only screen and (max-width: 1023px) {
  .hero-center {
    color: #fff;
  }
}

.hero-center__logo {
  width: 124px;
  height: auto;
  margin-bottom: 40px;
}
@media only screen and (max-width: 1023px) {
  .hero-center__logo {
    display: none;
  }
}

.hero-center__title {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: 48px;
  font-size: clamp(1.875rem, 0.208rem + 2.604vw, 4.375rem);
  line-height: 1.67;
  margin-bottom: 35px;
  letter-spacing: 0.1em;
}
@media only screen and (max-width: 1023px) {
  .hero-center__title {
    font-size: 38px;
  }
}
@media only screen and (max-width: 389px) {
  .hero-center__title {
    font-size: 36px;
  }
}

.hero-center__lead {
  font-size: 16px;
  line-height: 2;
  margin-bottom: 35px;
}
@media only screen and (min-width: 1920px) {
  .hero-center__lead {
    font-size: 20px;
  }
}
@media only screen and (max-width: 389px) {
  .hero-center__lead {
    font-size: 14px;
  }
}

h2.section-title {
  font-size: 40px;
  line-height: 1.8;
  text-align: center;
  letter-spacing: 0.05em;
}
@media only screen and (max-width: 1023px) {
  h2.section-title {
    font-size: 30px;
  }
}

.section-lead {
  font-size: 20px;
  line-height: 2;
  text-align: center;
  margin-bottom: 30px;
}
@media only screen and (max-width: 768px) {
  .section-lead {
    text-align: left;
  }
}

.section-greeting {
  position: relative;
  transition: opacity 1s ease;
  padding: 100px 30px;
  background: #fff;
}
@media only screen and (max-width: 1023px) {
  .section-greeting {
    padding: 0;
  }
}

.section-greeting > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  object-fit: cover;
  height: 100%;
  object-position: top;
}
@media only screen and (max-width: 1023px) {
  .section-greeting > img {
    position: relative;
    height: auto;
  }
}

.section-greeting h2.section-title {
  margin-bottom: 25px;
  text-align: left;
}
@media only screen and (max-width: 1023px) {
  .section-greeting h2.section-title {
    margin-bottom: 15px;
  }
}

.section-greeting .greeting__inner.l-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  display: flex;
  justify-content: end;
  margin: 0 auto;
}
@media only screen and (max-width: 1023px) {
  .section-greeting .greeting__inner.l-container {
    position: relative;
    top: auto;
    transform: none;
    padding: 30px 15px;
    width: auto;
    right: auto;
    margin: 0 auto;
  }
}

.greeting__content {
  max-width: 620px;
}
@media only screen and (max-width: 1023px) {
  .greeting__content {
    max-width: 100%;
  }
}

.section-greeting .greeting__text {
  color: #fff;
}
@media only screen and (max-width: 1023px) {
  .section-greeting .greeting__text {
    color: #000;
  }
}

p.greeting__ceo-name {
  margin-top: 25px;
  font-size: 24px;
  line-height: 1.8;
}
@media only screen and (max-width: 1023px) {
  p.greeting__ceo-name {
    margin-top: 15px;
  }
}
p.greeting__ceo-name span {
  font-size: 18px;
  margin-left: 25px;
}
.greeting__message {
  margin-top: 25px;
  line-height: 2;
  font-size: 20px;
}
@media only screen and (max-width: 1023px) {
  .greeting__message {
    margin-top: 15px;
  }
}
.greeting__message p {
  margin-bottom: 20px;
}

.greeting__button {
  margin-top: 60px;
}
@media only screen and (max-width: 1023px) {
  .greeting__button {
    margin-top: 30px;
    text-align: center;
  }
  .greeting__button .btn {
    width: 440px;
    max-width: 100%;
    box-sizing: border-box;
  }
}

.section-history {
  padding: 120px 0 10px;
  background: #f8f8f8;
}
@media only screen and (max-width: 1023px) {
  .section-history {
    padding: 30px 15px;
  }
}

.section-history::after {
  content: "History";
  font-size: 200px;
  position: absolute;
  color: #eee;
  top: 0px;
  right: 0;
  line-height: 0.8;
  font-weight: 700;
  z-index: 0;
}
@media only screen and (max-width: 1023px) {
  .section-history::after {
    font-size: 60px;
  }
}

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

.section-history h2.section-title {
  margin-bottom: 15px;
}
@media only screen and (max-width: 1023px) {
  .section-history h2.section-title {
    margin-bottom: 20px;
  }
}
.history__scroll {
  overflow-x: auto;
  white-space: nowrap;
  padding: 20px 0 20px
    calc(30px + (100 - 30) * ((100vw - 1024px) / (1440 - 1024)));
  scrollbar-width: none;
}
.history__scroll::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Edge */
}

.history__list {
  position: relative;
  display: inline-flex;
  padding-right: 40px;
  gap: 5px; /* アイテム間の余白調整 */
}

.history__list::before {
  content: "";
  position: absolute;
  top: 55px; /* ドットの中心に合わせる */
  left: 0;
  right: 0;
  height: 4px;
  background: #222;
  z-index: 1;
}

.history__item,
.history__text {
  box-sizing: border-box;
}

.history__item {
  width: 455px; /* アイテムの幅を調整（必要に応じて変更） */
  display: flex;
  flex-direction: column;
  flex: 0 0 auto;
}

/* ドット */
.history__date {
  position: relative;
  display: inline-block;
  font-size: 30px;
  line-height: 1.8;
  margin-bottom: 16px;
  padding-left: 35px;
}

.history__date::after {
  content: "";
  display: block;
  position: absolute;
  left: 35px;
  top: 50px; /* ラインの高さに合わせる */
  transform: translateX(-50%);
  width: 16px;
  height: 16px;
  background: #e60012;
  border-radius: 50%;
  z-index: 2;
}

.history__img {
  padding: 20px 0 20px 35px;
  width: 420px;
}

.history__img img {
  width: 100%;
  height: auto;
  pointer-events: none;
  user-drag: none;
  -webkit-user-drag: none;
}

.history__text {
  font-size: 20px;
  line-height: 1.8;
  padding: 0 20px 0 35px; /* 左60・右20の余白 */
  width: 100%; /* 親幅いっぱい */
  box-sizing: border-box; /* padding込みで幅を計算 */
  word-break: break-word;
  overflow-wrap: anywhere;
  white-space: normal; /* 折り返し必須 */
}

.history__toggle {
  display: none;
}
.scroll__container {
  padding-left: calc(30px + (100 - 30) * ((100vw - 1024px) / (1440 - 1024)));
}
.scroll__label {
  font-size: 20px;
}
.scroll__indicator {
  position: relative;
  width: 300px;
  height: 16px; /* ← ドットが見えるように行を広げる */
  background-color: transparent;
  overflow: hidden;
  margin: 15px 0 40px;
}

.scroll__indicator::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: #000;
  transform: translateY(-50%);
}

.scroll__dot {
  position: absolute;
  top: 50%;
  left: 0;
  opacity: 0;
  width: 16px;
  height: 16px;
  background-color: #333;
  border-radius: 50%;
  transform: translateY(-50%);
  animation: scrollMove 1s linear infinite;
  animation: move-dot 2s cubic-bezier(0.3, 0.7, 0.3, 1) infinite;
}

@keyframes move-dot {
  0% {
    left: 0%;
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  50% {
    opacity: 1;
  }
  100% {
    left: 100%;
    opacity: 0;
  }
}

/* 768px以下は縦スクロール・2要素表示 */
@media only screen and (max-width: 1023px) {
  .scroll__container {
    display: none;
  }
  .history__scroll {
    overflow-x: visible;
    overflow-y: visible;
    white-space: normal;
    padding: 0;
  }
  .history__list {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 30px;
    margin-bottom: 30px;
  }
  .history__item {
    min-width: auto;
    width: 100%;
    flex-direction: column;
  }
  .history__list::before {
    left: 0;
    right: auto;
    top: 0;
    width: 4px;
    height: 100%;
    background: #222;
    z-index: 1;
  }
  .history__date {
    font-size: 20px;
    margin-bottom: 8px;
    padding-left: 30px;
  }
  .history__date::after {
    left: 2px;
    top: 9px;
    z-index: 9;
    width: 20px;
    height: 20px;
  }
  .history__img {
    padding: 0 0 0 30px;
    width: 100%;
    box-sizing: border-box;
  }
  .history__text {
    font-size: 16px;
    padding-inline: 30px 0;
  }
  .history__toggle {
    display: block;
    margin: 20px auto;
    padding: 15px;
    width: 480px;
    max-width: 100%;
    border: 1px solid #e60012;
    background: #fff;
    color: #e60012;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
  }
}

.section-movie {
  position: relative;
  padding: 140px 30px 80px;
  background-color: #fff;
}
@media only screen and (max-width: 1023px) {
  .section-movie {
    padding: 40px 15px 60px;
  }
}
.section-movie::after {
  content: "Movie";
  font-size: 200px;
  position: absolute;
  color: #eee;
  top: 0px;
  right: 0;
  line-height: 0.8;
  font-weight: 700;
  z-index: 0;
}
@media only screen and (max-width: 1023px) {
  .section-movie::after {
    font-size: 60px;
  }
}

.movie__inner {
  position: relative;
  max-width: 1240px;
  margin: 0 auto;
  z-index: 1;
}

.section-movie h2.section-title {
  margin-bottom: 15px;
}
@media only screen and (max-width: 1023px) {
  .section-movie h2.section-title {
    margin-bottom: 20px;
    line-height: 1.6;
  }
}
.section-movie iframe {
  aspect-ratio: 16 / 9;
  max-width: 100%;
  height: auto;
}
.section-movie img {
  max-width: 100%;
  height: auto;
}
.movie__share {
  text-align: center;
  margin-top: 35px;
}

.movie__share p {
  font-size: 16px;
  line-height: 1.2;
}
.movie__sns {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 25px;
}

.movie__sns img {
  width: auto;
  height: 40px;
}

.section-metrics {
  padding: 120px 30px;
  background-color: #e60012;
}
@media only screen and (max-width: 1023px) {
  .section-metrics {
    padding: 45px 15px 20px;
  }
}

.section-metrics::after {
  content: "Metrics";
  font-size: 200px;
  position: absolute;
  color: #fb0215;
  top: 0px;
  right: 0;
  line-height: 0.8;
  font-weight: 700;
  z-index: 0;
}
@media only screen and (max-width: 1023px) {
  .section-metrics::after {
    font-size: 60px;
  }
}

.metrics__inner {
  position: relative;
  z-index: 1;
  max-width: 1218px;
  margin: 0 auto;
  text-align: center;
}

.metrics__image {
  width: 100%;
  background-color: #fff;
}

.metrics__image img {
  width: 100%;
}

.section-metrics .section-title {
  color: #fff;
}
@media only screen and (max-width: 1023px) {
  .section-metrics .section-title {
    line-height: 1.6;
  }
}

.data-section {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: #e60012;
  padding: 40px 20px;
}
.row-1 {
  display: grid;
  grid-template-columns: 60% 40%;
  grid-template-columns: minmax(0, 60%) minmax(0, 40%);
  gap: 8px;
}
.row-2 {
  display: grid;
  grid-template-columns: 33% 67%;
  grid-template-columns: minmax(0, 33%) minmax(0, 67%);
  gap: 8px;
}
.row-3 {
  width: 100%;
}
.data-item {
  text-align: center;
  padding: 16px;
}

.area1,
.area2,
.area4,
.area5 {
  display: flex; /* アイテムを横並びに */
  gap: 0;
  justify-content: space-between; /* 均等配置 */
  background: #fff;
  padding: 20px;
}
.area2 {
  gap: 0;
}
.area3 {
  background: #fff;
  padding: 20px;
}
.data-item {
  flex: 1; /* 均等幅にする */
  text-align: center;
}
.data-item .lottie-container {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  max-width: 100%;
}
/* アイテムごとに設定 */
.data-item.employee .lottie-container svg {
  width: 153px;
}
.data-item.years .lottie-container svg {
  width: 135px;
}
.data-item.age .lottie-container svg {
  width: 192px;
}
.data-item.childcare .lottie-container svg {
  width: 131px;
}
.data-item.return .lottie-container svg {
  width: 140px;
}
.data-item.fund .lottie-container svg {
  width: 150px;
}
.data-item.clients .lottie-container svg {
  width: 247px;
}
.data-item.users .lottie-container svg {
  width: 150px;
}
.data-item.videos .lottie-container svg {
  width: 245px;
}
.data-item.templates .lottie-container svg {
  width: 130px;
}
.data-item.updates .lottie-container svg {
  width: 150px;
}
.data-item.childcare strong {
  font-size: 14px;
}
.data-item.childcare strong span {
  font-size: 40px;
}
.data-item p {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.8;
  margin-bottom: 5px;
}
.count-up__container {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 10px;
}
.count-up__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}
.data-item strong {
  color: #e60012;
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
}
.data-item strong span {
  font-size: 56px;
}
.toggle-data {
  display: none;
}

@media (max-width: 1023px) {
  .data-section .data-item:not(.initial-visible) {
    display: none;
  }
  .data-section.show-all .data-item {
    display: block;
  }
  .data-section {
    display: grid;
    grid-template-areas: none;
    background: #fff;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    margin-top: 20px;
  }
  .area1,
  .area2,
  .area3,
  .area4,
  .area5 {
    display: contents; /* 白背景を解除して data-item のみ並べる */
    padding: 0;
    background: none;
  }
  .data-item {
    background: #fff;
    padding: 0;
  }
  .row {
    display: contents;
  }
  .data-item.employee .lottie-container,
  .data-item.years .lottie-container,
  .data-item.age .lottie-container,
  .data-item.childcare .lottie-container,
  .data-item.return .lottie-container,
  .data-item.fund .lottie-container,
  .data-item.clients .lottie-container,
  .data-item.users .lottie-container,
  .data-item.videos .lottie-container,
  .data-item.templates .lottie-container,
  .data-item.updates .lottie-container {
    width: 100%;
  }
  .data-item.users strong,
  .data-item.clients strong,
  .data-item.videos strong,
  .data-item.templates strong {
    font-size: 16px;
  }
  .data-item.users strong span,
  .data-item.clients strong span,
  .data-item.templates strong span {
    font-size: 38px;
  }
  .data-item.videos strong span {
    font-size: 32px;
  }
  .toggle-data {
    display: block;
    margin: 20px auto;
    padding: 15px;
    width: 480px;
    max-width: 100%;
    border: 1px solid #e60012;
    background: #fff;
    color: #e60012;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
  }
}

.section-voice {
  padding: 120px 30px;
  background-color: #fff;
}
@media only screen and (max-width: 1023px) {
  .section-voice {
    padding: 50px 15px;
  }
}

.section-voice::after {
  content: "Voice";
  font-size: 200px;
  position: absolute;
  color: #eee;
  top: 0px;
  right: 0;
  line-height: 1;
  font-weight: 700;
  z-index: 0;
}
@media only screen and (max-width: 1023px) {
  .section-voice::after {
    font-size: 60px;
  }
}

.voice__inner {
  position: relative;
  z-index: 1;
  max-width: 1338px;
  margin: 0 auto;
}

.voice__video {
  text-align: center;
}
.voice__video img,
.voice__video iframe,
.voice__video video {
  max-width: 100%;
}

.voice__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px 35px;
  margin-top: 70px;
}
@media only screen and (max-width: 1023px) {
  .voice__list {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}

.voice__item {
  display: flex;
  flex-direction: column;
  gap: 15px;
  background: #f9f9f9;
  padding: 20px;
}

.voice__comment {
  font-size: 20px;
  line-height: 1.6;
}

.voice__profile {
  display: flex;
  align-items: center;
  gap: 20px;
}

.voice__avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #fff;
}

.voice__company {
  font-size: 16px;
  line-height: 2;
}

.voice__person {
  font-size: 14px;
  line-height: 2;
}

.section-interview {
  padding: 120px 30px;
  background-color: #fff;
  text-align: center;
}
@media only screen and (max-width: 1023px) {
  .section-interview {
    padding: 50px 15px;
  }
}
.section-interview::after {
  content: "Interview";
  font-size: 200px;
  position: absolute;
  color: #eee;
  top: 0px;
  right: 0;
  line-height: 0.8;
  font-weight: 700;
  z-index: 0;
}
@media only screen and (max-width: 1023px) {
  .section-interview::after {
    font-size: 60px;
  }
}

.interview__inner {
  position: relative;
  z-index: 1;
  max-width: 1240px;
  margin: 0 auto;
}

.interview__label {
  font-size: 20px;
  line-height: 1.8;
  margin-bottom: 15px;
  text-align: center;
}
@media only screen and (max-width: 1023px) {
  .interview__label {
    font-size: 16px;
    margin-bottom: 10px;
    text-align: left;
  }
}
.interview__title {
  font-size: 36px;
  line-height: 1.8;
  margin-bottom: 30px;
}
@media only screen and (max-width: 1023px) {
  .interview__title {
    font-size: 28px;
    line-height: 1.5;
    text-align: left;
  }
}

.section-interview iframe {
  aspect-ratio: 16 / 9;
  max-width: 100%;
  height: auto;
}
.interview__lead {
  font-size: 20px;
  line-height: 1.8;
  text-align: left;
  margin-top: 40px;
}
.interview__button {
  margin-top: 40px;
}
@media only screen and (max-width: 1023px) {
  .interview__button {
    margin-top: 30px;
  }
  .interview__button .btn {
    width: 440px;
    max-width: 100%;
    box-sizing: border-box;
  }
}
.section-future {
  padding: 100px 30px 85px;
  background-color: #f8f8f8;
}
@media only screen and (max-width: 1023px) {
  .section-future {
    padding: 30px 15px 50px;
  }
}

.section-future::after {
  content: "Future";
  font-size: 200px;
  position: absolute;
  color: #eee;
  top: 0px;
  right: 0;
  line-height: 0.65;
  font-weight: 700;
  z-index: 0;
}
@media only screen and (max-width: 1023px) {
  .section-future::after {
    font-size: 60px;
  }
}

.future__inner {
  position: relative;
  z-index: 1;
  max-width: 1218px;
  margin: 0 auto;
}

.section-future h2.section-title {
  margin-bottom: 20px;
}
@media only screen and (max-width: 767px) {
  .section-future .section-lead {
    margin-bottom: 20px;
  }
}
.future__items {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 30px;
}

.future__item {
  display: flex;
  align-items: center;
  gap: 22px;
}
@media only screen and (max-width: 767px) {
  .future__item {
    flex-direction: column;
    gap: 10px;
  }
}

.future__icon {
  height: 243px;
  width: 243px;
  border-radius: 50%;
  flex-shrink: 0;
  display: grid;
  place-content: center;
}
@media only screen and (max-width: 767px) {
  .future__icon {
    width: 200px;
    height: 200px;
  }
}

.future__title {
  font-size: 28px;
  line-height: 1.8;
  margin-bottom: 15px;
}
@media only screen and (max-width: 1023px) {
  .future__title {
    font-size: 24px;
  }
}

.future__text {
  font-size: 18px;
  line-height: 1.8;
}

.footer-content {
  letter-spacing: 0.05em;
  font-size: 16px;
  line-height: 2;
}
@media only screen and (max-width: 1023px) {
  .footer-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
}

@media only screen and (max-width: 767px) {
  .footer-content {
    font-size: 14px;
    align-items: center;
  }
}

.footer-left {
  display: flex;
  gap: 45px;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  .footer-left {
    flex-direction: column;
  }
}

.footer-left .sns {
  display: flex;
  gap: 20px;
}

/* 10周年メッセージ */
.container.page-10th-message {
  background: #fff;
}

.page-10th-message .greeting-thumbnail img {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
}

.page-10th-message .greeting-body.l-container {
  display: flex;
  max-width: 1280px;
  margin: 100px auto;
  padding-inline: 30px;
}

@media only screen and (max-width: 769px) {
  .page-10th-message .greeting-body.l-container {
    flex-direction: column;
    padding-inline: 15px;
    margin-block: 30px;
  }
}

.page-10th-message .greeting-text {
  flex-basis: 45%;
}

.page-10th-message h1.greeting-title {
  font-size: 40px;
  position: relative;
  display: inline-block;
}
@media only screen and (max-width: 769px) {
  .page-10th-message h1.greeting-title {
    font-size: 30px;
  }
}
.page-10th-message h1.greeting-title::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: calc(100% + 50px);
  width: 200px;
  height: 1px;
  background-color: #000;
  transform: translateY(-50%);
}
@media only screen and (max-width: 769px) {
  .page-10th-message h1.greeting-title::after {
    content: none;
  }
}

.page-10th-message p.greeting-ceo {
  font-size: 24px;
  margin-top: 35px;
}
@media only screen and (max-width: 769px) {
  .page-10th-message p.greeting-ceo {
    margin-top: 15px;
  }
}
.page-10th-message p.greeting-ceo span {
  font-size: 18px;
  margin-left: 25px;
}
.page-10th-message .greeting-content {
  flex-basis: 55%;
  padding-top: 100px;
}
@media only screen and (max-width: 769px) {
  .page-10th-message .greeting-content {
    padding-top: 15px;
  }
}
.page-10th-message .greeting-content p {
  font-size: 20px;
  margin-bottom: 40px;
}
@media only screen and (max-width: 769px) {
  .page-10th-message .greeting-content p {
    font-size: 18px;
    margin-bottom: 20px;
  }
}

/* 10周年CTOインタビュー */

.page-10th-cto-interview.container.detail,
.page-10th-cto-interview.container.detail .content {
  background-color: #fff;
}

.interview-head {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
}

.interview-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
  display: block;
}

.interview-text {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #000;
  max-width: 80%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 10px;
  right: calc((100% - 1000px) / 2 + 40px);
  max-width: calc(100% - 40px);
}

.interview-label {
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.8;
}

.interview-title {
  font-size: 36px;
  font-weight: bold;
  line-height: 1.8;
  letter-spacing: 1.8px;
}

.interview-cto {
  font-size: 20px;
}

.interview-cto span {
  font-size: 14px;
  margin-right: 26px;
}

.page-10th-cto-interview .interview-body {
  max-width: 1000px;
  margin: 80px auto;
  padding-inline: 30px;
}

.page-10th-cto-interview .interview-content .interview-profile {
  display: flex;
  padding: 20px 30px;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin-bottom: 30px;
  align-self: stretch;
  background: #f7f7f7;
}

.page-10th-cto-interview .interview-content .interview-profile img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
}

.page-10th-cto-interview .interview-content .interview-profile p {
  font-size: 18px;
  line-height: 160%;
  letter-spacing: 0.9px;
  margin-bottom: 0;
}

.page-10th-cto-interview .interview-content h2 {
  font-size: 34px;
  line-height: 1.5;
  margin-bottom: 30px;
  letter-spacing: 1.7px;
  margin-top: 60px;
}

.page-10th-cto-interview .interview-content p:has(span) + h2 {
  margin-top: 15px;
}

.page-10th-cto-interview .interview-content p {
  font-size: 20px;
  line-height: 1.8;
  margin-bottom: 30px;
  letter-spacing: 1px;
}

.page-10th-cto-interview .interview-content blockquote {
  background: #f7f7f7;
  padding: 30px 30px 30px 96px;
  margin-bottom: 30px;
  position: relative;
}
.page-10th-cto-interview .interview-content blockquote p {
  margin-bottom: 0;
}
.page-10th-cto-interview .interview-content blockquote::before {
  content: "“";
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 900;
  font-size: 70px;
  color: #dfdfdf;
  position: absolute;
  top: 0px;
  left: 0px;
  line-height: 1;
}

.page-10th-cto-interview .interview-content blockquote::after {
  content: "石橋";
  font-weight: bold;
  font-size: 20px;
  line-height: 1.8;
  position: absolute;
  top: 30px;
  left: 30px;
}
.page-10th-cto-interview .interview-content p:has(span) {
  margin-bottom: 0;
}
.page-10th-cto-interview .interview-content p span {
  position: relative;
  display: inline-block;
}
.page-10th-cto-interview .interview-content p span::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: calc(100% + 20px);
  width: 200px;
  height: 1px;
  background-color: #000;
  transform: translateY(-50%);
}
.page-10th-cto-interview .interview-content figure {
  margin: 60px 0;
}

.page-10th-cto-interview .interview-content figure .gallery {
  display: flex;
  gap: 15px;
  justify-content: space-between;
}

.page-10th-cto-interview .interview-content figure .gallery img {
  flex: 1 1 0;
  min-width: 0;
}
.page-10th-cto-interview .interview-content figure img {
  max-width: 100%;
  height: auto;
}
.page-10th-cto-interview .interview-content hr {
  margin-top: 60px;
}
.page-10th-cto-interview .interview-content .interview-button {
  margin-top: 60px;
  text-align: center;
}
@media only screen and (max-width: 1023px) {
  .interview-head {
    height: auto;
  }
  .interview-thumbnail img {
    max-height: 400px;
  }
  .interview-text {
    position: relative;
    padding-inline: 15px;
    margin-top: 30px;
    transform: none;
    top: 0;
    right: auto;
  }
  .page-10th-cto-interview .interview-body {
    margin-block: 40px;
    padding-inline: 15px;
  }
}

@media only screen and (max-width: 767px) {
  .interview-thumbnail img {
    max-height: 250px;
  }
  .interview-label {
    font-size: 16px;
  }
  .interview-title {
    font-size: 28px;
    line-height: 1.5;
    letter-spacing: 1.4px;
  }
  .page-10th-cto-interview .interview-content .interview-profile img {
    display: none;
  }
  .page-10th-cto-interview .interview-content h2 {
    font-size: 28px;
    margin-bottom: 20px;
    margin-top: 40px;
  }
  .page-10th-cto-interview .interview-content p:has(span) + h2 {
    margin-top: 5px;
  }
  .page-10th-cto-interview .interview-content p {
    margin-bottom: 20px;
  }
  .page-10th-cto-interview .interview-content blockquote {
    margin-bottom: 20px;
    padding: 15px 15px 15px 70px;
  }
  .page-10th-cto-interview .interview-content blockquote::after {
    top: 15px;
    left: 15px;
  }
  .page-10th-cto-interview .interview-content figure {
    margin: 20px 0;
  }
  .page-10th-cto-interview .interview-content figure .gallery {
    flex-direction: column;
  }
  .page-10th-cto-interview .interview-content p:has(span) {
    margin-top: 40px;
  }
  .page-10th-cto-interview .interview-content hr {
    margin-top: 40px;
  }
}
