@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&family=Cormorant:wght@400;500;600;700&display=swap");
*, *::before, *::after {
  box-sizing: border-box;
}

body, h1, h2, h3, h4, h5, h6, p, ul, ol, li, dl, dt, dd, figure, blockquote {
  margin: 0;
  padding: 0;
}

ul, ol {
  list-style: none;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

input, button, textarea, select {
  font: inherit;
  color: inherit;
}

button {
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
}

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

a:hover {
  opacity: 0.7;
}

:focus {
  outline: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

html {
  line-height: 2;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: "Noto Sans JP", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 500;
  color: #1A1A1A;
  background: #fff;
  width: 100%;
}

html, body {
  margin: 0;
  padding: 0;
  width: 100%;
}

.flex {
  display: flex;
  flex-wrap: wrap;
}

.isSP {
  display: none;
}

.isPC {
  display: block;
}

@media (max-width: 767px) {
  .flex {
    flex-direction: column;
  }
  .sp-flex {
    flex-direction: row;
  }
  .isSP {
    display: block;
  }
  .isPC {
    display: none;
  }
}
/* ===============================
   scale 対象エリア（768統一）
=============================== */
.scale-area {
  overflow: hidden;
  position: relative;
  height: auto;
}

.scale-inner {
  width: 1728px;
  transform-origin: top left;
  transform: scale(var(--ui-scale, 1));
  height: calc(100% * var(--ui-scale));
  will-change: transform;
}

.siteContent {
  padding-bottom: 1px; /* 0だと合成レイヤー境界で隙間が出ることがあるため1px */
}

@media (max-width: 767px) {
  .scale-inner {
    width: 390px;
  }
}
.global-bgvideo {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
  pointer-events: none;
  filter: grayscale(100%);
}

.skip-intro-button {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  z-index: 220;
  padding: 12px 28px;
  border-radius: 999px;
  border: 2px solid #fff;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.skip-intro-button.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

@media (max-width: 768px) {
  .skip-intro-button {
    bottom: 16px;
    padding: 10px 20px;
    font-size: 12px;
  }
}
.skip-transition-overlay {
  position: fixed;
  inset: 0;
  z-index: 230;
  background: #fff;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s ease, visibility 0s linear 0.35s;
}

.skip-transition-overlay.is-active {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.35s ease;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  z-index: 100;
  pointer-events: none;
}
.site-header > a,
.site-header > button {
  pointer-events: all;
}

.header-logo {
  display: flex;
  height: 128px;
  padding: 24px 40px 24px 24px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 0 0 64px 0;
  background: #FFF;
}

.image-link {
  display: flex;
  padding: 18px 24px;
  justify-content: center;
  align-items: center;
  border-radius: 34px;
  border: 3px solid #0073B7;
  background: #F8F5F3;
  margin-left: auto;
}

.hamburger {
  display: flex;
  height: 128px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  aspect-ratio: 1/1;
  border-radius: 0 0 0 128px;
  background: #94B9D7;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
  padding-left: 24px;
  position: relative;
  z-index: 99;
}

.hamburger-text {
  font-weight: 700;
}

.hamburger-lines {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hamburger-lines span {
  width: 40px;
  height: 5px;
  background: #000;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* PC */
.hamburger.is-active .hamburger-lines span:nth-child(1) {
  transform: translateY(13px) rotate(45deg);
}

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

.hamburger.is-active .hamburger-lines span:nth-child(3) {
  transform: translateY(-13px) rotate(-45deg);
}

.global-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 420px;
  height: 100%;
  max-height: var(--viewport-height-px, 100svh);
  background: #fff;
  transform: translateX(100%);
  transition: transform 0.4s ease;
  overflow: clip;
  z-index: 99;
}
.global-menu ul {
  position: relative;
  height: 100%;
  padding: 120px 40px 50px;
  overflow-X: clip;
  overflow-y: scroll;
  z-index: 1;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.global-menu ul::-webkit-scrollbar {
  display: none;
}
.global-menu ul li {
  margin-bottom: 20px;
}
.global-menu a {
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
}
.global-menu a span {
  font-size: 12px;
  font-weight: 500;
}
.global-menu img {
  position: absolute;
  bottom: 0;
  left: -40px;
  max-width: 320px;
  z-index: 0;
}

.global-menu.is-open {
  transform: translateX(0);
}

.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 99;
}

.menu-overlay.is-active {
  opacity: 1;
}

@media (max-width: 768px) {
  .site-header {
    gap: 12px;
  }
  .header-logo {
    padding: 12px 24px 12px 12px;
    height: auto;
    margin-bottom: auto;
  }
  .header-logo img {
    width: min(135 / 393 * 100vw, 135px);
  }
  .hamburger-lines {
    gap: 4px;
  }
  .hamburger-lines span {
    width: 24px;
    height: 3px;
  }
  .hamburger-text {
    font-size: 10px;
  }
  .image-link {
    padding: 12px;
  }
  .hamburger {
    padding: 14px 12px 24px 28px;
    height: 76px;
    gap: 0;
  }
  .global-menu a {
    font-size: 18px;
  }
  .global-menu a span {
    font-size: 12px;
  }
  .global-menu {
    width: 280px;
    padding: 120px 20px;
  }
}
@media (max-width: 768px) {
  .hamburger.is-active .hamburger-lines span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .hamburger.is-active .hamburger-lines span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
}
/* コンテンツを前面に */
#app {
  position: relative;
  z-index: 100;
}

#app.is-hidden {
  opacity: 0;
  pointer-events: none;
  height: 0;
  overflow: hidden;
}

/* 動きに弱いユーザーへの配慮 */
@media (prefers-reduced-motion: reduce) {
  .global-bgvideo {
    display: none;
  }
}
/* ===== スクロールロック ===== */
body.is-locked {
  position: fixed;
  width: 100%;
  overflow: hidden;
}

/* ===== レイアウト ===== */
.panel {
  width: 100vw;
  min-height: var(--viewport-height-px, 100svh);
  height: auto;
  position: relative;
  overflow: hidden;
}

.bgvideo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  background-color: #fff;
}

.after {
  min-height: var(--viewport-height-px, 100svh);
  padding: 48px 16px;
}

.after .inner {
  max-width: 960px;
  margin: 0 auto;
}

/* モーション配慮 */
@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
.siteContent {
  overflow-x: hidden;
}

.after-video {
  position: relative;
}

.after-video picture {
  position: relative;
  z-index: 10;
  height: var(--viewport-height-px, 100svh);
  overflow: hidden;
}

.after-video img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  background: #fff;
}

.scroll-hint {
  position: absolute;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s ease;
  color: #000;
  z-index: 11;
}

.scroll-hint.is-visible {
  opacity: 1;
}

.scroll-hint .icon {
  display: flex;
  line-height: 1;
  width: 16px;
}

.icon svg {
  width: 100%;
}

.content {
  margin-top: 480px;
}

.message-section {
  width: 100%;
  padding: 80px 0;
  background: rgba(0, 0, 0, 0.5);
}

.content-inner {
  max-width: 1556px;
  width: 90%;
  margin: auto;
}

/* ===============================
   PCレイアウト
=============================== */
.message-inner {
  position: relative;
  max-width: 1280px;
  display: grid;
  grid-template-columns: 560px 1fr;
  grid-template-areas: "image text" "handwritten name";
  -moz-column-gap: 40px;
       column-gap: 40px;
  grid-row-gap: 140px;
  align-items: start;
}
@media only screen and (max-width: 767px) {
  .message-inner {
    max-width: 100%;
    width: 100%;
    padding-left: min(16 / 393 * 100vw, 16px);
    padding-right: min(16 / 393 * 100vw, 16px);
  }
}

.message-name {
  grid-area: name;
  display: flex;
  align-items: center;
  -moz-column-gap: 24px;
       column-gap: 24px;
  margin-top: auto;
  margin-left: auto;
}
@media only screen and (max-width: 767px) {
  .message-name {
    flex-direction: column;
    align-items: flex-start;
    margin-left: 0;
  }
}
.message-name p {
  font-size: 32px;
  color: #fff;
}
@media only screen and (max-width: 767px) {
  .message-name p {
    font-size: min(20 / 393 * 100vw, 20px);
  }
}
.message-name img {
  width: 222px;
}
@media only screen and (max-width: 767px) {
  .message-name img {
    width: min(174 / 393 * 100vw, 174px);
  }
}

.handwritten {
  grid-area: handwritten;
}
@media only screen and (min-width: 768px) {
  .handwritten {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 770px;
  }
}

.handwritten img {
  width: 100%;
  display: block;
}

.message-image {
  grid-area: image;
}
@media only screen and (max-width: 767px) {
  .message-image {
    width: 100%;
  }
}

.message-image img {
  width: 100%;
  display: block;
}

.caption {
  margin-top: 12px;
  font-size: 32px;
  color: #fff;
}

.message-text {
  grid-area: text;
  color: #fff;
  font-size: 28px;
  letter-spacing: 0.02em;
  line-height: 1.4;
}

/* ===============================
   SP
=============================== */
@media (max-width: 768px) {
  .message-inner {
    grid-template-columns: 1fr;
    grid-template-areas: "image" "text" "handwritten" "name";
    gap: 32px;
  }
  .message-text {
    font-size: 16px;
  }
  .caption {
    font-size: 12px;
  }
}
.iframe-inner {
  aspect-ratio: 16/9;
  margin: 240px auto 0;
  display: block;
  height: auto;
}

.content-iframe-inner {
  margin-top: 360px;
}

@media (max-width: 768px) {
  .iframe-inner {
    margin: 240px auto 0;
  }
  .content-iframe-inner {
    margin-top: 80px;
  }
}
.content-section {
  width: 100%;
  background: rgba(255, 255, 255, 0.75);
  margin-top: 400px;
}

@media (max-width: 768px) {
  .content-section {
    margin-top: 120px;
  }
}
.top-sectionH2 {
  position: relative;
}

.top-sectionH2 span {
  position: relative;
  display: block;
  max-width: 1280px;
  width: 90%;
  margin: auto;
  color: #F8F5F3;
  font-size: 32px;
  font-weight: 900;
  letter-spacing: 3.2px;
}

@media (max-width: 768px) {
  .top-sectionH2 {
    top: -16px;
  }
  .top-sectionH2 span {
    font-size: 16px;
    letter-spacing: 1.6px;
  }
}
.top-sectionH2::before {
  content: "";
  position: absolute;
  left: 0;
  top: -96px;
  width: 100%;
  height: auto;
  aspect-ratio: 432/83;
}

@media (max-width: 768px) {
  .top-sectionH2::before {
    top: -4px;
    aspect-ratio: 393/110;
  }
}
.interview-section .top-sectionH2::before, .interview-lower-section .top-sectionH2::before {
  background: url("img/interview-header.webp");
}

.career-section .top-sectionH2::before {
  background: url("img/career-header.webp");
}

.enviroment-section .top-sectionH2::before {
  background: url("img/enviroment-header.webp");
}

@media (max-width: 768px) {
  .interview-section .top-sectionH2::before, .interview-lower-section .top-sectionH2::before {
    background: url("img/interview-header-sp.webp");
    background-size: cover;
  }
  .career-section .top-sectionH2::before {
    background: url("img/career-header-sp.webp");
    background-size: cover;
  }
  .enviroment-section .top-sectionH2::before {
    background: url("img/enviroment-header-sp.webp");
    background-size: cover;
  }
}
.content-section h3 {
  width: 1280px;
  margin-left: auto;
  margin-right: auto;
  color: #20496B;
  font-family: "Noto Sans JP";
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 0.1em;
  margin-bottom: 80px;
}
@media only screen and (max-width: 767px) {
  .content-section h3 {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .content-section h3 {
    font-size: 24px;
    margin-bottom: 30px;
    padding-left: 16px;
    padding-right: 16px;
  }
}
.interview-inner {
  padding-top: 74px;
  padding-bottom: 200px;
}

@media (max-width: 768px) {
  .interview-inner {
    margin-top: min(40 / 393 * 100vw, 40px);
    padding-top: 0;
    padding-bottom: 64px;
  }
}
.interview-inner ul {
  max-width: 1280px;
  width: 90%;
  margin: auto;
  gap: 40px;
}

.interview-inner ul li {
  background: #FFFFFF;
}

.interview-inner img {
  width: 400px;
  height: auto;
  aspect-ratio: 1/1;
}

@media (max-width: 768px) {
  .interview-inner ul {
    gap: 15px;
  }
  .interview-inner li {
    width: calc((100% - 15px) / 2);
  }
}
.career-inner, .enviroment-inner {
  padding-top: 120px;
  padding-bottom: 160px;
}
.career-inner.-inner02, .enviroment-inner.-inner02 {
  padding-top: 120px;
  padding-bottom: 0;
}

@media (max-width: 768px) {
  .career-inner, .enviroment-inner {
    padding-top: 80px;
    padding-bottom: 72px;
  }
}
.career-section ul, .enviroment-section ul {
  max-width: 1556px;
  width: 90%;
  margin: auto;
  gap: 40px;
  margin-bottom: 200px;
}

.career-section ul li, .enviroment-section ul li {
  flex: 1;
}

.career-section h4, .enviroment-section h4 {
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin: 24px 0 16px;
}

.enviroment-section h4 {
  height: 116px;
}

.career-section p, .enviroment-section p {
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 1px;
}

@media (max-width: 768px) {
  .career-section ul, .enviroment-section ul {
    margin-bottom: 80px;
  }
  .career-section ul li img, .enviroment-section ul li img {
    aspect-ratio: 3/2;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .career-section h4, .enviroment-section h4 {
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
    margin: 20px 0 12px;
  }
  .career-section p, .enviroment-section p {
    font-feature-settings: "palt" on;
    font-size: 14px;
    line-height: 28px; /* 200% */
    letter-spacing: 0.7px;
  }
  .enviroment-section h4 {
    height: 48px;
  }
}
.careerpass-img {
  display: block;
  margin: auto;
  max-width: 1280px;
  height: auto;
}

.scroll-indicator {
  display: none;
}

@media (max-width: 768px) {
  .careerpass-img {
    width: 90%;
    overflow: scroll;
    margin: 0;
    margin-left: auto;
    margin-right: auto;
    position: relative;
  }
  /* 中央表示 */
  .scroll-indicator {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 12px 24px;
    font-size: 16px;
    background: rgba(0, 0, 0, 0.75);
    color: #fff;
    border-radius: 6px;
    opacity: 0;
    pointer-events: none;
    white-space: nowrap;
    z-index: 2;
    transition: opacity 0.4s ease;
  }
  .scroll-indicator.is-visible {
    opacity: 1;
  }
  /* 右へ動くアニメーション */
  .scroll-indicator span {
    display: inline-block;
    animation: scrollMove 1.2s ease-in-out infinite;
  }
}
@keyframes scrollMove {
  0% {
    transform: translateX(0);
    opacity: 0.6;
  }
  50% {
    transform: translateX(10px);
    opacity: 1;
  }
  100% {
    transform: translateX(0);
    opacity: 0.6;
  }
}
/* モーション配慮 */
@media (prefers-reduced-motion: reduce) {
  .scroll-indicator span {
    animation: none;
  }
}
.career-section .career-footer {
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 64px;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 6.4px;
  margin-top: 80px;
  background: #94B9D7;
  padding: 24px;
}

@media (max-width: 768px) {
  .career-section .career-footer {
    font-size: 28px;
    line-height: 1.6;
    letter-spacing: 2.8px;
  }
}
.history-section {
  background: url("img/history-bg.webp");
  padding: 240px 0 160px;
  background-position: center;
  background-size: cover;
  background-color: rgba(0, 0, 0, 0.4);
  background-blend-mode: multiply;
}

.top-historyH2 {
  color: #F8F5F3;
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 64px;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 6.4px;
  position: relative;
}

.top-historyH2::before {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  left: 0;
  bottom: 0;
  margin: 0 auto;
  border-bottom: 3px solid #F8F5F3;
  width: 160px;
}

.history-section p {
  color: #F8F5F3;
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 3.2px;
  max-width: 1280px;
  width: 90%;
  display: block;
  margin: 40px auto;
}

.history-section a {
  color: #F8F5F3;
  text-align: center;
  font-family: "Noto Sans";
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  display: flex;
  margin: auto;
  justify-content: center;
  align-items: center;
  gap: 24px;
}

@media (max-width: 768px) {
  .history-section {
    padding: 72px 0 80px;
  }
  .top-historyH2 {
    font-size: 32px;
    letter-spacing: 3.2px;
  }
  .history-section p {
    font-size: 20px;
    letter-spacing: 2px;
  }
  .history-section a {
    font-size: 24px;
  }
}
.number-section, .service-section {
  padding: 0 0 160px;
}

.number-section .caption-area + h3 {
  margin-top: 120px;
}
@media only screen and (max-width: 767px) {
  .number-section .caption-area + h3 {
    margin-top: 50px;
  }
}
.number-section .flex {
  gap: 54px;
  width: 80.6%;
  max-width: 1392px;
  margin: auto;
  margin-top: 100px;
}

.number-slider {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 80px;
  overflow: visible !important;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .number-slider {
    max-width: 100%;
    padding-left: min(16 / 393 * 100vw, 16px);
    padding-right: min(16 / 393 * 100vw, 16px);
  }
}
.number-slider__item {
  position: relative;
}
.number-slider__number {
  position: absolute !important;
  top: 0;
  left: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  font-variant-numeric: tabular-nums;
  color: #20496B;
  font-size: 96px;
  font-weight: bold;
  overflow: hidden;
  white-space: nowrap;
}
@media only screen and (max-width: 767px) {
  .number-slider__number {
    font-size: min(48 / 393 * 100vw, 48px);
  }
}
.number-slider__number.is-slot-ready .slot-digit {
  --slot-steps: 0;
  --slot-duration: 1200ms;
  position: relative;
  display: inline-flex;
  align-items: flex-start;
  justify-content: center;
  width: 0.6em;
  height: 1em;
  overflow: hidden;
}
.number-slider__number.is-slot-ready .slot-track {
  display: flex;
  flex-direction: column;
  line-height: 1;
  transform: translateY(0);
  transition: transform var(--slot-duration) cubic-bezier(0.18, 0.9, 0.22, 1);
}
.number-slider__number.is-slot-ready .slot-track.is-running {
  transform: translateY(calc(var(--slot-steps) * -1em));
}
.number-slider__number.is-slot-ready .slot-char {
  display: block;
  height: 1em;
  line-height: 1;
}
.number-slider__number.is-slot-ready .slot-symbol {
  display: inline-block;
  line-height: 1;
  margin-left: -0.05em;
  font-size: 0.8em;
}
@media only screen and (max-width: 767px) {
  .number-slider__number.is-slot-ready .slot-symbol {
    font-size: 0.7em;
  }
}
.number-slider__number.is-slot-ready .slot-decimal-first {
  display: inline-flex;
  align-items: flex-end;
  font-size: 0.75em;
  margin-left: 0.02em;
}
@media only screen and (max-width: 767px) {
  .number-slider__number.is-slot-ready .slot-decimal-first {
    font-size: 0.6em;
  }
}
.number-slider__number.number01 {
  top: 18%;
  left: 39.5%;
}
@media only screen and (max-width: 767px) {
  .number-slider__number.number01 {
    top: 36%;
    left: 43.5%;
  }
}
.number-slider__number.number02 {
  top: 18.5%;
  left: 43%;
}
@media only screen and (max-width: 767px) {
  .number-slider__number.number02 {
    top: 36.5%;
    left: 33%;
  }
}
.number-slider__number.number03 {
  top: 18.5%;
  left: 14%;
}
@media only screen and (max-width: 767px) {
  .number-slider__number.number03 {
    top: 38.5%;
    left: 12%;
  }
}
.number-slider__number.number04 {
  top: 18.5%;
  left: 33%;
}
@media only screen and (max-width: 767px) {
  .number-slider__number.number04 {
    top: 36.5%;
    left: 25%;
  }
}
.number-slider__number.number05 {
  top: 18.5%;
  left: 21%;
}
@media only screen and (max-width: 767px) {
  .number-slider__number.number05 {
    top: 40.5%;
    left: 12%;
  }
}
.number-slider__number.number06 {
  top: 16.5%;
  left: 22%;
}
@media only screen and (max-width: 767px) {
  .number-slider__number.number06 {
    top: 41.5%;
    left: 11%;
  }
}
.number-slider__number.number07 {
  top: 18.5%;
  left: 20%;
}
@media only screen and (max-width: 767px) {
  .number-slider__number.number07 {
    top: 38.5%;
    left: 12%;
  }
}
.number-slider__number.number08 {
  top: 18.5%;
  left: 21%;
}
@media only screen and (max-width: 767px) {
  .number-slider__number.number08 {
    top: 38.5%;
    left: 11%;
  }
}
.number-slider__number.number09 {
  top: 18.5%;
  left: 40%;
}
@media only screen and (max-width: 767px) {
  .number-slider__number.number09 {
    top: 38.5%;
    left: 40%;
  }
}
.number-slider__number.number10 {
  top: 18.5%;
  left: 36%;
}
@media only screen and (max-width: 767px) {
  .number-slider__number.number10 {
    top: 38.5%;
    left: 12%;
  }
}
.number-slider ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}
.number-slider li {
  width: auto;
  height: 428px;
  margin: 0;
  padding: 0;
}
.number-slider li + li {
  margin-left: 30px;
}
.number-slider li picture, .number-slider li img {
  width: auto;
  height: 100%;
}
.number-slider .swiper-arrow {
  position: absolute;
  top: 50%;
  width: 52px;
  height: 52px;
  border: none;
  border-radius: 9999px;
  background: #fff;
  transform: translateY(-50%);
  cursor: pointer;
  z-index: 5;
}
.number-slider .swiper-arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 12px;
  border-top: 2px solid #94B9D7;
  border-right: 2px solid #94B9D7;
}
.number-slider .swiper-arrow.swiper-button-disabled {
  opacity: 0;
  cursor: default;
  pointer-events: none;
}
.number-slider .swiper-arrow-prev {
  left: -26px;
}
.number-slider .swiper-arrow-prev::before {
  transform: translate(-35%, -50%) rotate(-135deg);
}
.number-slider .swiper-arrow-next {
  right: -26px;
}
.number-slider .swiper-arrow-next::before {
  transform: translate(-65%, -50%) rotate(45deg);
}
.number-slider .number-more-button {
  display: none;
}

.tab-list {
  display: flex;
  justify-content: space-between;
  width: 90%;
  max-width: 1280px;
  margin: auto;
}

.tab-list button {
  padding: 24px;
  background: #D9D9D9;
  color: #F8F5F3;
  cursor: pointer;
  font-size: 32px;
  line-height: 1;
  border-radius: 12px 12px 0 0;
}

.tab-list button[aria-selected=true] {
  background: #94B9D7;
}

.tab-list button:focus {
  outline-offset: 2px;
}

#panel-1, #panel-2, #panel-3, #panel-4 {
  width: 90%;
  max-width: 1280px;
  margin: auto;
  border: 5px solid #94B9D7;
  background: #F8F5F3;
}

.tab-inner {
  display: flex;
  gap: 40px;
  align-items: center;
  padding: 65px 80px;
}

.text {
  align-items: flex-start;
  width: 50%;
}
@media only screen and (max-width: 767px) {
  .text {
    width: 100%;
  }
}

.text h3 {
  font-feature-settings: "palt" on;
  font-family: "Noto Sans JP";
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 1.6px;
  text-align: left;
  margin-bottom: 40px;
}

.text p {
  font-feature-settings: "palt" on;
  font-family: "Noto Sans JP";
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 1.2px;
}

.image {
  max-width: 50%;
}
@media only screen and (max-width: 767px) {
  .image {
    max-width: 100%;
  }
}

.image img {
  width: 100%;
  height: auto;
}

/* レスポンシブ */
@media (max-width: 768px) {
  .number-section, .service-section {
    padding: 80px 0;
  }
  .number-section h2, .service-section h2 {
    font-size: 32px;
    letter-spacing: 3.2px;
  }
  .number-section .flex {
    gap: 4px;
    margin-top: 40px;
    width: 90%;
  }
  .number-slider ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
  .number-slider li {
    width: 100%;
    height: auto;
    margin-left: 0 !important;
  }
  .number-slider li img {
    width: 100%;
    height: auto;
  }
  .number-slider li.is-sp-hidden {
    display: none;
  }
  .number-slider .swiper-arrow {
    display: none;
  }
  .number-slider .number-more-button {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: min(100 / 393 * 100vw, 100px);
    margin-top: min(30 / 393 * 100vw, 30px);
    color: #20496B;
    font-size: min(14 / 393 * 100vw, 14px);
    font-weight: bold;
    line-height: 1;
    margin-left: auto;
    margin-right: auto;
    cursor: pointer;
  }
  .number-slider .number-more-button::after {
    content: "";
    position: relative;
    top: max(-3 / 393 * 100vw, -3px);
    display: inline-block;
    width: min(10 / 393 * 100vw, 10px);
    aspect-ratio: 1/1;
    border-bottom: 2px solid #20496B;
    border-right: 2px solid #20496B;
    transform: rotate(45deg);
    margin-left: min(8 / 393 * 100vw, 8px);
  }
  .number-slider.is-expanded .number-more-button::after {
    top: max(3 / 393 * 100vw, 3px);
    transform: rotate(225deg);
  }
  .tab-list {
    flex-wrap: wrap;
    gap: 8px;
    margin: 40px auto 12px;
  }
  .tab-list button {
    min-height: 61px;
    font-size: 16px;
    border-radius: 12px;
    padding: 12px;
    width: 170px;
  }
  .tab-inner {
    flex-direction: column-reverse;
    align-items: flex-start;
    padding: 20px;
  }
  .text h3 {
    font-size: 24px;
    margin-bottom: 24px;
  }
  .text p {
    font-size: 14px;
  }
}
.site-footer {
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  padding: 60px 0 40px;
}

.footer-inner {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* 横並び */
.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

/* ロゴ */
.footer-logo img {
  max-width: 200px;
  height: auto;
}

/* ナビ */
.footer-nav ul {
  display: flex;
  gap: 40px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
}

.footer-nav a:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 4px;
}

/* コピーライト */
.footer-bottom {
  margin-top: 40px;
  text-align: center;
  font-size: 14px;
  opacity: 0.8;
}

@media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  .footer-nav ul {
    flex-direction: column;
    gap: 16px;
  }
  .footer-bottom {
    text-align: left;
  }
}
#main {
  overflow: clip; /* hiddenより安全寄り：意図しないスクロールを作りにくい */
}

.caption-area {
  position: relative;
  width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 9.2592592593vw;
  white-space: nowrap;
}
@media only screen and (max-width: 767px) {
  .caption-area {
    width: 100%;
  }
}
.caption-area::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 100%;
  display: inline-block;
  width: 100vw;
  height: 5px;
  background: #94B9D7;
}
@media only screen and (max-width: 767px) {
  .caption-area::before {
    display: none;
  }
}
.caption-area-inner {
  display: inline-flex;
  align-items: center;
  -moz-column-gap: 2.3148148148vw;
       column-gap: 2.3148148148vw;
  border-bottom: 5px solid #94B9D7;
  padding-right: 4.6296296296vw;
}
@media only screen and (max-width: 767px) {
  .caption-area-inner {
    display: flex;
    align-items: stretch;
    flex-direction: column;
    border-bottom: none;
    padding-right: 0;
  }
}
.caption-area-inner:not(.-only)::after {
  order: 2;
  content: "";
  display: inline-block;
  width: 4.6296296296vw;
  height: 1px;
  background: #000;
}
@media only screen and (max-width: 767px) {
  .caption-area-inner:not(.-only)::after {
    display: none;
  }
}
.caption-area-inner p {
  order: 1;
  color: #E15234;
  font-size: 64px;
  font-weight: bold;
  letter-spacing: 0.1em;
  line-height: 1.5;
}
@media only screen and (max-width: 767px) {
  .caption-area-inner p {
    font-size: min(32 / 393 * 100vw, 32px);
    border-bottom: 5px solid #94B9D7;
    padding-left: min(16 / 393 * 100vw, 16px);
  }
}
.caption-area-inner h2 {
  order: 3;
  font-size: 32px;
  font-weight: normal;
  letter-spacing: 0.1em;
}
@media only screen and (max-width: 767px) {
  .caption-area-inner h2 {
    font-size: min(16 / 393 * 100vw, 16px);
    padding-left: min(16 / 393 * 100vw, 16px);
  }
}

.tab-section {
  display: flex;
  align-items: flex-start;
  gap: 80px;
  width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 120px;
}
@media only screen and (max-width: 767px) {
  .tab-section {
    gap: 30px;
    width: 100%;
    flex-direction: column;
    padding-left: min(16 / 393 * 100vw, 16px);
    padding-right: min(16 / 393 * 100vw, 16px);
    padding-bottom: 80px;
  }
}
.tab-section__img {
  position: relative;
  flex-shrink: 0;
  width: 600px;
}
@media only screen and (max-width: 767px) {
  .tab-section__img {
    width: 100%;
  }
}
.tab-section__img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.tab-section__img img.-active {
  position: static;
  opacity: 1;
  z-index: 1;
}
.tab-section__detail {
  flex: 1;
}
@media only screen and (max-width: 767px) {
  .tab-section__detail {
    width: 100%;
  }
}
.tab-section__detail dl {
  padding: 0 0 24px;
  border-bottom: 1px solid #94B9D7;
}
.tab-section__detail dl + dl {
  padding: 24px 0;
}
.tab-section__detail dl dt {
  position: relative;
  font-size: 32px;
  font-weight: bold;
  cursor: pointer;
}
@media only screen and (max-width: 767px) {
  .tab-section__detail dl dt {
    font-size: min(20 / 393 * 100vw, 20px);
    padding-right: min(40 / 393 * 100vw, 40px);
  }
}
.tab-section__detail dl dt::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  display: inline-block;
  width: 12px;
  aspect-ratio: 1/1;
  border-bottom: 2px solid #000;
  border-right: 2px solid #000;
  transform: translateY(-50%) rotate(45deg);
}
@media only screen and (max-width: 767px) {
  .tab-section__detail dl dt::after {
    right: min(20 / 393 * 100vw, 20px);
    width: min(12 / 393 * 100vw, 12px);
  }
}
.tab-section__detail dl dd {
  margin: 0;
  max-height: 0;
  padding-top: 0;
  overflow: hidden;
  opacity: 0;
  font-size: 20px;
  transition: opacity 0.35s ease, max-height 0.4s ease, padding-top 0.35s ease;
}
@media only screen and (max-width: 767px) {
  .tab-section__detail dl dd {
    font-size: min(14 / 393 * 100vw, 14px);
  }
}
.tab-section__detail dl.-active dt::after {
  transform: translateY(-50%) rotate(225deg);
}
.tab-section__detail dl.-active dd {
  max-height: 24em;
  padding-top: 12px;
  opacity: 1;
}
@media (prefers-reduced-motion: reduce) {
  .tab-section__img img, .tab-section__detail dl dd {
    transition: none;
  }
}

.movie-area {
  width: 1280px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 120px;
}
@media only screen and (max-width: 767px) {
  .movie-area {
    width: 100%;
    padding-left: min(10 / 393 * 100vw, 10px);
    padding-right: min(10 / 393 * 100vw, 10px);
  }
}
.movie-area ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}
@media only screen and (max-width: 767px) {
  .movie-area ul {
    gap: min(10 / 393 * 100vw, 10px);
  }
}
.movie-area ul li {
  width: 410px;
}
@media only screen and (max-width: 767px) {
  .movie-area ul li {
    width: min(180 / 393 * 100vw, 180px);
  }
}
.movie-area ul li iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  margin-top: 0;
}
@media only screen and (max-width: 767px) {
  .movie-area ul li > p {
    font-size: min(12 / 393 * 100vw, 12px);
  }
}

.link-area {
  width: 1280px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 120px;
}
@media only screen and (max-width: 767px) {
  .link-area {
    width: min(275 / 393 * 100vw, 275px);
  }
}
.link-area ul {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  .link-area ul {
    flex-direction: column;
    gap: min(40 / 393 * 100vw, 40px);
  }
}
.link-area ul li {
  flex: 1;
}
@media only screen and (max-width: 767px) {
  .link-area ul li {
    width: 100%;
  }
}/*# sourceMappingURL=style.css.map */