@charset "UTF-8";
/* =========================
  Base
========================= */
html {
  scroll-behavior: smooth;
  box-sizing: border-box;
}

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


body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
	margin-top: 0;
	margin-bottom: 0;
}

p {
	margin-top: 0;
	margin-bottom: 0;
}

ul,
ol {
  list-style: none;
}

ol ol,
ul ul,
ol ul,
ul ol {
	margin-bottom: 0;
  list-style: none;
}

a {
  text-decoration: none;
}

h2 {
  color: #171C60;
  font-family: "Yu Mincho", serif;
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

@media (max-width: 768px) {
  section {
    padding-left: 15px;
    padding-right: 15px;
  }

  h2 {
    font-size: 40px;
  }

  .pc-only {
    display: none !important;
  }

  .sp-only {
    display: block !important;
  }
}

/* ===== Header 共通 ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: 80px;
  background: rgba(23,28,96,0.4);
  backdrop-filter: blur(10px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 0 0 16px;
}

/* Logo */
.header-logo img {
  height: 56px;
  display: block;
}

/* PC ナビ & お問い合わせ */
.global-nav {
  display: flex;
  justify-content: flex-end;
  flex: 1;
}

.nav-list {
  display: flex;
  gap: 60px;
  align-items: center;
}

.nav-list a {
  color: #fff;
  font-size: 14px;
}

.header-contact {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #C8BB9B;
  height: 100%;
  min-width: 160px;
  gap: 8px;
  margin-left: 60px;
}

.header-contact a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #171C60;
  font-size: 14px;
}

/* SP専用初期非表示 */
.sp-contact,
.hamburger,
.sp-menu-contact,
.sp-only {
  display: none;
}

.pc-only {
  display: block;
}

/* =========================
   SP（768px以下）
========================= */
@media (max-width: 768px) {

  .site-header {
    height: 60px;
    background: none;
    backdrop-filter: none;
  }

  .header-inner {
    justify-content: flex-end;
    padding: 0;
  }

  /* ロゴ非表示 */
  .header-logo {
    display: none !important;
  }

  .header-contact {
    display: none;
  }

  /* SP閉じ時問い合わせ */
  .sp-contact {
    display: flex;
    background: #C8BB9B;
    height: 100%;
    max-width: 60px;
    width: 100%;
    align-items: center;
    justify-content: center;
    z-index: 10;
  }

  .sp-contact a img {
    display: block;
  }

  /* ハンバーガー */
  .hamburger {
    display: block;
    width: 100%;
    max-width: 60px;
    height: 100%;
    position: relative;
    z-index: 1700;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    background-color: #171C60;
  }

  .hamburger span {
    position: absolute;
    left: calc(50% - 15px);
    width: 30px;
    height: 2px;
    background: #ffffff;
    transition: 0.3s ease;
  }

  .hamburger span:nth-child(1) { top: 33%; }
  .hamburger span:nth-child(2) { top: 50%; }
  .hamburger span:nth-child(3) { bottom: 30%; }

  .hamburger.is-open span:nth-child(1) { transform: translateY(10px) rotate(45deg); }
  .hamburger.is-open span:nth-child(2) { opacity: 0; }
  .hamburger.is-open span:nth-child(3) { transform: translateY(-10px) rotate(-45deg); }

  /* グローバルナビ SP用 */
  .global-nav {
    position: fixed;
    top: 0;
    right: 0; /* 初期非表示 */
    width: 85%;
    max-width: 360px;
    height: 100vh;
    background: #C8BB9B;
    flex-direction: column;
    padding-top: 64px;
    transition: 0.3s ease;
    z-index: 1500;
    border-radius: 20px 0 0 20px;
    justify-content: space-between;

    transform: translateX(100%);
    transition: transform 0.3s ease;
  }

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

  }

  .nav-list {
    flex-direction: column;
    gap: 0;
    align-items: center;
    padding-left: 0;
  }

  .nav-list li {
    width: 100%;
    max-width: 200px;
    padding: 24px 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: 3px solid #171C60;
  }

  .nav-list a {
    color: #171C60;
    font-size: 16px;
    text-align: center;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
  }

  .sp-menu-contact {
    display: block;
  }

  .sp-menu-contact a {
    display: flex;
    align-items: center;
    gap: 4px;
  }

  .sp-menu-contact a img {
    height: 16px;
    width: auto;
  }

  /* メニュー開閉時スクロール制御 */
  body.menu-open {
    overflow: hidden;
  }
}


/* ==============================
  FV
============================== */

.fv {
  position: relative;
  width: 100vw;
  height: 100vh;
  min-height: 600px;
  margin-top: -80px;
  padding: 0;
}

.fv-slider,
.fv-slider .swiper-wrapper,
.fv-slider .swiper-slide {
  height: 100%;
}

.swiper {
  height: 100%;
}

/* スライダーを全面に */
.fv-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.fv-slider .swiper-slide {
  height: 100%;
}

.fv-slider .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* グラデーションを上に重ねる */
.swiper-slide {
  position: relative;
}

/* 共通オーバーレイ */
.slide-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
}

/* 画像は下 */
.swiper-slide img {
  position: relative;
  z-index: 0;
}

/* スライド別グラデーション */

.slide1 .slide-overlay {
  background: rgba(23, 28, 96, 0.30);
}

.slide2 .slide-overlay {
  background: linear-gradient(
    to right,
    rgba(23,28,96,.6),
    rgba(0,0,0,.2)
  );
}

.slide3 .slide-overlay {
  background: rgba(112, 112, 112, 0.15);
}

.fv-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

/* pagination位置（必要なら調整） */
.fv-slider .swiper-pagination {
  position: absolute;
  bottom: 16px !important;
  left: 50% !important;
  transform: translateX(-50%);
  z-index: 3;
  width: fit-content !important;
}

/* 丸の共通設定 */
.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #171C60 !important;
  opacity: 1 !important;
  margin: 0 16px !important;
}

/* アクティブ */
.swiper-pagination-bullet-active {
  background: #ffffff !important;
}

.fv__content {
  pointer-events: none;
}

.fv__content img,
.fv__content p {
  pointer-events: auto;
}

/* テキストは最前面 */
.fv__content {
  position: absolute;
  inset: 0;
  z-index: 2;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.fv__logo {
  filter: drop-shadow(0 0 8px rgba(0, 0, 0, 0.4));
}

.fv__catch {
  margin-top: 24px;
  color: #FFF;
  text-shadow: 0 0 8px rgba(0, 0, 0, 0.4);
  font-family: "Noto Sans JP", serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-align: center;
}

.fv__catch-wrap {
  position: relative;
  width: 100%;
  min-width: 280px;
}

.fv__catch {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transition: opacity 1.2s ease; /* Swiperのspeedと揃える */
}

.fv__catch.is-active {
  opacity: 1;
}

@media (max-width: 900px) {

  .fv {
    height: 75vh;
    min-height: auto;
  }
  .swiper {
    height: 55%;
  }

  .fv__content {
    justify-content: flex-end;
    padding: 15vh 25%;
    height: 55%;
    top: 45%;
    background: linear-gradient(180deg, rgba(23, 28, 96, 0.00) 0%, #171C60 15.19%);
  }

  .fv__content img {
    width: 100%;
  }

  .fv__catch {
    font-size: 16px;
  }

  .swiper-pagination {
    top: 100% !important;
    z-index: 1;
  }
}

/* ================================
  Message
================================ */
.message {
  width: 100%;
}

.section-bg-light {
  background-color: #f3f4f6;
}

/* 中身だけ中央寄せ＆幅制限 */
.message__inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 64px 0 90px;
}

/* 見出し */
.message__head {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.message__en {
  font-family: "Yu Mincho", serif;
  font-size: 48px;
  color: #171c60;
  margin: 0;
  font-weight: 400;
}

.message__jp {
  color: #333;
  text-align: center;
  font-family: "Noto Sans JP", serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

/* 本文 */
.message__body p {
  color: #000;
  font-family: "Noto Sans JP", serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 32px;
  margin-top: 32px;
}

.message__text {
  margin-bottom: 1rem;
  text-align: center;
}

.message__name {
  display: flex;
  justify-content: center;
}

@media (max-width: 900px) {
  .message__en {
    font-size: 40px;
  }

  .message__jp {
    font-size: 16px;
  }

  .message__text {
    text-align: start;
  }

  .message__name {
    justify-content: flex-end;
  }
}

/* =========================
  Philosophy
========================= */
.philosophy {
  width: 100%;
}

.philosophy__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 0;
}

.philosophy__flex {
  display: flex;
  justify-content: space-between;
}

/* 左 */
.philosophy__intro {
  max-width: 296px;
}

.philosophy__en {
  font-size: 48px;
  font-family: 'Yu Mincho', serif;
  margin: 0;
  color: #171C60;
}

.philosophy__jp {
  color: #333;
  font-family: "Noto Sans JP", serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.philosophy__text {
  color: #333;
  font-family: "Noto Sans JP", serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px; /* 187.5% */
  margin-top: 12px;
}

/* 右 */
.philosophy-right {
  width: 60%;
}

.philosophy-title {
  display: inline-block;
  padding: 6px 12px;
  background: #171C60;
  color: #fff;
  font-size: 18px;
  width: 100%;
}

.philosophy-list {
  list-style: none;
  margin: 0;
  padding: 0;
  margin-top: 35px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.philosophy-item {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-left: 8px;
}

.philosophy-item h4 {
  font-size: 20px;
  margin: 0;
  min-width: 100px;
}

.philosophy-item p {
  line-height: 26px;
  font-size: 18px;
  margin: 0;
}

@media (max-width: 900px) {

  .philosophy__inner {
    padding: 96px 15px;
  }

  .philosophy__flex {
    flex-direction: column;
    gap: 48px;
  }

  .philosophy__intro {
    width: 100%;
    max-width: 100%;
  }

  .philosophy__en {
    font-size: 40px;
    display: block;
    width: fit-content;
    margin: 0 auto;
  }

  .philosophy__jp {
    font-size: 16px;
    display: block;
    width: fit-content;
    margin: 0 auto;
  }

  .philosophy__text {
    margin-top: 56px;
  }

  .philosophy-right {
    width: 100%;
  }

  .philosophy-title {
    text-align: center;
  }

  .philosophy-item {
    align-items: flex-start;
    gap: 8px;
    padding-left: 0;
  }

  .philosophy-item h4 {
    font-size: 16px;
    min-width: 88px;
  }

  .philosophy-item p {
    font-size: 16px;
    line-height: normal;
  }
}

/* ================================
  SDGs
================================ */
.sdgs {
  width: 100%;
  border-top: 1px solid #171c60;
  border-bottom: 1px solid #171c60;
}

.sdgs__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 112px 0;
}

.sdgs__logo {
  max-width: 800px;
  margin: 0 auto;
}

.sdgs__logo img {
  width: 100%;
  height: 100%;
}

.sdgs__head {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 16px;
}

.sdgs__title {
  color: #333;
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.sdgs__description {
  color: #333;
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
}

.sdgs__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 48px;
  margin-top: 48px;
}

.sdgs__wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 40px;
  width: 50%;
}

.sdgs__img {
  width: 100%;
  margin: 0;
}

.sdgs__img img {
  width: 100%;
  height: 100%;
}

.sdgs__caption {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 10px;
}

.sdgs__caption-title {
  color: #333;
  font-family: "Noto Sans JP";
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.sdgs__caption-text {
  color: #333;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
}

@media (max-width: 900px) {

  .sdgs__title {
    font-size: 22px;
  }

  .sdgs__description {
    text-align: start;
  }

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

  .sdgs__wrapper {
    width: 100%;
    gap: 24px;
  }

  .sdgs__img {
    width: 80%;
    margin: 0 auto;
  }

  .sdgs__caption-title {
    font-size: 18px;
    text-align: center;
  }


}

/* --------------------------------
  Strength 
-------------------------------- */
.strength__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 72px 0;
}

/* ===== Header ===== */

.strength-header {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-bottom: 32px;
}

.strength-en {
}

.strength-ja {
  color: #333;
  text-align: center;
  font-family: "Noto Sans JP", serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 30px;
}

.strength__text {
  color: #000;
  font-family: "Noto Sans JP", serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px; /* 187.5% */
  text-align: center;
}

/* ===== List ===== */

.strength-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 72px;
  margin-top: 48px;
  list-style: none;
  padding: 0;
}

/* ===== Card ===== */

.strength-item {
  border: 2px solid #C8BB9B;
  background: #FFF;
  box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.25);
  padding: 40px 24px;
  min-height: 332px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.strength-item img {
  width: 48px;
  height: auto;
}

.strength-item:nth-child(3) img {
  width: 64px;
  height: auto;
}

.strength-item h3 {
  color: #000;
  text-align: center;
  font-family: "Noto Sans JP", serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 30px; /* 150% */
  margin: 0;
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.strength-item p {
  color: #000;
  font-family: "Noto Sans JP", serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px; /* 175% */
  text-align: left;
}

/* ===== Responsive ===== */

@media (max-width: 900px) {

  .strength-ja {
    font-size: 16px;
  }

  .strength__text {
    text-align: start;
  }

  .strength-list {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}
/* ==============================
  Service
============================== */
.service {
  width: 100%;
}

.service__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 0;
  display: grid;
  grid-template-columns: 296px 1fr;
  column-gap: 184px;
}
.service__head {
}

.service__en {
  font-family: "Yu Mincho", serif;
  font-size: 48px;
  line-height: 1;
  color: #171c60;
}

.service__jp {
  color: #333;
  font-family: "Noto Sans JP", serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.service__lead {
  color: #333;
  font-family: "Noto Sans JP", serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px; /* 187.5% */
  margin-top: 12px;
}

.service__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 80px;
}
.service-card {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.service-card__title {
  font-size: 24px;
  font-weight: 500;
}

.service-card__image {
  width: 100%;
  display: flex;
  gap: 16px;
}

.service-card__image img {
  width: calc((100% - 16px) / 2);
  height: auto;
}

.service-card__list {
  display: flex;
  list-style: none;
  gap: 16px;
  padding: 0;
}

.service-card__item {
  font-size: 16px;
  line-height: 30px;
}

@media (max-width: 900px) {
  .service__inner {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 64px 15px;
  }

  .service__en {
    font-size: 40px;
    display: block;
    width: fit-content;
    margin: 0 auto;
  }

  .service__jp {
    font-size: 16px;
    display: block;
    width: fit-content;
    margin: 0 auto;
  }

  .service__lead {
    margin-top: 56px;
  }

  .service-card__image {
    flex-direction: column;
  }

  .service-card__image img {
    width: 80%;
    margin: 0 auto;
  }

  .service-card__title {
    font-size: 16px;
    min-width: 88px;text-align: center;
  }

  .service-card__list {
    flex-wrap: wrap;
    justify-content: center;
    row-gap: 8px;
  }
}
/* ==============================
  Works
============================== */
.works {
  width: 100%;
}

.works__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 112px 0;
}
.works__head {
  text-align: center;
}

.works__en {
}

.works__jp {
  color: #333;
  text-align: center;
  font-family: "Noto Sans JP", serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.works__list {
  list-style: none;
  margin: 0;
  padding: 0;
  margin-top: 28px;

  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px 80px;
}
.works__item {
  width: 100%;
  height: auto;
}

.works__item img {
  width: 100%;
  height: 100%;
}

@media (max-width: 900px) {

  .works__inner {
    padding: 96px 0;
  }

  .works__jp {
    font-size: 16px;
  }

  .works__list {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .works__item {
    width: 80%;
    margin: 0 auto;
  }
}
/* ==============================
  Recruit
============================== */
.recruit {
  width: 100%;
  border-top: 1px solid #171C60;
}

.recruit__inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 80px 0;
  text-align: center;
}

.recruit__head {
  margin-bottom: 32px;
}

.recruit__en {
}

.recruit__jp {
  font-family: "Noto Sans JP", serif;
  font-size: 18px;
  font-weight: 500;
  color: #333;
}

.recruit__text {
  color: #333;
  text-align: center;
  font-family: "Noto Sans JP", serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px; /* 166.667% */
}

@media (max-width: 900px) {
  .recruit__jp {
    font-size: 16px;
  }

  .recruit__text {
    text-align: start;
  }
}
/* ==============================
  Company
============================== */
.company {
  width: 100%;
  border-top: 1px solid #171C60;
}

.company__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 124px 0;
}

.company__head {
  display: grid;
  grid-template-columns: 296px 1fr;
  column-gap: 80px;
}

.company__title-en {
  font-size: 48px;
  font-weight: 400;
  color: #171C60;
}

.company__title-ja {
  color: #333;
  font-family: "Noto Sans JP", serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.company__creed-title {
  display: inline-block;
  padding: 6px 12px;
  background: #171C60;
  color: #fff;
  font-size: 18px;
  width: 100%;
}

.company__creed-list {
  list-style: none;
  margin: 0;
  padding: 0;
  margin-top: 35px;
  display: flex;
  flex-direction: column;
}

.company__creed-list li {
  color: #171C60;
  font-family: "Yuji Mai", serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 32px;
  padding-left: 8px;
}

.company__outline {
  margin-top: 112px;
}

.company__outline-title {
  text-align: center;
  font-size: 18px;
  letter-spacing: 0.1em;
  margin-bottom: 48px;
  color: #333333;
}

.company__tables {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 32px;
}

.company__table {
  display: flex;
  flex-direction: column;
}

.company__table--left, .company__table--right {
  border-top: 1px solid #333333;
}

.company__row {
  display: grid;
  grid-template-columns: 160px 1fr;
  border-bottom: 1px solid #333333;
  padding: 16px 8px;
  line-height: 1.8;
}

.company__label {
  font-size: 13px;
  color: #333333;
}

.company__value {
  font-size: 13px;
  line-height: 1.8;
  color: #333333;
}

.company__row dd.company__value:not(:first-of-type) {
  grid-column: 2 / 3;
}
/* ===== Responsive ===== */

@media (max-width: 900px) {
  .company__inner {
    padding: 96px 0;
  }

  .company__head {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .company__title-en {
    font-size: 40px;
    display: block;
    width: fit-content;
    margin: 0 auto;
  }

  .company__title-ja {
    font-size: 16px;
    display: block;
    width: fit-content;
    margin: 0 auto;
  }

  .company__creed-title {
    text-align: center;
  }
  .company__creed-list li {
    padding-left: 0;
    font-size: 16px;
  }

  .company__creed-list li span {
    padding-left: 25px;
  }
  .company__outline {
    margin-top: 48px;
  }
  .company__outline-title {
    margin-bottom: 32px;
  }
  .company__tables {
    grid-template-columns: 1fr;
  }

  .company__row {
    grid-template-columns: 100px 1fr;
  }

  .company__value {
    margin: 0;
  }

  .company__table--left {
    margin: 0;
  }

  .company__table--right {
    border-top: none;
    margin: 0;
  }
}
/* ==============================
  Contact
============================== */
.contact {
  border-top: 1px solid #171C60;
}

.contact__inner {
  padding: 112px 0;
  max-width: 800px;
  margin: 0 auto;
}

/* ---------- head ---------- */

.contact__head {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-bottom: 32px;
}

.contact__title-en {
}

.contact__title-ja {
  color: #333;
  text-align: center;
  font-family: "Noto Sans JP", serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.contact__lead {
  color: #333;
  text-align: center;
  font-family: "Noto Sans JP", serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px; /* 166.667% */
  margin-top: 32px;
}

/* ---------- tel ---------- */

.contact__tel {
  margin-bottom: 52px;
}

.contact__tel-label {
  color: #333;
  text-align: center;
  font-family: "Noto Sans JP", serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.contact__number {
  color: #171C60;
  font-family: "Noto Sans JP", serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

/* PCではクリック無効 */
@media (min-width: 768px) {
  .contact__number {
    pointer-events: none;
    cursor: default;
    color: inherit;
    text-decoration: none;
  }
}

.contact__tel-note {
  color: #333;
  text-align: center;
  font-family: "Noto Sans JP", serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

/* ---------- form ---------- */

.contact__form {
  width: 100%;
}

.contact__fields {
}

.contact__row {
  display: block;
}

.contact__label {
  padding: 24px 0 0;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.contact__label label {
  color: #333;
  font-family: "Noto Sans JP", serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.contact__required {
  color: #FFF;
  font-family: "Noto Sans JP", serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
line-height: normal;
  background: #DB4848;
  padding: 2px 6px;
}

.contact__input {
  padding: 16px 0;
  margin: 0;
}

.contact__input input,
.contact__input textarea {
  width: 100%;
  border: 1px solid #ccc;
  padding: 12px;
  font-size: 18px;
  font-family: inherit;
}

.contact__input textarea {
  resize: vertical;
}

.form-success {
  width: 100%;
  display: flex;
  justify-content: center;

}

.form-success p {
  margin-top: 10px;
  color: green;
  font-weight: bold;
  text-align: center;
}


/* ---------- privacy ---------- */

.contact__privacy {
  color: #333;
  font-family: "Noto Sans JP", serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  text-align: center;
}

.contact__privacy a {
  color: #333;
  text-align: center;
  font-family: "Noto Sans JP", serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px; /* 166.667% */
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}

/* ---------- submit ---------- */

.contact__submit {
  margin-top: 48px;
  text-align: center;
}

.contact__submit button {
  min-width: 280px;
  padding: 16px;
  color: #FFF;
  font-family: "Noto Sans JP", serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  background: linear-gradient(94deg, #5C62B7 0%, #171C60 100%);
  color: #fff;
  border: none;
  cursor: pointer;
}

.contact__submit button:hover {
  opacity: 0.85;
}

@media (max-width: 900px) {
  .contact__inner {
    padding: 96px 15px;
  }

  .contact__title-ja {
    font-size: 16px;
  }

  .contact__lead {
    font-size: 16px;
    text-align: start;
  }

  .contact__tel-note {
    font-size: 16px;
  }

  .contact__privacy {
    font-size: 16px;
  }

  .contact__privacy a {
    font-size: 16px;
  }
}

/* ==============================
  Footer
============================== */

.footer {
  background: #0f153f;
}

.footer__inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 24px 40px;
}

.footer__copyright {
  color: #FFF;
  font-family: "Noto Sans JP", serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-align: center;
}


/*----------▼▼ page_privacy ▼▼----------*/
 .privacy {
  max-width: 800px;
  margin: 0 auto;
  display: block;
  padding-bottom: 124px;
  line-height: 1.8;
  margin-top: 32px;
}

.lowerHead {
  padding: 64px 0;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  border-bottom: 4px solid #171C60;
}

.lowerHead__title {
  color: #333;
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  width: fit-content;
  margin: 0 auto;
}
@media screen and (max-width: 1000px) {

  .lowerHead {
    padding-top: 56px;
    padding-bottom: 24px;
    padding-left: 15px;
    padding-right: 15px; 
  }
   .privacy {
    width: 100%;
    padding: 0 4%;
    padding-bottom: 100px;
  }
}
 .privacy__title {
  width: 100%;
  padding: 60px 0;
  margin: 0 auto;
  text-align: center;
}
@media screen and (max-width: 767px) {
   .privacy__title {
    width: auto;
    text-align: center;
    padding: 60px 0;
  }
}
 .privacy__cont {
  width: 100%;
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
   .privacy__cont {
    width: auto;
    margin-top: 60px;
  }
}
 .privacy__list {
  counter-reset: privacy-counter;
}
 .privacy__item {
  margin-top: 60px;
  position: relative;
}
 .privacy__item:first-of-type {
  margin-top: 0;
}
@media screen and (max-width: 767px) {
   .privacy__item {
    width: auto;
    margin-top: 40px;
  }
  .privacy__list {
    padding-left: 16px;
  }
  .privacy__item {
    padding-left: 16px;
  }
}
 .privacy__item-tit {
  text-align: left;
  font-size: 1.1rem;
  position: relative;
  padding-left: 6%;
}

.privacy__item-contaier a {
  text-decoration: underline;
}

@media screen and (max-width: 767px) {
   .privacy__item-tit {
    padding-left: 8%;
  }
}
 .privacy__item-cont {
  font-size: 1rem;
  margin-top: 8px;
  counter-reset: list-counter;
  padding-left: 0;
}
 .privacy__item::before {
  counter-increment: privacy-counter;
  content: "第"counter(privacy-counter) "条";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1.1rem;
  color: #333;
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 700;
  line-height: 1.8;
}
.privacy__item {
  counter-reset: paragraph-counter;
}
.is-numbered {
  position: relative;
  padding-left: 2em;
  counter-increment: paragraph-counter;
}

.is-numbered::before {
  content: counter(paragraph-counter) ".";
  position: absolute;
  left: 0;
  top: 0;
  line-height: 1.8;
}

.is-numbered + .privacy__item-cont {
  padding-left: 40px;
}
 .List__item {
  font-size: 1rem;
  margin-top: 7px;
  position: relative;
  padding-left: 4%;
  counter-increment: list-counter;
}
@media screen and (max-width: 767px) {
   .List__item {
    padding-left: 6%;
  }
}
 .List__item::before {
  content: counter(list-counter)".";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1em;
  color: #333333;
  line-height: 1.8;
}
.SubList {
  counter-reset: sub-counter;
  margin-top: 0.5em;
}

.SubList__item {
  counter-increment: sub-counter;
  position: relative;
  padding-left: 2em;
  line-height: 1.8;
}

.SubList__item::before {
  content: counter(sub-counter) ".";
  position: absolute;
  left: 0;
  top: 0;
  line-height: 1.8;
}
 .disclaimer {
  margin-top: 68px;
}
@media screen and (max-width: 767px) {
   .disclaimer {
    margin-top: 48px;
  }
}
 .disclaimer__title {
  color: #888888;
  font-size: 1rem;
  text-align: left;
}
 .disclaimer__list {
  border: 1px solid #CCC;
  border-radius: 5px;
  padding: 30px;
  margin-top: 5px;
}
 .disclaimer__item {
  font-size: 1rem;
  position: relative;
  padding-left: 3%;
}
@media screen and (max-width: 767px) {
   .disclaimer__item {
    padding-left: 8%;
  }
}
 .disclaimer__item::before {
  content: "●";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1em;
  color: #333333;
}
.privacy__item-contaier {
  margin-top: 1rem;
}
/*----------▲▲ page_privacy ▲▲----------*/

@media (max-width: 1024px) and (min-width: 769px) {
  [class$="__inner"] {
    padding-left: 15px;
    padding-right: 15px;
  }
}