@charset "UTF-8";

/* =========================================
   ベース（PC向け・共通）の設定
   ========================================= */

.index-hero {
  position: relative;
  width: 100%;
  /* 上:ヘッダー高さ、左右:0（フルワイドにするため）、下:ドット用余白 */
  padding: 80px 0 70px;
  box-sizing: border-box;
  background-color: transparent;
}

/* =========================================
   スライド本体（画面幅いっぱい、下にグレーの線）
   ========================================= */
.index-hero__slide {
  position: relative;
  width: 100%;

  height: 55vw;
  /* 例: 45vw → 55vw に増やす */
  max-height: 750px;
  /* 例: 600px → 750px に増やす（これ以上広がらない上限） */
  min-height: 300px;

  border-radius: 0;
  border: none;
  border-bottom: 1px solid #e0e0e0;
  overflow: hidden;
}

.hero-slide {
  width: 100%;
  height: 100%;
}

.hero-slide .slick-list,
.hero-slide .slick-track,
.hero-slide .slick-slide,
.hero-slide__item {
  height: 100%;
}

.hero-slide__item figure {
  display: block;
  margin: 0;
  height: 100%;
}

/* 画像を領域にぴったり合わせる */
.hero-slide__item figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.index-hero .slick-dots {
  position: absolute;
  bottom: 25px;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.index-hero .slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 12px;
  height: 12px;
  padding: 0;
  cursor: pointer;
  color: transparent;
  border: none;
  outline: none;
  background: #ccc;
  border-radius: 50%;
  transition: background 0.3s ease;
}

.index-hero .slick-dots li.slick-active button {
  background: #444;
}

.index-hero .slick-dots li button::before {
  display: none;
}

@media screen and (max-width: 768px) {
  .index-hero {
    padding: 80px 0 60px;
  }

  .index-hero__slide {

    height: 80vw;
    max-height: none;
  }

  .index-hero .slick-dots {
    bottom: 20px;
    gap: 14px;
  }

  .index-hero .slick-dots li button {
    width: 12px;
    height: 12px;
  }
}

.index-hero__video {
  position: absolute;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  z-index: -1;
}

.index-hero__video video {
  display: block;
  width: 100%;
  height: 100vh;
  object-fit: cover;
}

.index-hero__inner {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  padding: 0 15px;
}

.index-hero__text h1 {
  font-size: 6.5rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 2px;
  line-height: 1;
}

.index-hero__text p {
  font-size: 1.5rem;
  font-weight: 500;
  color: #fff;
  letter-spacing: 1px;
  margin-top: 15px;
}

/* タイトルスタイル */
.ttl-02 {
  font-family: "Figtree", "M PLUS 1", sans-serif;
  font-size: 10rem;
  font-weight: 900;
  color: #009AFF;
  /* 鮮やかな青色 */
  line-height: 1.1;
  letter-spacing: 0.02em;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 100px;
}

.ttl-02 span {
  font-family: "M PLUS 1", sans-serif;
  font-size: 2.5rem;
  font-weight: 500;
  color: #333333;
  letter-spacing: 0;
  margin-top: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.ttl-02 span::before {
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  background-color: #76C8FF;
  border-radius: 50%;
}

.ttl-03 {
  font-size: 3rem;
  letter-spacing: 0.02em;
  font-weight: 900;
  padding-bottom: 20px;
  border-bottom: 2px solid #009AFF;
  margin: 80px 0 40px;
}

.ttl-04 {
  position: relative;
  font-size: 2.6rem;
  letter-spacing: 0.02em;
  font-weight: 900;
  padding-left: 15px;
  margin: 60px 0 30px;
}

.ttl-04::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 5px;
  background-color: #76C8FF;
  border-radius: 5px;
}

.ttl-05 {
  font-size: 2.4rem;
  letter-spacing: 0.02em;
  font-weight: 900;
  color: #0F73B5;
  margin: 40px 0 20px;
}

/* ------------------------
    汎用クラス：中央揃え
------------------------ */
.t-center {
  align-items: center;
  text-align: center;
}

.t-point {
  font-size: 3rem;
  font-weight: 600;
  margin: 60px 0 30px;
}

.t-line-y {
  background: linear-gradient(transparent 60%, #FFF6C3 30%);
}

/* 文字 */
.base-text {
  font-size: 1.7rem;
  margin-top: 30px;
  line-height: 2.2;
}

/* ボタン */
.btn-01 {
  display: flex;
  width: fit-content;
  align-items: center;
  gap: 40px;
  padding: 6px 6px 6px 32px;
  border: 1px solid #FF5A60;
  border-radius: 9999px;
  background-color: #ffffff;
  color: #333333;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.1em;
  margin-left: 0;
  margin-right: auto;
  transition: opacity 0.3s ease;
  margin-top: 30px;
}

.btn-01:hover {
  opacity: 0.7;
}

.btn-01::after {
  content: "";
  display: inline-block;
  width: 60px;
  height: 30px;
  background-color: #FF5A60;
  border-radius: 50px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14M12 5l7 7-7 7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 16px;
}

.btn-02 {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
  min-height: 80px;
  padding: 15px 50px 15px 20px;
  background-color: #fff;
  border: 1px solid #333;
  border-radius: 8px;
  color: #333;
  font-size: 1.6rem;
  font-weight: 700;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.btn-02:hover {
  opacity: 0.7;
}

.btn-02::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 26px;
  height: 26px;
  background-color: #4a4a4a;
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14M12 5l7 7-7 7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 14px;
}

.btn-center {
  margin-left: auto;
  margin-right: auto;
}


@media only screen and (max-width: 768px) {
  .index-hero__text h1 {
    font-size: 4.5rem;
  }

  .index-hero__text p {
    font-size: 1.4rem;
  }

  .index-hero__inner {
    padding: 0 15px;
  }

  .ttl-02 {
    font-size: 5rem;
    margin-top: 60px;
  }

  .ttl-02 span {
    font-size: 2rem;
    margin-top: 10px;
  }

  .ttl-03 {
    font-size: 2.2rem;
    margin: 80px 0 40px;
  }

  .ttl-04 {
    font-size: 2rem;
    margin: 60px 0 30px;
  }


  .ttl-05 {
    font-size: 1.8rem;
  }

  .t-point {
    font-size: 2.2rem;
  }

  .base-text {
    font-size: 1.6rem;
  }

  .btn-01 {
    gap: 30px;
    padding: 6px 10px 6px 32px;
    font-size: 1.4rem;
  }

  .btn-01::after {
    width: 50px;
  }

}

/* グリッドスタイル（横並べ） */
.grid-cont {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 50px;
  margin-top: 30px;
}

.grid-item {
  flex: 1 1 0;
}

.grid-item .base-text {
  margin-top: 0;
}

@media screen and (max-width: 767px) {
  .grid-cont {
    display: block;
  }

  .grid-item {
    margin-bottom: 30px;
  }

}




/* トップページ　強み */
#top-strengths {
  width: 1000px;
  max-width: 100%;
  margin: 100px auto 200px;
}

.strengths-cont {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 30px;
  width: 100%;
  margin-top: 40px;
}

.strengths-item {
  background-color: #EBF7FF;
  border-radius: 12px;
  padding: 50px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.strengths-item img {
  width: 250px;
  height: auto;
  margin-bottom: 25px;
}

.strengths-item strong {
  display: block;
  font-size: 1.6rem;
  font-weight: 700;
  text-align: center;
  color: #333333;
  line-height: 1.6;
  margin-bottom: 20px;
}

.strengths-item p {
  line-height: 1.8;
  text-align: left;
  width: 100%;
}

@media only screen and (max-width: 768px) {
  #top-strengths {
    margin: 60px auto 150px;
  }

  .strengths-cont {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .strengths-item {
    padding: 30px 20px;
  }

  .strengths-item img {
    width: 190px;
  }
}

/* トップページ　サービス */
#top-service {
  width: 1000px;
  max-width: 100%;
  margin: 0 auto 200px;
}

#top-service .ttl-02 {
  color: #99D6FF;
}

.service-cont {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.service-txt-item {
  width: 60%;
}

.service-img-item {
  width: 35%;
  text-align: center;
  padding: 20px 30px;
}

.service-img-item img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

@media only screen and (max-width: 768px) {
  #top-service {
    margin: 0 auto 150px;
  }

  .service-cont {
    flex-direction: column;
    gap: 20px;
  }

  .service-txt-item,
  .service-img-item {
    width: 100%;
  }
}

/* トップ　よくある質問 */

#top-faq {
  background-color: #0F73B5;
  padding: 20px 0 100px;
}

#top-faq .ttl-02 {
  color: #fff;
}

#top-faq .ttl-02 span {
  color: #fff;
}

.faq-list {
  width: 100%;
  margin: 80px auto 0;
}

.faq-item {
  background-color: #ffffff;
  border-radius: 12px;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  border: 1px solid #333;
}

.faq-q {
  display: flex;
  align-items: center;
  padding: 35px 40px;
  cursor: pointer;
  position: relative;
}

.faq-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 65px;
  height: 65px;
  border-radius: 50%;
  font-size: 2.2rem;
  font-weight: 800;
  font-family: "Figtree", "M PLUS 1", sans-serif;
  flex-shrink: 0;
  /* テキストが長くなっても丸が潰れないようにする */
}

.faq-badge--q {
  background-color: #0F73B5;
  color: #ffffff;
}

.faq-badge--a {
  background-color: #ffffff;
  border: 2px solid #0F73B5;
  color: #0F73B5;
}

.faq-q__text {
  font-size: 1.7rem;
  font-weight: 700;
  color: #333333;
  margin-left: 25px;
  margin-right: 50px;
  line-height: 1.6;
}

.faq-icon {
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background-color: #333333;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.faq-icon::before {
  width: 100%;
  height: 2px;
}

.faq-icon::after {
  width: 2px;
  height: 100%;
}

.faq-item.is-open .faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

.faq-a {
  display: none;
}

.faq-a__inner {
  display: flex;
  align-items: flex-start;
  padding: 0 40px 40px 40px;
}

.faq-a__text {
  font-size: 1.5rem;
  color: #555555;
  margin-left: 25px;
  line-height: 1.8;
  padding-top: 10px;
}

@media only screen and (max-width: 768px) {
  .faq-q {
    padding: 25px 20px;
  }

  .faq-badge {
    width: 40px;
    height: 40px;
    font-size: 1.3rem;
  }

  .faq-q__text {
    font-size: 1.4rem;
    margin-left: 15px;
    margin-right: 30px;
  }

  .faq-icon {
    right: 20px;
    width: 20px;
    height: 20px;
  }

  .faq-a__inner {
    padding: 0 20px 30px 20px;
  }

  .faq-a__text {
    margin-left: 15px;
    font-size: 1.4rem;
    padding-top: 5px;
  }
}


/* トップ　ニュース */
#top-news {
  margin-bottom: 200px;
}

.top-news-cont {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  /* 上揃えにする */
  justify-content: space-between;
  width: 100%;
}

.top-news-ttl {
  width: 30%;
}

.top-news-item {
  width: 65%;
  margin-top: 100px;
}

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

.news-list__link {
  display: flex;
  align-items: center;
  padding: 24px 0;
  text-decoration: none;
  color: #333333;
  transition: opacity 0.3s ease;
}

.news-list__link:hover {
  opacity: 0.7;
}

/* 日付 */
.news-list__date {
  font-family: "Figtree", "M PLUS 1", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  width: 120px;
  flex-shrink: 0;
}

.news-list__cat {
  display: inline-block;
  padding: 4px 16px;
  border-radius: 20px;
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: 700;
  text-align: center;
  min-width: 90px;
  margin-right: 25px;
  flex-shrink: 0;
}

/* カテゴリごとの色分け */
.news-list__cat--green {
  background-color: #4cd964;
}

.news-list__cat--orange {
  background-color: #FFA726;
}

.news-list__text {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.6;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media only screen and (max-width: 768px) {
  #top-news {
    margin-bottom: 150px;
  }

  .top-news-cont {
    flex-direction: column;
    gap: 30px;
  }

  .top-news-item {
    margin-top: 20px;
  }

  .top-news-ttl,
  .top-news-item {
    width: 100%;
  }


  .news-list__link {
    flex-wrap: wrap;
    gap: 12px 10px;
    padding: 20px 0;
  }

  .news-list__date {
    width: auto;
  }

  .news-list__cat {
    margin-right: 0;
  }

  .news-list__text {
    width: 100%;
  }
}

/* トップ　お問い合わせ */

#top-contact {
  position: relative;
  background-color: #d2edffcf;
  padding: 0 0 80px;
  margin-top: 120px;
}

#top-contact .ttl-02 {
  color: #99D6FF;
}

.contact-cont {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.contact-ttl-item {
  width: 45%;
}

.contact-info-item {
  width: 35%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 100px;
}

.contact-tel {
  font-family: "Figtree", "M PLUS 1", sans-serif;
  font-size: 4.8rem;
  font-weight: 800;
  color: #333333;
  text-decoration: none;
  line-height: 1;
  letter-spacing: 0.05em;
  transition: opacity 0.3s ease;
}

.contact-tel:hover {
  opacity: 0.7;
}

.marquee-wrap {
  position: absolute;
  top: -100px;
  left: 0;
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  pointer-events: none;
}

.marquee-inner {
  display: inline-block;
  white-space: nowrap;
  animation: marqueeScroll 80s linear infinite;
}

.marquee-text {
  display: inline-block;
  font-family: "Figtree", "M PLUS 1", sans-serif;
  font-size: 8rem;
  font-weight: 900;
  color: #d2edffcf;
  padding-right: 30px;
}

@keyframes marqueeScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@media only screen and (max-width: 768px) {
  #top-contact {
    padding: 0;
    margin-top: 80px;
  }

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

  .contact-ttl-item {
    width: 100%;
  }

  .contact-info-item {
    width: 100%;
    padding-bottom: 40px;
    margin-top: 0;
  }

  .contact-tel {
    font-size: 3.6rem;
  }

  .marquee-wrap {
    top: -56px;
  }

  .marquee-text {
    font-size: 4.5rem;
  }
}


/* 下層ページ設定 */
.page-cont {
  width: 1150px;
  max-width: 100%;
  margin: 0 auto;
  padding: 100px 15px;
}

@media only screen and (max-width: 768px) {
  .page-cont {
    padding: 150px 15px;
  }
}

/* お客様の声 */
.voice-cont {
  margin-top: 100px;
}

.category-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-bottom: 60px;
}

.filter-btn {
  padding: 10px 24px;
  border-radius: 30px;
  background-color: #fff;
  font-weight: bold;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn[data-target="all"] {
  border: 2px solid #0075c2;
  color: #0075c2;
}

.filter-btn.color-red {
  border: 2px solid #e63946;
  color: #e63946;
}

.filter-btn.color-orange {
  border: 2px solid #f4a261;
  color: #f4a261;
}

.filter-btn.color-green {
  border: 2px solid #2a9d8f;
  color: #2a9d8f;
}

.filter-btn[data-target="all"].is-active {
  background-color: #0075c2;
  color: #fff;
}

.filter-btn.color-red.is-active {
  background-color: #e63946;
  color: #fff;
}

.filter-btn.color-orange.is-active {
  background-color: #f4a261;
  color: #fff;
}

.filter-btn.color-green.is-active {
  background-color: #2a9d8f;
  color: #fff;
}


.voice-card.is-hidden {
    display: none !important;
}

/* --- グリッドレイアウト (PCで3列) --- */
.voice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* --- カード本体のデザイン --- */
.voice-card {
  display: flex;
  flex-direction: column;
  background-color: #fff;
  border: 1px solid #333;
  border-radius: 12px;
  padding: 30px 20px;
  text-decoration: none;
  color: #333;
  position: relative;
  transition: transform 0.3s ease-out, box-shadow 0.3s ease-out, border-color 0.3s ease-out;
  /* 初期状態の影を少し薄く設定 */
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.voice-card:hover {
  /* 1. 全体を少し上に浮かせる */
  transform: translateY(-5px);
  /* 2. 影を深く、広くして浮き上がりを強調 */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.voice-card-img {
  width: 200px;
  height: 200px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.voice-card-img img {
  width: 90%;
  height: auto;
  object-fit: contain;
}

.voice-card-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  /* 中央揃え */
  text-align: center;
}

.category-tag {
  padding: 4px 16px;
  border-radius: 20px;
  font-size: 1.3rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
  background-color: #fff;
}

.tag-red {
  border: 1px solid #e63946;
  color: #e63946;
}

.tag-orange {
  border: 1px solid #f4a261;
  color: #f4a261;
}

.tag-green {
  border: 1px solid #2a9d8f;
  color: #2a9d8f;
}

.industry-text {
  font-size: 1.5rem;
  color: #666;
  margin: 0 0 16px 0;
}

.card-title {
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.5;
  margin: 0 0 10px 0;
}

.voice-card::after {
  content: "";
  position: absolute;
  bottom: 24px;
  right: 24px;
  width: 8px;
  height: 8px;
  border-top: 2px solid #333;
  border-right: 2px solid #333;
  transform: rotate(45deg);
}

@media screen and (max-width: 768px) {
  .voice-grid {
    grid-template-columns: 1fr;
  }

  .voice-card {
    padding: 10px;
  }

  .voice-card-img {
    margin: 0 auto;
  }

  .voice-card-img img {
    width: 80%;
  }
}


/* 組合概要 */
.philosophy-cont {
  max-width: 800px;
  margin: 0 auto;
  padding: 100px 10px;
  display: flex;
  flex-direction: column;
  gap: 150px;
}

.philosophy-inner {
  display: flex;
  align-items: center;
  gap: 90px;
}

.philosophy-img {
  width: 160px;
  flex-shrink: 0;
}

.philosophy-img img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.philosophy-text {
  flex-grow: 1;
  color: #333;
}

.philosophy-ttl {
  font-family: "Figtree", "M PLUS 1", sans-serif;
  font-size: 7rem;
  font-weight: 900;
  color: #0F73B5;
  line-height: 1.1;
  letter-spacing: 0.02em;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 30px;
  margin-top: 0;
  margin-bottom: 24px;
}

.philosophy-ttl span {
  font-family: "M PLUS 1", sans-serif;
  font-size: 2rem;
  font-weight: 500;
  color: #333333;
  letter-spacing: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.philosophy-ttl span::before {
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  background-color: #76C8FF;
  border-radius: 50%;
}

.philosophy-lead {
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1.6;
  margin-top: 0;
  margin-bottom: 16px;
}

.philosophy-desc {
  font-size: 1.7rem;
  line-height: 1.8;
  color: #555;
  margin: 0;
}

.philosophy-value-list {
  display: grid;
  grid-template-columns: auto 1fr;
  row-gap: 12px;
  column-gap: 16px;
  margin: 0;
  font-size: 1.7rem;
  line-height: 1.6;
}

.philosophy-value-list dt {
  font-family: "Figtree", sans-serif;
  color: #555;
}

.philosophy-value-list dd {
  margin: 0;
  color: #333;
}

/* --- SP（スマホ）用のレスポンシブ記述 --- */
@media screen and (max-width: 768px) {
  .philosophy-cont {
    gap: 100px;
  }

  .philosophy-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 24px;
  }

  .philosophy-img {
    width: 120px;
  }

  /* SP時のタイトルサイズとレイアウト調整 */
  .philosophy-ttl {
    justify-content: center;
    flex-wrap: wrap;
    flex-direction: column;
    font-size: 4rem;
    gap: 10px;
  }

  .philosophy-ttl span {
    font-size: 1.8rem;
  }

  .philosophy-lead {
    font-size: 1.9rem;
  }

  .philosophy-desc {
    font-size: 1.5rem;
  }

  /* --- VALUEリストを縦並びに修正 --- */
  .philosophy-value-list {
    display: block;
    /* 横並び（grid）を解除 */
    text-align: center;
    /* 中央揃え（左揃えが良い場合は left に） */
    width: 100%;
  }

  .philosophy-value-list dt {
    margin-top: 24px;
    /* 各項目（Trustなど）の上の余白 */
  }

  .philosophy-value-list dt:first-child {
    margin-top: 0;
    /* 最初の項目の上には余白を作らない */
  }

  .philosophy-value-list dd {
    margin-top: 4px;
    /* 英語と日本語の間の余白 */
  }
}

/* 概要テーブル */
.overview-table th {
  width: 30%;
  padding: 24px 20px;
}

.overview-table td {
  text-align: left;
  padding: 24px 20px;
}

/* --- SP（スマホ）用の記述 --- */
@media screen and (max-width: 768px) {
  .overview-table {
    min-width: 0;
  }

  .overview-table,
  .overview-table tbody,
  .overview-table tr,
  .overview-table th,
  .overview-table td {
    display: block;
    width: 100%;
    box-sizing: border-box;
  }

  .overview-table tr {
    margin-bottom: 12px;
  }

  .overview-table th {
    margin-bottom: 4px;
  }
}

/* お問い合わせ */
.contact-wrapper {
  margin: 0 auto;
  padding: 100px 20px 0;
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
  gap: 60px;
}

.contact-item.align-top {
  align-items: flex-start;
}

.contact-label {
  width: 200px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: bold;
  font-size: 1.7rem;
}

.contact-required {
  background-color: #ff4d4f;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 400;
  padding: 3px 10px;
  border-radius: 20px;
  line-height: 1.4;
  letter-spacing: 0.1em;
}

.contact-body {
  flex-grow: 1;
}

input.contact-control,
textarea.contact-control {
  width: 100%;
  box-sizing: border-box;
  padding: 16px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1.6rem;
  color: #333;
  background-color: #fff;
  cursor: text;
  -webkit-appearance: none;
  transition: border-color 0.3s;
}

input.contact-control::placeholder,
textarea.contact-control::placeholder {
  color: #aaa;
}

input.contact-control:focus,
textarea.contact-control:focus {
  outline: none;
  border-color: #009AFF;
}

textarea.contact-control {
  min-height: 180px;
  resize: vertical;
}

.contact-agreement {
  text-align: center;
  margin-top: 60px;
  margin-bottom: 40px;
}

.contact-checkbox-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 1.5rem;
}

.contact-checkbox {
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.contact-checkbox-text a {
  color: #009AFF;
  text-decoration: underline;
}

.contact-checkbox-text a:hover {
  text-decoration: none;
}

@media screen and (max-width: 768px) {
  .contact-wrapper {
    padding: 100px 0 0;
  }

  .contact-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }

  .contact-label {
    width: 100%;
    margin-bottom: 12px;
  }

  .contact-body {
    width: 100%;
  }
}


/* ニュースページ */
.news-archive-cont {
  margin: 0 auto;
  padding: 90px 80px 100px;
  border: 1px solid #d6d6d6;
  border-radius: 10px;
  background-color: #fff;
}

.archive-page-ttl {
  font-size: 3rem;
  /* 30px想定 */
  font-weight: bold;
  text-align: center;
  margin-bottom: 60px;
  color: #0F73B5;
}

.news-archive-cont .news-list__item {
  border-bottom: 1px solid #eee;
}

.news-archive-cont .news-list__item:first-child {
  border-top: 1px solid #eee;
}

/* テキストを省略せずに折り返す場合 (トップページは1行省略でしたが、一覧では全文見せる場合) */
/* .news-archive-cont .news-list__text {
  white-space: normal;
  overflow: visible;
  line-height: 1.6;
} */


/* --- 追加のカテゴリ色 (必要に応じて) --- */
/* .news-list__cat--blue {
  background-color: #009AFF;
} */

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 60px;
}

.pagination .page-numbers {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  /* 丸くする */
  background-color: #f5f5f5;
  color: #333;
  text-decoration: none;
  font-size: 1.4rem;
  font-weight: bold;
  transition: all 0.3s ease;
}

.pagination .page-numbers:hover {
  background-color: #ddd;
}

.pagination .page-numbers.current {
  background-color: #0F73B5;
  color: #fff;
}

.pagination .page-numbers.next,
.pagination .page-numbers.prev {
  width: auto;
  border-radius: 20px;
  padding: 0 16px;
}

.pagination .page-numbers.dots {
  background-color: transparent;
  pointer-events: none;
}


@media screen and (max-width: 768px) {
  .news-archive-cont {
    padding: 40px 20px 60px;
  }

  .archive-page-ttl {
    font-size: 2.4rem;
    margin-bottom: 40px;
  }

  .pagination .page-numbers {
    width: 36px;
    height: 36px;
    font-size: 1.3rem;
  }
}