:root {
  --color-bg: #ffffff;
  --color-text: #111111;
  --color-muted: #4b5563;
  --color-line: rgba(17, 17, 17, 0.08);
  --color-overlay: #ffffff;
  --color-copy: #385ca9;

  --loading-size: min(120px, 26vw);
  --page-max-width: 1440px;
  --header-height: 80px;

  --bus-size:clamp(75px, 10vw, 160px);

  /* 中央ロゴ群の大きさ */
  --hero-symbol-width: min(45vw, 650px);

  --copy-size: clamp(20px, 2.4vw, 30px);
  --scroll-size: 13px;

  /* ブラウザスクロールバー */
  --scrollbar-size: 10px;
  --scrollbar-thumb: #b7c2dd;
  --scrollbar-thumb-hover: #8ea2d1;
  --scrollbar-track: #f3f6fc;

  /* アコーディオン */
  --color-base: #333;
  --header-height: 100px;
  --item-min-height: 600px;

  --history-line-x: 0px;
  --history-dot-size: 17px;
  --history-dot-size-open: 18px;

  --history-bg-01: #0C2354;
  --history-bg-02: #132E6B;
  --history-bg-03: #1A3776;
  --history-bg-04: #234081;
  --history-bg-05: #2C4D94;
  --history-bg-06: #385CA9;

  --history-line-color: #fff;
  --history-dashed-color: #2A4C96;
  --history-body-bg: #fff;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  /* scroll-behavior: smooth; */
  background: var(--color-bg);

  /* 幅を最初から確保 */
  overflow-y: scroll;
  scrollbar-gutter: stable;

  /* Firefox */
  scrollbar-width: thin;
  scrollbar-color: var(--scrollbar-thumb) var(--scrollbar-track);
}

/* Chrome / Safari / Edge */
html::-webkit-scrollbar {
  width: var(--scrollbar-size);
}

html::-webkit-scrollbar-track {
  background: var(--scrollbar-track);
}

html::-webkit-scrollbar-thumb {
  background: var(--scrollbar-thumb);
  border-radius: 999px;
  border: 2px solid var(--scrollbar-track);
}

html::-webkit-scrollbar-thumb:hover {
  background: var(--scrollbar-thumb-hover);
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--color-text);
  background: var(--color-bg);
  font-family:sans-serif;
  font-size: 16px;
  line-height: 1.75;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* アニメ中は見た目の幅を維持したまま実スクロールを止める */
body.is-loading {
  position: fixed;
  inset: 0;
  width: 100%;
  overflow: hidden;
  touch-action: none;
  overscroll-behavior: none;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}
.inlinepc{
  display: inline!important;
}
.inlinesp{
  display: none!important;
}
@media (max-width: 767.98px) {
  .inlinepc{
    display: none!important;
  }
  .inlinesp{
    display: inline!important;
  }
}
.skip-link {
  position: absolute;
  top: 130px;
  left: 12px;
  z-index: 10001;
  padding: 10px 14px;
  background: #111;
  color: #fff;
  border-radius: 999px;
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

.skip-link:focus-visible {
  transform: translateY(0);
  outline: 2px solid #fff;
  outline-offset: 2px;
}

/* --------------------------------
   loading
--------------------------------- */
.site-loading {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background: var(--color-overlay);
  opacity: 1;
  visibility: visible;
  will-change: opacity;
}

.site-loading__inner {
  display: grid;
  justify-items: center;
  padding: 24px;
}

.site-loading__media {
  width: var(--loading-size);
}

.site-loading__image {
  display: block;
  width: 100%;
  height: auto;
}
.loading-bus {
  position: relative;
  height: 86px;
  display: block;
  overflow: hidden;
}

.loading-bus__frame {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  height: 86px;
  opacity: 0;
  pointer-events: none;
}

.loading-bus__frame.is-active {
  opacity: 1;
}

/* --------------------------------
   copy only
--------------------------------- */
.copy-only {
  position: fixed;
  inset: 0;
  z-index: 9500;
  display: grid;
  place-items: center;
  padding: 24px;
  background: var(--color-bg);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.copy-only__text {
  margin: 0;
  color: var(--color-copy);
  font-size: clamp(22px, 3vw, 66px);
  line-height: 0;
  letter-spacing: 0.14em;
  text-align: center;
}

/* --------------------------------
   shell / header
--------------------------------- */
.site-shell {
  opacity: 1;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 200;
  width: 100%;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  transform: translateY(-100%);
  opacity: 0;
  will-change: transform, opacity;
}

.site-header.is-visible {
  transform: translateY(0);
  opacity: 1;
  transition:
    transform 1.62s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.62s cubic-bezier(0.22, 1, 0.36, 1);
}

.site-header.is-show-fast {
  transform: translateY(0);
  opacity: 1;
  transition:
    transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.site-header.is-hidden-scroll {
  transform: translateY(-100%);
  opacity: 0;
  transition:
    transform 1.62s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.62s cubic-bezier(0.22, 1, 0.36, 1);
}

.site-header.is-visible {
  transform: translateY(0);
  opacity: 1;
}

.site-header.is-hidden-scroll {
  transform: translateY(-100%);
  opacity: 0;
}

.site-header__inner {
  width: min(calc(100% - 125px), var(--page-max-width));
  min-height: var(--header-height);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-logo {
  flex: 0 0 auto;
}

.site-logo img {
  display: block;
  width: auto;
  height: 35px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.site-nav a {
  position: relative;
  font-family: "Noto Sans JP", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 15px;
  line-height: 20px;
  letter-spacing: 0.1em;
  color: #0c0c36;
  transition: 0.3s;
}

.site-nav a:hover {
  opacity: 0.5;
}

.site-nav a + a::before {
  content: "/";
  margin-right: 18px;
  color: #0c0c36;
  font-weight: 500;
}

/* --------------------------------
   hero
--------------------------------- */
.site-main {
  display: block;
}

.hero {
  position: relative;
  min-height: 100svh;
  /* overflow: hidden; */
  padding-top: var(--header-height);
}

.hero__photos {
  position: absolute;
  inset: 0;
  z-index: 10;
  pointer-events: none;
}

.hero__photo {
  position: absolute;
  top: 53%;
  width: min(19vw, 33vh);
  height: auto;
  opacity: 0;
  will-change: opacity;
}

.hero__photo--left {
  left: 0;
  transform: translateY(-50%);
}

.hero__photo--right {
  right: 0;
  transform: translateY(-50%);
}

.hero__center {
  position: relative;
  z-index: 20;
  min-height: calc(90svh - var(--header-height));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-inline: 24px;
}

.hero__symbol {
  position: relative;
  width: var(--hero-symbol-width);
  aspect-ratio: 960 / 520;
}

.hero__intro-step {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  will-change: opacity;
}

.hero__copy {
  margin: 34px 0 0;
  color: var(--color-copy);
  font-size: var(--copy-size);
  line-height: 1.7;
  letter-spacing: 0.16em;
  text-align: center;
  opacity: 0;
  will-change: opacity;
  width: 62vw;
}

.hero__scroll {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  min-width: 56px;
  opacity: 0;
  visibility: hidden;
  will-change: opacity;
  position: absolute;
  bottom: -3vh;
  left: 0;
  right: 0;
  width: fit-content;
  margin: auto;
}

.hero__scroll.is-visible {
  visibility: visible;
}

.hero__scroll-text {
  display: block;
  min-width: 40px;
  text-align: center;
  font-size: var(--scroll-size);
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--color-copy);
}

.hero__scroll-line {
  position: relative;
  display: block;
  width: 1px;
  min-width: 1px;
  height: 74px;
  background: #2a4c96;
}

.hero__scroll-dot {
  position: absolute;
  top: 0;
  left: 50%;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #385ca9;
  transform: translateX(-50%);
  animation: scrollDotMove 1.8s ease-in-out infinite;
}

@keyframes scrollDotMove {
  0% {
    top: 0;
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  75% {
    top: calc(100% - 7px);
    opacity: 0.2;
  }
  90% {
    top: calc(100% - 7px);
    opacity: 0;
  }
  100% {
    top: calc(100% - 7px);
    opacity: 0;
  }
}

/* --------------------------------
   lower content
--------------------------------- */
.content-block {
  position: relative;
  z-index: 30;
  padding: 120px 0 160px;
}

.content-block__inner {
  width: min(calc(100% - 64px), var(--page-max-width));
  margin-inline: auto;
}

.content-block__box {
  padding: 32px;
  border: 1px solid var(--color-line);
  border-radius: 24px;
  background: #ffffff;
}

.content-block__title {
  margin: 0 0 12px;
  font-size: 24px;
  line-height: 1.3;
}

.content-block__text {
  margin: 0;
  color: var(--color-muted);
}

.js-fadeup {
  opacity: 0;
  transform: translateY(24px);
  will-change: opacity, transform;
}

.js-scrollfade {
  opacity: 0;
  visibility: hidden;
  will-change: opacity;
}

/* --------------------------------
   reduce motion
--------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .site-loading,
  .copy-only {
    display: none !important;
  }

  #js-header,
  .js-intro-busfull,
  .js-photo-left,
  .js-photo-right,
  .js-intro-copy,
  .js-scrollfade,
  .js-fadeup {
    opacity: 1 !important;
    transform: none !important;
    visibility: visible !important;
  }

  .site-header {
    transform: none !important;
  }

  .hero__scroll-dot {
    animation: none !important;
    opacity: 1 !important;
    top: 50% !important;
    transform: translate(-50%, -50%) !important;
  }

  .js-intro-100 {
    display: none !important;
  }
}

/* --------------------------------
   responsive
--------------------------------- */
@media (max-width: 991.98px) {
  :root {
    --header-height: 100px;
    --hero-symbol-width: min(50vw, 500px);
    --copy-size: clamp(16px, 2.8vw, 24px);
  }

  .site-header__inner,
  .content-block__inner {
    width: min(calc(100% - 32px), var(--page-max-width));
  }

  .site-logo img {
    height: 34px;
  }

  .site-nav {
    gap: 12px;
  }

  .site-nav a {
    font-size: 13px;
  }

  .site-nav a + a::before {
    margin-right: 12px;
  }

  .hero__photo {
    width: min(17vw, 220px);
  }
}

@media (max-width: 767.98px) {
  :root {
    --header-height: 72px;
    --hero-symbol-width: min(58vw, 480px);
    --copy-size: clamp(14px, 4vw, 18px);
    --scrollbar-size: 8px;
  }

  .site-header__inner,
  .content-block__inner {
    width: min(calc(100% - 24px), var(--page-max-width));
  }

  .site-header__inner {
    min-height: var(--header-height);
    gap: 12px;
  }

  .site-logo img {
    height: 26px;
  }

  .site-nav {
    gap: 8px;
  }

  .site-nav a {
    font-size: 11px;
  }

  .site-nav a + a::before {
    margin-right: 8px;
  }

  .hero {
    padding-top: var(--header-height);
  }

  .hero__symbol{
    margin-top: -30vw;
  }

  .hero__center {
    justify-content: center;
    padding-inline: 16px;
    min-height: calc(100svh - var(--header-height));
  }

  .hero__photo {
    width: min(22vw, 96px);
    top: 72%;
  }
  .hero__photo--left{
    top: 25%;
  }

  .hero__copy {
    margin-top: 22px;
    letter-spacing: 0.08em;
  }

  .hero__scroll-line {
    height: 54px;
  }

  .hero__scroll-dot {
    width: 6px;
    height: 6px;
  }

  .content-block {
    padding: 96px 0 120px;
  }

  .content-block__box {
    padding: 24px;
    border-radius: 18px;
  }
}
/* --------------------------------
  メッセージセクション
--------------------------------- */
.anniversary-message {
  padding: 200px 0 250px;
}

.anniversary-message__inner {
  width: min(100% - 40px, 1100px);
  margin: 0 auto;
}

.anniversary-message__title {
  margin: 0;
  font-family: "toppan-bunkyu-mincho-pr6n", serif;
  font-weight: 400;
  font-style: normal;
  font-size: clamp(32px, 4.2vw, 58px);
  line-height: 1.7;
  letter-spacing: 0.08em;
  text-align: center;
  color: #111111;
}

.anniversary-message__body {
  margin-top: 35px;
}

.anniversary-message__body p {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 2.2;
  letter-spacing: 0.05em;
  text-align: center;
  color: #111111;
}

.anniversary-message__body p + p {
  margin-top: 56px;
}

@media (max-width: 991.98px) {
  .anniversary-message {
    padding: 200px 0 200px;
  }

  .anniversary-message__inner {
    width: min(100% - 32px, 1100px);
  }

  .anniversary-message__body {
    margin-top: 64px;
  }

  .anniversary-message__body p + p {
    margin-top: 44px;
  }
}

@media (max-width: 767.98px) {
  .anniversary-message {
    padding: 90px 0 100px;
  }

  .anniversary-message__inner {
    width: min(100% - 24px, 1100px);
  }

  .anniversary-message__title {
    font-size: clamp(28px, 8vw, 35px);
    line-height: 1.65;
    letter-spacing: 0.06em;
    margin-right: -10px;
  }

  .anniversary-message__body p {
    line-height: 2.05;
    letter-spacing: 0.04em;
    font-weight: 500;
    font-size: 16px;
  }

  .anniversary-message__body p + p {
    margin-top: 34px;
  }
}

/* --------------------------------
  お客様の声／カルーセル
--------------------------------- */

.message-carousel {
  position: relative;
  z-index: 0;
  padding: 0 0 17vw;
  background: #f5f5f5;
}

.message-carousel__inner {
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
}

.message-carousel__head {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  margin-top: -70px;
  padding: 0 20px;
  text-align: center;
}

.message-carousel__title {
  margin: 0;
  font-family: "toppan-bunkyu-mincho-pr6n", serif;
  font-weight: 400;
  font-style: normal;
  font-size: clamp(90px, 6.8vw, 100px);
  line-height: 1;
  letter-spacing: 0.02em;
  color: #f07c00;
}

.message-carousel__sub {
  margin: 35px 0 0;
  font-family: "toppan-bunkyu-mincho-pr6n", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 20px;
  line-height: 1.8;
  letter-spacing: 0.08em;
  color: #111111;
}

.message-carousel__slider {
  margin-top: 200px;
  padding: 40px 0 28px;
  overflow: visible;
}

.message-carousel .swiper {
  overflow: visible;
}

.message-carousel .swiper-wrapper {
  align-items: center;
}

.message-carousel .swiper-slide {
  width: min(550px, 43vw);
  height: auto;
}

.message-card {
  position: relative;
  display: block;
  width: 100%;
  min-height: 375px;
  color: #ef7a00;
  transform: translateY(30px) scale(0.92);
  opacity: 0.72;
  transition:
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform, opacity;
}

.message-card--orange {
  color: #ef7a00;
}

.message-card--blue {
  color: #116cb8;
}

.message-card__frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  pointer-events: none;
}

.message-card__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: inherit;
  padding: 24px 60px 50px;
  box-sizing: border-box;
}

.message-card__lead {
  width: 100%;
  min-height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.message-card__lead img {
  display: block;
  width: auto;
  max-width: 400px;
  height: auto;
  margin: 0 auto;
  aspect-ratio: 7 / 2;
}

.message-card--orange .message-card__lead {
  color: #ef7a00;
}

.message-card--blue .message-card__lead {
  color: #116cb8;
}

.message-card__text {
  margin: 20px 0 0;
  width: 90%;
  color: #111111;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 15px;
  line-height: 200%;
  letter-spacing: 0.04em;
  font-weight: 400;
}

.message-carousel .swiper-slide-prev .message-card,
.message-carousel .swiper-slide-next .message-card {
  opacity: 0.88;
}

.message-carousel .swiper-slide-active .message-card {
  transform: translateY(-26px) scale(1);
  opacity: 1;
}

.message-carousel__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  margin: 30px auto;
  width: fit-content;
}

.message-carousel__arrow {
  position: relative;
  width: 58px;
  height: 35px;
  border: 1px solid #183065;
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  transition: opacity 0.3s ease, background-color 0.3s ease;
}

.message-carousel__arrow:hover {
  opacity: 0.7;
}

.message-carousel__arrow span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 7px;
  height: 7px;
  border-top: 1px solid #183065;
  border-right: 1px solid #183065;
}

.message-carousel__arrow--prev span {
  transform: translate(-35%, -50%) rotate(-135deg);
}

.message-carousel__arrow--next span {
  transform: translate(-65%, -50%) rotate(45deg);
}

.message-carousel__pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.message-carousel__pagination .swiper-pagination-bullet {
  width: 7px;
  height: 7px;
  margin: 0 !important;
  background: #d9d9d9;
  opacity: 1;
}

.message-carousel__pagination .swiper-pagination-bullet-active {
  background: #116cb8;
}

.js-message-pagination .swiper-pagination-bullet {
  background: #d9d9d9;
  opacity: 1;
}

.js-message-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active.is-orange {
  background: #EF7A00;
}

.js-message-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active.is-blue {
  background: #116CB8;
}

@media (max-width: 991.98px) {
  .message-carousel .swiper-slide {
    width: min(420px, 56vw);
  }

  .message-card {
    min-height: 330px;
  }

  .message-card__inner {
    padding: 30px 34px 38px;
  }

  .message-carousel .swiper-slide-active .message-card {
    transform: translateY(-20px) scale(1);
  }
}

/* =========================
  SP
========================= */
@media (max-width: 767.98px) {
  .message-carousel__head {
    margin-top: -30px;
  }
  .message-carousel__title {
    font-size: clamp(52px, 15vw, 58px);
  }

  .message-carousel__sub {
    margin-top: 12px;
    font-size: 14px;
  }

  .message-carousel__slider {
    margin-top: 100px;
    padding: 24px 0 20px;
  }

  .message-carousel .swiper-slide {
    width: min(330px, 92vw);
  }

  .message-card {
    min-height: auto;
    height: auto;
    transform: translateY(18px) scale(0.94);
  }

  .message-card__inner {
    min-height: 405px;
    padding: 18px 22px 40px;
    justify-content: flex-start;
  }

  .message-card__lead {
    width: 100%;
    min-width: 0;
    line-height: 1.5;
    min-height: 72px;
  }
  .message-card__lead img {
    display: block;
    width: auto;
    max-width: 260px;
    height: auto;
    margin: 0 auto;
    aspect-ratio: 7 / 2;
  }
  .message-card__text {
    margin-top: 22px;
    width: 90%;
    font-size: 16px;
    letter-spacing: 0.025em;
    text-align: justify;
  }

  .message-carousel .swiper-slide-active .message-card {
    transform: translateY(-14px) scale(1);
  }

  .message-carousel__nav {
    gap: 18px;
  }

  .message-carousel__arrow span {
    border-top: 1px solid #183065;
    border-right: 1px solid #183065;
  }
}

/* --------------------------------
  キャラクターセクション
--------------------------------- */
.anniversary-special {
  position: relative;
  /* overflow: hidden; */
  background: #152F60;
  background: linear-gradient(180deg,rgba(21, 47, 96, 1) 0%, rgba(28, 116, 187, 1) 90%);
  background-size: 100%;
  padding: 0 0 100px;
  margin-top: 0px;
  z-index: 1;
}
.anniversary-special:before {
  content: url(../img/upper.svg);
  background-size: 100%;
  background-repeat: no-repeat;
  top: -13.3vw;
  position: absolute;
  height: auto;
  width: 100%;
  z-index: 4;
  left: 0;
  right: 0;
  margin: auto;
}
.anniversary-special:after {
  content: url(../img/under.svg);
  background-size: 100%;
  background-repeat: no-repeat;
  bottom: -12.3vw;
  position: absolute;
  height: auto;
  width: 100%;
  z-index: 4;
  left: 0;
  right: 0;
  margin: auto;
}

.anniversary-special__bg {
  position: absolute;
  inset: 0;
  background: #1e3f84;
  opacity: 0.18;
  pointer-events: none;
}

.anniversary-special__inner {
  position: relative;
  z-index: 2;
  width: min(100% - 40px, 1250px);
  margin: 0 auto;
}

.anniversary-special__head {
  text-align: center;
  color: #ffffff;
}

.anniversary-special__eyebrow {
  margin: 0;
  font-family: "toppan-bunkyu-mincho-pr6n", serif;
  font-weight: 400;
  font-style: normal;
  font-size: clamp(72px, 9vw, 95px);
  line-height: 1;
  letter-spacing: 0.1em;
}

.anniversary-special__title {
  margin: 15px 0 0;
  font-family: "toppan-bunkyu-mincho-pr6n", serif;
  font-weight: 400;
  font-style: normal;
  font-weight: 500;
  font-size: clamp(52px, 8vw, 95px);
  line-height: 1.05;
  letter-spacing: 0.05em;
}

.anniversary-special__lead {
  margin: 50px 0 0;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: clamp(16px, 1.6vw, 20px);
  line-height: 2;
  letter-spacing: 0.1em;
}

.anniversary-special__card {
  margin: 130px auto 80px;
  width: 100%;
  background: #fff;
  border-radius: 350px;
  padding: 90px 90px 50px;
}

.anniversary-special__subhead {
  margin: 0;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: clamp(20px, 1.3vw, 25px);
  line-height: 1.7;
  letter-spacing: 0.08em;
  color: #1d69c2;
}

.anniversary-special__subhead span {
  display: block;
  position: relative;
}

.anniversary-special__subhead span + span {
  margin-top: 2px;
}

.anniversary-special__subhead {
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
  padding: 0 86px;
}

.anniversary-special__subhead::before,
.anniversary-special__subhead::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 34px;
  height: 2px;
  background: #1d69c2;
}

.anniversary-special__subhead::before {
  left: 15px;
  top: 55%;
  transform: translateY(-50%) rotate(65deg);
}

.anniversary-special__subhead::after {
  right: 15px;
  top: 55%;
  transform: translateY(-50%) rotate(-65deg);
}

.anniversary-special__content {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  align-items: center;
  gap: 100px;
  margin-top: 30px;
}

.anniversary-special__figure {
  text-align: right;
}

.anniversary-special__figure img {
  width: min(100%, 250px);
  height: auto;
  display: inline-block;
}

.anniversary-special__info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.anniversary-special__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 300px;
  min-height: 60px;
  padding: 12px 32px;
  border-radius: 999px;
  background: #1d69c2;
  color: #ffffff;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 3vw, 35px);
  letter-spacing: 0.28em;
}

.anniversary-special__text {
  margin-top: 50px;
}

.anniversary-special__text p {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: clamp(20px, 0.5vw, 40px);
  line-height: 1.95;
  letter-spacing: 0.06em;
  color: #111111;
}

.anniversary-special__extra {
  margin-top: 56px;
}

.anniversary-special__extra > * + * {
  margin-top: 36px;
}

@media (max-width: 991.98px) {
  /* .anniversary-special {
    padding: 150px 0 180px;
  } */

  /* .anniversary-special::before {
    top: -240px;
    height: 320px;
  }

  .anniversary-special::after {
    bottom: -240px;
    height: 320px;
  } */

  .anniversary-special__inner {
    width: min(100% - 32px, 1180px);
  }

  .anniversary-special__card {
    margin-top: 72px;
    border-radius: 120px;
    padding: 68px 52px 76px;
  }

  .anniversary-special__content {
    gap: 32px;
  }

  .anniversary-special__badge {
    min-width: 220px;
    min-height: 64px;
  }
}

@media (max-width: 767.98px) {
  .anniversary-special {
    padding: 50px 0 50px;
    /* overflow: hidden; */
  }

  /* .anniversary-special::before {
    top: -120px;
    width: 170%;
    height: 180px;
  }

  .anniversary-special::after {
    bottom: -120px;
    width: 170%;
    height: 180px;
  } */

  .anniversary-special__inner {
    width: 100%;
    overflow: hidden;
  }

  .anniversary-special__eyebrow {
    font-size: clamp(42px, 12.5vw, 72px);
  }

  .anniversary-special__title {
    margin-top: 4px;
    /* font-size: clamp(45px, 15vw, 72px); */
    font-size: clamp(42px, 12.5vw, 72px);
  }

  .anniversary-special__lead {
    margin-top: 50px;
    font-size: 16px;
    line-height: 2;
    letter-spacing: 0.2em;
  }

  .anniversary-special__card {
    border-radius: 50%;
    padding: 115px 150px 115px;
    margin: 80px calc(15.1% - 50vw) 0px;
    width: 170vw;
    overflow: hidden;
  }

  .anniversary-special__subhead {
    font-size: 15px;
    padding: 0 44px;
    letter-spacing: 0.1em;
  }

  .anniversary-special__subhead::before,
  .anniversary-special__subhead::after {
    width: 50px;
    height: 2px;
  }
  .anniversary-special__subhead::before{
    left: -5px;
  }
  .anniversary-special__subhead::after{
    right: 5px;
  }

  .anniversary-special__content {
    grid-template-columns: 1fr;
    gap: 26px;
    margin-top: 30px;
  }
  .anniversary-special__figure {
    text-align: center;
    margin: 30px auto 10px;
  }
  .anniversary-special__figure img {
    width: min(100%, 160px);
  }

  .anniversary-special__info {
    align-items: center;
    text-align: center;
  }

  .anniversary-special__badge {
    min-width: 220px;
    min-height: 56px;
    font-size: 26px;
    letter-spacing: 0.18em;
    padding: 6px 32px;
  }

  .anniversary-special__text {
    margin-top: 24px;
  }

  .anniversary-special__text p {
    font-size: 16px;
    line-height: 1.9;
  }

  .anniversary-special__extra {
    margin-top: 36px;
  }
  
}
/*無限スクロール*/
@keyframes infinity-scroll-left {
from {
  transform: translateX(0);
}
  to {
  transform: translateX(-100%);
}
}
.scroll-infinity__wrap {
  display: flex;
  overflow: hidden;
}
.scroll-infinity__list {
  display: flex;
  list-style: none;
  padding: 0;
  gap: 70px;
  /* margin: 50px auto; */
  margin: 150px auto 50px;
}
.scroll-infinity__list--left {
  animation: infinity-scroll-left 200s infinite linear 0.5s both;
}
.scroll-infinity__item {
  width: calc(110vw / 1);
}
.scroll-infinity__item>img {
  width: 100%;
}


@keyframes bounce-animation {
    0% {
        transform: scale(0)
    }
    50% {
        transform: scale(1.25)
    }
    100% {
        transform: scale(1)
    }
}

@keyframes fluffy-animation-01 {
    0% {
        transform: translate(0, 0) rotate(0) scale(1)
    }
    50% {
        transform: translate(0, 10px) rotate(0) scale(0.8)
    }
    100% {
        transform: translate(0, 0) rotate(0) scale(1)
    }
}

@keyframes fluffy-animation-02 {
    0% {
        transform: translate(0, 0) rotate(0) scale(1)
    }
    50% {
        transform: translate(0, -5px) rotate(0) scale(0.9)
    }
    100% {
        transform: translate(0, 0) rotate(0) scale(1)
    }
}
@media (max-width: 767.98px) {
  .scroll-infinity__item {
    width: calc(200vw / 1);
  }
  .scroll-infinity__item>img {
    width: 100%;
    filter: drop-shadow(0.3px 0 0 #fff) drop-shadow(-0.3px 0 0 #fff) drop-shadow(0 0.3px 0 #fff) drop-shadow(0 -0.3px 0 #fff);
  }
  .scroll-infinity__list {
    margin: 100px auto 50px;
    gap: 60px;
  }
}
/* --------------------------------
  バス・ライン
--------------------------------- */
.purpose-vision {
  position: relative;
  color: #ffffff;
  padding: 200px 0 0px;
  overflow: clip;
}

.purpose-vision__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.purpose-vision__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.purpose-vision__line-layer {
  position: absolute;
  top: 200px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  z-index: 5;
  pointer-events: none;
  aspect-ratio: auto;
    overflow: visible;
  height: auto;
}

.purpose-vision__line-svg {
  display: block;
  width: 100%;
  height: auto;
  overflow: visible;
  will-change: transform;
}

.purpose-vision__line-svg path {
  vector-effect: non-scaling-stroke;
}

.purpose-vision__bus-layer {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  overflow: visible;
}

.purpose-vision__bus {
  position: absolute;
  width: var(--bus-size);
  height: auto;
  display: block;
  transform-origin: center center;
  will-change: transform, left, top;
}

.purpose-vision__photo {
  position: absolute;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
}

.purpose-vision__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.purpose-vision__photo--01 {
  top: 12.8%;
  left: 72.5%;
  width: 19.8%;
  aspect-ratio: 1 / 1;
  transform: translate(-50%, -50%);
  animation: .6s ease bounce-animation forwards 1s, 3.8s fluffy-animation-02 ease-in-out infinite alternate 1.6s;
}

.purpose-vision__photo--02 {
  top: 42.5%;
  left: 48.8%;
  width: 17.8%;
  aspect-ratio: 1 / 1;
  transform: translate(-50%, -50%);
  animation: .6s ease bounce-animation forwards 1s, 3.5s fluffy-animation-02 ease-in-out infinite alternate 1.6s;
}

.purpose-vision__photo--03 {
  top: 58.9%;
  left: 13.0%;
  width: 11.6%;
  aspect-ratio: 1 / 1;
  transform: translate(-50%, -50%);
  animation: .6s ease bounce-animation forwards 1s, 3.5s fluffy-animation-02 ease-in-out infinite alternate 1.6s;
}

.purpose-vision__photo--04 {
  top: 80.3%;
  left: 8%;
  width: 27.5%;
  aspect-ratio: 1 / 1;
  transform: translate(-50%, -50%);
  animation: .6s ease bounce-animation forwards 1s, 3.8s fluffy-animation-02 ease-in-out infinite alternate 1.6s;
}

.purpose-vision__dot {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.purpose-vision__dot--01 {
  top: 13.2%;
  left: 88.2%;
  width: 3.1%;
  aspect-ratio: 1 / 1;
  border: 1px solid rgba(255, 255, 255, 0.72);
  transform: translate(-50%, -50%);
  animation: .5s ease bounce-animation forwards 1s, 3.2s fluffy-animation-01 ease-in-out infinite alternate 1.6s;
}

.purpose-vision__dot--02 {
  top: 46.2%;
  left: 74.2%;
  width: 1.9%;
  aspect-ratio: 1 / 1;
  background: #ffffff;
  transform: translate(-50%, -50%);
  animation: .5s ease bounce-animation forwards 1s, 3.0s fluffy-animation-01 ease-in-out infinite alternate 1.6s;
}

.purpose-vision__dot--03 {
  top: 95.3%;
  left: 92%;
  width: 4.3%;
  aspect-ratio: 1 / 1;
  background: #ffffff;
  transform: translate(-50%, -50%);
  animation: .5s ease bounce-animation forwards 1s, 3.0s fluffy-animation-01 ease-in-out infinite alternate 1.6s;
}

.purpose-vision__circle {
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.6);
  pointer-events: none;
  transform: translate(-50%, -50%);
  animation: .5s ease bounce-animation forwards 1s, 3.2s fluffy-animation-02 ease-in-out infinite alternate 1.6s;
}

.purpose-vision__circle--lt {
  top: -2.5%;
  left: -6.5%;
  width: 21%;
  aspect-ratio: 1 / 1;
}

.purpose-vision__circle--rt {
  top: 45%;
  left: 79%;
  width: 28%;
  aspect-ratio: 1 / 1;
}

.purpose-vision__circle--lb {
  top: 94%;
  left: 10%;
  width: 9%;
  aspect-ratio: 1 / 1;
}

.purpose-vision__circle--rb {
  top: 96.5%;
  left: 90%;
  width: 3.5%;
  aspect-ratio: 1 / 1;
}
.purpose-vision__circle--photo03-ring {
  position: absolute;
  top: 58.3%;
  left: 10%;
  width: 5.2%;
  aspect-ratio: 1 / 1;
  border: 2px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
}
.purpose-vision__dot--04 {
  top: 76%;
  left: 30%;
  width: 1.6%;
  aspect-ratio: 1 / 1;
  background: #fff;
  transform: translate(-50%, -50%);
  animation: .5s ease bounce-animation forwards 1s, 3.0s fluffy-animation-01 ease-in-out infinite alternate 1.6s;
}

.purpose-vision__inner {
  position: relative;
  z-index: 5;
  width: min(calc(100% - 80px), 1280px);
  margin: 0 auto;
  min-height: 1500px;
}

.purpose-vision__block--purpose {
  max-width: 700px;
  padding-top: 250px;
  padding-left: 60px;
}

.purpose-vision__block--vision {
  position: absolute;
  top: 50vw;
  left: 15vw;
  margin-top: 0;
  padding-left: 0;
  max-width: fit-content;
}

.purpose-vision__label {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 13px;
  line-height: 1.4;
  letter-spacing: 0.3em;
}

.purpose-vision__label-sub {
  margin: 5px 0 0;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: 0.08em;
}

.purpose-vision__headline {
  margin: 30px 0 0;
  font-family: "toppan-bunkyu-mincho-pr6n", serif;
  font-weight: 500;
  font-size: clamp(32px, 3.8vw, 55px);
  line-height: 1.55;
  letter-spacing: 0.02em;
  color: #ffffff;
}

.purpose-vision__vision-en {
  margin: 30px 0 0;
  font-family: "toppan-bunkyu-mincho-pr6n", serif;
  font-weight: 500;
  font-size: clamp(28px, 2.4vw, 35px);
  line-height: 1.5;
  letter-spacing: 0.07em;
}

.purpose-vision__vision-title {
  margin: 0px 0 0;
  font-family: "toppan-bunkyu-mincho-pr6n", serif;
  font-weight: 500;
  font-size: clamp(32px, 3.6vw, 55px);
  line-height: 1.5;
  letter-spacing: 0.08em;
  color: #ffffff;
}

.purpose-vision__text {
  position: absolute;
  top: 100vw;
  right: 30px;
  width: auto;
  margin: 0;
  padding-right: 0;
}

.purpose-vision__text p {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: clamp(12px,1.4vw,18px);
  line-height: 2.5;
  letter-spacing: 0.05em;
  color: #ffffff;
}

.purpose-vision__text p + p {
  margin-top: 34px;
}

.js-inview {
  opacity: 0;
  transform: translateY(24px) scale(0.995);
  transition: transform 1.5s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.5s ease 0.2s;
}

.js-inview.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}
@media screen and (max-width:1280px) {
    .purpose-vision__text {
        margin-right: 0vw;
    }
}
@media (max-width: 1199.98px) {
  .purpose-vision {
    padding: 150px 0 0;
  }

  .purpose-vision__line-layer {
    top: 150px;
    width: min(calc(100% - 24px), 1400px);
  }

  .purpose-vision__inner {
    width: min(calc(100% - 48px), 1180px);
    min-height: 1320px;
  }

  .purpose-vision__block--purpose {
    /* padding-left: 20px; */
  }

  .purpose-vision__block--vision {
    padding-left: 90px;
  }

  .purpose-vision__text {
      margin-right: 0vw;
  }
}

@media (max-width: 767.98px) {
  .purpose-vision {
    padding: 100px 0 450px;
  }

  .purpose-vision__line-layer {
    top: 120px;
    width: min(calc(100% - 16px), 1400px);
  }

  /* .purpose-vision__bus {
    width: 56px;
  } */

  .purpose-vision__inner {
    width: min(calc(100% - 24px), 1180px);
    min-height: auto;
  }

  .purpose-vision__mobile-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
  }

  .purpose-vision__mobile-line {
    position: absolute;
    display: block;
    overflow: visible;
  }

  .purpose-vision__mobile-line--01 {
    top: 0;
    left: 50%;
    width: 150vw;
    max-width: none;
    transform: translateX(-50%);
  }

  .purpose-vision__mobile-line--03 {
    bottom: -450px;
    left: 50%;
    width: 135vw;
    max-width: none;
    transform: translateX(-35%);
  }

  .purpose-vision__sp-bus {
    position: absolute;
    width: 100px;
    height: auto;
    transform-origin: center center;
    pointer-events: none;
    z-index: 2;
    opacity: 0;
    will-change: transform, opacity, left, top;
  }

  .purpose-vision__photo--01 { width: 45%; top: 18%; left: 63%; }
  .purpose-vision__photo--02 {width: 55.5%;top: 37%;left: 17%;}
  .purpose-vision__photo--03 { width: 30.5%; bottom: -8%; left: 7%; top: unset; }
  .purpose-vision__photo--04 { width: 54%; bottom: -18%; top: unset; left: 46%; }

  .purpose-vision__dot--01 { width: 8.6%; top: 17.5%;left: 94%; }
  .purpose-vision__dot--02 {width: 3.6%;top: 35.6%;left: 66%;}
  .purpose-vision__dot--03 { width: 3.8%; top: unset; bottom: -4%; left: 88%; }
  .purpose-vision__circle--lt { top: -5%; left: -22%; width: 43%; }
  .purpose-vision__circle--photo03-ring { top: unset; bottom: -4%; width: 12%; left: 5%;}
  .purpose-vision__circle--lb { left: 45%; width: 18%; top: unset; bottom: -19%; }
  .purpose-vision__dot--04,
  .purpose-vision__circle--rb,
  .purpose-vision__circle--rt{
    display: none;
  }

  .purpose-vision__block--purpose,
  .purpose-vision__block--vision {
    max-width: none;
    padding-left: 10px;
    padding-top: 150px;
  }

  .purpose-vision__block--vision {
    margin-top: 0px;
    position: unset;
  }

  .purpose-vision__headline {
    margin-top: 10px;
    font-size: 23px;
    line-height: 1.8;
  }

  .purpose-vision__vision-en {
    margin-top: 24px;
    font-size: 14px;
  }

  .purpose-vision__vision-title {
    margin-top: 0px;
    font-size: 23px;
    line-height: 1.7;
  }

  .purpose-vision__text {
    width: 80%;
    margin: 77vw auto 0;
    padding-right: 0;
    position: unset;
  }

  .purpose-vision__text p {
    font-size: 16px;
    line-height: 2.1;
    font-weight: 600;
    text-align: justify;
  }

  .purpose-vision__text p + p {
    margin-top: 45px;
  }
  .purpose-vision__mobile-line--01{
    position: absolute;
    margin: 0 calc(50% - 50vw);
    width: 100vw;
    max-width: unset;
  }
  .purpose-vision__mobile-line--02 {
    position: absolute;
    margin: 0px calc(50% - 50vw);
    width: 105vw;
    max-width: unset;
    top: 400px;
  }
  .purpose-vision__mobile-line--03 {
    position: absolute;
    margin: 0 calc(65% - 50vw);
    width: 100vw;
    max-width: unset;
    bottom: -450px;
    left: 80px;
  }
}


/* --------------------------------
  沿革セクション
--------------------------------- */
.vision{
    margin-top: -35vw;
    margin-bottom: -1px;
}
.vision .container{
    position: relative;
    z-index: 0;
    max-width: var(--page-max-width);
    margin: auto;
    display: block;
    width: 90%;
    bottom: 30px;
}
.history{
    color: #fff;
    position: absolute;
    bottom: 10px;
}
.history__eyebrow{
    font-size: var(--copy-size);
    font-family: "toppan-bunkyu-mincho-pr6n", serif;
    font-weight: 400;
    font-style: normal;
    margin: auto;
    letter-spacing: 0.1em;
}
.history__title{
    font-family: "toppan-bunkyu-mincho-pr6n", serif;
    font-weight: 400;
    font-style: normal;
    font-size: clamp(32px, 4vw, 45px);
    margin: auto;
}
@media (max-width: 767.98px) {
  .history {
    bottom: -20px;
    line-height: 1.8em;
  }
  .vision {
    margin-top: -20vw;
  }
  .history__title {
    font-size: 26px;
  }
}
/* --------------------------------
  沿革アコーディオン
--------------------------------- */

.top-service__wrapper {
  position: relative;
  background: #fff;
  overflow: visible;
  padding-bottom: 0;
}

.top-service__item {
  width: 100%;
  background-color: #fff;
  box-sizing: border-box;
  overflow: hidden;
  overflow-anchor: none;
}
.top-service__item__heading {
  scroll-margin-top: 0;
}
/* =========================
   sticky phase
========================= */
.top-service__wrapper:not(.is-passed) .top-service__item {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  min-height: var(--item-min-height);
}

.top-service__wrapper:not(.is-passed) .--01 {
  z-index: 1;
  transform: translateY(0);
}
.top-service__wrapper:not(.is-passed) .--02 {
  z-index: 2;
  transform: translateY(100px);
}
.top-service__wrapper:not(.is-passed) .--03 {
  z-index: 3;
  transform: translateY(200px);
}
.top-service__wrapper:not(.is-passed) .--04 {
  z-index: 4;
  transform: translateY(300px);
}
.top-service__wrapper:not(.is-passed) .--05 {
  z-index: 5;
  transform: translateY(400px);
}
.top-service__wrapper:not(.is-passed) .--06 {
  z-index: 6;
  transform: translateY(500px);
  margin-bottom: 850px;
}
@media (min-width: 768px) and (max-height: 850px) {
  .top-service__wrapper:not(.is-passed) .--01,
  .top-service__wrapper:not(.is-passed) .--02,
  .top-service__wrapper:not(.is-passed) .--03,
  .top-service__wrapper:not(.is-passed) .--04,
  .top-service__wrapper:not(.is-passed) .--05,
  .top-service__wrapper:not(.is-passed) .--06 {
    transform: translateY(0) !important;
  }
  .top-service__wrapper:not(.is-passed) .--06 {
    margin-bottom: 300px;
  }
}

/* sticky中は本文見えたまま */
.top-service__wrapper:not(.is-passed) .top-service__item__body {
  height: auto;
  opacity: 1;
  overflow: visible;
}

/* =========================
   common
========================= */
.top-service__item.--01 .top-service__item__heading { background: var(--history-bg-01); }
.top-service__item.--02 .top-service__item__heading { background: var(--history-bg-02); }
.top-service__item.--03 .top-service__item__heading { background: var(--history-bg-03); }
.top-service__item.--04 .top-service__item__heading { background: var(--history-bg-04); }
.top-service__item.--05 .top-service__item__heading { background: var(--history-bg-05); }
.top-service__item.--06 .top-service__item__heading { background: var(--history-bg-06); }

.top-service__inner {
  max-width: var(--page-max-width);
  width: 90%;
  margin: 0 auto;
  position: relative;
}

.top-service__item__heading {
  height: var(--header-height);
  margin: 0;
  position: relative;
  z-index: 2;
  color: #fff;
}

.top-service__item__heading .top-service__inner {
  height: 100%;
  display: grid;
  grid-template-columns: 100px 1fr;
  align-items: center;
  column-gap: clamp(18px, 2.4vw, 36px);
  padding-left: 36px;
  box-sizing: border-box;
}

.top-service__item__heading .top-service__inner::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc(var(--history-line-x) + -1px);
  width: 1px;
  background: var(--history-line-color);
}

.top-service__item.--01 .top-service__item__heading .top-service__inner::before {
  top: 45px;
}

.top-service__item__heading .top-service__inner::after {
  content: "";
  position: absolute;
  top: 50%;
  left: var(--history-line-x);
  width: var(--history-dot-size);
  height: var(--history-dot-size);
  border-radius: 50%;
  background: #fff;
  transform: translate(-50%, -50%);
}

.top-service__item.is-open .top-service__item__heading .top-service__inner::after {
  width: var(--history-dot-size-open);
  height: var(--history-dot-size-open);
}

.top-service__item__year {
  display: block;
  margin: 0;
  font-family: "toppan-bunkyu-mincho-pr6n", serif;
  font-weight: 400;
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1;
  letter-spacing: 0.08em;
  color: #fff;
}

.top-service__item__title {
  display: block;
  margin: 0;
  font-family: "toppan-bunkyu-mincho-pr6n", serif;
  font-weight: 400;
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.4;
  letter-spacing: 0.06em;
  color: #fff;
}

.top-service__item__body {
  background: var(--history-body-bg);
}

.top-service__item__body .top-service__inner {
  padding-left: 86px;
  box-sizing: border-box;
}

.top-service__item__body-inner {
  position: relative;
  padding: 40px 0;
  display: flex;
  gap: 40px;
  min-height: calc(var(--item-min-height) - var(--header-height));
  box-sizing: border-box;
}

.top-service__item__body .top-service__inner::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 36px;
  left: var(--history-line-x);
  width: 1px;
  background:
    linear-gradient(
      to bottom,
      rgba(65, 102, 179, 0.95) 0%,
      rgba(65, 102, 179, 0.95) 72%,
      rgba(65, 102, 179, 0.35) 88%,
      rgba(65, 102, 179, 0) 100%
    );
  mask-image: repeating-linear-gradient(
    to bottom,
    #000 0 2px,
    transparent 2px 6px
  );
  -webkit-mask-image: repeating-linear-gradient(
    to bottom,
    #000 0 2px,
    transparent 2px 6px
  );
}

/* =========================
   accordion phase
========================= */
.top-service__wrapper.is-passed {
  padding-bottom: 0;
}

.top-service__wrapper.is-passed .top-service__item {
  position: relative !important;
  top: 0 !important;
  transform: none !important;
  min-height: 0 !important;
  max-height: none !important;
}

.top-service__wrapper.is-passed .top-service__item__heading {
  cursor: pointer;
}

.top-service__wrapper.is-passed .top-service__item__body {
  overflow: hidden;
  height: 0;
  opacity: 0;
  transition:
    height 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.3s ease;
}

.top-service__wrapper.is-passed .top-service__item.is-open .top-service__item__body {
  opacity: 1;
}

.top-service__wrapper,
.top-service__item,
.top-service__item__body {
  overflow-anchor: none;
}

/* =========================
   mobile
========================= */
@media (max-width: 768px) {
  .top-service__wrapper,
  .top-service__item,
  .top-service__item__body {
    overflow-anchor: auto !important;
  }

  :root {
    --header-height: 56px;
    --item-min-height: 560px;
    --history-line-x: 28px;
    --history-dot-size: 10px;
    --history-dot-size-open: 14px;
  }

  .top-service__wrapper {
    padding-bottom: 0;
  }

  .top-service__wrapper .top-service__item {
    position: relative !important;
    top: 0 !important;
    transform: none !important;
    min-height: 0 !important;
    max-height: none !important;
  }

  .top-service__wrapper .top-service__item__body {
    height: auto !important;
    opacity: 1 !important;
    overflow: visible !important;
  }

  .top-service__wrapper .top-service__item__heading {
    cursor: default;
  }

  .top-service__item__heading .top-service__inner {
    grid-template-columns: 82px 1fr;
    column-gap: 18px;
    padding-left: 52px;
  }

  .top-service__item__body .top-service__inner {
    padding-left: 52px;
  }

  .top-service__item__year {
    font-size: 18px;
  }

  .top-service__item__title {
    font-size: 18px;
    line-height: 1.35;
  }

  .top-service__item__body-inner {
    padding: 20px 0;
    flex-direction: column;
  }

  .top-service__item__body .top-service__inner::before {
    bottom: 0;
    left: calc(var(--history-line-x) + -1px);
    width: 2px;
    background: linear-gradient(to bottom, rgb(29 55 113) 0%, rgb(29 55 113) 100%);
    mask-image: repeating-linear-gradient(to bottom, #000 0 2px, transparent 2px 6px);
    -webkit-mask-image: repeating-linear-gradient(to bottom, #000 0 2px, transparent 4px 5px);
  }

  .--06 .top-service__item__body .top-service__inner::before {
    background: linear-gradient(to bottom, rgba(65, 102, 179, 0.95) 0%, rgba(65, 102, 179, 0.95) 72%, rgba(65, 102, 179, 0.35) 88%, rgba(65, 102, 179, 0) 100%);
  }
}
/* =========================
  沿革詳細
========================= */
.history-detail {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 5vw;
}

.history-detail__media {
  position: relative;
  flex: 0 0 clamp(260px, 30vw, 420px);
  width: clamp(260px, 30vw, 420px);
}

.history-detail__image {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  overflow: hidden;
  background: #ddd;
}

.history-detail__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.history-detail__deco {
  position: absolute;
  border: 1px solid #2A4C96;
  border-radius: 50%;
  pointer-events: none;
}

.history-detail__content {
  position: relative;
  flex: 1 1 auto;
  min-height: clamp(260px, 30vw, 420px);
  padding: clamp(8px, 1.5vw, 20px) 0 clamp(24px, 3vw, 40px);
}

.history-detail__text {
  position: relative;
  z-index: 2;
  width: 100%;
  margin: clamp(12px, 2vw, 28px) 0 0 auto;
  padding: clamp(24px, 2.4vw, 34px) clamp(24px, 4vw, 52px);
}

.history-detail__text::before,
.history-detail__text::after {
  content: "";
  position: absolute;
  width: clamp(34px, 4vw, 56px);
  height: clamp(34px, 4vw, 56px);
  pointer-events: none;
}

.history-detail__text::before {
  top: 0;
  left: 0;
  border-top: 2px solid #147BD0;
  border-left: 2px solid #147BD0;
}

.history-detail__text::after {
  right: 0;
  bottom: 0;
  border-right: 2px solid #147BD0;
  border-bottom: 2px solid #147BD0;
}

.history-detail__text p {
  margin: 0;
  font-family: "Noto Sans JP JP", sans-serif;
  font-weight: 600;
  font-size: clamp(14px, 1.15vw, 18px);
  line-height: clamp(1.9, 2, 2);
  letter-spacing: 0.05em;
  color: #111111;
}

.history-detail__year {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 1;
  font-family: "toppan-bunkyu-midashi-min-st", serif;
  font-weight: 900;
  font-size: clamp(72px, 10vw, 170px);
  line-height: 1;
  letter-spacing: 0.04em;
  color: #EBEBEB;
  white-space: nowrap;
  pointer-events: none;
}

/* ---- 1926  ---- */
.history-detail--1926 .history-detail__deco--01 {
  top: 16%;
  left: -2%;
  width: clamp(34px, 4vw, 52px);
  aspect-ratio: 1 / 1;
  animation: .5s ease bounce-animation forwards 1s, 3.2s fluffy-animation-01 ease-in-out infinite alternate 1.6s;
}
.history-detail--1926 .history-detail__deco--02 {
  right: -13%;
  bottom: 8%;
  width: clamp(86px, 9vw, 130px);
  aspect-ratio: 1 / 1;
  animation: .5s ease bounce-animation forwards 1s, 3.0s fluffy-animation-01 ease-in-out infinite alternate 1.6s;
}
/* ---- 1989  ---- */
.history-detail--1989 .history-detail__deco--01 {
  top: 58%;
  left: -10%;
  width: clamp(34px, 4vw, 52px);
  aspect-ratio: 1 / 1;
  animation: .5s ease bounce-animation forwards 1s, 3.0s fluffy-animation-01 ease-in-out infinite alternate 1.6s;
}
.history-detail--1989 .history-detail__deco--02 {
  top: -4%;
  right: -4%;
  width: clamp(76px, 9vw, 130px);
  aspect-ratio: 1 / 1;
  animation: .5s ease bounce-animation forwards 1s, 3.2s fluffy-animation-01 ease-in-out infinite alternate 1.6s;
}
/* ---- 2001  ---- */
.history-detail--2001 .history-detail__deco--01 {
  right: -18%;
  bottom: 6%;
  width: clamp(80px, 10vw, 140px);
  aspect-ratio: 1 / 1;
  animation: .5s ease bounce-animation forwards 1s, 3.0s fluffy-animation-01 ease-in-out infinite alternate 1.6s;
}
.history-detail--2001 .history-detail__deco--02 {
  right: 4%;
  bottom: -1%;
  width: clamp(30px, 4vw, 48px);
  aspect-ratio: 1 / 1;
  animation: .5s ease bounce-animation forwards 1s, 3.2s fluffy-animation-01 ease-in-out infinite alternate 1.6s;
}
/* ---- 2010  ---- */
.history-detail--2010 .history-detail__deco--01 {
  top: 16%;
  left: -2%;
  width: clamp(34px, 4vw, 52px);
  aspect-ratio: 1 / 1;
  animation: .5s ease bounce-animation forwards 1s, 3.2s fluffy-animation-01 ease-in-out infinite alternate 1.6s;
}
.history-detail--2010 .history-detail__deco--02 {
  right: -13%;
  bottom: 8%;
  width: clamp(76px, 9vw, 130px);
  aspect-ratio: 1 / 1;
  animation: .5s ease bounce-animation forwards 1s, 3.0s fluffy-animation-01 ease-in-out infinite alternate 1.6s;
}
/* ---- 2019  ---- */
.history-detail--2019 .history-detail__deco--01 {
  top: -6%;
  right: -6%;
  width: clamp(70px, 10vw, 140px);
  aspect-ratio: 1 / 1;
  animation: .5s ease bounce-animation forwards 1s, 3.2s fluffy-animation-01 ease-in-out infinite alternate 1.6s;
}
.history-detail--2019 .history-detail__deco--02 {
  left: -6%;
  bottom: 8%;
  width: clamp(30px, 4vw, 48px);
  aspect-ratio: 1 / 1;
  animation: .5s ease bounce-animation forwards 1s, 3.0s fluffy-animation-01 ease-in-out infinite alternate 1.6s;
}
.history-detail--2019 .history-detail__deco--02::after {
  content: "";
  position: absolute;
  right: -35%;
  bottom: -3%;
  width: 60%;
  aspect-ratio: 1 / 1;
  border: 1px solid #4166b3;
  border-radius: 50%;
  animation: .5s ease bounce-animation forwards 1s, 3.0s fluffy-animation-01 ease-in-out infinite alternate 1.6s;
}
/* ---- 2025  ---- */
.history-detail--2025 .history-detail__deco--01 {
  top: -6%;
  left: -6%;
  width: clamp(34px, 4vw, 52px);
  aspect-ratio: 1 / 1;
  animation: .5s ease bounce-animation forwards 1s, 3.1s fluffy-animation-01 ease-in-out infinite alternate 1.6s;
}
.history-detail--2025 .history-detail__deco--02 {
  right: -16%;
  bottom: -2%;
  width: clamp(90px, 11vw, 150px);
  aspect-ratio: 1 / 1;
  animation: .5s ease bounce-animation forwards 1s, 3.2s fluffy-animation-02 ease-in-out infinite alternate 1.6s;
}
.history-detail--2025 .history-detail__deco--01::after {
  content: "";
  position: absolute;
  right: -35%;
  bottom: -8%;
  width: 60%;
  aspect-ratio: 1 / 1;
  border: 1px solid #4166b3;
  border-radius: 50%;
  animation: .5s ease bounce-animation forwards 1s, 3.0s fluffy-animation-01 ease-in-out infinite alternate 1.6s;
}

.top-service__wrapper.is-passed {
  padding-bottom: 0;
}

.top-service__wrapper.is-passed .top-service__item {
  position: relative !important;
  top: 0 !important;
  min-height: 0 !important;
  max-height: var(--header-height);
}

.top-service__wrapper.is-passed .top-service__item.is-open {
  max-height: 600px;
}

.top-service__wrapper.is-passed .top-service__item__heading {
  cursor: pointer;
}

.top-service__wrapper,
.top-service__item {
  overflow-anchor: none;
}

.top-service__trigger {
  display: block;
  width: 100%;
  height: 1px;
}

@media (max-width: 768px){
  :root {
    --header-height: 70px;
    --item-min-height: 70px;
    --history-line-x: 5px;
    --history-dot-size: 10px;
    --history-dot-size-open: 14px;
  }

  .top-service__item__heading .top-service__inner {
    grid-template-columns: auto 1fr;
    column-gap: 18px;
    padding-left: 20px;
  }
  .top-service__item.--01 .top-service__item__heading .top-service__inner::before {
      top: 30px;
  }
  .top-service__item__heading .top-service__inner::before {
    left: calc(var(--history-line-x) + -0.1%);
    top: 30px;
    width: 1.5px;
  }
  .top-service__item__body .top-service__inner {
    padding-left: 25px;
    padding-right: 10px;
  }

  .top-service__item__year {
    font-size: 18px;
  }

  .top-service__item__title {
    font-size: 18px;
    line-height: 1.35;
  }

  .top-service__item__body-inner {
    padding: 20px 0 0;
    flex-direction: column;
  }

  .history-detail {
    max-width: 100%;
    align-items: center;
    gap: 32px;
  }

  .history-detail__media {
    width: min(85%, 320px);
    flex-basis: auto;
    margin: 0 auto;
  }

  .history-detail__content {
    width: 100%;
    min-height: auto;
    padding: 0 0 150px;
  }

  .history-detail__text {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 24px 24px;
  }

  .history-detail__text::before,
  .history-detail__text::after {
    width: 36px;
    height: 36px;
  }

  .history-detail__text p {
    font-size: 18px;
    line-height: 2;
    text-align: justify;
  }

  .history-detail__year {
    right: 0;
    left: 0;
    margin: auto;
    text-align: center;
    bottom: 0;
    font-size: clamp(86px, 26vw, 100px);
    line-height: 0.78;
  }

  /* 1926 */
  .history-detail--1926 .history-detail__deco--01 {
    top: 14%;
    left: -4%;
  }
  .history-detail--1926 .history-detail__deco--02 {
    right: -13%;
    bottom: -1%;
  }
  /* 1989 */
  .history-detail--1989 .history-detail__deco--01 {
    top: 63%;
    left: -8%;
  }
  .history-detail--1989 .history-detail__deco--02 {
    top: -2%;
    right: -2%;
  }
  /* 2001 */
  .history-detail--2001 .history-detail__deco--01 {
    right: -16%;
    bottom: 2%;
  }
  .history-detail--2001 .history-detail__deco--02 {
    right: 5%;
    bottom: -2%;
  }
  /* 2019 */
  .history-detail--2019 .history-detail__deco--01 {
    top: -4%;
    right: -4%;
  }
  .history-detail--2019 .history-detail__deco--02 {
    left: -4%;
    bottom: 6%;
  }
  /* 2025 */
  .history-detail--2025 .history-detail__deco--01 {
    top: -4%;
    left: -4%;
  }
  .history-detail--2025 .history-detail__deco--02 {
    right: -14%;
    bottom: -5%;
  }

  .top-service__wrapper:not(.is-passed) .--01 { top: 56px; }
  .top-service__wrapper:not(.is-passed) .--02 { top: 112px; }
  .top-service__wrapper:not(.is-passed) .--03 { top: 168px; }
  .top-service__wrapper:not(.is-passed) .--04 { top: 224px; }
  .top-service__wrapper:not(.is-passed) .--05 { top: 280px; }
  .top-service__wrapper:not(.is-passed) .--06 { top: 336px; margin-bottom: 100px;}
}

.anniversary-footer-message{
    background: #DDEFFF;
    margin-top: 250px;
    padding: 150px 0 150px;
    position: relative;
}
.anniversary-footer-message:before {
    content: "";
    position: absolute;
    top: -65px;
    left: 0;
    right: 0;
    margin: auto;
    max-height: 130px;
    height: 100%;
    width: 90%;
    background-image: url(../img/future.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}
.anniversary-footer-message:after {
    position: absolute;
    content: "";
    background: url(../img/future-img.svg);
    width: 100%;
    height: 100px;
    background-repeat: repeat-x;
    background-position: bottom;
    bottom: -3px;
}

@media (max-width:767px) {
  
  .anniversary-footer-message {
    margin-top: 80px;
    padding: 80px 0 40px;
  }
  .anniversary-footer-message .anniversary-message__body{
    width: 80%;
    margin: 50px auto;
  }
  .anniversary-footer-message:after {
      background-repeat: repeat-x;
      background-position: 8% bottom;
      bottom: -3px;
      background-size: 270%;
  }
  .anniversary-footer-message .anniversary-message__body p{
    font-weight: 500;
  }

}

/* ===============================
  footer
=============================== */
.site-footer {
  background: #0C0C36;
  color: #ffffff;
  padding: 80px 0 100px;
}

.site-footer__inner {
  width: var(--page-max-width);
  width: 90%;
  margin: 0 auto;
}

.site-footer__top {
  display: flex;
  justify-content: flex-start;
  gap: 80px;
}

.site-footer__left {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
/* .site-footer__logo{
  margin-bottom: 50px;
} */
.site-footer__logo img {
  height: 38px;
  display: block;
  margin-bottom: 70px;
}

.site-footer__company {
  font-size: 18px;
  margin: 0 0 16px;
}

.site-footer__address {
  font-size: 16px;
  line-height: 1.9;
  margin: 0 0 20px;
  opacity: 0.85;
}

.site-footer__tel {
  font-size: 16px;
  line-height: 1.8;
}

.site-footer__tel span {
  font-size: 12px;
}

.site-footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer__links li {
  margin-bottom: 30px;
}

.site-footer__links a {
  font-size: 15px;
  letter-spacing: 0.05em;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid #fff;
  padding-bottom: 4px;
  transition: 0.3s;
}

.site-footer__links a:hover {
  opacity: 0.6;
}
.site-footer__links span{
  margin-top: -10px;
}

.site-footer__bottom {
  margin-top: 70px;
  padding-top: 50px;
  border-top: 1px solid #fff;
}

.site-footer__bottom-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.site-footer__copy {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

.site-footer__policy {
  display: flex;
  gap: 20px;
  font-size: 12px;
}

.site-footer__policy a {
  border-bottom: 1px solid rgb(255,255,255,0.6);
  padding-bottom: 4px;
  width: fit-content;
}

.site-footer__copy {
  font-size: 12px;
  font-family: 'Noto Sans JP' , sans-serif;
}

.site-footer__sns-pc {
  display: flex;
  gap: 18px;
}

.site-footer__sns img {
  width: 22px;
  height: auto;
}
.site-footer .flex-sp{
  display: none;
}
/* ===============================
  responsive
=============================== */
@media (max-width: 768px) {
  .site-footer__sns-pc {
    display: none;
  }
  .site-footer {
    padding: 30px 0 50px;
  }

  .site-footer__inner {
    width: calc(100% - 40px);
  }

  .site-footer__company{
    font-weight: 700;
    letter-spacing: 0.1em;
  }

  .site-footer__top {
    flex-direction: column;
    gap: 40px;
  }

  .site-footer__bottom-inner {
    gap: 16px;
    align-items: end;
  }
  .site-footer__links li {
    margin-bottom: 20px;
  }
  .site-footer__links a{
    font-weight: 700;
  }
  .site-footer__sns {
    display: flex;
    gap: 18px;
  }
  .site-footer .flex-sp{
    display: flex;
    justify-content: space-between;
    align-items: end;
  }
  .site-footer__logo {
    margin-bottom: 0px;
  }
  .site-footer__logo img {
    height: 30px;
    margin: 0;
  }
  .site-footer__sns img {
    width: 25px;
  }
  .site-footer__bottom {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #fff;
  }
  .site-footer__policy {
    display: inline-grid;
  }
  .site-footer__copy {
    position: static;
    transform: none;
    text-align: right;
    width: 100%;
    font-size: 10px;
    margin-bottom: 0;
  }
}


/* ===============================
  ハンバーガーメニュー
=============================== */
.site-hamburger,
.site-drawer {
  display: none;
}

@media (max-width: 810px) {
  .is-drawer-open .site-logo img {
    filter: brightness(0) invert(1);
  }
  .site-nav {
    display: none;
  }

  .site-header {
    z-index: 2000;
  }
  span.site-hamburger__label {
    position: absolute;
    left: 50%;
    bottom: -5px;
    transform: translateX(-50%);
    font-size: 11px;
    letter-spacing: 0.08em;
    color: #fff;
    opacity: 0;
    transition: opacity 0.2s ease;
    pointer-events: none;
    background: unset !important;
    height: auto !important;
    text-align: center;
    width: auto !important;
  }

  .site-hamburger.is-active .site-hamburger__label {
      opacity: 1;
      line-height: 0.5;
      font-size: 12px;
      font-family: 'Noto Sans JP';
      font-weight: 800;
  }

  .site-header__inner {
    position: relative;
    z-index: 2002;
    width: calc(100% - 50px);
    min-height: 72px;
    gap: 12px;
  }

  .site-logo {
    position: relative;
    z-index: 2003;
  }

  .site-logo img {
    height: 28px;
    width: auto;
    display: block;
  }

  .site-hamburger {
    display: inline-flex;
    position: relative;
    z-index: 2003;
    width: 58px;
    height: 58px;
    margin-left: auto;
    padding: 0;
    border: none;
    outline: none;
    box-shadow: none;
    border-radius: 50%;
    background: #385CA9;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
  }

  .site-hamburger::before {
    content: none;
  }

  .site-hamburger span {
    position: absolute;
    left: 50%;
    width: 26px;
    height: 1.5px;
    margin: 0;
    background: #fff;
    border: none;
    border-radius: 999px;
    transform: translateX(-50%);
    transition:
      top 0.28s ease,
      transform 0.28s ease,
      opacity 0.2s ease;
  }

  .site-hamburger span:nth-child(1) {
    top: 19px;
  }

  .site-hamburger span:nth-child(2) {
    top: 28px;
  }

  .site-hamburger span:nth-child(3) {
    top: 37px;
  }

  .site-hamburger.is-active span:nth-child(1) {
    top: 28px;
    transform: translateX(-50%) rotate(35deg);
    width: 34px;
  }

  .site-hamburger.is-active span:nth-child(2) {
    opacity: 0;
  }

  .site-hamburger.is-active span:nth-child(3) {
    top: 28px;
    transform: translateX(-50%) rotate(-35deg);
    width: 34px;
  }

  .site-hamburger:focus,
  .site-hamburger:focus-visible,
  .site-hamburger:active {
    outline: none;
    box-shadow: none;
    border: none;
  }

  .site-drawer {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 2001;
    background: rgba(0, 0, 0, 0);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
      opacity 0.3s ease,
      visibility 0.3s ease,
      background 0.3s ease;
  }

  .site-drawer.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    background: rgba(0, 0, 0, 0.08);
  }

  .site-drawer__panel {
    position: relative;
    width: 100%;
    height: 100dvh;
    min-height: 100dvh;
    background: #385CA9;
    box-sizing: border-box;
    padding: 96px 36px 28px;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.38s cubic-bezier(0.22, 1, 0.36, 1);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .site-drawer.is-open .site-drawer__panel {
    transform: translateX(0);
  }

  .site-drawer__logo {
    position: absolute;
    top: 22px;
    left: 24px;
    z-index: 1;
  }

  .site-drawer__logo img {
    display: block;
    width: auto;
    height: 28px;
  }

  .site-drawer__nav {
    display: flex;
    flex-direction: column;
    gap: 34px;
    margin-top: 36px;
  }

  .site-drawer__nav a {
    color: #fff;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 22px;
    line-height: 1.45;
    font-weight: 700;
    letter-spacing: 0.04em;
  }

  .site-drawer__foot {
    margin-top: auto;
    padding-top: 28px;
    padding-bottom: 50px;
    border-top: 1px solid rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 36px;
  }

  .site-drawer__foot img {
    display: block;
    width: 40px;
    height: 40px;
  }

  body.is-drawer-open {
    overflow: hidden;
    touch-action: none;
  }
}

@media (max-width: 480px) {
  .site-header__inner {
    min-height: 64px;
  }

  .site-logo img {
    height: 24px;
  }

  .site-hamburger {
    width: 40px;
    height: 40px;
  }

  .site-hamburger span {
    width: 22px;
  }

  .site-hamburger span:nth-child(1) {
    top: 12px;
  }

  .site-hamburger span:nth-child(2) {
    top: 19px;
  }

  .site-hamburger span:nth-child(3) {
    top: 26px;
  }

  .site-hamburger.is-active span:nth-child(1),
  .site-hamburger.is-active span:nth-child(3) {
    top: 18px;
  }

  .site-drawer__panel {
    padding: 88px 22px 22px;
  }

  .site-drawer__logo {
    top: 18px;
    left: 22px;
  }

  .site-drawer__logo img {
    height: 24px;
  }

  .site-drawer__nav {
    gap: 28px;
    margin-top: 30px;
  }

  .site-drawer__nav a {
    font-size: 18px;
  }

  .site-drawer__foot img {
    width: 34px;
    height: 34px;
  }
}