@charset "UTF-8";
/*
Theme Name:fygia_child
Theme URI:
Description:WordPressテーマ「 fygia」の自作子テーマ
Template:fygia
Author:u
Author URI:
Version:1.4
*/
/**
* Foundation
* ========================== */
/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif;
  background-color: #f9fafb;
  color: #272727;
}

/* Header Base */
.header {
  background: white;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.05);
  position: relative;
  z-index: 100;
}

/* Desktop Header */
.header-desktop {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: 80px;
  max-width: 1400px;
  margin: 0 auto;
}

.logo {
  width: 365px;
  height: 43px;
}

.logo-svg {
  width: 100%;
  height: 100%;
}

.nav-desktop {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-desktop a {
  text-decoration: none;
  color: #272727;
  font-size: 14px;
  letter-spacing: 0.7px;
  transition: color 0.3s;
}

.nav-desktop a:hover {
  color: #2545B1;
}

.nav-desktop a.active {
  color: #2545B1;
}

.header-right {
  display: flex;
  gap: 24px;
  align-items: center;
}

.icon-link,
.mail-button {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.facebook-icon {
  width: 24px;
  height: 24px;
}

.language-selector {
  display: flex;
  gap: 4px;
  align-items: center;
  cursor: pointer;
}

.language-selector span {
  font-size: 14px;
  letter-spacing: 0.7px;
  color: #272727;
}

.mail-button {
  width: 40px;
  height: 40px;
}

/* Mobile Header */
.header-mobile {
  display: none;
  align-items: center;
  justify-content: space-between;
  padding: 0 8px;
  height: 60px;
}

.logo-mobile {
  width: 200px;
  height: 23px;
}

.logo-svg-mobile {
  width: 100%;
  height: 100%;
}

.header-mobile-right {
  display: flex;
  gap: 24px;
  align-items: center;
}

.hamburger-button {
  width: 40px;
  height: 40px;
  background-color: #2545B1;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s;
}

.hamburger-button:hover {
  background-color: #1e3a8a;
}

/* Mobile Menu Overlay */
.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  z-index: 1000;
}

.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Mobile Side Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 375px;
  max-width: 100%;
  height: 100%;
  background-color: #0f172a;
  transform: translateX(100%);
  transition: transform 0.3s ease-out;
  z-index: 1001;
  overflow-y: auto;
}

.mobile-menu.active {
  transform: translateX(0);
}

.mobile-menu-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 40px 24px;
}

.menu-close-wrapper {
  display: flex;
  justify-content: flex-end;
}

.menu-close-button {
  width: 40px;
  height: 40px;
  background-color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s;
}

.menu-close-button:hover {
  background-color: #f3f4f6;
}

.mobile-menu-nav {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.mobile-menu-nav a {
  color: white;
  text-decoration: none;
  font-size: 16px;
  letter-spacing: 0.8px;
  transition: color 0.3s;
}

.mobile-menu-nav a:hover,
.mobile-menu-nav a.active {
  color: #2545B1;
}

.menu-divider {
  height: 1px;
  background-color: white;
}

.mobile-menu-languages {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.language-option {
  background: none;
  border: none;
  color: white;
  text-align: left;
  font-size: 16px;
  letter-spacing: 0.8px;
  cursor: pointer;
  padding: 0;
  transition: color 0.3s;
}

.language-option:hover {
  color: #2545B1;
}

.mobile-menu-social {
  display: flex;
  align-items: center;
}

.privacy-policy {
  color: white;
  font-size: 12px;
  letter-spacing: 0.6px;
}

/* Main Content */
.main-content {
  padding: 40px 20px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.container h1 {
  margin-bottom: 16px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .header-desktop {
    display: none;
  }
  .header-mobile {
    display: flex;
  }
}

/* Prevent scrolling when menu is open */
body.menu-open {
  overflow: hidden;
}

/* リセットとベーススタイル */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Noto Sans JP', sans-serif;
  color: #272727;
  background-color: #ffffff;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

/* ヘッダー */
.header {
  position: fixed;
  left: 8px;
  right: 8px;
  background: white;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.05);
  border-radius: 4px;
  z-index: 100;
  height: 80px;
}

@media (max-width: 768px) {
  .header {
    height: 60px;
  }
}

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

.header-right {
  display: flex;
  align-items: center;
  gap: 24px;
}

.language-selector {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.7px;
}

.language-selector select {
  background-image: url("./img/ico_lang.png");
  background-repeat: no-repeat;
  background-position: left 8px center;
  padding-left: 36px;
}

.hamburger-btn {
  background-color: #2545b1;
  border: none;
  border-radius: 4px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.3s;
}

.hamburger-btn:hover {
  background-color: #1e3a8a;
}

/* ファーストビュー */
.body_unset .editor-body .fv {
  position: relative;
  height: 100vh;
  min-height: 600px;
  background-image: url("./img/FV.jpg");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.body_unset .editor-body .fv-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.1);
}

.body_unset .editor-body .fv-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: white;
  padding: 0 24px;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.body_unset .editor-body .fv-subtitle {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 1.92px;
  line-height: 1.8;
  margin-bottom: 24px;
}

@media (min-width: 768px) {
  .body_unset .editor-body .fv-subtitle {
    font-size: 24px;
    letter-spacing: 2.88px;
  }
}

.body_unset .editor-body .fv-description {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.8px;
  line-height: 1.8;
  margin-bottom: 64px;
}

@media (min-width: 768px) {
  .body_unset .editor-body .fv-description {
    font-size: 24px;
    letter-spacing: 1.2px;
  }
}

.body_unset .editor-body .fv-btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(5px);
  border-radius: 100px;
  padding: 8px;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  transition: background-color 0.3s;
  min-width: 300px;
}

.body_unset .editor-body .fv-btn:hover {
  background: rgba(255, 255, 255, 0.7);
}

.body_unset .editor-body .fv-btn span {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.8px;
  margin-left: 16px;
  margin: auto;
}

.body_unset .editor-body .arrow-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.body_unset .fv {
  position: relative;
  height: 100vh;
  min-height: 600px;
  background-image: url("./img/FV.jpg");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.body_unset .fv-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.1);
}

.body_unset .fv-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: white;
  padding: 0 24px;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.body_unset .fv-subtitle {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 1.92px;
  line-height: 1.8;
  margin-bottom: 24px;
}

@media (min-width: 768px) {
  .body_unset .fv-subtitle {
    font-size: 24px;
    letter-spacing: 2.88px;
  }
}

.body_unset .fv-description {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.8px;
  line-height: 1.8;
  margin-bottom: 64px;
}

@media (min-width: 768px) {
  .body_unset .fv-description {
    font-size: 24px;
    letter-spacing: 1.2px;
  }
}

.body_unset .fv-btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(5px);
  border-radius: 100px;
  padding: 8px;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  transition: background-color 0.3s;
  min-width: 300px;
}

.body_unset .fv-btn:hover {
  background: rgba(255, 255, 255, 0.7);
}

.body_unset .fv-btn span {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.8px;
  margin-left: 16px;
  margin: auto;
}

.body_unset .arrow-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

/* コンテナ */
.sec_1 {
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

@media (min-width: 768px) {
  .sec_1 {
    display: grid;
  }
}

/* コンテナ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* セクション共通 */
.section-label {
  color: #2545b1;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.8px;
  line-height: 1.8;
  margin-bottom: 8px;
}

/* 概要セクション */
.overview {
  background-color: white;
  padding: 120px 0 80px;
}

.overview-image {
  margin-bottom: 48px;
  border-radius: 8px;
  overflow: hidden;
}

.overview-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (min-width: 1024px) {
  .overview-image {
    height: 392px;
  }
}

.overview-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.body_unset .overview-text {
  font-size: 16px;
  font-weight: 350;
  letter-spacing: 0.8px;
  line-height: 1.8;
  color: #272727;
}

@media (min-width: 798px) {
  .body_unset .overview-text {
    margin-bottom: 75px;
  }
}

.link-btn {
  display: flex;
  align-items: center;
  gap: 16px;
  width: fit-content;
}

.arrow-icon-dark {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.link-text {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.link-text span {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.8px;
  color: #0f172a;
}

.underline {
  height: 1px;
  background-color: #0f172a;
}

/* お知らせセクション */
.news {
  background-color: #f6f7f9;
  padding: 120px 0;
}

.news-header {
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 64px;
}

@media (min-width: 768px) {
  .news-header {
    display: flex;
  }
}

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

.news-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}

.news-card:hover {
  transform: translateY(-4px);
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.1);
}

.news-image {
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

@media (min-width: 768px) {
  .news-content {
    height: 52%;
  }
}

.news-title {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.8px;
  line-height: 1.8;
  color: #272727;
}

.news-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: auto;
}

.news-category {
  background-color: #2545b1;
  color: white;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.6px;
  line-height: 1.8;
  padding: 2px 8px;
  border-radius: 2px;
}

.news-date {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.7px;
  line-height: 1.8;
  color: #b8c2cf;
}

/* お問い合わせセクション */
.contact {
  position: relative;
  background-image: url("https://images.unsplash.com/photo-1490806843957-31f4c9a91c65?w=1920");
  background-size: cover;
  background-position: center;
  padding: 40px 16px;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  margin: 0 16px 40px;
}

.contact-overlay {
  position: absolute;
  inset: 0;
  border-radius: 8px;
}

.contact-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: white;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 0 16px;
}

.section-label-white {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.8px;
  margin-bottom: 8px;
}

.section-title-white {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 1.6px;
}

.contact-text {
  font-size: 16px;
  letter-spacing: 1.28px;
  line-height: 1.8;
  padding-bottom: 30px;
}

.contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(5px);
  border-radius: 100px;
  padding: 8px;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  transition: background-color 0.3s;
  margin: 0 auto;
}

.contact-btn:hover {
  background: rgba(255, 255, 255, 0.7);
}

.contact-btn span {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.8px;
  margin-left: 16px;
  margin-right: 16px;
}

/* ハンバーガーメニュー */
.mobile-menu {
  width: 100%;
}

.menu-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease-in-out;
}

.menu-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.hamburger-menu {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 100%;
  max-width: 375px;
  background: white;
  z-index: 300;
  transform: translateX(100%);
  transition: transform 0.3s ease-in-out;
  overflow-y: auto;
}

.hamburger-menu.active {
  transform: translateX(0);
}

.close-btn {
  position: absolute;
  top: 48px;
  right: 32px;
  background: white;
  border: 2px solid #2545b1;
  border-radius: 4px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: background-color 0.3s;
}

.close-btn:hover {
  background-color: #f0f0f0;
}

.menu-content {
  padding: 120px 32px 40px;
}

.menu-list {
  list-style: none;
}

.menu-list li {
  border-bottom: 1px solid #e5e7eb;
}

.menu-list a {
  display: block;
  padding: 24px 0;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.9px;
  color: #272727;
  transition: color 0.3s, padding-left 0.3s;
}

.menu-list a:hover {
  color: #2545b1;
  padding-left: 8px;
}

/* レスポンシブデザイン */
@media (min-width: 768px) {
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .header-container {
    padding: 0 32px;
  }
  .container {
    padding: 0 40px;
  }
  .news-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .contact {
    margin: 0 40px 50px;
  }
  .hamburger-btn {
    display: none;
  }
  .hamburger-menu,
  .menu-overlay {
    display: none;
  }
  /* PC用ナビゲーション（必要に応じて追加） */
  .header-right {
    gap: 32px;
  }
}

.page-about {
  background: #F5F5F5;
}

.page-about .page-hero {
  position: relative;
  height: 400px;
  background: url("./img/bg_about.png") no-repeat;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.page-about .page-hero-overlay {
  position: absolute;
  inset: 0;
}

.page-about .page-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: white;
}

.page-about .page-hero-title {
  font-size: 48px;
  font-weight: 700;
  letter-spacing: 2.4px;
  line-height: 1.8;
  margin-bottom: 8px;
}

.page-about .page-hero-subtitle {
  font-size: 24px;
  font-weight: 350;
  letter-spacing: 1.2px;
  line-height: 1.8;
}

.page-about .breadcrumb {
  background: white;
  height: 33px;
  border-top: 1px solid #e3e3e3;
  border-bottom: 1px solid #e3e3e3;
}

.page-about .breadcrumb-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 8px 120px;
  display: flex;
  align-items: center;
  gap: 16px;
  height: 100%;
}

.page-about .breadcrumb-link,
.page-about .breadcrumb-current {
  font-size: 14px;
  font-weight: 350;
  letter-spacing: 0.7px;
  color: #747474;
}

.page-about .breadcrumb-arrow {
  width: 4px;
  height: 6px;
}

.page-about .about-intro {
  padding: 120px 0;
}

.page-about .about-intro-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-bottom: 48px;
}

.page-about .about-intro-title {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 1.6px;
  line-height: 1.8;
  color: #272727;
}

@media (min-width: 769px) {
  .page-about .about-intro-title {
    text-align: center;
  }
}

.page-about .about-intro-subtitle {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 1.8;
  color: #2545b1;
}

@media (min-width: 769px) {
  .page-about .about-intro-subtitle {
    text-align: center;
  }
}

.page-about .about-intro-text {
  font-size: 16px;
  font-weight: 350;
  letter-spacing: 0.8px;
  line-height: 1.8;
  color: #747474;
}

@media (min-width: 769px) {
  .page-about .about-intro-text {
    text-align: center;
  }
}

.page-about .vision-box {
  background: white;
  border-radius: 8px;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.05);
  padding: 40px;
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  gap: 120px;
}

.page-about .wrap-box {
  background: white;
  border-radius: 8px;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.05);
  max-width: 1000px;
  margin: 0 auto;
  padding: 24px;
}

@media (min-width: 769px) {
  .page-about .wrap-box {
    padding: 40px;
  }
}

.page-about .vision-header {
  align-items: flex-start;
}

.page-about .vision-line {
  width: 72px;
  height: 4px;
  background: #2545b1;
  margin-top: 12px;
  transform: rotate(90deg);
  transform-origin: left center;
}

.page-about .vision-title {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 1.2px;
  line-height: 1.5;
  color: #272727;
  text-align: center;
  white-space: nowrap;
}

.page-about .vision-list {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.page-about .vision-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.page-about .vision-icon {
  flex-shrink: 0;
  width: 29px;
  height: 29px;
}

.page-about .vision-text {
  font-size: 16px;
  font-weight: 350;
  letter-spacing: 0.8px;
  line-height: 1.8;
  color: #747474;
}

.page-about .about-overview {
  padding: 80px 0 40px;
}

.page-about .overview-header {
  margin-bottom: 40px;
}

.page-about .overview-line {
  width: 36px;
  height: 4px;
  background: #2545b1;
  margin-top: 8px;
  transform: rotate(90deg);
  transform-origin: left center;
}

.page-about .overview-title {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 1.2px;
  color: #272727;
  white-space: nowrap;
}

.page-about .overview-table {
  width: 100%;
  border-collapse: collapse;
}

.page-about .overview-table ul:not(.blocks-gallery-grid):not(.toc_list):not(.wp-block-gallery):not(.tagit) li {
  padding-left: 1.2em;
}

.page-about .overview-table ul:not(.blocks-gallery-grid):not(.toc_list):not(.wp-block-gallery):not(.tagit) li::before {
  content: '・';
}

.page-about .overview-table tr:nth-child(odd) {
  background: #f6f7f9;
}

.page-about .overview-table tr:nth-child(even) {
  background: white;
}

.page-about .overview-table th {
  width: 150px;
  padding: 16px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.7px;
  line-height: 1.8;
  color: #272727;
  text-align: left;
  vertical-align: top;
}

.page-about .overview-table td {
  padding: 16px;
  font-size: 14px;
  font-weight: 350;
  letter-spacing: 0.7px;
  line-height: 1.8;
  color: #747474;
}

.page-about .overview-table tr {
  border-bottom: 1px solid #e3e3e3;
}

.page-about .table-link {
  color: #4b83ef;
  font-weight: 500;
}

.page-about .table-list {
  margin: 0;
}

.page-about .table-list li {
  margin-bottom: 0;
}

.page-about .partner-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.page-about .partner-list a[target="_blank"] {
  padding-left: 0;
}

.page-about .partner-list a[target="_blank"]::before {
  display: none;
}

.page-about .partner-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #747474;
  transition: color 0.3s;
}

.page-about .partner-link:hover {
  color: #4b83ef;
}

.page-about .partner-link span {
  position: relative;
  font-size: 14px;
  font-weight: 350;
  letter-spacing: 0.7px;
  line-height: 1.8;
  padding-right: 17px;
}

.page-about .partner-link span:before {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  right: -7px;
  top: 0;
  bottom: 0;
  margin: auto;
  padding-right: 17px;
  background: url(./img/mdi_external-link.png) no-repeat;
}

.page-about .about-message {
  padding: 0 0 80px;
}

.page-about .message-header {
  text-align: center;
}

.page-about .message-label {
  font-size: 16px;
  letter-spacing: 0.8px;
  line-height: 1.8;
  color: #747474;
}

.page-about .about-contact {
  position: relative;
  background-image: url("https://images.unsplash.com/photo-1490806843957-31f4c9a91c65?w=1920");
  background-size: cover;
  background-position: center;
  padding: 120px 16px;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-about .about-contact-overlay {
  position: absolute;
  inset: 0;
}

.page-about .about-contact-header {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-about .about-contact-label {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.8px;
}

.page-about .about-contact-title {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 1.6px;
}

.page-about .about-contact-text {
  font-size: 16px;
  font-weight: 350;
  letter-spacing: 1.28px;
  line-height: 1.8;
}

.page-about .about-contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(5px);
  border-radius: 100px;
  padding: 8px 8px 8px 16px;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  transition: background-color 0.3s;
  margin: 0 auto;
  gap: 16px;
}

.page-about .about-contact-btn:hover {
  background: rgba(255, 255, 255, 0.7);
}

.page-about .about-contact-btn span {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.8px;
}

.page-about .page-footer {
  background: #0F172A;
  color: white;
  padding: 40px 0 20px;
}

.page-about .footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 120px;
}

.page-about .footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.page-about .footer-logo {
  width: 200px;
  height: 23px;
}

.page-about .footer-privacy {
  text-align: center;
  margin-bottom: 20px;
}

.page-about .footer-privacy a {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.7px;
  color: white;
  transition: opacity 0.3s;
}

.page-about .footer-privacy a:hover {
  opacity: 0.7;
}

.page-about .footer-copyright {
  text-align: center;
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.6px;
  color: white;
}

@media (max-width: 768px) {
  .page-about .page-hero {
    height: 300px;
  }
  .page-about .page-hero-title {
    font-size: 32px;
  }
  .page-about .page-hero-subtitle {
    font-size: 18px;
  }
  .page-about .breadcrumb-container {
    padding: 8px 24px;
  }
  .page-about .about-intro {
    padding: 80px 0;
  }
  .page-about .vision-box {
    flex-direction: column;
    gap: 40px;
    padding: 24px;
  }
  .page-about .vision-header {
    flex-direction: column;
    align-items: center;
  }
  .page-about .vision-line {
    width: 72px;
    height: 4px;
  }
  .page-about .overview-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .page-about .overview-table {
    display: block;
  }
  .page-about .overview-table tr {
    display: flex;
    flex-direction: column;
  }
  .page-about .overview-table th,
  .page-about .overview-table td {
    width: 100%;
    padding: 12px 16px;
  }
  .page-about .footer-container {
    padding: 0 24px;
  }
  .page-about .footer-content {
    flex-direction: column;
    gap: 24px;
  }
}

/* ==================== CONTACT PAGE ==================== */
.page-contact .contact-hero {
  position: relative;
  height: 400px;
  background-image: url("https://images.unsplash.com/photo-1490806843957-31f4c9a91c65?w=1920");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.page-contact .contact-hero-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.46);
}

.page-contact .contact-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: white;
}

.page-contact .contact-hero-title {
  font-size: 48px;
  font-weight: 700;
  letter-spacing: 2.4px;
  line-height: 1.8;
  margin-bottom: 8px;
}

.page-contact .contact-hero-subtitle {
  font-size: 24px;
  font-weight: 350;
  letter-spacing: 1.2px;
  line-height: 1.8;
}

.page-contact .breadcrumb {
  background: white;
  height: 33px;
  border-top: 1px solid #e3e3e3;
  border-bottom: 1px solid #e3e3e3;
}

.page-contact .breadcrumb-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 8px 0px;
  display: flex;
  align-items: center;
  gap: 16px;
  height: 100%;
}

.page-contact .breadcrumb-link,
.page-contact .breadcrumb-current {
  font-size: 14px;
  font-weight: 350;
  letter-spacing: 0.7px;
  color: #747474;
}

.page-contact .breadcrumb-arrow {
  width: 4px;
  height: 6px;
}

.page-contact .contact-form-section {
  background: #f6f7f9;
  padding: 120px 0;
}

.page-contact .contact-form-container {
  background: white;
  border-radius: 8px;
  padding: 40px;
  max-width: 750px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.page-contact .contact-form-intro {
  font-size: 16px;
  font-weight: 350;
  letter-spacing: 0.8px;
  line-height: 1.8;
  color: #747474;
}

@media (min-width: 769px) {
  .page-contact .contact-form-intro {
    text-align: center;
  }
}

.page-contact .contact-form-intro p {
  margin: 0;
}

.page-contact .required {
  color: red;
}

.page-contact .contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.page-contact .form-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.page-contact .form-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.6px;
  line-height: 1.8;
  color: #272727;
}

.page-contact .form-input,
.page-contact .form-textarea {
  background: white;
  border: 1px solid #e3e3e3;
  border-radius: 2px;
  padding: 8px;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.7px;
  line-height: 1.8;
  color: #272727;
  font-family: 'Noto Sans JP', sans-serif;
}

.page-contact .form-input::placeholder,
.page-contact .form-textarea::placeholder {
  color: #e3e3e3;
}

.page-contact .form-input:focus,
.page-contact .form-textarea:focus {
  outline: none;
  border-color: #2545b1;
}

.page-contact .form-textarea {
  height: 200px;
  resize: vertical;
}

.page-contact .form-checkbox {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.page-contact .checkbox-input {
  width: 19px;
  height: 20px;
  border: 1px solid #e3e3e3;
  border-radius: 2px;
  cursor: pointer;
}

.page-contact .checkbox-label {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.6px;
  line-height: 2;
  color: #272727;
  cursor: pointer;
}

.page-contact .privacy-link {
  font-weight: 700;
  text-decoration: underline;
}

.page-contact .form-submit-btn {
  background: #2545b1;
  color: white;
  border: none;
  border-radius: 100px;
  padding: 8px;
  cursor: pointer;
  transition: background-color 0.3s;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 350px;
  margin: 0 auto;
}

.page-contact .form-submit-btn:hover {
  background: #1e3a8a;
}

.page-contact .form-submit-btn span {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.8px;
  margin-left: 56px;
}

.page-contact .contact-modal {
  position: fixed;
  inset: 0;
  z-index: 400;
  display: none;
  align-items: center;
  justify-content: center;
}

.page-contact .contact-modal.active {
  display: flex;
}

.page-contact .contact-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.16);
}

.page-contact .contact-modal-icon {
  width: 100px;
  height: 100px;
}

.page-contact .contact-modal-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: center;
}

.page-contact .contact-modal-title {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 1.2px;
  line-height: 1.8;
  color: #2545b1;
}

.page-contact .contact-modal-description {
  font-size: 16px;
  font-weight: 350;
  letter-spacing: 0.8px;
  line-height: 1.8;
  color: #272727;
}

.page-contact .contact-modal-btn {
  background: #2545b1;
  color: white;
  border: none;
  border-radius: 100px;
  padding: 8px;
  cursor: pointer;
  transition: background-color 0.3s;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 350px;
}

.page-contact .contact-modal-btn:hover {
  background: #1e3a8a;
}

.page-contact .contact-modal-btn span {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.8px;
  margin-left: 56px;
}

.page-contact .site-footer {
  display: flex;
  flex-direction: column;
}

.page-contact .footer-primary {
  background: #0f172a;
  color: white;
}

.page-contact .footer-primary-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 64px 120px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.page-contact .footer-logo-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.page-contact .footer-nav {
  display: flex;
  gap: 32px;
}

.page-contact .footer-nav a {
  font-size: 14px;
  font-weight: 350;
  letter-spacing: 0.7px;
  color: white;
  transition: opacity 0.3s;
}

.page-contact .footer-nav a:hover {
  opacity: 0.7;
}

.page-contact .footer-divider {
  width: 1200px;
  height: 1px;
  background: white;
}

.page-contact .footer-privacy a {
  font-size: 12px;
  font-weight: 350;
  letter-spacing: 0.6px;
  color: white;
  transition: opacity 0.3s;
}

.page-contact .footer-privacy a:hover {
  opacity: 0.7;
}

.page-contact .footer-secondary {
  background: white;
}

.page-contact .footer-secondary-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 120px;
  text-align: center;
}

.page-contact .footer-secondary-container p {
  font-size: 12px;
  font-weight: 350;
  letter-spacing: 0.6px;
  color: #747474;
  margin: 0;
}

@media (max-width: 768px) {
  .page-contact .contact-hero {
    height: 300px;
  }
  .page-contact .contact-hero-title {
    font-size: 32px;
  }
  .page-contact .contact-hero-subtitle {
    font-size: 18px;
  }
  .page-contact .breadcrumb-container {
    padding: 8px 24px;
  }
  .page-contact .contact-form-section {
    padding: 80px 24px;
  }
  .page-contact .contact-form-container {
    padding: 40px 14px;
    gap: 40px;
  }
  .page-contact .form-submit-btn,
  .page-contact .contact-modal-btn {
    width: 100%;
    max-width: 350px;
  }
  .page-contact .footer-primary-container {
    padding: 40px 24px;
  }
  .page-contact .footer-logo-nav {
    flex-direction: column;
    gap: 24px;
  }
  .page-contact .footer-nav {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
  .page-contact .footer-divider {
    width: 100%;
  }
  .page-contact .footer-secondary-container {
    padding: 24px;
  }
}

/* ==================== TOPICS PAGE ==================== */
.page-topics .topics-hero {
  position: relative;
  height: 400px;
  background-image: url("https://images.unsplash.com/photo-1490806843957-31f4c9a91c65?w=1920");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.page-topics .topics-hero-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.46);
}

.page-topics .topics-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: white;
}

.page-topics .topics-hero-title {
  font-size: 48px;
  font-weight: 700;
  letter-spacing: 2.4px;
  line-height: 1.8;
  margin-bottom: 8px;
}

.page-topics .topics-hero-subtitle {
  font-size: 24px;
  font-weight: 350;
  letter-spacing: 1.2px;
  line-height: 1.8;
}

.page-topics .breadcrumb {
  background: white;
  height: 33px;
  border-top: 1px solid #e3e3e3;
  border-bottom: 1px solid #e3e3e3;
}

.page-topics .breadcrumb-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 8px 120px;
  display: flex;
  align-items: center;
  gap: 16px;
  height: 100%;
}

.page-topics .breadcrumb-link,
.page-topics .breadcrumb-current {
  font-size: 14px;
  font-weight: 350;
  letter-spacing: 0.7px;
  color: #747474;
}

.page-topics .breadcrumb-arrow {
  width: 4px;
  height: 6px;
}

.page-topics .topics-list-section {
  background: #f6f7f9;
  padding: 120px 0;
}

.page-topics .topics-list-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 0 120px;
  display: flex;
  gap: 80px;
}

.page-topics .topics-sidebar {
  width: 300px;
  flex-shrink: 0;
}

.page-topics .topics-archive {
  background: white;
  border-radius: 8px;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.05);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.page-topics .archive-title {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.8px;
  line-height: 1.5;
  color: #272727;
  text-align: center;
}

.page-topics .archive-divider {
  width: 100%;
  height: 1px;
  background: #e3e3e3;
}

.page-topics .archive-list {
  list-style: none;
  display: flex;
  flex-direction: column;
}

.page-topics .archive-item {
  display: block;
  padding: 8px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.8px;
  line-height: 1.5;
  color: #747474;
  text-align: center;
  transition: background-color 0.3s, color 0.3s;
}

.page-topics .archive-item:hover {
  background: #f6f7f9;
  color: #2545b1;
}

.page-topics .archive-item.active {
  background: #dbeafe;
  color: #2545b1;
}

.page-topics .topics-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.page-topics .topics-card {
  background: white;
  border-radius: 8px;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.05);
  display: flex;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.page-topics .topics-card:hover {
  transform: translateY(-4px);
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.1);
}

.page-topics .topics-card-image {
  width: 275px;
  height: 155px;
  flex-shrink: 0;
  overflow: hidden;
}

.page-topics .topics-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-topics .topics-card-content {
  flex: 1;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
}

.page-topics .topics-card-title {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.8px;
  line-height: 1.8;
  color: #272727;
}

.page-topics .topics-card-meta {
  display: flex;
  align-items: center;
  gap: 16px;
}

.page-topics .topics-card-category {
  background: #2545b1;
  color: white;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.6px;
  line-height: 1.8;
  padding: 2px 8px;
  border-radius: 2px;
}

.page-topics .topics-card-date {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.7px;
  line-height: 1.8;
  color: #b8c2cf;
}

.page-topics .topics-contact {
  position: relative;
  background-image: url("https://images.unsplash.com/photo-1490806843957-31f4c9a91c65?w=1920");
  background-size: cover;
  background-position: center;
  padding: 40px 16px;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  margin: 0 20px 40px;
}

.page-topics .topics-contact-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.46);
  border-radius: 8px;
}

.page-topics .topics-contact-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: white;
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  gap: 64px;
  padding: 0 16px;
}

.page-topics .topics-contact-header {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.page-topics .topics-contact-label {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.8px;
}

.page-topics .topics-contact-title {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 1.6px;
}

.page-topics .topics-contact-text {
  font-size: 20px;
  font-weight: 350;
  letter-spacing: 1.6px;
  line-height: 1.8;
}

.page-topics .topics-contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(5px);
  border-radius: 100px;
  padding: 8px;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  transition: background-color 0.3s;
  margin: 0 auto;
  width: 350px;
}

.page-topics .topics-contact-btn:hover {
  background: rgba(255, 255, 255, 0.7);
}

.page-topics .topics-contact-btn span {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.8px;
  margin-left: 16px;
}

.page-topics .site-footer {
  display: flex;
  flex-direction: column;
}

.page-topics .footer-primary {
  background: #0f172a;
  color: white;
}

.page-topics .footer-primary-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 64px 120px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.page-topics .footer-logo-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.page-topics .footer-divider {
  width: 1200px;
  height: 1px;
  background: white;
}

.page-topics .footer-privacy a {
  font-size: 12px;
  font-weight: 350;
  letter-spacing: 0.6px;
  color: white;
  transition: opacity 0.3s;
}

.page-topics .footer-privacy a:hover {
  opacity: 0.7;
}

.page-topics .footer-secondary {
  background: white;
}

.page-topics .footer-secondary-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 120px;
  text-align: center;
}

.page-topics .footer-secondary-container p {
  font-size: 12px;
  font-weight: 350;
  letter-spacing: 0.6px;
  color: #747474;
  margin: 0;
}

@media (max-width: 768px) {
  .page-topics .topics-hero {
    height: 300px;
  }
  .page-topics .topics-hero-title {
    font-size: 32px;
  }
  .page-topics .topics-hero-subtitle {
    font-size: 18px;
  }
  .page-topics .breadcrumb-container {
    padding: 8px 24px;
  }
  .page-topics .topics-list-section {
    padding: 80px 0;
  }
  .page-topics .topics-list-container {
    padding: 0 24px;
    flex-direction: column;
    gap: 40px;
  }
  .page-topics .topics-sidebar {
    width: 100%;
  }
  .page-topics .topics-card {
    flex-direction: column;
  }
  .page-topics .topics-card-image {
    width: 100%;
    height: 200px;
  }
  .page-topics .topics-contact {
    margin: 0 16px 40px;
  }
  .page-topics .topics-contact-text {
    font-size: 16px;
    letter-spacing: 1.28px;
  }
  .page-topics .topics-contact-btn {
    width: 100%;
    max-width: 350px;
  }
  .page-topics .footer-primary-container {
    padding: 40px 24px;
  }
  .page-topics .footer-logo-nav {
    flex-direction: column;
    gap: 24px;
  }
  .page-topics .footer-divider {
    width: 100%;
  }
  .page-topics .footer-secondary-container {
    padding: 24px;
  }
}

/* editor-body を画面側で完全無効化 */
.body_unset {
  max-width: 100%;
}

.body_unset .editor-wrap {
  padding: 0px;
}

@media screen and (min-width: 48em) {
  .body_unset .c-container {
    padding-left: 0px;
    padding-right: 0px;
    max-width: 100%;
  }
}

@media screen and (min-width: 48em) {
  .body_unset .editor-wrap {
    padding: 0px;
  }
}

.body_unset .editor-body {
  max-width: 100%;
}

.body_unset .editor-body a {
  text-decoration: none;
}

.body_unset .editor-body :is(h1, h2, h3, h4, h5, h6) {
  all: unset;
  display: block;
  font-weight: normal;
}

.body_unset .editor-body :is(h1, h2, h3, h4, h5, h6):before {
  display: none;
}

.body_unset .editor-body :is(h1, h2, h3, h4, h5, h6).page-hero-title {
  font-size: 48px;
  font-weight: 700;
  letter-spacing: 2.4px;
  line-height: 1.8;
  margin-bottom: 8px;
}

.body_unset .editor-body :is(h1, h2, h3, h4, h5, h6).page-hero-subtitle {
  font-size: 24px;
  font-weight: 350;
  letter-spacing: 1.2px;
  line-height: 1.8;
}

.body_unset .editor-body :is(h1, h2, h3, h4, h5, h6).fv-title {
  font-size: 40px;
  font-weight: 700;
  letter-spacing: 1.2px;
  line-height: 1.4;
  margin-bottom: 24px;
}

@media (min-width: 768px) {
  .body_unset .editor-body :is(h1, h2, h3, h4, h5, h6).fv-title {
    font-size: 80px;
    letter-spacing: 2.4px;
  }
}

.body_unset .editor-body :is(h1, h2, h3, h4, h5, h6).section-title {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 1.6px;
  line-height: 1.8;
  color: #272727;
}

.body_unset .editor-body p {
  margin: 0;
}

.body_unset .editor-body .container {
  text-align: left;
}

.body_unset .editor-body ul:not(.blocks-gallery-grid):not(.toc_list):not(.wp-block-gallery):not(.tagit) {
  margin: 0;
}

.body_unset a {
  text-decoration: none;
}

.body_unset :is(h1, h2, h3, h4, h5, h6) {
  all: unset;
  display: block;
  font-weight: normal;
}

.body_unset :is(h1, h2, h3, h4, h5, h6):before {
  display: none;
}

.body_unset :is(h1, h2, h3, h4, h5, h6).page-hero-title {
  font-size: 48px;
  font-weight: 700;
  letter-spacing: 2.4px;
  line-height: 1.8;
  margin-bottom: 8px;
}

.body_unset :is(h1, h2, h3, h4, h5, h6).page-hero-subtitle {
  font-size: 24px;
  font-weight: 350;
  letter-spacing: 1.2px;
  line-height: 1.8;
}

.body_unset :is(h1, h2, h3, h4, h5, h6).fv-title {
  font-size: 40px;
  font-weight: 700;
  letter-spacing: 1.2px;
  line-height: 1.4;
  margin-bottom: 24px;
}

@media (min-width: 768px) {
  .body_unset :is(h1, h2, h3, h4, h5, h6).fv-title {
    font-size: 80px;
    letter-spacing: 2.4px;
  }
}

.body_unset :is(h1, h2, h3, h4, h5, h6).section-title {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 1.6px;
  line-height: 1.8;
  color: #272727;
}

.body_unset p {
  margin: 0;
}

.body_unset .container {
  text-align: left;
}

.body_unset ul:not(.blocks-gallery-grid):not(.toc_list):not(.wp-block-gallery):not(.tagit) {
  margin: 0;
}

.body_unset .p-breadcrumbs {
  padding: 0;
  padding-top: 0;
}

.body_unset .p-page-title {
  padding-top: 0;
  display: none;
}

/* ==================== PAGE ==================== */
.body_unset [class^=page-] {
  padding: 0;
}

.body_unset [class^=page-] .page-hero,
.body_unset [class^=page-] [class$="-hero"] {
  position: relative;
  height: 400px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.body_unset [class^=page-] [class$="-hero-title"] {
  font-size: 48px;
  font-weight: 700;
  letter-spacing: 2.4px;
  line-height: 1.8;
  margin-bottom: 8px;
}

.body_unset [class^=page-] [class$="-hero-subtitle"] {
  font-size: 24px;
  font-weight: 350;
  letter-spacing: 1.2px;
  line-height: 1.8;
}

.body_unset [class^=page-] .breadcrumb {
  background: white;
  height: 33px;
  border-top: 1px solid #e3e3e3;
  border-bottom: 1px solid #e3e3e3;
}

.body_unset [class^=page-] .breadcrumb .breadcrumb-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 8px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  height: 100%;
}

.body_unset [class^=page-] .breadcrumb .breadcrumb-container .breadcrumb-link,
.body_unset [class^=page-] .breadcrumb .breadcrumb-container .breadcrumb-current {
  font-size: 14px;
  font-weight: 350;
  letter-spacing: 0.7px;
  color: #747474;
}

.body_unset [class^=page-] .breadcrumb .breadcrumb-container .breadcrumb-arrow {
  width: 4px;
  height: 6px;
}

/* ==================== about PAGE ==================== */
.body_unset .page-about .about-intro-title {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 1.6px;
  line-height: 1.8;
  color: #272727;
}

@media (min-width: 769px) {
  .body_unset .page-about .about-intro-title {
    text-align: center;
  }
}

.body_unset .page-about .about-intro-subtitle {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 1.8;
  color: #2545b1;
}

@media (min-width: 769px) {
  .body_unset .page-about .about-intro-subtitle {
    text-align: center;
  }
}

.body_unset .page-about .vision-title {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 1.2px;
  line-height: 1.5;
  color: #272727;
  white-space: nowrap;
  padding-left: 20px;
}

.body_unset .page-about .overview-title {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 1.2px;
  color: #272727;
  white-space: nowrap;
  padding-left: 20px;
  line-height: 1.2;
}

/* ==================== privacy-policy PAGE ==================== */
.body_unset .page-privacy-policy .privacy-hero {
  background: #fff;
}

.body_unset .page-privacy-policy .privacy-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #272727;
}

.body_unset .page-privacy-policy .privacy-content-section {
  background: #f6f7f9;
  padding: 7.5rem 0;
}

.body_unset .page-privacy-policy .privacy-content-container {
  max-width: 750px;
  margin: 0 auto;
}

.body_unset .page-privacy-policy .privacy-content-box {
  background: white;
  border-radius: 8px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.body_unset .page-privacy-policy .privacy-intro-text {
  font-size: 16px;
  font-weight: 350;
  letter-spacing: 0.8px;
  line-height: 1.8;
  color: #272727;
  margin: 0;
}

.body_unset .page-privacy-policy .privacy-list {
  font-size: 16px;
  font-weight: 350;
  letter-spacing: 0.8px;
  line-height: 1.8;
  color: #272727;
  margin: 0;
  padding-left: 24px;
}

.body_unset .page-privacy-policy .privacy-list li {
  margin-bottom: 0;
}

.body_unset .page-privacy-policy .privacy-signature {
  font-size: 16px;
  font-weight: 350;
  letter-spacing: 0.8px;
  line-height: 1.8;
  color: #272727;
}

@media (min-width: 769px) {
  .body_unset .page-privacy-policy .privacy-signature {
    text-align: right;
  }
}

.body_unset .page-privacy-policy .privacy-signature p {
  margin: 0;
}

@media (max-width: 48rem) {
  .body_unset .page-privacy-policy .privacy-hero {
    height: 25rem;
  }
  .body_unset .page-privacy-policy .privacy-hero-title {
    font-size: 2.5rem;
    letter-spacing: 0.125rem;
  }
  .body_unset .page-privacy-policy .privacy-hero-subtitle {
    font-size: 1.5rem;
    letter-spacing: 0.075rem;
  }
  .body_unset .page-privacy-policy .breadcrumb-container {
    padding: 0.5rem 1rem;
  }
  .body_unset .page-privacy-policy .privacy-content-section {
    padding: 7.5rem 1.5rem;
  }
  .body_unset .page-privacy-policy .privacy-content-container {
    padding: 0;
  }
  .body_unset .page-privacy-policy .privacy-content-box {
    padding: 2.5rem 1rem;
  }
}

/* ==================== TOPICS PAGE ==================== */
.post-type-archive-topics .topics-hero,
.single-topics .topics-hero {
  position: relative;
  height: 400px;
  background-image: url("https://images.unsplash.com/photo-1490806843957-31f4c9a91c65?w=1920");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.post-type-archive-topics .topics-hero-overlay,
.single-topics .topics-hero-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.46);
}

.post-type-archive-topics .topics-hero-content,
.single-topics .topics-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: white;
}

.post-type-archive-topics .topics-hero-title,
.single-topics .topics-hero-title {
  font-size: 48px;
  font-weight: 700;
  letter-spacing: 2.4px;
  line-height: 1.8;
  margin-bottom: 8px;
}

.post-type-archive-topics .topics-hero-subtitle,
.single-topics .topics-hero-subtitle {
  font-size: 24px;
  font-weight: 350;
  letter-spacing: 1.2px;
  line-height: 1.8;
}

.post-type-archive-topics .breadcrumb,
.single-topics .breadcrumb {
  background: white;
  height: 33px;
  border-top: 1px solid #e3e3e3;
  border-bottom: 1px solid #e3e3e3;
}

.post-type-archive-topics .breadcrumb-container,
.single-topics .breadcrumb-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 8px 0px;
  display: flex;
  align-items: center;
  gap: 16px;
  height: 100%;
}

.post-type-archive-topics .breadcrumb-link,
.post-type-archive-topics .breadcrumb-current,
.single-topics .breadcrumb-link,
.single-topics .breadcrumb-current {
  font-size: 14px;
  font-weight: 350;
  letter-spacing: 0.7px;
  color: #747474;
}

.post-type-archive-topics .breadcrumb-arrow,
.single-topics .breadcrumb-arrow {
  width: 4px;
  height: 6px;
}

.post-type-archive-topics .topics-list-section,
.single-topics .topics-list-section {
  background: #f6f7f9;
  padding: 120px 0;
}

.post-type-archive-topics .topics-list-container,
.single-topics .topics-list-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 0;
  display: flex;
  gap: 80px;
}

.post-type-archive-topics .topics-sidebar,
.single-topics .topics-sidebar {
  width: 300px;
  flex-shrink: 0;
}

.post-type-archive-topics .topics-archive,
.single-topics .topics-archive {
  background: white;
  border-radius: 8px;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.05);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.post-type-archive-topics .archive-title,
.single-topics .archive-title {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.8px;
  line-height: 1.5;
  color: #272727;
  border-bottom: 1px solid #dddddd;
  padding-bottom: 11px;
}

.post-type-archive-topics .archive-divider,
.single-topics .archive-divider {
  width: 100%;
  height: 1px;
  background: #e3e3e3;
}

.post-type-archive-topics .archive-list,
.single-topics .archive-list {
  list-style: none;
  display: flex;
  flex-direction: column;
}

.post-type-archive-topics .archive-list li,
.single-topics .archive-list li {
  border-bottom: 0;
  padding: 8px 10px;
  font-weight: bold;
  color: #747474;
}

.post-type-archive-topics .archive-list li a,
.single-topics .archive-list li a {
  color: #747474;
}

.post-type-archive-topics .archive-item,
.single-topics .archive-item {
  display: block;
  padding: 8px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.8px;
  line-height: 1.5;
  color: #747474;
  text-align: center;
  transition: background-color 0.3s, color 0.3s;
}

.post-type-archive-topics .archive-item:hover,
.single-topics .archive-item:hover {
  background: #f6f7f9;
  color: #2545b1;
}

.post-type-archive-topics .archive-item.active,
.single-topics .archive-item.active {
  background: #dbeafe;
  color: #2545b1;
}

.post-type-archive-topics .topics-main,
.single-topics .topics-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.post-type-archive-topics .topics-card,
.single-topics .topics-card {
  background: white;
  border-radius: 8px;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.05);
  display: flex;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

@media (min-width: 767px) {
  .post-type-archive-topics .topics-card a,
  .single-topics .topics-card a {
    display: flex;
  }
}

.post-type-archive-topics .topics-card:hover,
.single-topics .topics-card:hover {
  transform: translateY(-4px);
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.1);
}

.post-type-archive-topics .topics-card-image,
.single-topics .topics-card-image {
  width: 275px;
  height: 155px;
  flex-shrink: 0;
  overflow: hidden;
}

.post-type-archive-topics .topics-card-image img,
.single-topics .topics-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.post-type-archive-topics .topics-card-content,
.single-topics .topics-card-content {
  flex: 1;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
}

.post-type-archive-topics .topics-card-title,
.single-topics .topics-card-title {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.8px;
  line-height: 1.8;
  color: #272727;
}

.post-type-archive-topics .topics-card-meta,
.single-topics .topics-card-meta {
  display: flex;
  align-items: center;
  gap: 16px;
}

.post-type-archive-topics .topics-card-category,
.single-topics .topics-card-category {
  background: #2545b1;
  color: white;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.6px;
  line-height: 1.8;
  padding: 2px 8px;
  border-radius: 2px;
}

.post-type-archive-topics .topics-card-date,
.single-topics .topics-card-date {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.7px;
  line-height: 1.8;
  color: #b8c2cf;
}

.post-type-archive-topics .topics-contact,
.single-topics .topics-contact {
  position: relative;
  background-image: url("https://images.unsplash.com/photo-1490806843957-31f4c9a91c65?w=1920");
  background-size: cover;
  background-position: center;
  padding: 40px 16px;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  margin: 0 20px 40px;
}

.post-type-archive-topics .topics-contact-overlay,
.single-topics .topics-contact-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.46);
  border-radius: 8px;
}

.post-type-archive-topics .topics-contact-content,
.single-topics .topics-contact-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: white;
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  gap: 64px;
  padding: 0 16px;
}

.post-type-archive-topics .topics-contact-header,
.single-topics .topics-contact-header {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.post-type-archive-topics .topics-contact-label,
.single-topics .topics-contact-label {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.8px;
}

.post-type-archive-topics .topics-contact-title,
.single-topics .topics-contact-title {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 1.6px;
}

.post-type-archive-topics .topics-contact-text,
.single-topics .topics-contact-text {
  font-size: 20px;
  font-weight: 350;
  letter-spacing: 1.6px;
  line-height: 1.8;
}

.post-type-archive-topics .topics-contact-btn,
.single-topics .topics-contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(5px);
  border-radius: 100px;
  padding: 8px;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  transition: background-color 0.3s;
  margin: 0 auto;
  width: 350px;
}

.post-type-archive-topics .topics-contact-btn:hover,
.single-topics .topics-contact-btn:hover {
  background: rgba(255, 255, 255, 0.7);
}

.post-type-archive-topics .topics-contact-btn span,
.single-topics .topics-contact-btn span {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.8px;
  margin-left: 16px;
}

@media (max-width: 768px) {
  .post-type-archive-topics .topics-hero,
  .single-topics .topics-hero {
    height: 300px;
  }
  .post-type-archive-topics .topics-hero-title,
  .single-topics .topics-hero-title {
    font-size: 32px;
  }
  .post-type-archive-topics .topics-hero-subtitle,
  .single-topics .topics-hero-subtitle {
    font-size: 18px;
  }
  .post-type-archive-topics .breadcrumb-container,
  .single-topics .breadcrumb-container {
    padding: 8px 24px;
  }
  .post-type-archive-topics .topics-list-section,
  .single-topics .topics-list-section {
    padding: 80px 0;
  }
  .post-type-archive-topics .topics-list-container,
  .single-topics .topics-list-container {
    padding: 120px 24px 120px;
    flex-direction: column;
    gap: 40px;
  }
  .post-type-archive-topics .topics-sidebar,
  .single-topics .topics-sidebar {
    width: 100%;
  }
  .post-type-archive-topics .topics-card,
  .single-topics .topics-card {
    flex-direction: column;
  }
  .post-type-archive-topics .topics-card-image,
  .single-topics .topics-card-image {
    width: 100%;
    height: 200px;
  }
  .post-type-archive-topics .topics-contact,
  .single-topics .topics-contact {
    margin: 0 16px 40px;
  }
  .post-type-archive-topics .topics-contact-text,
  .single-topics .topics-contact-text {
    font-size: 16px;
    letter-spacing: 1.28px;
  }
  .post-type-archive-topics .topics-contact-btn,
  .single-topics .topics-contact-btn {
    width: 100%;
    max-width: 350px;
  }
}

.post-type-archive-topics {
  background: #F6F7F9;
}

.post-type-archive-topics .editor-wrap {
  background: #F6F7F9;
}

.single-topics .p-page-title {
  display: block;
  max-width: 1200px;
  margin: 0 auto;
}

.single-topics .p-page-title .p-page-title__title {
  all: revert;
  font-family: Georgia, 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, メイリオ, Meiryo, serif;
}

@media (min-width: 769px) {
  .single-topics .topics-list-container {
    padding-top: 0;
  }
}

.body_unset .sec_contact {
  position: relative;
  background-image: url("./img/bg_contact.png");
  background-size: cover;
  background-position: center;
  padding: 70px 16px;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 768px) {
  .body_unset .sec_contact {
    padding: 40px 16px;
  }
}

.body_unset .sec_contact .section-title-white {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 1.6px;
}

.body_unset .sec_contact .about-contact-overlay {
  position: absolute;
  inset: 0;
}

.body_unset .sec_contact .about-contact-header {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.body_unset .sec_contact .about-contact-label {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.05rem;
  margin-bottom: 0;
}

.body_unset .sec_contact .about-contact-title {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.1rem;
}

.body_unset .sec_contact .about-contact-text {
  font-size: 1rem;
  font-weight: 350;
  letter-spacing: 0.08rem;
  line-height: 1.8;
}

.body_unset .sec_contact .cmn-contact-btn {
  margin: auto;
}

@media (min-width: 767px) {
  .body_unset .sec_contact .cmn-contact-btn {
    min-width: 350px;
  }
}

@media (max-width: 768px) {
  .body_unset .sec_contact .cmn-contact-btn {
    width: 100%;
  }
}

.body_unset .sec_contact .cmn-contact-btn span {
  margin: auto;
}

.body_unset .sec_contact .about-contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(0.3125rem);
  border-radius: 6.25rem;
  padding: 0.5rem 0.5rem 0.5rem 1rem;
  box-shadow: 0 0.25rem 0.25rem rgba(0, 0, 0, 0.25);
  transition: background-color 0.3s;
  margin: 0 auto;
  gap: 1rem;
}

.body_unset .sec_contact .about-contact-btn:hover {
  background: rgba(255, 255, 255, 0.7);
}

.body_unset .sec_contact .about-contact-btn span {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.05rem;
}

@media (max-width: 48rem) {
  .body_unset .sec_contact .page-hero {
    height: 18.75rem;
  }
  .body_unset .sec_contact .page-hero-title {
    font-size: 2rem;
  }
  .body_unset .sec_contact .page-hero-subtitle {
    font-size: 1.125rem;
  }
  .body_unset .sec_contact .breadcrumb-container {
    padding: 0.5rem 1.5rem;
  }
  .body_unset .sec_contact .about-intro {
    padding: 5rem 0;
  }
  .body_unset .sec_contact .vision-box {
    flex-direction: column;
    gap: 2.5rem;
    padding: 1.5rem;
  }
  .body_unset .sec_contact .vision-header {
    flex-direction: column;
    align-items: center;
  }
  .body_unset .sec_contact .vision-line {
    transform: rotate(0deg);
    width: 4.5rem;
    height: 0.25rem;
  }
  .body_unset .sec_contact .overview-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .body_unset .sec_contact .overview-table {
    display: block;
  }
  .body_unset .sec_contact .overview-table tr {
    display: flex;
    flex-direction: column;
  }
  .body_unset .sec_contact .overview-table th,
  .body_unset .sec_contact .overview-table td {
    width: 100%;
    padding: 0.75rem 1rem;
  }
}

.body_unset .sec_contact .about-contact-overlay {
  position: absolute;
  inset: 0;
}

.body_unset .sec_contact .about-contact-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: white;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 0 16px;
}

@media (max-width: 768px) {
  .body_unset .sec_contact .about-contact-content {
    gap: 4rem;
  }
}

.body_unset .sec_contact .about-contact-header {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.body_unset .sec_contact .about-contact-label {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.8px;
}

.body_unset .sec_contact .about-contact-title {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 1.6px;
  line-height: 1.5;
}

.body_unset .sec_contact .about-contact-text {
  font-size: 16px;
  letter-spacing: 1.28px;
  line-height: 1.8;
  padding-bottom: 30px;
}

.body_unset .sec_contact .about-contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(5px);
  border-radius: 100px;
  padding: 8px 8px 8px 16px;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  transition: background-color 0.3s;
  margin: 0 auto;
  gap: 16px;
}

.body_unset .sec_contact .about-contact-btn:hover {
  background: rgba(255, 255, 255, 0.7);
}

.body_unset .sec_contact .about-contact-btn span {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.8px;
}

.body_unset .page-footer {
  background: #0F172A;
  color: white;
  padding: 40px 0 0px;
}

@media (max-width: 768px) {
  .body_unset .page-footer {
    padding: 70px 0 0px;
  }
}

.body_unset .page-footer .footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 0px;
}

.body_unset .page-footer .footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

@media (min-width: 769px) {
  .body_unset .page-footer .footer-logo {
    width: 365px;
    height: 43px;
  }
}

.body_unset .page-footer .footer-nav {
  display: flex;
  gap: 32px;
}

@media (max-width: 768px) {
  .body_unset .page-footer .footer-nav {
    width: 100%;
    justify-content: space-around;
  }
}

.body_unset .page-footer .footer-nav a {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.7px;
  color: white;
  transition: opacity 0.3s;
}

.body_unset .page-footer .footer-nav a:hover {
  opacity: 0.7;
}

.body_unset .page-footer .footer-privacy {
  padding-top: 30px;
  margin-bottom: 20px;
  border-top: 1px solid #fff;
}

@media (max-width: 768px) {
  .body_unset .page-footer .footer-privacy {
    margin-bottom: 60px;
  }
}

.body_unset .page-footer .footer-privacy a {
  font-size: 12px;
  letter-spacing: 0.7px;
  color: white;
  transition: opacity 0.3s;
}

.body_unset .page-footer .footer-privacy a:hover {
  opacity: 0.7;
}

.body_unset .page-footer .footer-copyright {
  background: #fff;
  padding: 12px 0;
  text-align: center;
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.6px;
  color: #747474;
}

@media (max-width: 768px) {
  .body_unset .page-footer .footer-container {
    padding: 0 24px;
  }
  .body_unset .page-footer .footer-content {
    flex-direction: column;
    gap: 24px;
  }
}

.body_unset .footer-container {
  max-width: 75rem;
  margin: 0 auto;
  padding: 0 0rem;
}

.body_unset .footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2.5rem;
}

.body_unset .footer-nav {
  display: flex;
  gap: 2rem;
}

.body_unset .footer-nav a {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04375rem;
  color: #ffffff;
  transition: opacity 0.3s;
}

.body_unset .footer-nav a:hover {
  opacity: 0.7;
}

@media (max-width: 768px) {
  .body_unset .footer-container {
    padding: 0 24px;
  }
}

@media (max-width: 48rem) {
  .body_unset .footer-container {
    padding: 0 1.5rem;
  }
  .body_unset .footer-content {
    flex-direction: column;
    gap: 1.5rem;
  }
}

/* ===============================
   送信完了モーダル
   =============================== */
.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 400;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.contact-modal.active {
  display: flex;
}

.contact-modal-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.16);
}

.contact-modal-content {
  position: relative;
  background: white;
  border-radius: 8px;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.1);
  padding: 48px 16px;
  width: calc(100% - 32px);
  max-width: 343px;
  display: flex;
  flex-direction: column;
  gap: 64px;
  z-index: 1;
}

.contact-modal-body {
  display: flex;
  flex-direction: column;
  gap: 48px;
  align-items: center;
}

.contact-modal-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-modal-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  text-align: center;
}

.contact-modal-title {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #2545b1;
  line-height: 1.8;
}

.contact-modal-description {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  font-weight: 350;
  letter-spacing: 0.8px;
  color: #272727;
  line-height: 1.8;
}

.contact-modal-btn {
  background: #2545b1;
  border: none;
  border-radius: 100px;
  padding: 8px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(5px);
  transition: background-color 0.3s;
  position: relative;
}

.contact-modal-btn:hover {
  background-color: #1e3a8a;
}

.contact-modal-btn span {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.8px;
  color: white;
  line-height: 40px;
  text-align: center;
  flex: 1;
}

.contact-modal-btn-icon {
  position: absolute;
  right: 8px;
  width: 40px;
  height: 40px;
}

/* ボタンコンテナ */
.modal-button-container {
  background: #2545b1;
  border-radius: 100px;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px;
  width: 100%;
  position: relative;
  cursor: pointer;
  border: none;
  /* PC版のボタン */
}

@media (min-width: 1024px) {
  .modal-button-container {
    width: 350px;
  }
}

/* PC表示（1024px以上） */
@media (min-width: 1024px) {
  .contact-modal-content {
    max-width: 900px;
    padding: 80px 16px;
  }
  .contact-modal-title {
    font-size: 24px;
    letter-spacing: 1.2px;
  }
  .contact-modal-btn {
    max-width: 350px;
    margin: 0 auto;
  }
  .contact-modal-btn-icon {
    right: 8px;
  }
}
