@charset "UTF-8";

/* ==============================================
   Reset & Base
   ============================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  font-family: 'Noto Sans JP', 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'Meiryo', sans-serif;
  font-size: 1.6rem;
  line-height: 1.8;
  color: #333333;
  background-color: #ffffff;
  -webkit-font-smoothing: antialiased;
}

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

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

ul, ol {
  list-style: none;
}

/* ==============================================
   共通レイアウト
   ============================================== */
.inner {
  max-width: 1100px;
  width: 90%;
  margin: 0 auto;
}

.section {
  padding: 120px 0;
}

@media screen and (max-width: 768px) {
  .section {
    padding: 70px 0;
  }
}

/* ==============================================
   共通セクションタイトル
   ============================================== */
.section-title {
  text-align: left;
  margin-bottom: 60px;
}

.section-title-en {
  display: block;
  font-family: 'Marcellus', serif;
  font-size: 7.0rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: #1a1a1a;
  line-height: 1.0;
  margin-bottom: 20px;
}

.section-title-ja {
  display: block;
  font-size: 1.6rem;
  font-weight: 400;
  color: #1a1a1a;
  letter-spacing: 0.12em;
  line-height: 1.4;
}

@media screen and (max-width: 768px) {
  .section-title-en {
    font-size: 4.8rem;
  }
  .section-title-ja {
    font-size: 1.6rem;
  }
  .section-title {
    margin-bottom: 44px;
  }
}

/* ==============================================
   ボタン
   ============================================== */
.btn {
  display: inline-block;
  padding: 13px 36px;
  font-family: 'Noto Serif JP', serif;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  border-radius: 2px;
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  cursor: pointer;
}

.btn-primary {
  background-color: #29b6d8;
  color: #ffffff;
  border: 2px solid #29b6d8;
}

.btn-primary:hover {
  background-color: #1b9ab8;
  border-color: #1b9ab8;
}

.btn-outline {
  background-color: transparent;
  color: #29b6d8;
  border: 1px solid #29b6d8;
}

.btn-outline._service {
   color:#ffffff;
   border-color:#ffffff;
}

.btn-outline:hover {
  background-color: #29b6d8;
  color: #ffffff;
  border-color: transparent;
}

.btn-white {
  background-color: #ffffff;
  color: #29b6d8;
  border: 2px solid #ffffff;
}

.btn-white:hover {
  background-color: #e6f7fb;
  border-color: #e6f7fb;
}

/* ==============================================
   ヘッダー
   ============================================== */
.header01 {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background-color: #ffffff;
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.08);
  transition: background-color 0.3s, padding 0.3s;
}

.nav01 {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 80px;
  padding: 0 20px;
  box-sizing: border-box;
}

/* ロゴエリア */
.header-left,
.header-right {
  display: flex;
  align-items: center;
  height: 80px;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.header-logo-img {
  width: 44px;
  height: auto;
}

.header-logo .logo-text {
  font-family: 'Noto Serif JP', serif;
  font-size: min(1.333vw,16px);
  font-weight: 700;
  color: #1a1a1a;
  letter-spacing: 0.04em;
  line-height: 1.5;
}

.header-logo .logo-text span {
  display: block;
  font-family: 'Marcellus', serif;
  font-size: min(1.333vw,16px);
  font-weight: 400;
  color: #888888;
  letter-spacing: 0.08em;
}

/* PCナビ */
.header-ul {
  display: flex;
  align-items: center;
  line-height: 1;
  gap: 0;
}

.header-li {
  margin: 0 min(1vw, 20px) 0 0;
}

.header-li._last {
  margin-right: 0;
}

.header-text1 {
  text-decoration: none;
  color: #333333;
  font-family: 'Noto Serif JP', serif;
  font-size: min(1.333vw,16px);
  font-weight: 500;
  letter-spacing: 0.04em;
  position: relative;
  padding-bottom: 3px;
  transition: color 0.25s ease;
}

.header-text1::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #29b6d8;
  transition: width 0.25s ease;
}

.header-text1:hover {
  color: #29b6d8;
}

.header-text1:hover::after {
  width: 100%;
}

.header-btn1 {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  padding: 10px 22px;
  height: 44px;
  background-color: #29b6d8;
  color: #ffffff;
  font-family: 'Noto Serif JP', serif;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  border-radius: 2px;
  transition: background-color 0.25s ease;
  white-space: nowrap;
}

.header-btn1:hover {
  background-color: #1b9ab8;
}

/* ハンバーガーボタン（SP専用） */
.ham-btn {
  display: none;
  width: 44px;
  height: 44px;
  border: none;
  background: #29b6d8;
  position: relative;
  cursor: pointer;
  z-index: 1001;
  flex-shrink: 0;
}

.ham-btn span {
  position: absolute;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.3s ease;
}

.ham-btn span:nth-of-type(1) {
  top: 15px;
}

.ham-btn span:nth-of-type(2) {
  top: 25px;
}

.ham-btn.is-active span:nth-of-type(1) {
  top: 20px;
  transform: translateX(-50%) rotate(45deg);
}

.ham-btn.is-active span:nth-of-type(2) {
  top: 20px;
  transform: translateX(-50%) rotate(-45deg);
}

/* SPメニュー（スライドイン） */
.header-modal {
  transition: right 0.3s ease-in-out;
}

@media screen and (max-width: 960px) {
  .nav01 {
    width: 100%;
    height: 56px;
    padding: 0 8px;
  }

  .header-left,
  .header-right {
    height: 56px;
  }

  .ham-btn {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .header-modal {
    position: fixed;
    top: 56px;
    right: -100%;
    width: 100%;
    height: calc(100vh - 56px);
    background: #fff;
    z-index: 1000;
    overflow-y: auto;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
  }

  .header-modal.is-active {
    right: 0;
  }

  .header-ul {
    flex-direction: column;
    width: 100%;
    gap: 0;
  }

  .header-li {
    width: 100%;
    border-bottom: 1px solid #f2f2f2;
    padding: 20px 0;
    margin: 0;
  }

  .header-li._last {
    border-bottom: none;
    padding-top: 24px;
  }

  .header-logo-img {
    width: min(9.744vw, 44px);
  }

  .header-logo .logo-text {
    font-size: min(3.333vw, 14px);
  }

.header-logo .logo-text span {
    font-size: min(3.333vw, 14px);
  }

  .header-text1 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #333333;
    display: block;
    text-align: center;
  }

  .header-btn1 {
    width: 100%;
    justify-content: center;
    font-size: 1.6rem;
    height: 52px;
  }

  body.no-scroll {
    overflow: hidden;
  }
}

/* ==============================================
   FV（ファーストビュー）
   ============================================== */
#fv {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 580px;
  overflow: hidden;
  margin-top: 80px;
}

@media screen and (max-width: 768px) {
  #fv {
    margin-top: 56px;
    height: calc(100vh - 56px);
  }
}

#fv .fv-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}

#fv .fv-bg-pc {
  display: block;
}

#fv .fv-bg-sp {
  display: none;
}

#fv .fv-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    140deg,
    rgba(15, 45, 75, 0.58) 0%,
    rgba(10, 35, 60, 0.38) 55%,
    rgba(0, 90, 120, 0.22) 100%
  );
}

#fv .fv-content {
  position: relative;
  z-index: 10;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  max-width: 1100px;
  width: 90%;
  margin: 0 auto;
}

#fv .fv-label {
  font-size: 1.6rem;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 18px;
  font-weight: 400;
}

#fv .fv-catch {
  font-size: 5.0rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.5;
  letter-spacing: 0.06em;
  margin-bottom: 24px;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.28);
}

#fv .fv-catch span {
  display: block;
}

#fv .fv-sub {
  font-size: 1.8rem;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.9;
  margin-bottom: 40px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

#fv .fv-btn-wrap {
  display: flex;
  gap: 16px;
}

@media screen and (max-width: 768px) {
  #fv {
    margin-top: 56px;
    height: calc(100vh - 56px);
  }

  #fv .fv-bg-pc {
    display: none;
  }

  #fv .fv-bg-sp {
    display: block;
  }

  #fv .fv-catch {
    font-size: 2.6rem;
  }

  #fv .fv-sub {
    font-size: 1.6rem;
  }

  #fv .fv-btn-wrap {
    flex-direction: column;
    gap: 12px;
  }
}

/* ==============================================
   見出しフォント（明朝体）
   ============================================== */
#about .about-content .about-title,
#service .service-item-title,
#service .service-closing-catch,
#strengths .strengths-item .strengths-title,
#qualification .qualification-item .q-title,
#flow .flow-title,
#cta .cta-title,
#fv .fv-catch {
  font-family: 'Noto Serif JP', 'Hiragino Mincho ProN', '游明朝', serif;
}

/* Marcellus：英語ラベル類にも適用 */
#about .about-label,
#service .service-item-en,
#strengths .strengths-item .point,
#fv .fv-label {
  font-family: 'Marcellus', serif;
  font-weight: 400;
}

/* ==============================================
   ABOUT（私たちについて）
   ============================================== */
#about {
  background-color: #ffffff;
}

#about .about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

#about .about-content .about-label {
  font-size: 1.7rem;
  letter-spacing: 0.25em;
  color: #29b6d8;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 12px;
}

#about .about-content .about-title {
  font-size: 4.0rem;
  font-weight: 500;
  color: #1a1a1a;
  line-height: 1.65;
  letter-spacing: 0.06em;
  margin-bottom: 26px;
}

#about .about-content .about-title em {
  font-style: normal;
  color: #29b6d8;
}

#about .about-content .about-body {
  font-size: 1.6rem;
  color: #333333;
  line-height: 2.0;
  margin-bottom: 32px;
}

#about .about-img {
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 8px 36px rgba(0, 0, 0, 0.1);
}

#about .about-img img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

@media screen and (max-width: 900px) {
  #about .about-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  #about .about-img img {
    height: 260px;
  }
}

/* ==============================================
   SERVICE（事業内容）
   ============================================== */
#service {
  background-color: #f5fafe;
}

#service .service-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

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

#service .service-item {
  background-color: #ffffff;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.05);
  border-top: 3px solid #29b6d8;
}

#service .service-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

#service .service-item-body {
  padding: 28px 28px 32px;
}

#service .service-item-en {
  font-size: 1.6rem;
  color: #29b6d8;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 8px;
}

#service .service-item-title {
  font-size: 2.8rem;
  font-weight: 500;
  color: #1a1a1a;
  margin-bottom: 14px;
  line-height: 1.55;
  letter-spacing: 0.05em;
}

#service .service-item-subtitle {
  font-size: 1.8rem;
  font-weight: 700;
  color: #29b6d8;
  line-height: 1.6;
  margin-bottom: 14px;
}

#service .service-item-text {
  font-size: 1.6rem;
  color: #333333;
  line-height: 1.95;
  margin-bottom: 20px;
}

#service .service-item-price {
  padding: 14px 0 0;
  border-top: 1px solid #eef2f6;
  font-size: 1.6rem;
  color: #888888;
}

#service .service-item-price strong {
  display: inline-block;
  font-size: 2.0rem;
  font-weight: 700;
  color: #29b6d8;
  margin-right: 4px;
}

#service .service-closing {
  position: relative;
  margin-top: 80px;
  width: 100%;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url('../img/service-bg.jpg');
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
}

#service .service-closing-bg {
  display: none;
}

#service .service-closing-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 30, 40, 0.58);
}

#service .service-closing-body {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 60px 48px;
  max-width: 820px;
}

#service .service-closing-catch {
  font-family: 'Noto Serif JP', serif;
  font-size: 3.2rem;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.8;
  letter-spacing: 0.06em;
  margin-bottom: 20px;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.3);
}

#service .service-closing-text {
  font-size: 1.8rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 2.0;
}

@media screen and (max-width: 768px) {
  #service .service-closing {
    margin-top: 48px;
    min-height: 300px;
    background-attachment: scroll; /* iOSはfixedが効かないためscrollに */
  }

  #service .service-closing-body {
    padding: 48px 28px;
  }

  #service .service-closing-catch {
    font-size: 1.8rem;
  }
}



/* ==============================================
   STRENGTHS（協会の強み）
   ============================================== */
#strengths {
  background-image: url('../img/strengths-bg.jpg');
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  position: relative;
}

/* h2・サブタイトルを白に */
#strengths .section-title-en {
  color: #ffffff;
}

#strengths .section-title-ja {
  color: rgba(255, 255, 255, 0.75);
}

@media screen and (max-width: 768px) {
  #strengths {
    background-attachment: scroll;
  }
}

#strengths .strengths-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

#strengths .strengths-item {
  padding: 36px 28px 38px;
  background-color: #f5fafe;
  border-radius: 4px;
  border-top: 3px solid #29b6d8;
}

#strengths .strengths-item .point {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: #29b6d8;
  text-transform: uppercase;
  margin-bottom: 10px;
}

#strengths .strengths-item .strengths-num {
  font-family: 'Marcellus', serif;
  font-size: 3.8rem;
  font-weight: 400;
  color: #d6eef6;
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}

#strengths .strengths-item .strengths-title {
  font-size: 1.8rem;
  font-weight: 500;
  color: #1a1a1a;
  margin-bottom: 14px;
  line-height: 1.55;
  letter-spacing: 0.04em;
}

#strengths .strengths-item .strengths-sublead {
  font-size: 1.6rem;
  font-weight: 700;
  color: #29b6d8;
  line-height: 1.6;
  margin-bottom: 12px;
}

#strengths .strengths-item .strengths-text {
  font-size: 1.6rem;
  color: #333333;
  line-height: 1.95;
}

@media screen and (max-width: 900px) {
  #strengths .strengths-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* ==============================================
   QUALIFICATION（資格制度）
   ============================================== */
#qualification {
  background-color: #f5fafe;
}

#qualification .qualification-lead {
  text-align: left;
  font-size: 1.6rem;
  color: #333333;
  line-height: 2.0;
  max-width: 100%;
  margin: 0 0 56px;
}

#qualification .qualification-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

#qualification .qualification-item {
  background-color: #ffffff;
  border-radius: 4px;
  padding: 36px 24px 36px;
  text-align: center;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.05);
}

#qualification .qualification-item.top {
  border-top: 4px solid #29b6d8;
}

#qualification .qualification-item.mid {
  border-top: 4px solid #5b87c5;
}

#qualification .qualification-item.base {
  border-top: 4px solid #8bb8d8;
}

#qualification .qualification-item .badge {
  display: inline-block;
  font-family: 'Marcellus', serif;
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  padding: 5px 18px;
  border-radius: 2px;
  margin-bottom: 14px;
  text-transform: uppercase;
}

#qualification .qualification-item.top .badge {
  background-color: #e2f5fb;
  color: #29b6d8;
}

#qualification .qualification-item.mid .badge {
  background-color: #eaeffa;
  color: #5b87c5;
}

#qualification .qualification-item.base .badge {
  background-color: #eef4f9;
  color: #8bb8d8;
}

#qualification .qualification-item .q-sublead {
  font-size: 1.6rem;
  font-weight: 700;
  color: #29b6d8;
  line-height: 1.6;
  margin-bottom: 10px;
}

#qualification .qualification-item .q-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 12px;
  line-height: 1.5;
}

#qualification .qualification-item .q-text {
  font-size: 1.6rem;
  color: #666666;
  line-height: 1.9;
  text-align: left;
}

#qualification .qualification-item .q-fee {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid #eef2f6;
  font-size: 1.6rem;
  color: #888888;
}

#qualification .qualification-item .q-fee strong {
  display: block;
  font-size: 2.2rem;
  font-weight: 700;
  color: #333333;
  line-height: 1.2;
}

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

/* ==============================================
   FLOW（ご利用の流れ）
   ============================================== */
#flow {
  background-color: #ffffff;
}

#flow .flow-lead {
  margin: 0 0 48px;
}

#flow .flow-lead-catch {
  font-size: 1.65rem;
  font-weight: 700;
  color: #29b6d8;
  margin-bottom: 10px;
  line-height: 1.6;
}

#flow .flow-lead-text {
  font-size: 1.6rem;
  color: #333333;
  line-height: 1.95;
}

#flow .flow-sublead {
  font-size: 1.6rem;
  font-weight: 700;
  color: #29b6d8;
  margin-bottom: 8px;
  line-height: 1.6;
}

#flow .flow-list {
  width: 100%;
}

#flow .flow-item {
  display: grid;
  grid-template-columns: 64px 280px 1fr;
  gap: 28px;
  align-items: start;
  padding: 28px 0;
  border-bottom: 1px solid #eef2f5;
  position: relative;
}

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

/* 縦線：1〜4番目のflow-numを繋ぐ */
#flow .flow-item[data-connected]::after {
  content: '';
  position: absolute;
  left: 32px;
  top: calc(28px + 64px);
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, #29b6d8, #d6eef6);
  transform: translateX(-50%);
}

#flow .flow-img-wrap {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 4px;
}

#flow .flow-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

#flow .flow-num {
  width: 64px;
  height: 64px;
  background-color: #29b6d8;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Marcellus', serif;
  font-size: 2.0rem;
  font-weight: 400;
  color: #ffffff;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

#flow .flow-body {}

#flow .flow-title {
  font-size: 2.8rem;
  font-weight: 500;
  color: #1a1a1a;
  margin-bottom: 8px;
  line-height: 1.55;
  letter-spacing: 0.04em;
}

#flow .flow-text {
  font-size: 1.6rem;
  color: #333333;
  line-height: 1.95;
}

@media screen and (max-width: 768px) {
  #flow .flow-item {
    grid-template-columns: 48px 1fr;
    grid-template-rows: auto auto;
  }

  #flow .flow-num {
    width: 48px;
    height: 48px;
    font-size: 1.6rem;
    grid-column: 1;
    grid-row: 1;
  }

  #flow .flow-img-wrap {
    grid-column: 1 / -1;
    grid-row: 2;
    aspect-ratio: 4 / 3;
  }

  #flow .flow-body {
    grid-column: 2;
    grid-row: 1;
  }

  #flow .flow-item[data-connected]::after {
    left: 24px;
    top: calc(28px + 48px);
  }
}

/* ==============================================
   PRICE（料金体系）
   ============================================== */
#price {
  background-color: #f5fafe;
}

#price .price-note {
  text-align: right;
  font-size: 1.6rem;
  color: #888888;
  margin-bottom: 16px;
}

#price .price-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

#price .price-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1.6rem;
  min-width: 600px;
}

#price .price-table th,
#price .price-table td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid #ddedf5;
  vertical-align: middle;
  line-height: 1.7;
}

#price .price-table thead th {
  background-color: #29b6d8;
  color: #ffffff;
  font-weight: 700;
  font-size: 1.6rem;
  letter-spacing: 0.04em;
}

#price .price-table thead th:first-child {
  border-radius: 4px 0 0 0;
}

#price .price-table thead th:last-child {
  border-radius: 0 4px 0 0;
}

#price .price-table tbody tr:nth-child(even) td {
  background-color: #eef7fb;
}

#price .price-table tbody td:nth-child(2) {
  font-weight: 700;
  color: #1a1a1a;
  font-size: 1.6rem;
  white-space: nowrap;
}

#price .price-table-note {
  font-size: 1.6rem;
  color: #888888;
  margin-top: 12px;
  line-height: 1.8;
}

/* ==============================================
   MEMBER（組織体制）
   ============================================== */
#member {
  background-color: #ffffff;
}

#member .member-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  width: 100%;
}

#member .member-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1.6rem;
  min-width: 480px;
}

#member .member-table th,
#member .member-table td {
  padding: 16px 24px;
  text-align: left;
  border-bottom: 1px solid #e0e0e0;
  vertical-align: middle;
  line-height: 1.7;
}

#member .member-table thead th {
  background-color: #f5f5f5;
  font-weight: 700;
  color: #333333;
  font-size: 1.6rem;
  letter-spacing: 0.04em;
}

#member .member-table tbody td {
  color: #333333;
}

/* ==============================================
   CTA バナー
   ============================================== */
#cta {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}

#cta .cta-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

#cta .cta-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(18, 50, 80, 0.72);
}

#cta .cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

#cta .cta-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.55;
  margin-bottom: 16px;
  letter-spacing: 0.04em;
}

#cta .cta-sub {
  font-size: 1.6rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 40px;
  line-height: 1.9;
}

#cta .cta-btn-wrap {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

@media screen and (max-width: 768px) {
  #cta .cta-title {
    font-size: 2.2rem;
  }

  #cta .cta-btn-wrap {
    flex-direction: column;
    align-items: center;
  }
}

/* ==============================================
   CONTACT（お問い合わせ）
   ============================================== */
#contact {
  background-color: #f5fafe;
}

#contact .contact-lead {
  text-align: center;
  font-size: 1.6rem;
  color: #333333;
  line-height: 2.0;
  margin-bottom: 48px;
}

#contact .section-title {
  text-align: center;
}

#contact .contact-form {
  max-width: 700px;
  margin: 0 auto;
}

#contact .form-row {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 16px;
  align-items: center;
  margin-bottom: 20px;
}

#contact .form-label {
  font-size: 1.6rem;
  font-weight: 600;
  color: #333333;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

#contact .form-label .required {
  font-size: 1.6rem;
  background-color: #29b6d8;
  color: #ffffff;
  padding: 2px 8px;
  border-radius: 2px;
  margin-left: 6px;
  font-weight: 700;
  white-space: nowrap;
}

#contact .form-input,
#contact .form-textarea {
  width: 100%;
  padding: 12px 16px;
  font-size: 1.6rem;
  font-family: 'Noto Sans JP', 'Hiragino Sans', sans-serif;
  border: 1px solid #ccd9e2;
  border-radius: 2px;
  background-color: #ffffff;
  color: #333333;
  outline: none;
  transition: border-color 0.25s ease;
}

#contact .form-input:focus,
#contact .form-textarea:focus {
  border-color: #29b6d8;
}

#contact .form-textarea {
  resize: vertical;
  min-height: 140px;
}

#contact .form-privacy {
  margin-top: 20px;
  font-size: 1.6rem;
  color: #333333;
  line-height: 1.8;
}

#contact .form-privacy a {
  color: #29b6d8;
  text-decoration: underline;
}

#contact .form-submit {
  margin-top: 32px;
  text-align: center;
}

.btn-more1 {
  display: inline-block;
  padding: 14px 60px;
  background-color: #29b6d8;
  color: #ffffff;
  font-size: 1.6rem;
  font-weight: 700;
  font-family: 'Noto Sans JP', 'Hiragino Sans', sans-serif;
  letter-spacing: 0.1em;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: background-color 0.25s ease;
}

.btn-more1:hover {
  background-color: #1b9ab8;
}

@media screen and (max-width: 768px) {
  #contact .form-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

/* ==============================================
   COMPANY（会社概要）
   ============================================== */
#company {
  background-color: #ffffff;
}

#company .company-table-wrap {
  width: 100%;
}

#company .company-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1.6rem;
}

#company .company-table th,
#company .company-table td {
  padding: 16px 24px;
  text-align: left;
  border-bottom: 1px solid #e0e0e0;
  vertical-align: top;
  line-height: 1.8;
}

#company .company-table th {
  width: 190px;
  font-weight: 700;
  color: #333333;
  white-space: nowrap;
  background-color: #f5f5f5;
}

#company .company-table td {
  color: #333333;
}

@media screen and (max-width: 600px) {
  #company .company-table th,
  #company .company-table td {
    display: block;
    width: 100%;
    padding: 12px 16px;
  }

  #company .company-table td {
    padding-top: 8px;
    border-bottom: 1px solid #e0e0e0;
  }

  #company .company-table th {
    border-bottom: none;
    padding-bottom: 6px;
  }
}

/* ==============================================
   フッター
   ============================================== */
#footer {
  background-color: #162232;
  color: #ffffff;
  padding: 30px 0; /* 上下の余白を大幅に縮小 */
  text-align: center;
}

#footer .footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px; /* 上段と下段の間隔をタイトに */
}

/* ロゴと社名を横1行に */
#footer .footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

#footer .footer-logo img {
  width: 30px; /* 少し小ぶりに調整 */
  filter: brightness(0) invert(1);
}

#footer .footer-logo .footer-logo-text {
  font-family: 'Noto Serif JP', serif;
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
}

/* 下段：横並びの設定 */
#footer .footer-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px; /* ポリシーとコピーライトの間隔 */
  flex-wrap: wrap; /* 画面が狭いときは折り返す */
}

#footer .footer-link {
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.25s ease;
}

#footer .footer-link:hover {
  color: #29b6d8;
}

#footer .copyright {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.35);
}

/* スマホ用調整 */
@media screen and (max-width: 640px) {
  #footer .footer-bottom {
    flex-direction: column; /* スマホでは縦に並べて押しやすく */
    gap: 8px;
  }
}

/* ==============================================
   ページトップボタン
   ============================================== */
#page-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 48px;
  height: 48px;
  background-color: #29b6d8;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 500;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease, background-color 0.25s ease;
}

#page-top.is-show {
  opacity: 1;
  visibility: visible;
}

#page-top:hover {
  background-color: #1b9ab8;
}

#page-top svg {
  fill: #ffffff;
}

@media screen and (max-width: 768px) {
  #page-top {
    bottom: 20px;
    right: 16px;
    width: 42px;
    height: 42px;
  }
}

/* ==============================================
   NEWS（お知らせ）
   ============================================== */
#news {
  background-color: #ffffff;
}

.news-list {
  width: 100%;
}

.news-item {
  border-bottom: 1px solid #eef2f5;
}

.news-item:first-child {
  border-top: 1px solid #eef2f5;
}

.news-item a {
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 20px 10px;
  transition: background-color 0.25s ease;
}

.news-item a:hover {
  background-color: #f0f9fd;
}

.news-item a:hover .news-title {
  color: #29b6d8;
}

.news-date {
  font-size: 1.6rem;
  color: #888888;
  font-weight: 500;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}

.news-title {
  font-size: 1.6rem;
  color: #333333;
  line-height: 1.6;
  font-weight: 500;
  transition: color 0.25s ease;
}

.news-btn {
  text-align: center;
  margin-top: 40px;
}

/* スマホ用調整 */
@media screen and (max-width: 768px) {
  .news-item a {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 16px 5px;
  }
  
  .news-title {
    font-size: 1.6rem;
  }
}

/* ==============================================
   CERTIFIED（協会認定企業紹介）
   ============================================== */
#certified {
  background-color: #f5fafe;
}

.company-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 50px;
}

.company-card {
  background-color: #ffffff;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.card-img {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  display: inline-block;
}

.card-img img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform-origin: center center;
  transition: transform 0.5s ease;
  display: block;
}

.company-card:hover .card-img img {
  transform: scale(1.05);
}

.card-body {
  padding: 10px;
  box-sizing: border-box;
}

.card-pref {
  font-size: 1.6rem;
  font-weight: 700;
  color: #29b6d8;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.card-title {
  padding: 0;
  font-size: 1.6rem;
  font-weight: 700;
  color: #1a1a1a;
  text-align: left;
  line-height: 1.4;
}

.section-btn {
  text-align: center;
  margin-bottom: 80px;
}

/* レスポンス対応 */
@media screen and (max-width: 1024px) {
  .company-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 500px) {
  .company-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .card-title {
    font-size: 1.6rem;
    padding: 16px 12px;
  }
}

/* 認定企業・支部 共通サブタイトル */
.certified-sub-title {
  font-family: 'Noto Serif JP', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #29b6d8;
  letter-spacing: 0.08em;
  margin-bottom: 32px;
}

@media screen and (max-width: 768px) {
.certified-sub-title {
    font-size: 1.8rem;
    margin-bottom: 24px;
  }
}

/* 支部紹介：マップ＋リスト 左右2カラム */
#certified .branch-layout {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

#certified .branch-map {
  flex: 1 1 55%;
  min-width: 0;
}

#certified .branch-map img {
  width: 100%;
  height: auto;
}

#certified .branch-grid {
  flex: 1 1 45%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

#certified .branch-card {
  background-color: #ffffff;
  border-radius: 4px;
  padding: 18px 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

#certified .branch-name {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 8px;
  letter-spacing: 0.04em;
}

#certified .branch-address {
  font-size: 1.4rem;
  color: #555555;
  line-height: 1.9;
  letter-spacing: 0.02em;
}

@media screen and (max-width: 768px) {
  #certified .branch-layout {
    flex-direction: column;
    gap: 24px;
  }

  #certified .branch-map,
  #certified .branch-grid {
    flex: none;
    width: 100%;
  }
}




.privacy-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 20px 0;
}

.privacy-wrapper a {
  color: #29b6d8;
}
 
input.form-control,
select.form-select,
textarea.form-control {
    width: 100%;
    padding: 15px 2%;
    height: 70px;
    background: #F7F7F7 0% 0% no-repeat padding-box;
    border: 1px solid #CFC6D8;
    border-radius: 5px;
    box-sizing: border-box;
    color: #000;
    font-size: 16px;
}
textarea.form-control {
    height: 240px !important;
}

input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 24px;
    height: 24px;
    background: #FFFFFF 0% 0% no-repeat padding-box;
    border: 1px solid #B59B55;
    position: relative;
    cursor: pointer;
    margin: 0 10px 0 0 !important;
}

input[type="checkbox"]:checked {
    background-color: #29b6d8;
}

input[type="checkbox"]:checked::after {
    content: "✔";
    font-size: 14px;
    position: absolute;
    color: #fff;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@media screen and (max-width: 960px) {
}

/* validation */
#consent-error {
    position: absolute;
    left: 50%;
    margin-top: 40px;
    transform: translateX(-50%);
    color: #D30001;
        font-weight: normal;
    font-size: 16px;
}
.validation-block {
    color: #D30001;
}
.has-error .validation-block {
    text-align: left;
    color: #D30001;
}

#email-error {
    color: #d30001;
    font-size: 14px;
    margin-top: 5px;
    display: none;
}

/* bootstrap */
button.btn-success {
    cursor: pointer;
}
.btn {
    font-size: 15px;
    font-weight: 400;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    border-radius: 4px;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    padding: 8px 20px;
}
.btn01 .btn {
    background-color: #009E96;
    width: 120px;
    margin-left: 20px;
    margin-left: 15px;
    color: #fff;
}
.modal-dialog {
    max-width: 600px;
    margin: 150px auto 0;
    width: calc(100% - 40px);
}
.modal-body {
    text-align: center;
}
.modal-footer {
    display: flex;
    justify-content: center;
}
.btn.btn-md {
    padding: 8px 20px !important;
}
.btn.btn-lg {
    padding: 18px 36px !important;
}
.btn:hover, .btn:active, .btn:focus {
    box-shadow: none !important;
    outline: none !important;
}
.btn-primary {
    background: #3958A7;
    color: #fff;
    border: 2px solid #3958A7;
}
@media screen and (max-width: 960px) {
}


/* page02 common */
.page02 {
    padding: 0 !important;
}

.heading._page02 {
    padding: 80px min(15%, 180px);
}

.fv2 {
    display: flex;
    /* justify-content: center; */
    align-items: end;
    height: 288px;
    background-color: #f5fafe;
}

.fv2-h1 {
    font-size: 40px;
    font-weight: 700;
    margin: 0;
    color: #494847;
}

.archive-link {
    text-decoration: none;
    padding: 20px 0;
    border-bottom: 1px solid #DDDDDD;
    display: block;
}


@media screen and (max-width: 960px) {
    .heading._page02 {
        padding: 80px min(5.333%, 20px);
    }

    .fv2-h1 {
        font-size: 28px;
    }
}

/* page02 page03 パンくずリスト */
.heading._crumbs {
    padding: 20px min(15%, 180px);
}

#crumbs {
    position: relative;
}

.crumbs {
  display: flex;
  overflow-x: auto;
  white-space: nowrap;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.crumbs::-webkit-scrollbar {
  display: none;
}

.crumbs-link {
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1.44px;
    color: #29b6d8;

}

.crumbs-separator {
    margin: 0 8px;
}

.crumbs-current {
    font-size: 16px;
}

@media screen and (max-width: 960px) {
    .heading._crumbs {
        padding: 20px min(5.333%, 20px);
    }
}

/* page02 ページネーション */
.pagenum-wrapper {
    display: flex;
    justify-content: center;
    margin: 40px 0 0 0;
}
.pagenum {
    display: flex;
    padding: 0;
    margin: 0;
    list-style: none;
    gap: 1rem;
}
.pagenum li {
    padding: 0;
    margin: 0;
}
.pagenum li a {
    font-family: 'Jost';
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 50%;
    text-decoration: none;
    font-size: 16px;
    width: 45px;
    height: 45px;
    background: #ffffff 0% 0% no-repeat padding-box;
    color: #29b6d8;
    border: 1px solid #29b6d8;
    cursor: pointer;
}

.pagenum li a:hover,
.pagenum li a.current,
.pagenum li a.active {
    background: #29b6d8 0% 0% no-repeat padding-box;
    color: #fff;
}

.pagenum li a.current,
.pagenum li a.active {
    cursor: default;
}

@media screen and (max-width: 960px) {
    .pagenum li a {
        width: 40px;
        height: 40px;
    }
}

/* page03 共通 */
.page03 {
    padding: 80px 0 0 0;
}

.fv3 {
    height: 20px;
}

.detail-img1 {
    width: 80%;
    margin: 0 auto 40px auto;
}

.detail h1 {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 2.88px;
    padding: 0 0 30px 0;
    margin: 0 0 80px 0;
    border-bottom: 2px solid #29b6d8;
}

.detail-common-area h2,
.common-archive-h2 {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.5;
    border-left: 6px solid #29b6d8;
    padding: 0 0 0 10px;
    margin: 40px 0 20px 0;
}

.detail-common-area img {
    margin: 0 0 20px 0;
}

.detail-common-area h3 {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.48px;
    border-bottom: 1px solid #29b6d8;
    padding: 0 0 10px 0;
    margin: 0 0 40px 0;
}
.detail-common-area h4 {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 40px 0;
}
.detail-common-area p {
    font-size: 16px;
    margin: 0 0 30px 0;
}
.detail-common-area a {
    font-size: 16px;
    color: #DB9E28;
    font-weight: 700;
    margin: 0 0 40px 0;
}

.detail-common-area ul {
    list-style: none;
    margin: 0 0 20px 0;
    padding: 0;
}
.detail-common-area ul li {
    font-size: 16px;
    margin: 0 0 10px 0;
    position: relative;
    padding: 0 0 0 18px;
    line-height: 24px;
}
.detail-common-area ul li::before {
    content: "";
    width: 8px;
    height: 8px;
    display: inline-block;
    background-color: #29b6d8;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 8px;
}

@media screen and (max-width: 960px) {
    .page03 {
        padding: 50px 0 0 0;
    }

}



.wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
}

.heading {
    position: relative;
    width: 100%;
    max-width: 1200px;
    padding: 80px min(15%, 180px);
    box-sizing: border-box;
}

@media screen and (max-width: 960px) {

    .heading {
        max-width: 480px;
        padding: 70px min(5.333%, 20px);
    }
    .heading._bg {
        padding-bottom: 80px;
    }

}

/* 共通 index single archive 404 */
._minheight {
    min-height: 48vh;
}
.non-text {
    text-align: center;
    font-size: 16px;
    margin: 0;
}

._error {
    overflow-wrap: anywhere;
}

@media screen and (max-width: 960px) {
    ._minheight {
        min-height: 62vh;
    }
}


.btn-wrapper1 {
  display: flex;
  justify-content: center;
  margin: 20px 0;
}


.cat-ul,
.tag-cat-ul {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem 0.2rem;
    align-items: stretch;
}

.cat-li {
  line-height: 1;
}
.tag-cat-ul {
    justify-content: center;
    margin: 0 0 30px 0;
}

.cat-link,
.tag-cat-link {
    text-decoration: none;
    letter-spacing: 1.12px;
    font-weight: 700;
}
.cat-link {
    color: #29b6d8;
    font-size: 13px;
  }
.tag-cat-link {
    color: #fff;
    font-size: 14px;
}


.tag-cat-link {
    padding: 5px 10px;
    box-sizing: border-box;
    background: #29b6d8 0% 0% no-repeat padding-box;
    border-radius: 15px;
} 

.tag-cat-link:not(._current) {
    background: #fff;
    color: #3d919d;
    border: 1px solid #3d919d;
}

@media screen and (max-width: 960px) {
    .cat-link {
      font-size: 12px;
    }
    .tag-cat-link {
        font-size: 13px;
    }
}
