@charset "UTF-8";

/* =========================================
   Reset（ress）適用済み。ここでは共通系のみ。
========================================= */
* {
  box-sizing: border-box;
}

body {
  font-family: 'Zen Maru Gothic', 'Noto Sans JP', sans-serif;
  line-height: 1.6;
  color: #585858;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
  font-weight: 500;
  line-height: 1.2;
}

.section-title {
  font-size: 48px;
  letter-spacing: 0.04em;
  line-height: 1.35;
  text-align: center;
}

/* 横幅と左右余白の統一 */
.pain-points-content,
.solution-content,
.benefit-content,
.cta-content,
.process-content,
.faq-content,
.news-content,
.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* =========================================
   ヘッダー（ロゴ/ハンバーガーはJSでfade制御）
========================================= */
.logo,
.hamburger-menu {
  opacity: 0;
  visibility: hidden;
  transition: opacity .8s ease, visibility .8s ease;
}

.ui--show {
  opacity: 1;
  visibility: visible;
}

.logo {
  position: fixed;
  top: 20px;
  left: 25px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 60;
  text-decoration: none;
}

.logo-img {
  width: 60px;
  height: 60px;
}

.logo-text {
  font-family: 'Pacifico', cursive;
  font-size: 32px;
  color: #2B7BB9;
}

.hamburger-menu {
  display: flex;
  width: 60px;
  height: 60px;
  position: fixed;
  top: 20px;
  right: 25px;
  background: rgba(43, 123, 185, .50);
  border-radius: 50%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  border: none;
  z-index: 100;
}

.hamburger-menu span {
  width: 30px;
  height: 2px;
  background: #fff;
  transition: .3s;
  display: block;
  position: relative;
}

.hamburger-menu.active span:nth-child(1) {
  transform: rotate(45deg);
  top: 10px;
}

.hamburger-menu.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(-20px);
}

.hamburger-menu.active span:nth-child(3) {
  transform: rotate(-45deg);
  top: -10px;
}

/* スライドメニュー */
#navi {
  width: 100%;
  height: 100vh;
  background: #B5CFE1;
  position: fixed;
  inset: 0;
  text-align: center;
  transform: translateY(-100%);
  transition: .6s;
  overflow-y: auto;
  font-size: 20px;
  letter-spacing: .03em;
  z-index: 50;
}

#navi.active {
  transform: translateY(0);
}

#navi ul {
  padding: 80px 0 30px;
}

#navi li {
  padding: 10px 0;
}

#navi a {
  display: block;
  color: #fff;
  text-decoration: none;
  padding: 10px 20px;
}

#navi a:hover {
  color: #2B7BB9;
}

/* =========================================
   ボタン（共通化）
========================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  border-radius: 100px;
  border: none;
  font-weight: 700;
  cursor: pointer;
  transition: .3s;
  justify-content: center;
  text-decoration: none;
}

.btn--lg {
  font-size: 28px;
  line-height: 1.5;
  min-width: 300px;
  height: 85px;
}

.btn--primary {
  background: #F0D980;
  color: #155378;
}

.btn--secondary {
  background: #2B7BB9;
  color: #fff;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, .1);
}

/* キーボード操作でのフォーカス可視化 */
a:focus-visible,
button:focus-visible,
.btn:focus-visible {
  outline: 3px solid rgba(43, 123, 185, .6);
  outline-offset: 3px;
  border-radius: 6px;
}

/* =========================================
   Hero
========================================= */
.hero {
  position: relative;
  height: 100vh;
  min-height: 920px;
  overflow: visible;
}

.hero-background {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.hero-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, .51) 0%, rgba(255, 255, 255, 0) 43%);
  z-index: 1;
}

.hero-content {
  position: absolute;
  top: 60px;
  left: 100px;
  max-width: 650px;
  display: flex;
  flex-direction: column;
  gap: 0;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 1s ease-out .5s forwards;
  z-index: 2;
}

.hero-title {
  display: flex;
  gap: 20px;
  margin-bottom: 24px;
}

.hero-title h1 {
  font-size: 48px;
  background-color: rgba(255, 255, 255, .35);
  padding: 10px 0 10px 20px;
  margin: 0;
}

.hero-deco-left,
.hero-deco-right {
  width: 35px;
  height: 34px;
}

.hero-description {
  font-size: 16px;
  line-height: 2.2;
  color: #121212;
  text-align: left;
  padding-left: 20px;
}

.hero-cta {
  position: static;
  display: flex;
  gap: 24px;
  z-index: 30;
  flex-wrap: wrap;
  margin-top: 32px;
}

/* =========================================
   Pain Points
========================================= */
.pain-points {
  position: relative;
  height: 100vh;
  min-height: 800px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.pain-points-background {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.pain-points-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pain-points-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.pain-points .section-title {
  color: #F5F5F5;
  margin-bottom: 60px;
}

.pain-points-description {
  color: #ccc;
  margin-bottom: 80px;
}

.pain-points-list {
  display: flex;
  justify-content: space-between;
  gap: 43px;
  max-width: 1200px;
  margin: 0 auto;
}

.pain-point-item {
  flex: 1;
  text-align: center;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .8s ease, transform .8s ease;
}

.pain-point-item.is-show {
  opacity: 1;
  transform: translateY(0);
}

.pain-point-circle {
  width: 258px;
  height: 258px;
  border: 1px solid #fff;
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pain-point-circle h3 {
  font-size: 14px;
  font-weight: 400;
  color: #fff;
  margin: 0;
}

.pain-point-item p {
  font-size: 14px;
  color: #fff;
  line-height: 2;
  margin-top: 10px;
  text-align: left;
}

/* =========================================
   Feature固定背景 displayを使わずopacityで管理
========================================= */
.bg {
  background: url("../images/bg-feature.jpg") center/cover no-repeat;
  position: fixed;
  inset: 0;
  width: auto;
  height: 100vh;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
  z-index: 10;
  will-change: opacity;
}

.bg.is-show {
  opacity: 1;
  visibility: visible;
}

.feature {
  position: relative;
  height: 100vh;
  min-height: 800px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.feature-content {
  position: relative;
  z-index: 40;
  text-align: center;
}

/* =========================================
   Solution（固定→解除の背景 / inviewでカード表示）
========================================= */
.solution {
  position: relative;
  padding-top: 100vh;
  padding-bottom: 200px;
  background: #fff;
  z-index: 0;
}

.solution-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100vh;
  overflow: hidden;
  opacity: 0;
  transition: opacity .4s ease;
  z-index: 1;
}

.solution-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.solution-background.is-show {
  opacity: 1;
}

.solution-background.is-fixed {
  position: fixed;
  top: 0;
  z-index: 1;
}

.solution-background.is-bottom {
  position: absolute;
  bottom: 0;
  top: auto;
  z-index: 1;
}

.solution-content {
  position: relative;
  z-index: 10;
}

.solution-header {
  text-align: center;
  margin-bottom: 60px;
}

.solution-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 32px;
}

.solution-title h2 {
  font-size: 24px;
}

.solution-description {
  text-align: center;
  margin-bottom: 80px;
}

.solution-features {
  display: flex;
  flex-direction: column;
  gap: 100px;
}

.solution-feature {
  display: flex;
  align-items: center;
  gap: 48px;
  padding: 64px;
  background: rgba(255, 255, 255, .85);
  border-radius: 30px;
  opacity: 0;
  transform: translateY(30px);
  transition: .8s ease;
}

.solution-feature.is-show {
  opacity: 1;
  transform: translateY(0);
}

.solution-feature:nth-child(even) {
  flex-direction: row-reverse;
}

.feature-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  color: #121212;
}

.feature-card h3 {
  font-weight: 600;
  font-size: 24px;
  margin-bottom: 48px;
}

.feature-subtitle {
  font-size: 16px;
  margin-bottom: 16px;
}

.feature-description {
  font-size: 16px;
  line-height: 1.625;
  margin-bottom: 68px;
}

.feature-image-container {
  flex: 1;
  position: relative;
  height: 467px;
  background: #F1EEE7;
  border-radius: 0 30px 30px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.solution-feature:nth-child(even) .feature-image-container {
  border-radius: 30px 0 0 30px;
}

.feature-main-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.feature-check-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: auto;
}

.check-item {
  display: flex;
  align-items: center;
  gap: 20px;
}

.check-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}

.check-item p {
  font-size: 16px;
  margin: 0;
}

/* =========================================
   Benefit
========================================= */
.benefit {
  position: relative;
  background: #fff;
  padding: 100px 0;
}

.benefit h2 {
  letter-spacing: 0;
}

.benefit-background {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.benefit-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 画像の上に全面重ねて縦並び */
.benefit-overlay {
  position: relative;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  z-index: 1;
  pointer-events: auto;
}

.benefit-content {
  text-align: center;
  pointer-events: auto;
}

.benefit-header {
  margin-bottom: 40px;
}

.benefit-description {
  margin-bottom: 60px;
}

.benefit-description p {
  font-size: 16px;
  line-height: 2.5;
  color: #121212;
  margin: 0 auto;
}

.benefit-list {
  display: flex;
  justify-content: space-between;
  gap: 43px;
  max-width: 1200px;
  margin: 0 auto 80px;
}

.benefit-cta {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
  pointer-events: auto;
}

.benefit-logo,
.process-logo,
.faq-logo,
.news-logo {
  width: 45px;
  height: 45px;
}

.benefit-item {
  flex: 1;
  text-align: center;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .8s ease, transform .8s ease;
}

.benefit-item.is-show {
  opacity: 1;
  transform: translateY(0);
}

.benefit-circle {
  width: 258px;
  height: 258px;
  border: 1px solid #1E1E1E;
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefit-circle h3 {
  font-size: 14px;
  font-weight: 400;
  color: #1E1E1E;
  margin: 0;
}

.benefit-item p {
  font-size: 14px;
  color: #1E1E1E;
  line-height: 2;
  text-align: left;
  margin-top: 10px;
}

/* =========================================
   CTA
========================================= */
.cta {
  background: rgba(227, 227, 227, .15);
  padding: 120px 0;
  text-align: center;
}

.cta-text {
  margin-bottom: 20px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 40px;
  z-index: 30;
  flex-wrap: wrap;
}

/* =========================================
   Process
========================================= */
.process {
  padding: 100px 20px;
  background: #fff;
  max-width: 1440px;
  margin: 0 auto;
}

.process-header {
  text-align: center;
  margin-bottom: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.process-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.process-item {
  display: flex;
  align-items: flex-start;
  width: 100%;
  max-width: 1000px;
  gap: 40px;
}

.step-number-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 47px;
}

.step-number {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: rgb(78, 78, 78);
}

.step-number-large {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 56px;
  color: rgb(78, 78, 78);
}

.process-text {
  display: flex;
  flex-direction: column;
  gap: 15px;
  flex: 1;
}

.process-text h3 {
  font-weight: 600;
  font-size: 24px;
  margin: 0;
}

.process-text p {
  font-size: 17px;
  line-height: 1.8;
  color: #1E1E1E;
  margin: 0;
}

.process-arrow {
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: 1000px;
  margin: 40px 0;
}

.process-arrow img {
  width: 20px;
  height: 26px;
}

/* =========================================
   FAQ（アコーディオン：JSで.active切替）
========================================= */
.faq {
  background: #E3E3E3;
  padding: 100px 0;
}

.faq-header {
  text-align: center;
  margin-bottom: 80px;
}

.faq-item {
  background: rgba(255, 255, 255, .15);
  border-radius: 20px;
  margin-bottom: 20px;
  overflow: hidden;
}

.faq-question {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 30px;
  cursor: pointer;
  width: 100%;
  background: transparent;
  border: 0;
  text-align: left;
}

.faq-q {
  font-weight: 700;
  font-size: 32px;
  min-width: 40px;
  color: rgb(78, 78, 78);
}

.faq-question h3 {
  font-weight: 600;
  font-size: 24px;
  flex: 1;
  color: rgb(78, 78, 78);
}

.faq-arrow {
  width: 20px;
  height: 20px;
  transition: transform .3s;
}

.faq-item.active .faq-arrow {
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding: 0 30px 0;
  border-top: 1px solid transparent;
}

.faq-a {
  font-weight: 700;
  font-size: 32px;
  color: #2B7BB9;
  margin-right: 20px;
}

.faq-answer p {
  font-size: 20px;
  line-height: 1.6;
  color: rgb(78, 78, 78);
  margin-bottom: 10px;
}

.faq-answer p:first-of-type {
  font-weight: 700;
  font-size: 32px;
  color: #2B7BB9;
  margin-bottom: 20px;
}

/* =========================================
   News
========================================= */
.news {
  padding: 100px 0;
  background: #fff;
}

.news-header {
  text-align: center;
  margin-bottom: 80px;
}

.news-item {
  padding: 40px 0;
  border-bottom: 1px solid #1E1E1E;
}

.news-item:first-child {
  padding-top: 0;
}

.news-item:last-child {
  border-bottom: none;
}

.news-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 36px;
}

.news-date {
  font-weight: 300;
  font-size: 14px;
  color: #999;
}

.news-category {
  padding: 3px 12px;
  border-radius: 30px;
  font-weight: 700;
  color: #2C2C2C;
}

.news-category--news {
  background: #A5C9E0;
}

.news-category--event {
  background: #F0D980;
}

.news-category--media {
  background: rgba(166, 167, 140, .5);
}

.news-title {
  font-weight: 700;
  font-size: 24px;
  margin-bottom: 20px;
  color: #121212;
}

.news-description {
  font-weight: 400;
  font-size: 17px;
  line-height: 1.7;
}

/* =========================================
   Footer
========================================= */
.footer {
  background: rgba(54, 54, 54, .15);
  padding: 70px 0 28px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

.footer-brand {
  max-width: 560px;
}

.footer-logo {
  font-family: 'Pacifico', cursive;
  font-size: 32px;
  color: #2B7BB9;
  display: flex;
  align-items: center;
}

.footer-logo a {
  text-decoration: none;
}

.footer-logo img {
  width: 80px;
  height: 80px;
  margin-right: 10px;
}

.footer-description {
  font-size: 14px;
  letter-spacing: 0.03em;
  line-height: 1.625;
  color: #1E1E1E;
  padding: 10px;
}

/* サイトマップ＋お問い合わせ：左右偏りを解消し中央寄せ */
.footer-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(160px, 1fr));
  gap: 24px;
  margin-left: 0;
  color: #1E1E1E;
}

.footer-nav .footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-list-title {
  font-weight: 700;
  font-size: 16px;
  color: #2C2C2C;
  margin-bottom: 12px;
}

.footer-nav .footer-list li {
  margin-bottom: 8px;
}

.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-list li {
  margin-bottom: 8px;
}

.footer-list a {
  font-size: 14px;
  color: #1E1E1E;
  text-decoration: none;
}

.footer-list a:hover {
  color: #2B7BB9;
}

.contact-icon {
  margin-right: 10px;
}

/* 連絡先アイコン */
.contact-icon-phone::before,
.contact-icon-email::before,
.contact-icon-hours::before,
.contact-icon-address::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  margin-right: 10px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  vertical-align: middle;
}

.contact-icon-phone::before {
  background-image: url('../images/phone.svg');
}

.contact-icon-email::before {
  background-image: url('../images/email.svg');
}

.contact-icon-hours::before {
  background-image: url('../images/hours.svg');
}

.contact-icon-address::before {
  background-image: url('../images/address.svg');
}

.footer-divider {
  height: 1px;
  background: #1E1E1E;
  margin: 28px 0;
}

.footer-copy {
  font-size: 14px;
  color: #1E1E1E;
  text-align: center;
}

/* =========================================
   アニメーション
========================================= */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================================
   レスポンシブ: 1024px / 768px / 375px
   ※ PC版の見た目を基準に、縮めても崩れないように最小限調整
========================================= */

/* 1024px 以下（タブレット） */
@media (max-width:1024px) {
  .section-title {
    font-size: 40px;
  }

  .hamburger-menu {
    width: 54px;
    height: 54px;
  }

  .hamburger-menu span {
    width: 28px;
  }

  .hero {
    min-height: 680px;
  }

  .hero-content {
    top: 40px;
    left: 60px;
    right: 60px;
    max-width: 560px;
  }

  .hero-title {
    gap: 16px;
    margin-bottom: 20px;
  }

  .hero-title h1 {
    font-size: 40px;
  }

  .hero-deco-left,
  .hero-deco-right {
    width: 30px;
    height: 30px;
  }

  .hero-cta {
    margin-top: 64px;
    gap: 24px;
  }

  .btn--lg {
    font-size: 24px;
    min-width: 260px;
    height: 72px;
  }

  .pain-points {
    min-height: 640px;
  }

  .pain-points-list {
    gap: 28px;
  }

  .pain-point-circle {
    width: 230px;
    height: 230px;
  }

  .solution-content {
    padding: 0 20px;
  }

  .solution-features {
    gap: 80px;
  }

  .solution-feature {
    gap: 32px;
    padding: 48px;
  }

  .feature-image-container {
    height: 380px;
  }

  .benefit-description {
    margin-bottom: 56px;
  }

  .benefit-list {
    gap: 28px;
    margin-bottom: 100px;
  }

  .process {
    padding: 80px 20px;
  }

  .process-item {
    gap: 28px;
  }

  .step-number-large {
    font-size: 48px;
  }

  .process-text h3 {
    font-size: 20px;
  }

  .faq {
    padding: 80px 0;
  }

  .faq-question {
    padding: 24px;
  }

  .faq-q,
  .faq-a {
    font-size: 28px;
  }

  .faq-answer p:first-of-type {
    font-size: 28px;
  }

  .faq-answer p {
    font-size: 18px;
  }

  .news {
    padding: 80px 0;
  }

  .footer {
    padding: 80px 0 24px;
  }
}

/* 768px 以下 */
@media (max-width:768px) {
  .section-title {
    font-size: 32px;
  }

  .logo {
    top: 16px;
    left: 16px;
  }

  .hamburger-menu {
    width: 52px;
    height: 52px;
    top: 16px;
    right: 16px;
  }

  .hamburger-menu span {
    width: 26px;
  }

  .hero {
    min-height: 560px;
  }

  .hero-content {
    top: 20px;
    left: 20px;
    right: 20px;
    max-width: none;
    transform: none;
  }

  .hero-title {
    gap: 12px;
    margin-bottom: 16px;
  }

  .hero-title h1 {
    font-size: 34px;
  }

  .hero-deco-left,
  .hero-deco-right {
    width: 24px;
    height: 24px;
  }

  .hero-description {
    font-size: 14px;
    line-height: 2;
  }

  .hero-cta {
    margin-top: 64px;
    gap: 24px;
  }

  .btn--lg {
    min-width: 0;
    width: 100%;
    max-width: 320px;
    height: 60px;
    font-size: 18px;
    padding: 14px 20px;
  }

  .pain-points {
    height: auto;
    min-height: 0;
    padding: 60px 0;
  }

  .pain-points-list {
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }

  .pain-point-circle {
    width: 220px;
    height: 220px;
  }

  .solution {
    padding-top: 80px;
    padding-bottom: 120px;
  }

  .solution-background {
    height: 60vh;
  }

  .solution-features {
    gap: 60px;
  }

  .solution-feature {
    flex-direction: column;
    padding: 24px;
    gap: 24px;
  }

  .solution-feature:nth-child(even) {
    flex-direction: column;
  }

  .feature-image-container {
    height: 240px;
    border-radius: 20px;
  }

  .feature-card h3 {
    font-size: 20px;
    margin-bottom: 24px;
  }

  .feature-description {
    margin-bottom: 24px;
  }

  .check-icon {
    width: 36px;
    height: 36px;
  }

  .benefit {
    padding: 60px 0;
  }

  .benefit-overlay {
    padding-top: 0;
    gap: 24px;
  }

  .benefit-description {
    margin-bottom: 40px;
  }

  .benefit-description p {
    font-size: 14px;
    line-height: 2;
  }

  .benefit-list {
    flex-direction: column;
    align-items: center;
    gap: 24px;
    margin-bottom: 60px;
  }

  .benefit-circle {
    width: 220px;
    height: 220px;
  }

  .cta {
    padding: 60px 0;
  }

  .process {
    padding: 60px 0;
  }

  .process-item {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .step-number-container {
    width: auto;
    flex-direction: row;
    gap: 8px;
  }

  .step-number-large {
    font-size: 40px;
  }

  .process-arrow {
    margin: 24px 0;
  }

  .faq {
    padding: 60px 0;
  }

  .faq-question {
    padding: 16px;
    gap: 12px;
  }

  .faq-q,
  .faq-a {
    font-size: 24px;
  }

  .faq-question h3 {
    font-size: 20px;
  }

  .faq-answer {
    padding: 0 16px;
  }

  .faq-answer p:first-of-type {
    font-size: 24px;
  }

  .faq-answer p {
    font-size: 16px;
  }

  .news {
    padding: 60px 0;
  }

  .news-meta {
    flex-wrap: wrap;
    gap: 12px;
  }

  .news-title {
    font-size: 20px;
  }

  .news-description {
    font-size: 15px;
  }

  /* フッター：中央寄せ＆左右差解消 */
  .footer {
    padding: 60px 0;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-brand {
    max-width: none;
  }

  .footer-nav {
    grid-template-columns: 1fr 1fr;
    justify-items: center;
    gap: 16px 24px;
    margin-left: 0;
  }

  .footer-copy {
    font-size: 12px;
  }
}

/* 375px 以下 */
@media (max-width:375px) {
  .section-title {
    font-size: 28px;
  }

  #header .logo-text {
    display: none;
  }

  #header .logo-img {
    display: none;
  }

  .hamburger-menu {
    width: 48px;
    height: 48px;
  }

  .hamburger-menu span {
    width: 24px;
  }

  .hero-title h1 {
    font-size: 28px;
  }

  .hero-deco-left,
  .hero-deco-right {
    width: 20px;
    height: 20px;
  }

  .hero-cta {
    gap: 12px;
    justify-content: center;
  }

  .btn--lg {
    max-width: 280px;
    height: 56px;
    font-size: 16px;
  }

  .pain-point-circle,
  .benefit-circle {
    width: 200px;
    height: 200px;
  }

  .feature-image-container {
    height: 200px;
  }

  .footer-nav {
    grid-template-columns: 1fr;
  }

  .faq-q,
  .faq-a {
    font-size: 22px;
  }

  .faq-question h3 {
    font-size: 18px;
  }

  .faq-answer p:first-of-type {
    font-size: 22px;
  }

  .faq-answer p {
    font-size: 15px;
  }
}