@charset "UTF-8";
/* ===============================
   style.scss
   ※このファイルは@importのみを行い、
     直接スタイルは記述しない
=============================== */
/* リセットCSS (簡易版) */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  color: #333333;
  line-height: 1.6;
  background-color: #ffffff;
}

a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s;
}
a:hover {
  opacity: 0.7;
}

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

ul {
  list-style: none;
}

/* 共通クラス */
.container {
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .container {
    max-width: 1000px;
    padding: 0 40px;
  }
}

.section {
  padding: 60px 0;
}
@media (min-width: 768px) {
  .section {
    padding: 100px 0;
  }
}
.section--gray {
  background-color: #f5f7fa;
}
.section__header {
  text-align: center;
  margin-bottom: 40px;
}
.section__en {
  display: block;
  font-family: "Roboto", sans-serif;
  color: #2e69a8;
  font-weight: bold;
  letter-spacing: 0.1em;
  font-size: 14px;
}
.section__jp {
  font-size: 24px;
  font-weight: bold;
  margin-top: 8px;
}
@media (min-width: 768px) {
  .section__jp {
    font-size: 32px;
  }
}

.btn {
  display: inline-block;
  padding: 12px 40px;
  border-radius: 30px;
  font-weight: bold;
  text-align: center;
  cursor: pointer;
}
.btn--primary {
  background-color: #2e69a8;
  color: #ffffff;
  box-shadow: 0 4px 10px rgba(46, 105, 168, 0.3);
}
.btn--outline {
  border: 2px solid #2e69a8;
  color: #2e69a8;
}
.btn--white {
  background-color: #ffffff;
  color: #2e69a8;
}

/* ヘッダー */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  z-index: 100;
}
.header__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  padding: 0 20px;
}
@media (min-width: 768px) {
  .header__container {
    padding: 0 40px;
  }
}
.header__logo {
  font-size: 18px;
  font-weight: bold;
  color: #2e69a8;
}
.header__toggle {
  width: 30px;
  height: 24px;
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 110;
}
.header__toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #333333;
  position: absolute;
  left: 0;
  transition: all 0.3s;
}
.header__toggle span:nth-child(1) {
  top: 0;
}
.header__toggle span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}
.header__toggle span:nth-child(3) {
  bottom: 0;
}
.header__toggle.is-active span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
.header__toggle.is-active span:nth-child(2) {
  opacity: 0;
}
.header__toggle.is-active span:nth-child(3) {
  bottom: 50%;
  transform: translateY(50%) rotate(-45deg);
}
@media (min-width: 768px) {
  .header__toggle {
    display: none;
  }
}

/* ===============================
   ナビゲーション (★WordPress化・ドロップダウン対応)
=============================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #2e69a8;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  z-index: 90;
}
.nav.is-active {
  opacity: 1;
  visibility: visible;
}
@media (min-width: 768px) {
  .nav {
    position: static;
    height: auto;
    width: auto;
    background: none;
    opacity: 1;
    visibility: visible;
    display: block;
  }
}
.nav__list {
  text-align: center;
}
@media (min-width: 768px) {
  .nav__list {
    display: flex;
    gap: 20px;
    text-align: left;
    align-items: center;
  }
}
.nav .menu-item {
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .nav .menu-item {
    margin-bottom: 0;
    position: relative;
  }
}
.nav .menu-item > a {
  color: #ffffff;
  font-size: 18px;
  font-weight: bold;
  display: inline-flex;
  align-items: center;
}
@media (min-width: 768px) {
  .nav .menu-item > a {
    color: #333333;
    font-size: 14px;
    padding: 20px 0;
  }
  .nav .menu-item > a:hover {
    color: #2e69a8;
  }
}
@media (min-width: 768px) {
  .nav .nav__item--cta a {
    background-color: #2e69a8;
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 20px;
  }
  .nav .nav__item--cta a:hover {
    color: #ffffff;
  }
}
.nav {
  /* ===============================
   ★★★ ドロップダウン (WordPressクラス対応) ★★★
  =============================== */
}
@media (min-width: 768px) {
  .nav .menu-item-has-children > a {
    padding-right: 15px;
  }
}
.nav .menu-item-has-children > a::after {
  display: none;
}
@media (min-width: 768px) {
  .nav .menu-item-has-children > a::after {
    content: "";
    display: inline-block;
    border: solid #333333;
    border-width: 0 2px 2px 0;
    padding: 3px;
    transform: rotate(45deg);
    position: absolute;
    right: 0;
    top: 50%;
    margin-top: -5px;
    transition: all 0.3s;
  }
}
.nav .sub-menu {
  margin-top: 15px;
  padding-left: 20px;
}
@media (min-width: 768px) {
  .nav .sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: -20px;
    background: #ffffff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 10px 0;
    margin-top: 0;
    min-width: 200px;
    z-index: 100;
  }
}
.nav .sub-menu .menu-item {
  margin-bottom: 10px;
}
@media (min-width: 768px) {
  .nav .sub-menu .menu-item {
    margin-bottom: 0;
  }
}
.nav .sub-menu .menu-item > a {
  color: #e6f0fa;
  font-size: 16px;
}
@media (min-width: 768px) {
  .nav .sub-menu .menu-item > a {
    display: block;
    padding: 10px 20px;
    color: #333333;
    font-size: 14px;
    font-weight: normal;
  }
  .nav .sub-menu .menu-item > a:hover {
    background: #e6f0fa;
    color: #2e69a8;
  }
  .nav .sub-menu .menu-item > a::after {
    display: none;
  }
}
@media (min-width: 768px) {
  .nav .menu-item-has-children:hover > .sub-menu {
    display: block;
  }
  .nav .menu-item-has-children:hover > a::after {
    transform: rotate(-135deg);
    margin-top: -2px;
  }
}

/* CTA (Entry) ★ デザイン大幅修正 (Ver.4.1 - サイズUP) */
.cta {
  background: linear-gradient(to bottom, #2e69a8 0%, rgb(165.7, 191.8, 228.9) 100%);
  color: #ffffff;
  padding: 0;
  position: relative;
  overflow: hidden;
}
.cta__marquee {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  pointer-events: none;
}
.cta__marquee-text {
  font-family: "Roboto", sans-serif;
  font-size: 120px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.329);
  white-space: nowrap;
  animation: marquee 50s linear infinite;
  transform: translateY(30%);
}
.cta__link-block {
  display: block;
  padding: 100px 0;
  position: relative;
  z-index: 1;
  transition: background-color 0.3s;
}
.cta__link-block:hover {
  background-color: rgba(0, 0, 0, 0.1);
}
.cta__link-block:hover .cta__arrow span {
  transform: translateX(10px);
}
.cta__content {
  background-color: #ffffff;
  border-radius: 8px;
  padding: 40px 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.cta__text-wrap {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
}
.cta__title {
  color: #2e69a8;
  font-size: 36px;
  font-family: "Roboto", sans-serif;
  margin: 0;
  margin-right: 15px;
  line-height: 1;
}
.cta__subtitle {
  color: #333333;
  font-size: 18px;
  font-weight: bold;
  margin: 0;
  line-height: 1;
}
.cta__arrow span {
  font-size: 44px;
  font-weight: bold;
  display: block;
  transition: transform 0.3s;
  color: #2e69a8;
}

@keyframes marquee {
  0% {
    transform: translateX(0) translateY(30%);
  }
  100% {
    transform: translateX(-100%) translateY(30%);
  }
}
/* ===============================
   Footer (★デザイン差し替え)
=============================== */
.footer {
  background-color: #222;
  color: #fff;
  padding-top: 60px;
}
.footer__container {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (min-width: 768px) {
  .footer__container {
    flex-direction: row;
    justify-content: space-between;
  }
}
.footer__brand {
  flex: 1;
  min-width: 250px;
}
.footer__logo {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: bold;
}
.footer__logo img {
  width: 40px;
  height: auto;
}
.footer__logo:hover {
  opacity: 0.8;
}
.footer__site-title {
  font-size: 14px;
  color: #ccc;
  margin-left: 55px;
  margin-bottom: 25px;
}
.footer__corp-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  background-color: rgba(255, 255, 255, 0.1);
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: bold;
  width: 100%;
  max-width: 250px;
  transition: background-color 0.3s;
}
.footer__corp-link:hover {
  background-color: rgba(255, 255, 255, 0.2);
  opacity: 1;
}
.footer__corp-link__corp-icon {
  font-size: 20px;
}
.footer__nav {
  display: flex;
  flex: 2;
  gap: 30px;
}
@media (min-width: 768px) {
  .footer__nav {
    gap: 50px;
    justify-content: flex-end;
  }
}
.footer__nav-title {
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-weight: bold;
  color: #888;
  margin-bottom: 15px;
}
.footer__nav-title.is-link {
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  margin-top: 20px;
}
.footer__nav-title.is-link a:hover {
  opacity: 0.7;
}
.footer__nav-list li {
  margin-bottom: 10px;
}
.footer__nav-list a {
  font-size: 16px;
  color: #fff;
}
.footer__nav-list a:hover {
  opacity: 0.7;
}
.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 40px;
  padding: 20px 0;
}
.footer__bottom-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
@media (min-width: 768px) {
  .footer__bottom-container {
    flex-direction: row;
    justify-content: space-between;
  }
}
.footer__copy {
  font-size: 12px;
  opacity: 0.6;
  text-align: center;
}
@media (min-width: 768px) {
  .footer__copy {
    text-align: left;
  }
}
.footer__sub-nav {
  display: flex;
  gap: 15px;
  font-size: 12px;
}
.footer__sub-nav a {
  color: #fff;
  opacity: 0.6;
}
.footer__sub-nav a:hover {
  opacity: 1;
}

/* ===============================
   Page Top Button (★デザイン差し替え)
=============================== */
.page-top {
  position: fixed;
  bottom: 20px;
  left: 20px;
  width: 50px;
  height: 50px;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 50;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s;
}
.page-top.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.page-top:hover {
  background-color: rgba(255, 255, 255, 0.2);
  opacity: 1;
}
.page-top span {
  display: none;
}
.page-top::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
  transform: rotate(45deg);
  position: relative;
  top: 2px;
}

.header {
  transition: all 0.3s ease;
}
.header.is-scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.is-loading {
  position: relative;
  pointer-events: none;
}
.is-loading::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  margin-left: 10px;
  border: 2px solid transparent;
  border-top-color: currentColor;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
/* 各アイテム（セクション） */
.welfare-item {
  padding: 0;
}
@media (min-width: 768px) {
  .welfare-item {
    padding: 0;
  }
}
.welfare-item.section--gray {
  background-color: #f5f7fa;
}

/* 50/50 分割コンテナ */
.welfare-item__container {
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .welfare-item__container {
    flex-direction: row;
    min-height: 60vh;
  }
}

/* (A) 背景画像エリア */
.welfare-item__bg-image {
  width: 100%;
  min-height: 300px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media (min-width: 768px) {
  .welfare-item__bg-image {
    width: 50%;
  }
}

/* (B) テキストコンテンツエリア */
.welfare-item__content {
  width: 100%;
  padding: 60px 20px;
  position: relative;
}
@media (min-width: 768px) {
  .welfare-item__content {
    width: 50%;
    padding: 100px 6%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}

/* --------------------
 レイアウト反転 (テキストが右)
-------------------- */
@media (min-width: 768px) {
  .welfare-item--text-right .welfare-item__bg-image {
    order: 1;
  }
  .welfare-item--text-right .welfare-item__content {
    order: 2;
  }
}

/* ※ .welfare-item--text-left はデフォルト（画像が右）なので定義不要 */
/* --------------------
 テキストエリア内の装飾
-------------------- */
.welfare-item__number {
  position: absolute;
  top: 0;
  left: 20px;
  font-family: "Roboto", sans-serif;
  font-size: 80px;
  font-weight: 700;
  color: #e6f0fa;
  line-height: 1;
  z-index: -1;
}
@media (min-width: 768px) {
  .welfare-item__number {
    font-size: 120px;
    left: 6%;
    top: 20px;
  }
}

.welfare-item__cat {
  display: block;
  font-family: "Roboto", sans-serif;
  color: #2e69a8;
  font-weight: bold;
  letter-spacing: 0.1em;
  font-size: 14px;
  margin-bottom: 10px;
  position: relative;
  z-index: 2;
}

.welfare-item__title {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 15px;
  position: relative;
  z-index: 2;
}
@media (min-width: 768px) {
  .welfare-item__title {
    font-size: 26px;
  }
}

.welfare-item__text {
  font-size: 15px;
  color: #555;
  line-height: 1.8;
  position: relative;
  z-index: 2;
}

/* ===============================
   TOPページ (home.php / front-page.php)
   ★ デザイン修正版
=============================== */
/* ヒーローエリア (FV) */
.hero {
  padding-top: 120px;
  padding-bottom: 100px;
  text-align: center;
  position: relative;
  z-index: 1;
  background-image: url("../img/33822772_m.jpg");
  background-size: cover;
  background-position: center;
  color: #ffffff;
}
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #001931;
  opacity: 0.6;
  z-index: -1;
}
.hero__content {
  padding: 0 20px;
  position: relative;
  z-index: 2;
}
.hero__title {
  font-size: 28px;
  font-weight: 900;
  margin-bottom: 20px;
  line-height: 1.4;
}
@media (min-width: 768px) {
  .hero__title {
    font-size: 48px;
  }
}
.hero__subtitle {
  color: #ffffff;
  font-size: 0.8em;
  opacity: 0.9;
}
.hero__desc {
  margin-bottom: 30px;
  font-size: 14px;
  color: #ffffff;
  opacity: 0.9;
}
@media (min-width: 768px) {
  .hero__desc {
    font-size: 16px;
  }
}

/* About Us */
.about__content {
  text-align: center;
}
.about__content .text {
  text-align: left;
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .about__content .text {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 40px;
  }
}

/* Projects (Card Grid) */
.card-grid {
  display: grid;
  gap: 30px;
}
@media (min-width: 768px) {
  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ★★★ プロジェクト紹介カード */
.card {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease-out;
}
.card:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transform: translateY(-8px);
}
.card:hover .card__img img {
  transform: scale(1.05);
}
.card:hover .card__overlay {
  opacity: 1;
  transform: translateY(0);
}
.card__img {
  width: 100%;
  height: 200px;
  overflow: hidden;
  position: relative;
  border-radius: 8px 8px 0 0;
}
.card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 0.4s ease-out;
}
.card__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.1) 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease-out;
}
.card__body {
  padding: 20px;
  flex-grow: 1;
}
.card__title {
  font-size: 18px;
  margin-bottom: 10px;
  color: #2e69a8;
}
.card__text {
  font-size: 14px;
  color: #666;
}

/* Member (Swiper化) */
.member__card {
  background: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  height: 100%;
}
@media (min-width: 768px) {
  .member__card {
    flex-direction: row;
    align-items: center;
  }
}

.member__img {
  width: 100%;
  height: 200px;
}
@media (min-width: 768px) {
  .member__img {
    width: 50%;
    height: auto;
  }
}
.member__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.member__info {
  padding: 30px;
  width: 100%;
}
@media (min-width: 768px) {
  .member__info {
    width: 50%;
  }
}

.occupation {
  font-size: 12px;
  color: #888;
  margin-bottom: 10px;
}

.member__catch {
  font-size: 20px;
  margin-bottom: 20px;
  line-height: 1.5;
}

.text-link {
  color: #2e69a8;
  font-weight: bold;
  border-bottom: 1px solid #2e69a8;
}

.section--gray .container {
  position: relative;
}

.member-swiper {
  overflow: visible;
  padding-bottom: 50px;
}
@media (min-width: 768px) {
  .member-swiper {
    overflow: hidden;
    padding-bottom: 0;
  }
}
.member-swiper .swiper-slide {
  height: auto;
}
.member-swiper .swiper-pagination {
  bottom: 10px;
}
@media (min-width: 768px) {
  .member-swiper .swiper-pagination {
    display: none;
  }
}
.member-swiper .swiper-pagination-bullet {
  background: #ccc;
  opacity: 1;
}
.member-swiper .swiper-pagination-bullet-active {
  background: #2e69a8;
}
.member-swiper .swiper-button-prev,
.member-swiper .swiper-button-next {
  color: #2e69a8;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  display: none;
}
@media (min-width: 768px) {
  .member-swiper .swiper-button-prev,
  .member-swiper .swiper-button-next {
    display: flex;
  }
}
.member-swiper .swiper-button-prev::after,
.member-swiper .swiper-button-next::after {
  font-size: 20px;
  font-weight: bold;
}
.member-swiper .swiper-button-prev {
  left: -10px;
}
.member-swiper .swiper-button-next {
  right: -10px;
}

/* Career (TOPページ用) */
.career__list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.career__item {
  display: flex;
  align-items: center;
  padding: 20px;
  background: #f5f7fa;
  border-radius: 8px;
  transition: background 0.3s;
}
.career__item:hover {
  background: rgb(228, 233.4, 241.5);
}

.career__cat {
  background: #2e69a8;
  color: #ffffff;
  font-size: 10px;
  padding: 4px 8px;
  border-radius: 4px;
  margin-right: 15px;
  white-space: nowrap;
}

.career__title {
  font-size: 14px;
  flex-grow: 1;
}

.career__arrow {
  font-weight: bold;
  color: #2e69a8;
}

/* News */
.news__list {
  border-top: 1px solid #ddd;
}

.news__item {
  border-bottom: 1px solid #ddd;
  padding: 15px 0;
}
@media (min-width: 768px) {
  .news__item {
    display: flex;
    align-items: center;
  }
}

.news__date {
  display: block;
  font-size: 12px;
  color: #888;
  margin-bottom: 5px;
}
@media (min-width: 768px) {
  .news__date {
    margin-bottom: 0;
    margin-right: 20px;
    width: 100px;
  }
}

.news__link {
  font-size: 14px;
}
.news__link:hover {
  text-decoration: underline;
}

/*
=================================
 下層ページ（採用情報など）
=================================
*/
/* 下層ページ用ヒーロー */
.hero-sub {
  padding-top: 100px;
  padding-bottom: 40px;
  background-color: #e6f0fa;
}
@media (min-width: 768px) {
  .hero-sub {
    padding-top: 120px;
    padding-bottom: 60px;
  }
}
.hero-sub__en {
  display: block;
  font-family: "Roboto", sans-serif;
  color: #2e69a8;
  font-weight: bold;
  letter-spacing: 0.1em;
  font-size: 16px;
}
.hero-sub__jp {
  font-size: 28px;
  font-weight: bold;
  margin-top: 8px;
  line-height: 1.3;
}
@media (min-width: 768px) {
  .hero-sub__jp {
    font-size: 40px;
  }
}

/* 募集職種一覧 (カードグリッド) */
.career-grid {
  display: grid;
  gap: 30px;
}
@media (min-width: 768px) {
  .career-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* 募集職種カード */
.career-card {
  display: block;
  background: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: all 0.3s;
  position: relative;
}
.career-card:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}
.career-card__img {
  width: 100%;
  height: 180px;
}
.career-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.career-card__body {
  padding: 24px;
}
.career-card__cat {
  display: inline-block;
  background: #2e69a8;
  color: #ffffff;
  font-size: 10px;
  font-weight: bold;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 12px;
}
.career-card__title {
  font-size: 20px;
  font-weight: bold;
  color: #2e69a8;
  margin-bottom: 10px;
}
.career-card__desc {
  font-size: 14px;
  color: #666;
  line-height: 1.7;
}
.career-card {
  /* =================================
   ★★★ 募集停止用のスタイル (ここから追記) ★★★
  =================================
  */
}
.career-card__stopped-overlay {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(2px);
  z-index: 2;
}
.is-stopped .career-card__stopped-overlay {
  display: flex;
  justify-content: center;
  align-items: center;
}
.career-card__stopped-text {
  font-size: 16px;
  font-weight: bold;
  color: #333333;
  padding: 10px 20px;
  border: 2px solid #2e69a8;
  border-radius: 5px;
  background-color: #ffffff;
}
.career-card.is-stopped {
  pointer-events: none;
}
.career-card.is-stopped:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transform: none;
}
.career-card.is-stopped .career-card__img,
.career-card.is-stopped .career-card__body {
  opacity: 0.4;
  filter: grayscale(100%);
}

/*
=================================
 お知らせページ (archive.php, single.php)
=================================
*/
.news-list-container {
  max-width: 800px;
}

.pagination {
  margin-top: 40px;
}
.pagination .nav-links {
  display: flex;
  justify-content: center;
  gap: 10px;
}
.pagination .page-numbers {
  display: block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
  background-color: #f5f7fa;
  transition: background 0.3s;
}
.pagination .page-numbers:hover {
  background-color: rgb(211, 219.8, 233);
}
.pagination .current {
  background-color: #2e69a8;
  color: #ffffff;
  font-weight: bold;
}

.entry-header {
  padding-bottom: 20px;
}
@media (min-width: 768px) {
  .entry-header {
    padding-bottom: 30px;
  }
}
.entry-header .entry-date {
  font-family: "Roboto", sans-serif;
  color: #2e69a8;
  font-weight: bold;
}
.entry-header .entry-title {
  font-size: 24px;
}
@media (min-width: 768px) {
  .entry-header .entry-title {
    font-size: 36px;
  }
}

.entry-container {
  max-width: 800px;
}

.entry-content {
  line-height: 1.8;
}
.entry-content p {
  margin-bottom: 1.5em;
}
.entry-content h2 {
  font-size: 22px;
  font-weight: bold;
  margin: 40px 0 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #2e69a8;
}
.entry-content h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 30px 0 15px;
  padding-left: 10px;
  border-left: 4px solid #2e69a8;
}
.entry-content ul, .entry-content ol {
  margin: 1em 0 1.5em 1.5em;
}
.entry-content li {
  margin-bottom: 0.5em;
}
.entry-content img {
  margin: 20px 0;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.entry-content a {
  color: #2e69a8;
  text-decoration: underline;
}
.entry-content a:hover {
  text-decoration: none;
}

.post-navigation {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #eee;
}
.post-navigation a {
  color: #2e69a8;
  font-weight: bold;
  text-decoration: underline;
}

.container--small {
  max-width: 800px;
}

.interview-detail {
  padding: 60px 0;
}
@media (min-width: 768px) {
  .interview-detail {
    padding: 100px 0;
  }
}
.interview-detail__header {
  text-align: center;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .interview-detail__header {
    margin-bottom: 60px;
  }
}
.interview-detail__title {
  font-size: 24px;
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 20px;
  color: #2e69a8;
}
@media (min-width: 768px) {
  .interview-detail__title {
    font-size: 32px;
  }
}
.interview-detail__meta {
  font-size: 14px;
  color: #333333;
  opacity: 0.9;
}
.interview-detail__name {
  margin-left: 1em;
  font-weight: bold;
}
.interview-detail__eyecatch {
  margin-bottom: 40px;
}
.interview-detail__eyecatch img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}
.interview-detail__content {
  line-height: 1.8;
  font-size: 16px;
  color: #444;
}
.interview-detail__content p {
  margin-bottom: 1.5em;
}
.interview-detail__content h2 {
  font-size: 22px;
  font-weight: bold;
  padding-bottom: 10px;
  border-bottom: 2px solid #e6f0fa;
  margin-top: 60px;
  margin-bottom: 20px;
}
.interview-detail__content h3 {
  font-size: 18px;
  font-weight: bold;
  margin-top: 40px;
  margin-bottom: 15px;
}
.interview-detail__content ul,
.interview-detail__content ol {
  margin: 1em 0 1.5em 2em;
}
.interview-detail__content ul li,
.interview-detail__content ol li {
  margin-bottom: 0.5em;
}
.interview-detail__content blockquote {
  border-left: 4px solid #e6f0fa;
  padding-left: 1em;
  margin: 1.5em 0;
  color: #555;
}

/*
=================================
 社員インタビュー 一覧ページ (archive-interview.php)
 ★デザイン変更版 (リストレイアウト)
=================================
*/
.interview-list {
  border-top: 1px solid #eee;
}

/* インタビューアイテム */
.interview-item {
  display: block;
  border-bottom: 1px solid #eee;
  padding: 30px 0;
  transition: background-color 0.3s;
}
@media (min-width: 768px) {
  .interview-item {
    display: grid;
    grid-template-columns: 200px 1fr 100px;
    gap: 30px;
    align-items: center;
    padding: 30px 20px;
  }
}
.interview-item:hover {
  background-color: rgb(242.75, 247.65, 252.55);
}
.interview-item:hover .interview-item__img img {
  transform: scale(1.08);
}
.interview-item:hover .interview-item__title {
  color: #2e69a8;
  text-decoration: underline;
}
.interview-item:hover .interview-item__arrow span {
  transform: translateX(10px);
  color: #2e69a8;
}
.interview-item__img {
  width: 100%;
  margin-bottom: 20px;
  border-radius: 8px;
  overflow: hidden;
}
@media (min-width: 768px) {
  .interview-item__img {
    width: 200px;
    height: 125px;
    margin-bottom: 0;
  }
}
.interview-item__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 0.4s ease-out;
}
.interview-item__body {
  position: relative;
}
@media (min-width: 768px) {
  .interview-item__body {
    padding-right: 20px;
  }
}
.interview-item__cat {
  display: inline-block;
  background: #2e69a8;
  color: #ffffff;
  font-size: 10px;
  font-weight: bold;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 12px;
}
@media (min-width: 768px) {
  .interview-item__cat {
    position: absolute;
    top: 0;
    right: 0;
    margin-bottom: 0;
  }
}
.interview-item__title {
  font-size: 20px;
  font-weight: bold;
  color: #333333;
  line-height: 1.6;
  margin-bottom: 10px;
  transition: color 0.3s;
}
@media (min-width: 768px) {
  .interview-item__title {
    font-size: 24px;
    padding-right: 80px;
  }
}
.interview-item__meta {
  font-size: 14px;
  color: #666;
}
.interview-item__arrow {
  display: none;
}
@media (min-width: 768px) {
  .interview-item__arrow {
    display: block;
    text-align: center;
  }
  .interview-item__arrow span {
    display: inline-block;
    font-size: 24px;
    font-weight: bold;
    color: #ccc;
    transition: transform 0.3s, color 0.3s;
  }
}

/*
.container--small {
max-width: 800px;
}
*/
.job-section {
  margin-bottom: 50px;
}
@media (min-width: 768px) {
  .job-section {
    margin-bottom: 70px;
  }
}
.job-section__title {
  font-size: 20px;
  font-weight: bold;
  color: #2e69a8;
  padding-bottom: 10px;
  border-bottom: 2px solid #2e69a8;
  margin-bottom: 20px;
}
.job-section__content {
  line-height: 1.8;
  font-size: 16px;
  color: #444;
}
.job-section__content p {
  margin-bottom: 1.5em;
}
.job-section__content ul, .job-section__content ol {
  margin: 1em 0 1.5em 2em;
}
.job-section__content ul li, .job-section__content ol li {
  margin-bottom: 0.5em;
}

.job-table {
  width: 100%;
  border-collapse: collapse;
}
.job-table th, .job-table td {
  border: 1px solid #ddd;
  padding: 15px;
  text-align: left;
  vertical-align: top;
}
.job-table th {
  width: 30%;
  font-weight: bold;
  background-color: #f5f7fa;
}
@media (min-width: 768px) {
  .job-table th {
    width: 20%;
  }
}
.job-table td {
  width: 70%;
  line-height: 1.7;
}
@media (min-width: 768px) {
  .job-table td {
    width: 80%;
  }
}

.job-entry-cta {
  text-align: center;
  margin-top: 60px;
}
.job-entry-cta .btn {
  width: 100%;
  max-width: 400px;
  padding: 18px;
  font-size: 18px;
}

.job-entry-backlink {
  display: block;
  margin-top: 20px;
  color: #333333;
  text-decoration: underline;
}
.job-entry-backlink:hover {
  color: #2e69a8;
}

/* --------------------
 ミッション
-------------------- */
.mission-content {
  text-align: center;
}
.mission-content__title {
  font-size: 24px;
  font-weight: bold;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #2e69a8;
}
@media (min-width: 768px) {
  .mission-content__title {
    font-size: 32px;
  }
}
.mission-content__text {
  font-size: 16px;
  line-height: 1.8;
  text-align: left;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}
.mission-content__text + .mission-content__text {
  margin-top: 1.5em;
}

/* --------------------
 会社概要テーブル
 (dl, dt, dd を使用)
-------------------- */
.profile-table {
  border-top: 1px solid #ddd;
}
.profile-table__row {
  border-bottom: 1px solid #ddd;
}
@media (min-width: 768px) {
  .profile-table__row {
    display: flex;
  }
}
.profile-table__term {
  font-weight: bold;
  padding: 20px;
  background-color: #f5f7fa;
}
@media (min-width: 768px) {
  .profile-table__term {
    width: 25%;
    flex-shrink: 0;
    padding: 25px;
  }
}
.profile-table__desc {
  padding: 20px;
  line-height: 1.7;
  background-color: #ffffff;
}
@media (min-width: 768px) {
  .profile-table__desc {
    width: 75%;
    padding: 25px;
  }
}
.profile-table__desc br {
  display: block;
  content: "";
  margin-top: 0.5em;
}

/* --------------------
 アクセスマップ (タブ切り替え)
-------------------- */
.access-map {
  padding-top: 0;
}
@media (min-width: 768px) {
  .access-map {
    padding-top: 0;
  }
}
.access-map .section__header {
  margin-bottom: 40px;
}
.access-map__tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 15px;
  margin-bottom: 30px;
  padding: 0;
}
.access-map__tabs-item {
  list-style: none;
}
.access-map__tabs-btn {
  display: block;
  padding: 10px 25px;
  font-size: 14px;
  font-weight: bold;
  color: #2e69a8;
  border: 2px solid #2e69a8;
  border-radius: 30px;
  background-color: #ffffff;
  cursor: pointer;
  transition: all 0.3s;
}
@media (min-width: 768px) {
  .access-map__tabs-btn {
    font-size: 16px;
    padding: 12px 30px;
  }
}
.access-map__tabs-btn:hover {
  background-color: #e6f0fa;
}
.access-map__tabs-btn.is-active {
  background-color: #2e69a8;
  color: #ffffff;
  border-color: #2e69a8;
}
.access-map__content {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}
.access-map__panel {
  display: none;
}
.access-map__panel.is-active {
  display: block;
}
.access-map__iframe {
  position: relative;
  width: 100%;
  padding-top: 50%;
}
.access-map__iframe iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.access-map__address {
  padding: 20px;
  font-size: 14px;
  font-weight: bold;
  text-align: center;
  background-color: #ffffff;
  line-height: 1.6;
}
@media (min-width: 768px) {
  .access-map__address {
    font-size: 16px;
  }
}

/* プロジェクト一覧グリッド */
.project-grid {
  display: grid;
  gap: 30px;
}
@media (min-width: 768px) {
  .project-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* プロジェクトカード */
.project-card {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease-out;
}
.project-card:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transform: translateY(-8px);
}
.project-card:hover .project-card__img img {
  transform: scale(1.05);
}
.project-card:hover .project-card__overlay {
  opacity: 1;
  transform: translateY(0);
}
.project-card__img {
  width: 100%;
  height: 180px;
  flex-shrink: 0;
  overflow: hidden;
  position: relative;
  border-radius: 8px 8px 0 0;
}
.project-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 0.4s ease-out;
}
.project-card__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.1) 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease-out;
}
.project-card__overlay span {
  color: #ffffff;
  font-size: 16px;
  font-weight: bold;
  border: 2px solid #ffffff;
  padding: 8px 16px;
  border-radius: 30px;
}
.project-card__body {
  padding: 24px;
  flex-grow: 1;
}
.project-card__cat {
  display: inline-block;
  background: #2e69a8;
  color: #ffffff;
  font-size: 10px;
  font-weight: bold;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 12px;
}
.project-card__title {
  font-size: 20px;
  font-weight: bold;
  color: #2e69a8;
  margin-bottom: 15px;
  line-height: 1.5;
}
.project-card__meta-title {
  font-size: 12px;
  font-weight: bold;
  color: #888;
  margin-bottom: 8px;
}
.project-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 8px;
  padding: 0;
  margin: 0;
}
.project-card__tags li {
  font-size: 12px;
  font-weight: bold;
  background-color: #e6f0fa;
  color: #2e69a8;
  padding: 4px 12px;
  border-radius: 4px;
  list-style: none;
  margin: 0;
}

.recruit-form-container {
  overflow: visible !important;
}

/* --- 採用フォーム全体ラッパー --- */
.recruit-form-wrapper {
  max-width: 800px;
  margin: 40px auto;
  padding: 35px;
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 70, 130, 0.08);
  border: 1px solid #e6ecf0;
}
@media screen and (max-width: 768px) {
  .recruit-form-wrapper {
    padding: 25px 20px;
    margin: 20px auto;
    box-shadow: none;
    border: none;
  }
}

/* --- 各フォーム項目グループ --- */
.form-group {
  margin-bottom: 28px;
  /* --- ラベル（項目名） --- */
}
@media screen and (max-width: 768px) {
  .form-group label {
    font-size: 15px;
  }
}
.form-group {
  /* --- ラベル（項目名）の代わりに追加 --- */
}
.form-group-title {
  display: block;
  font-weight: 600;
  margin-bottom: 10px;
  color: #2c3e50;
  font-size: 16px;
}
.form-group {
  /* --- 必須マークの共通スタイル --- */
}
.form-group-title .required,
.form-group label .required {
  display: inline-block;
  background-color: #0073aa;
  color: #fff;
  font-size: 11px;
  padding: 3px 8px;
  border-radius: 4px;
  margin-left: 8px;
  margin-bottom: 4px;
  font-weight: 500;
  vertical-align: middle;
}
.form-group {
  /* --- チェックボックス本体のラッパー --- */
}
.form-group-checkbox-wrapper {
  margin-bottom: 28px;
}
.form-group {
  /* --- 入力欄（テキスト、メール、電話、セレクト） --- */
}
.form-group input[type=text],
.form-group input[type=email],
.form-group input[type=tel],
.form-group input[type=date],
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #ccd0d5;
  border-radius: 6px;
  font-size: 16px;
  box-sizing: border-box;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.form-group {
  /* --- 入力欄フォーカス時（クリックした時） --- */
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #0073aa;
  box-shadow: 0 0 8px rgba(0, 115, 170, 0.2);
  outline: none;
}
.form-group {
  /* --- ファイルアップロード --- */
}
.form-group input[type=file] {
  width: 100%;
  border: 1px dashed #ccd0d5;
  border-radius: 6px;
  padding: 12px;
  background-color: #f9fbfc;
  cursor: pointer;
}
.form-group small {
  display: block;
  margin-top: 8px;
  font-size: 13px;
  color: #555;
}
.form-group {
  /* --- 送信ボタン --- */
}
.form-group .wpcf7-submit {
  display: block;
  width: 100%;
  max-width: 320px;
  margin: 20px auto 0;
  padding: 16px 20px;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  background-color: #0073aa;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.2s, box-shadow 0.3s;
}
.form-group .wpcf7-submit:hover {
  background-color: #005a87;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 90, 135, 0.2);
}
@media screen and (max-width: 768px) {
  .form-group .wpcf7-submit {
    width: 100%;
    max-width: 100%;
    font-size: 16px;
    padding: 15px;
  }
}

/* --- ラジオボタン/チェックボックスのコンテナ --- */
.wpcf7-list-item {
  margin: 0 15px 10px 0;
  display: inline-block;
  cursor: pointer;
  vertical-align: top;
}
.wpcf7-list-item label {
  font-weight: normal;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  vertical-align: top;
  line-height: 1.4;
  word-break: keep-all;
  white-space: normal;
  max-width: 100%;
  pointer-events: auto;
}
.wpcf7-list-item {
  /* --- チェックボックスをラジオボタン（丸型）風にするスタイル --- */
}
.wpcf7-list-item input[type=checkbox] {
  margin-right: 8px;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  vertical-align: middle;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  appearance: none !important;
  position: relative;
  top: 0;
  border: 1px solid #ccd0d5 !important;
  border-radius: 50% !important;
  outline: none;
  cursor: pointer;
  transition: all 0.2s;
  pointer-events: auto !important;
}
.wpcf7-list-item {
  /* --- 選択されたチェックボックス（ラジオボタン風）のスタイル --- */
}
.wpcf7-list-item input[type=checkbox]:checked {
  background-color: #0073aa !important;
  border-color: #0073aa !important;
  box-shadow: inset 0 0 0 4px #ffffff !important;
}
.wpcf7-list-item {
  /* --- メディアクエリ --- */
}
@media screen and (min-width: 1025px) and (max-width: 1400px) {
  .wpcf7-list-item {
    display: inline-block !important;
    margin: 0 15px 10px 0 !important;
    vertical-align: top !important;
  }
  .wpcf7-list-item label {
    display: inline-flex !important;
    align-items: center !important;
    white-space: normal !important;
    word-break: keep-all !important;
    line-height: 1.4 !important;
    max-width: 200px;
  }
  .wpcf7-list-item input[type=checkbox] {
    flex-shrink: 0 !important;
    margin-right: 8px !important;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .wpcf7-list-item {
    display: block !important;
    width: 100% !important;
    margin-right: 0;
    margin-bottom: 12px;
  }
  .wpcf7-list-item label {
    font-size: 15px !important;
    line-height: 1.4 !important;
    display: inline-flex !important;
    align-items: center !important;
    word-break: keep-all !important;
    white-space: normal !important;
    width: auto !important;
  }
  .wpcf7-list-item input[type=checkbox] {
    margin-right: 8px;
    flex-shrink: 0;
  }
}
@media screen and (max-width: 768px) {
  .wpcf7-list-item {
    display: block !important;
    width: 100% !important;
    box-sizing: border-box;
    margin-right: 0;
    margin-bottom: 12px;
  }
  .wpcf7-list-item label {
    font-size: 14px !important;
    line-height: 1.4 !important;
    display: inline-flex !important;
    align-items: center !important;
    word-break: keep-all !important;
    white-space: normal !important;
    width: auto !important;
  }
  .wpcf7-list-item input[type=checkbox] {
    width: 16px;
    height: 16px;
    margin-right: 8px;
    flex-shrink: 0;
  }
}

@media screen and (max-width: 768px) {
  .wpcf7-form-control-wrap,
  .wpcf7-form-control,
  .wpcf7-checkbox {
    width: 100% !important;
    display: block !important;
    overflow: visible !important;
  }
}
/* (Q&A) 1アイテム */
.faq-item {
  border-bottom: 1px solid #eee;
}
.faq-item:first-child {
  border-top: 1px solid #eee;
}

/* (Q) 質問ボタン */
.faq-question {
  display: flex;
  align-items: flex-start;
  width: 100%;
  padding: 25px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}
.faq-question:hover .faq-q-text {
  color: #2e69a8;
}

.faq-q-icon {
  font-size: 20px;
  font-family: "Roboto", sans-serif;
  font-weight: bold;
  color: #2e69a8;
  margin-right: 15px;
}

.faq-q-text {
  flex-grow: 1;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.6;
  color: #333333;
  padding-right: 20px;
  transition: color 0.3s;
}
@media (min-width: 768px) {
  .faq-q-text {
    font-size: 18px;
  }
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}
.is-active .faq-answer {
  max-height: 500px;
  transition: max-height 0.5s ease-in;
}

.faq-answer-inner {
  display: flex;
  align-items: flex-start;
  padding: 0 0 30px 0;
  background-color: #f5f7fa;
  padding: 25px;
  border-radius: 8px;
  margin: 0 0 25px 35px;
}
@media (min-width: 768px) {
  .faq-answer-inner {
    margin-left: 40px;
  }
}

.faq-a-icon {
  font-size: 20px;
  font-family: "Roboto", sans-serif;
  font-weight: bold;
  color: #2e69a8;
  margin-right: 15px;
}

.faq-answer-inner p {
  font-size: 15px;
  line-height: 1.8;
  flex-grow: 1;
  color: #444;
  margin: 0;
}
.faq-answer-inner p + p {
  margin-top: 1em;
}

/* ( +/- ) トグルアイコン */
.faq-toggle-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 3px;
  position: relative;
}
.faq-toggle-icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background: #2e69a8;
  transform: translateY(-50%);
  transition: transform 0.3s;
}
.faq-toggle-icon::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  background: #2e69a8;
  transform: translateX(-50%);
  transition: all 0.3s;
}
.is-active .faq-toggle-icon::after {
  transform: translateX(-50%) scaleY(0);
}

.process-flow {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}
.process-flow::before {
  content: "";
  position: absolute;
  top: 20px;
  bottom: 0;
  left: 28px;
  width: 2px;
  background: #e6f0fa;
}
@media (min-width: 768px) {
  .process-flow::before {
    left: 38px;
  }
}

/* 各ステップのアイテム */
.process-item {
  position: relative;
  padding: 0 0 0 70px;
  margin-bottom: 50px;
}
@media (min-width: 768px) {
  .process-item {
    padding-left: 100px;
    margin-bottom: 60px;
  }
}
.process-item:not(:last-child)::after {
  display: none;
}
.process-item::after {
  content: "";
  position: absolute;
  top: 8px;
  left: 20px;
  width: 18px;
  height: 18px;
  background: #2e69a8;
  border-radius: 50%;
  border: 3px solid #ffffff;
  box-shadow: 0 0 0 2px #2e69a8;
  z-index: 2;
}
@media (min-width: 768px) {
  .process-item::after {
    left: 30px;
    top: 6px;
    width: 20px;
    height: 20px;
  }
}

.process-item__step {
  display: block;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: bold;
  color: #2e69a8;
  margin-bottom: 5px;
}

.process-item__icon {
  display: none;
}

.process-item__title {
  font-size: 20px;
  font-weight: bold;
  color: #333333;
  margin-bottom: 10px;
  text-align: left;
}
@media (min-width: 768px) {
  .process-item__title {
    font-size: 22px;
  }
}

.process-item__desc {
  font-size: 14px;
  color: #555;
  line-height: 1.7;
  text-align: left;
}

/* ナビゲーションアイテム (aタグ) */
.hub-nav-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.06);
  padding: 30px;
  transition: all 0.3s ease-out;
}
.hub-nav-item + .hub-nav-item {
  margin-top: 25px;
}
.hub-nav-item:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}
.hub-nav-item:hover .hub-nav-item__arrow {
  transform: translateX(10px);
  color: #2e69a8;
}

.hub-nav-item__en {
  display: block;
  font-family: "Roboto", sans-serif;
  color: #2e69a8;
  font-weight: bold;
  letter-spacing: 0.1em;
  font-size: 14px;
  margin-bottom: 5px;
}

.hub-nav-item__jp {
  font-size: 20px;
  font-weight: bold;
  color: #333333;
}
@media (min-width: 768px) {
  .hub-nav-item__jp {
    font-size: 22px;
  }
}

.hub-nav-item__arrow {
  font-size: 30px;
  font-weight: bold;
  color: #ccc;
  transition: all 0.3s;
}

/*
=================================
 ブログ（オウンドメディア）ページ
 archive-blog.php, single-blog.php
=================================
*/
@media (max-width: 767px) {
  .sp-hide {
    display: none;
  }
}

@media (min-width: 768px) {
  .container--wide {
    max-width: 1200px;
  }
}

.hero-sub--blog {
  background: linear-gradient(135deg, #2e69a8 0%, rgb(29.5560747664, 67.464953271, 107.9439252336) 100%);
  color: #ffffff;
  padding: 120px 0 60px;
  text-align: center;
}
@media (min-width: 768px) {
  .hero-sub--blog {
    padding: 140px 0 80px;
  }
}
.hero-sub--blog .hero-sub__en {
  display: inline-block;
  font-family: "Roboto", sans-serif;
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 0.2em;
  background: rgba(255, 255, 255, 0.2);
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  .hero-sub--blog .hero-sub__en {
    font-size: 14px;
  }
}
.hero-sub--blog .hero-sub__jp {
  font-size: 28px;
  font-weight: 900;
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  .hero-sub--blog .hero-sub__jp {
    font-size: 42px;
  }
}
.hero-sub--blog .hero-sub__desc {
  font-size: 14px;
  opacity: 0.9;
  line-height: 1.8;
}
@media (min-width: 768px) {
  .hero-sub--blog .hero-sub__desc {
    font-size: 16px;
  }
}

.blog-filter {
  background: #ffffff;
  border-bottom: 1px solid #eee;
  padding: 20px 0;
  position: sticky;
  top: 60px;
  z-index: 50;
}
.blog-filter__list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.blog-filter__link {
  display: inline-block;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: bold;
  background: #f5f7fa;
  color: #333333;
  transition: all 0.3s;
}
.blog-filter__link:hover {
  background: #e6f0fa;
  color: #2e69a8;
  opacity: 1;
}
.blog-filter__link.is-active {
  background: #2e69a8;
  color: #ffffff;
}

.blog-list-section {
  background: #f5f7fa;
}

.blog-grid {
  display: grid;
  gap: 30px;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .blog-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 768px) {
  .blog-grid--3col {
    grid-template-columns: repeat(3, 1fr);
  }
}

.blog-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.3s;
}
.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}
.blog-card:hover .blog-card__img img {
  transform: scale(1.05);
}
.blog-card:hover .blog-card__more {
  color: #2e69a8;
}
.blog-card__link {
  display: block;
}
.blog-card__link:hover {
  opacity: 1;
}
.blog-card__img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
}
.blog-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.blog-card__cat {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: bold;
  background: #2e69a8;
  color: #ffffff;
}
.blog-card__cat--programming {
  background: #3b82f6;
}
.blog-card__cat--web {
  background: #10b981;
}
.blog-card__cat--career {
  background: #f59e0b;
}
.blog-card__cat--tips {
  background: #8b5cf6;
}
.blog-card__body {
  padding: 20px;
}
.blog-card__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 12px;
  color: #888;
}
.blog-card__date {
  font-family: "Roboto", sans-serif;
}
.blog-card__time {
  display: flex;
  align-items: center;
  gap: 4px;
}
.blog-card__time svg {
  opacity: 0.7;
}
.blog-card__title {
  font-size: 16px;
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (min-width: 768px) {
  .blog-card__title {
    font-size: 18px;
  }
}
.blog-card__excerpt {
  font-size: 13px;
  color: #666;
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 15px;
}
.blog-card__more {
  font-size: 13px;
  font-weight: bold;
  color: #888;
  transition: color 0.3s;
}

.blog-empty {
  text-align: center;
  padding: 80px 20px;
}
.blog-empty__icon {
  font-size: 48px;
  margin-bottom: 20px;
}
.blog-empty__text {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
}
.blog-empty__subtext {
  font-size: 14px;
  color: #888;
}

.blog-single__header {
  background: linear-gradient(135deg, #2e69a8 0%, rgb(29.5560747664, 67.464953271, 107.9439252336) 100%);
  color: #ffffff;
  padding: 100px 0 50px;
}
@media (min-width: 768px) {
  .blog-single__header {
    padding: 120px 0 60px;
  }
}
.blog-single__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}
.blog-single__cat {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: bold;
  background: rgba(255, 255, 255, 0.2);
}
.blog-single__cat:hover {
  background: rgba(255, 255, 255, 0.3);
  opacity: 1;
}
.blog-single__cat--programming {
  background: #3b82f6;
}
.blog-single__cat--web {
  background: #10b981;
}
.blog-single__cat--career {
  background: #f59e0b;
}
.blog-single__cat--tips {
  background: #8b5cf6;
}
.blog-single__date {
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  opacity: 0.9;
}
.blog-single__reading-time {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  opacity: 0.9;
}
.blog-single__reading-time svg {
  opacity: 0.8;
}
.blog-single__title {
  font-size: 24px;
  font-weight: 900;
  line-height: 1.4;
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .blog-single__title {
    font-size: 36px;
  }
}
.blog-single__author {
  display: flex;
  align-items: center;
  gap: 15px;
}
.blog-single__author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.3);
}
.blog-single__author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog-single__author-name {
  display: block;
  font-weight: bold;
  font-size: 15px;
}
.blog-single__author-role {
  display: block;
  font-size: 12px;
  opacity: 0.8;
  margin-top: 2px;
}
.blog-single__thumbnail {
  margin-top: -30px;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .blog-single__thumbnail {
    margin-top: -40px;
    margin-bottom: 60px;
  }
}
.blog-single__thumbnail img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}
.blog-single__content {
  padding-bottom: 60px;
}
.blog-single__content .container {
  max-width: 800px;
}
.blog-single__body {
  position: relative;
}
.blog-single__tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid #eee;
}
.blog-single__tags-label {
  font-size: 13px;
  color: #888;
  font-weight: bold;
}
.blog-single__tags-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.blog-breadcrumb {
  margin-bottom: 30px;
}
.blog-breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  opacity: 0.8;
}
.blog-breadcrumb__item {
  display: flex;
  align-items: center;
}
.blog-breadcrumb__item::after {
  content: "/";
  margin-left: 8px;
  opacity: 0.5;
}
.blog-breadcrumb__item:last-child::after {
  display: none;
}
.blog-breadcrumb__item a:hover {
  text-decoration: underline;
  opacity: 1;
}

.blog-toc {
  background: #f5f7fa;
  border-radius: 12px;
  padding: 25px;
  margin-top: 40px;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .blog-toc {
    margin-top: 50px;
  }
}
.blog-toc__title {
  font-size: 14px;
  font-weight: bold;
  color: #2e69a8;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.blog-toc__title::before {
  content: "📑";
}
.blog-toc__list {
  counter-reset: toc;
}
.blog-toc__item {
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
  font-size: 14px;
  line-height: 1.6;
}
.blog-toc__item::before {
  counter-increment: toc;
  content: counter(toc) ".";
  position: absolute;
  left: 0;
  color: #2e69a8;
  font-weight: bold;
}
.blog-toc__item a {
  color: #333333;
}
.blog-toc__item a:hover {
  color: #2e69a8;
  opacity: 1;
}
.blog-toc__item--h3 {
  padding-left: 45px;
  font-size: 13px;
}
.blog-toc__item--h3::before {
  left: 20px;
  color: #888;
}

.blog-entry-content {
  line-height: 1.9;
  font-size: 16px;
  color: #333;
}
.blog-entry-content p {
  margin-bottom: 1.8em;
}
.blog-entry-content h2 {
  font-size: 22px;
  font-weight: bold;
  margin: 50px 0 25px;
  padding: 15px 20px;
  background: #e6f0fa;
  border-left: 4px solid #2e69a8;
  border-radius: 0 8px 8px 0;
}
@media (min-width: 768px) {
  .blog-entry-content h2 {
    font-size: 26px;
  }
}
.blog-entry-content h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 40px 0 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #eee;
  position: relative;
}
.blog-entry-content h3::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 80px;
  height: 2px;
  background: #2e69a8;
}
@media (min-width: 768px) {
  .blog-entry-content h3 {
    font-size: 20px;
  }
}
.blog-entry-content h4 {
  font-size: 16px;
  font-weight: bold;
  margin: 30px 0 15px;
}
@media (min-width: 768px) {
  .blog-entry-content h4 {
    font-size: 18px;
  }
}
.blog-entry-content ul,
.blog-entry-content ol {
  margin: 1.5em 0 2em;
  padding-left: 1.5em;
}
.blog-entry-content ul {
  list-style: disc;
}
.blog-entry-content ol {
  list-style: decimal;
}
.blog-entry-content li {
  margin-bottom: 0.8em;
  line-height: 1.7;
}
.blog-entry-content a {
  color: #2e69a8;
  text-decoration: underline;
}
.blog-entry-content a:hover {
  text-decoration: none;
  opacity: 1;
}
.blog-entry-content img {
  margin: 30px 0;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.blog-entry-content blockquote {
  margin: 2em 0;
  padding: 25px 25px 25px 60px;
  background: #f5f7fa;
  border-radius: 8px;
  position: relative;
  font-style: italic;
}
.blog-entry-content blockquote::before {
  content: '"';
  position: absolute;
  left: 20px;
  top: 15px;
  font-size: 40px;
  color: #2e69a8;
  opacity: 0.3;
  font-family: Georgia, serif;
}
.blog-entry-content blockquote p:last-child {
  margin-bottom: 0;
}
.blog-entry-content pre {
  margin: 2em 0;
  padding: 20px;
  background: #1e1e1e;
  border-radius: 8px;
  overflow-x: auto;
  font-family: "Consolas", "Monaco", monospace;
  font-size: 14px;
  line-height: 1.6;
}
.blog-entry-content pre code {
  color: #dcdcdc;
  background: none;
  padding: 0;
}
.blog-entry-content code {
  background: #e6f0fa;
  color: #2e69a8;
  padding: 2px 8px;
  border-radius: 4px;
  font-family: "Consolas", "Monaco", monospace;
  font-size: 0.9em;
}
.blog-entry-content table {
  width: 100%;
  margin: 2em 0;
  border-collapse: collapse;
  font-size: 14px;
}
.blog-entry-content table th,
.blog-entry-content table td {
  padding: 12px 15px;
  border: 1px solid #ddd;
  text-align: left;
}
.blog-entry-content table th {
  background: #2e69a8;
  color: #ffffff;
  font-weight: bold;
}
.blog-entry-content table tr:nth-child(even) {
  background: #f5f7fa;
}
.blog-entry-content .notice,
.blog-entry-content .warning,
.blog-entry-content .info {
  margin: 2em 0;
  padding: 20px 20px 20px 60px;
  border-radius: 8px;
  position: relative;
}
.blog-entry-content .notice::before,
.blog-entry-content .warning::before,
.blog-entry-content .info::before {
  position: absolute;
  left: 20px;
  top: 20px;
  font-size: 20px;
}
.blog-entry-content .notice {
  background: #fff3cd;
  border-left: 4px solid #ffc107;
}
.blog-entry-content .notice::before {
  content: "⚠️";
}
.blog-entry-content .info {
  background: #e7f3ff;
  border-left: 4px solid #2196f3;
}
.blog-entry-content .info::before {
  content: "ℹ️";
}

.blog-tag {
  display: inline-block;
  padding: 4px 12px;
  background: #f5f7fa;
  border-radius: 20px;
  font-size: 12px;
  color: #666;
  transition: all 0.3s;
}
.blog-tag:hover {
  background: #e6f0fa;
  color: #2e69a8;
  opacity: 1;
}

.blog-share {
  margin-top: 40px;
  padding: 25px;
  background: #f5f7fa;
  border-radius: 12px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 15px;
}
@media (min-width: 768px) {
  .blog-share {
    justify-content: space-between;
  }
}
.blog-share__label {
  font-size: 14px;
  font-weight: bold;
  color: #666;
}
.blog-share__buttons {
  display: flex;
  gap: 10px;
}
.blog-share__btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
}
.blog-share__btn:hover {
  transform: scale(1.1);
  opacity: 1;
}
.blog-share__btn--twitter {
  background: #000;
}
.blog-share__btn--facebook {
  background: #1877f2;
}
.blog-share__btn--hatena {
  background: #00a4de;
}
.blog-share__btn--copy {
  background: #666;
}

.blog-nav {
  border-top: 1px solid #eee;
  padding: 40px 0;
}
.blog-nav__inner {
  display: grid;
  gap: 20px;
}
@media (min-width: 768px) {
  .blog-nav__inner {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}
.blog-nav__item {
  display: block;
  padding: 20px;
  background: #f5f7fa;
  border-radius: 8px;
  transition: all 0.3s;
}
.blog-nav__item:hover {
  background: #e6f0fa;
  opacity: 1;
}
.blog-nav__item--empty {
  display: none;
}
@media (min-width: 768px) {
  .blog-nav__item--empty {
    display: block;
    background: none;
  }
}
.blog-nav__item--next {
  text-align: right;
}
.blog-nav__label {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: #2e69a8;
  font-weight: bold;
  margin-bottom: 8px;
}
.blog-nav__item--next .blog-nav__label {
  justify-content: flex-end;
}
.blog-nav__title {
  font-size: 14px;
  font-weight: bold;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-related .blog-card__body {
  padding: 15px;
}
.blog-related .blog-card__title {
  font-size: 15px;
  margin-bottom: 0;
}
.blog-related .blog-card__date {
  font-size: 12px;
  color: #888;
  margin-bottom: 8px;
  display: block;
}

.blog-cards-top {
  display: grid;
  gap: 25px;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .blog-cards-top {
    grid-template-columns: repeat(3, 1fr);
  }
}

.blog-card-top {
  display: block;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
  transition: all 0.3s;
}
.blog-card-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  opacity: 1;
}
.blog-card-top:hover .blog-card-top__img img {
  transform: scale(1.05);
}
.blog-card-top__img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
}
.blog-card-top__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.blog-card-top__cat {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: bold;
  background: #2e69a8;
  color: #ffffff;
}
.blog-card-top__body {
  padding: 18px;
}
.blog-card-top__date {
  display: block;
  font-family: "Roboto", sans-serif;
  font-size: 12px;
  color: #888;
  margin-bottom: 8px;
}
.blog-card-top__title {
  font-size: 15px;
  font-weight: bold;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (min-width: 768px) {
  .blog-card-top__title {
    font-size: 16px;
  }
}

.error-404 {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 0;
  background: linear-gradient(135deg, #f5f7fa 0%, #e8f4fc 100%);
}
.error-404__content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}
.error-404__number {
  font-family: "Roboto", sans-serif;
  font-size: 120px;
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(135deg, #2e69a8 0%, #5a9bd4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .error-404__number {
    font-size: 180px;
  }
}
.error-404__title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #333333;
}
@media (min-width: 768px) {
  .error-404__title {
    font-size: 32px;
  }
}
.error-404__text {
  font-size: 15px;
  line-height: 1.8;
  color: #666;
  margin-bottom: 40px;
}
.error-404__links {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 50px;
}
@media (min-width: 768px) {
  .error-404__links {
    flex-direction: row;
    justify-content: center;
    gap: 20px;
  }
}
.error-404__suggest {
  background: #ffffff;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}
.error-404__suggest-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #333333;
}
.error-404__suggest-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media (min-width: 768px) {
  .error-404__suggest-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
.error-404__suggest-list li a {
  display: block;
  padding: 12px 20px;
  background: #f5f7fa;
  border-radius: 8px;
  color: #333333;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
}
.error-404__suggest-list li a:hover {
  background: #2e69a8;
  color: #ffffff;
  transform: translateX(5px);
}

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

.policy-lead {
  font-size: 15px;
  line-height: 2;
  margin-bottom: 50px;
  padding: 30px;
  background: #f5f7fa;
  border-radius: 12px;
  border-left: 4px solid #2e69a8;
}

.policy-section {
  margin-bottom: 40px;
}
.policy-section__title {
  font-size: 18px;
  font-weight: 700;
  color: #2e69a8;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 2px solid #e6f0fa;
}
.policy-section p {
  font-size: 15px;
  line-height: 1.9;
  margin-bottom: 15px;
  color: #333333;
}
.policy-section ul {
  margin: 15px 0;
  padding-left: 25px;
}
.policy-section ul li {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 8px;
  color: #333333;
}
.policy-section ul li::marker {
  color: #2e69a8;
}

.policy-contact {
  background: #f5f7fa;
  padding: 25px;
  border-radius: 12px;
  margin-top: 20px;
}
.policy-contact p {
  margin-bottom: 5px;
}
.policy-contact p:last-child {
  margin-bottom: 0;
}

.policy-date {
  font-size: 14px;
  color: #888;
  margin-bottom: 5px;
}
.policy-date:last-child {
  margin-bottom: 0;
}

.sitemap {
  max-width: 800px;
  margin: 0 auto;
}
.sitemap__group {
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 1px solid #eee;
}
.sitemap__group:last-child {
  border-bottom: none;
  margin-bottom: 0;
}
.sitemap__title {
  font-size: 18px;
  font-weight: 700;
  color: #333333;
  margin-bottom: 15px;
  padding-left: 15px;
  border-left: 4px solid #2e69a8;
}
.sitemap__title a {
  color: #333333;
  text-decoration: none;
  transition: color 0.3s ease;
}
.sitemap__title a:hover {
  color: #2e69a8;
}
.sitemap__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.sitemap__list > li {
  margin-bottom: 10px;
}
.sitemap__list > li > a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  color: #333333;
  text-decoration: none;
  padding: 8px 15px;
  border-radius: 6px;
  transition: all 0.3s ease;
}
.sitemap__list > li > a:hover {
  background: #e6f0fa;
  color: #2e69a8;
}
.sitemap__list > li > a .external-icon {
  font-size: 12px;
  opacity: 0.7;
}
.sitemap__sublist {
  list-style: none;
  padding: 0;
  margin: 10px 0 0 30px;
}
.sitemap__sublist li {
  margin-bottom: 5px;
  position: relative;
}
.sitemap__sublist li::before {
  content: "└";
  position: absolute;
  left: -20px;
  color: #ccc;
}
.sitemap__sublist li a {
  font-size: 14px;
  color: #666;
  text-decoration: none;
  transition: color 0.3s ease;
}
.sitemap__sublist li a:hover {
  color: #2e69a8;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1a4a7a 0%, #2e69a8 50%, #4a8bc9 100%);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 150px;
  background: linear-gradient(to top, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
  pointer-events: none;
}
.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 20px;
  animation: fadeInUp 1s ease-out;
}
.hero__title {
  font-size: 28px;
  font-weight: 900;
  color: #ffffff;
  line-height: 1.5;
  margin-bottom: 25px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}
@media (min-width: 768px) {
  .hero__title {
    font-size: 48px;
  }
}
.hero__subtitle {
  display: block;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.2em;
  opacity: 0.9;
  margin-bottom: 10px;
}
@media (min-width: 768px) {
  .hero__subtitle {
    font-size: 18px;
  }
}
.hero__desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
  line-height: 1.8;
}
@media (min-width: 768px) {
  .hero__desc {
    font-size: 16px;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-sub {
  position: relative;
  padding: 120px 0 60px;
  background: linear-gradient(135deg, #1a4a7a 0%, #2e69a8 100%);
  text-align: center;
  overflow: hidden;
}
.hero-sub::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 0% 100%, rgba(255, 255, 255, 0.05) 0%, transparent 50%), radial-gradient(circle at 100% 0%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
}
.hero-sub .container {
  position: relative;
  z-index: 1;
}
.hero-sub__en {
  display: block;
  font-family: "Roboto", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 10px;
}
@media (min-width: 768px) {
  .hero-sub__en {
    font-size: 14px;
  }
}
.hero-sub__jp {
  font-size: 28px;
  font-weight: 900;
  color: #ffffff;
}
@media (min-width: 768px) {
  .hero-sub__jp {
    font-size: 40px;
  }
}

.section__header {
  text-align: center;
  margin-bottom: 50px;
}
@media (min-width: 768px) {
  .section__header {
    margin-bottom: 60px;
  }
}

.section__en {
  display: block;
  font-family: "Roboto", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: #2e69a8;
  margin-bottom: 10px;
}
@media (min-width: 768px) {
  .section__en {
    font-size: 14px;
  }
}

.section__jp {
  font-size: 24px;
  font-weight: 900;
  color: #333333;
  position: relative;
  display: inline-block;
}
@media (min-width: 768px) {
  .section__jp {
    font-size: 32px;
  }
}
.section__jp::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #2e69a8 0%, #5a9bd4 100%);
  border-radius: 2px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 40px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}
.btn--primary {
  background: linear-gradient(135deg, #2e69a8 0%, #3d7dbf 100%);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(46, 105, 168, 0.3);
}
.btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(46, 105, 168, 0.4);
}
.btn--outline {
  background: transparent;
  color: #2e69a8;
  border: 2px solid #2e69a8;
}
.btn--outline:hover {
  background: #2e69a8;
  color: #ffffff;
  transform: translateY(-3px);
}
.btn--white {
  background: #ffffff;
  color: #2e69a8;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.btn--white:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.card {
  display: block;
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  color: #333333;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.4s ease;
}
.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}
.card:hover .card__img img {
  transform: scale(1.08);
}
.card__img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
}
.card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.card__body {
  padding: 25px;
}
.card__title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.5;
}
.card__text {
  font-size: 14px;
  line-height: 1.7;
  color: #666;
}

.card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
}
@media (min-width: 768px) {
  .card-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
}

html {
  scroll-behavior: smooth;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid #2e69a8;
  outline-offset: 3px;
}

::selection {
  background: #2e69a8;
  color: #ffffff;
}

/*# sourceMappingURL=style.css.map */
