@charset "UTF-8";

/* =========================================
   Reset & Base
========================================= */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  color: #333;
  background: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
h1, h2, h3, h4, h5, h6,
.section-title, .hero-title, .cta-title,
.footer-name, .recruit-title, .course-name {
  font-weight: 700;
}
strong, b { font-weight: 700; }
img { max-width: 100%; height: auto; display: block; }
a { color: #2a7fb8; text-decoration: none; transition: opacity .2s, color .2s; }
a:hover { opacity: .75; }
h1, h2, h3, h4, p, ul, dl, dd { margin: 0; padding: 0; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }

/* =========================================
   Variables / Theme
========================================= */
:root {
  --blue: #5BA9D6;
  --blue-dark: #2a7fb8;
  --blue-deep: #1d6699;
  --blue-light: #E8F4FB;
  --blue-bg: #F4FAFD;
  --red: #d9534f;
  --red-dark: #c9302c;
  --text: #333;
  --text-sub: #666;
  --border: #e0e0e0;
}

/* =========================================
   Layout
========================================= */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}
.section { padding: 70px 0; }
@media (max-width: 768px) {
  .section { padding: 50px 0; }
}

.section-head { text-align: center; margin-bottom: 40px; }
.section-sub {
  color: var(--blue-dark);
  font-size: 14px;
  letter-spacing: .2em;
  font-weight: bold;
  margin-bottom: 8px;
}
.section-title {
  font-size: 28px;
  font-weight: bold;
  position: relative;
  padding-bottom: 16px;
  display: inline-block;
}
.section-title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background: var(--red);
  border-radius: 2px;
}
.section-lead {
  margin-top: 16px;
  color: var(--text-sub);
  font-size: 15px;
}
@media (max-width: 768px) {
  .section-title { font-size: 22px; }
}

.section-more { text-align: center; margin-top: 30px; }

.text-accent { color: var(--red); font-weight: bold; }

/* =========================================
   Header
========================================= */
.header {
  background: #fff;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 6px rgba(0,0,0,.04);
}
.header-top {
  background: var(--blue-light);
  font-size: 13px;
  color: var(--text-sub);
}
.header-top-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 6px;
  padding-bottom: 6px;
}
.header-tel-small a {
  color: var(--blue-deep);
  font-weight: bold;
}
.header-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 12px;
  padding-bottom: 12px;
}
.logo { line-height: 0; }
.logo img { max-height: 50px; width: auto; }

.gnav ul {
  display: flex;
  align-items: center;
  gap: 4px;
}
.gnav a {
  display: block;
  padding: 10px 14px;
  color: var(--text);
  font-size: 15px;
  font-weight: 500;
  position: relative;
}
.gnav a:hover { color: var(--blue-dark); opacity: 1; }
.gnav-cta {
  background: var(--red);
  color: #fff !important;
  border-radius: 4px;
  padding: 10px 20px !important;
  margin-left: 8px;
  font-weight: bold;
}
.gnav-cta:hover { background: var(--red-dark); opacity: 1; }

.hamburger {
  display: none;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  padding: 0;
  position: relative;
}
.hamburger span {
  display: block;
  position: absolute;
  left: 8px;
  right: 8px;
  height: 2px;
  background: var(--text);
  transition: transform .25s, opacity .25s, top .25s;
}
.hamburger span:nth-child(1) { top: 12px; }
.hamburger span:nth-child(2) { top: 19px; }
.hamburger span:nth-child(3) { top: 26px; }
.hamburger.is-active span:nth-child(1) { top: 19px; transform: rotate(45deg); }
.hamburger.is-active span:nth-child(2) { opacity: 0; }
.hamburger.is-active span:nth-child(3) { top: 19px; transform: rotate(-45deg); }

@media (max-width: 900px) {
  .header-top-inner { font-size: 12px; }
  .header-tagline { display: none; }
  .hamburger { display: block; }
  .gnav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 1px solid var(--border);
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
  }
  .gnav.is-open { max-height: 500px; }
  .gnav ul {
    flex-direction: column;
    gap: 0;
    padding: 10px 0;
  }
  .gnav li { width: 100%; }
  .gnav a {
    padding: 14px 20px;
    border-bottom: 1px solid #f0f0f0;
  }
  .gnav-cta {
    margin: 10px 20px;
    text-align: center;
  }
}

/* =========================================
   Hero
========================================= */
.hero {
  background: linear-gradient(135deg, var(--blue-light) 0%, #fff 60%, var(--blue-bg) 100%);
  padding: 60px 0 70px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -150px;
  right: -150px;
  width: 400px;
  height: 400px;
  background: rgba(91, 169, 214, .12);
  border-radius: 50%;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-sub {
  display: inline-block;
  background: var(--blue-dark);
  color: #fff;
  padding: 4px 14px;
  border-radius: 999px;
  font-size: 13px;
  margin-bottom: 18px;
  letter-spacing: .05em;
}
.hero-title {
  font-size: 40px;
  line-height: 1.4;
  font-weight: bold;
  margin-bottom: 20px;
  color: #222;
}
.hero-title .accent { color: var(--red); }
.hero-lead {
  font-size: 16px;
  line-height: 1.9;
  color: var(--text-sub);
  margin-bottom: 26px;
}
.hero-points {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 10px;
  margin-bottom: 30px;
}
.hero-points li {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  padding: 10px 12px;
  border-radius: 6px;
  border-left: 3px solid var(--blue);
  box-shadow: 0 2px 6px rgba(0,0,0,.05);
}
.point-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--blue-dark);
  color: #fff;
  border-radius: 50%;
  font-size: 12px;
  font-weight: bold;
  flex-shrink: 0;
}
.point-text { display: flex; flex-direction: column; line-height: 1.3; }
.point-text strong { font-size: 14px; color: #222; }
.point-text small { font-size: 11px; color: var(--text-sub); margin-top: 2px; }

.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hero-image {
  position: relative;
}
.hero-image img {
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,.12);
  width: 100%;
  height: 420px;
  object-fit: cover;
}
.hero-image::after {
  content: "";
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 100px;
  height: 100px;
  background: var(--red);
  border-radius: 50%;
  opacity: .1;
  z-index: -1;
}

@media (max-width: 900px) {
  .hero { padding: 40px 0 50px; }
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .hero-title { font-size: 28px; }
  .hero-image img { height: 260px; }
}
@media (max-width: 480px) {
  .hero-title { font-size: 24px; }
  .hero-points { grid-template-columns: 1fr 1fr; }
}

/* =========================================
   Buttons
========================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 14px 28px;
  border-radius: 4px;
  font-weight: bold;
  font-size: 16px;
  text-align: center;
  line-height: 1.2;
  transition: all .2s;
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--red);
  color: #fff;
}
.btn-primary:hover { background: var(--red-dark); opacity: 1; }
.btn-outline {
  background: #fff;
  border-color: var(--blue-dark);
  color: var(--blue-dark);
}
.btn-outline:hover { background: var(--blue-dark); color: #fff; opacity: 1; }
.btn-outline-white {
  background: transparent;
  border-color: #fff;
  color: #fff;
}
.btn-outline-white:hover { background: #fff; color: var(--blue-dark); opacity: 1; }
.btn-ghost {
  background: transparent;
  border-color: var(--blue-dark);
  color: var(--blue-dark);
  padding: 10px 24px;
  font-size: 14px;
}
.btn-ghost:hover { background: var(--blue-dark); color: #fff; opacity: 1; }
.btn-lg { padding: 18px 36px; font-size: 18px; }
.btn-small { font-size: 11px; font-weight: normal; opacity: .85; }
.btn-big { font-size: 18px; letter-spacing: .03em; }
.btn-lg .btn-big { font-size: 22px; }

/* =========================================
   Recruiting Section
========================================= */
.recruiting { background: var(--blue-bg); }
.recruit-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.recruit-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 4px 12px rgba(0,0,0,.06);
  transition: transform .2s, box-shadow .2s;
  display: flex;
  flex-direction: column;
  color: var(--text);
  text-decoration: none;
}
.recruit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,.1);
  opacity: 1;
  color: var(--text);
}
.recruit-card:hover .recruit-btn { background: var(--blue-deep); }
.recruit-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--blue-dark);
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  padding: 4px 12px;
  border-radius: 4px;
  z-index: 2;
}
.recruit-badge-soon {
  background: var(--red);
}
.recruit-img {
  height: 180px;
  overflow: hidden;
}
.recruit-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.recruit-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.recruit-cat {
  display: inline-block;
  background: var(--blue-light);
  color: var(--blue-deep);
  font-size: 12px;
  padding: 2px 10px;
  border-radius: 3px;
  margin-bottom: 10px;
  align-self: flex-start;
}
.recruit-title {
  font-size: 17px;
  font-weight: bold;
  margin-bottom: 14px;
  line-height: 1.4;
  color: #222;
}
.recruit-info {
  font-size: 13px;
  margin-bottom: 16px;
  border-top: 1px dashed #e0e0e0;
}
.recruit-info > div {
  display: flex;
  border-bottom: 1px dashed #e0e0e0;
  padding: 8px 0;
}
.recruit-info dt {
  width: 80px;
  color: var(--text-sub);
  flex-shrink: 0;
}
.recruit-info dd { margin: 0; }
.recruit-btn {
  display: block;
  margin-top: auto;
  background: var(--blue-dark);
  color: #fff;
  text-align: center;
  padding: 10px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: bold;
}
.recruit-btn:hover { background: var(--blue-deep); opacity: 1; }

@media (max-width: 900px) {
  .recruit-list { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .recruit-list { grid-template-columns: 1fr; }
}

/* 講座カテゴリー絞り込みメニュー */
.course-filter {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0 0 36px;
}
.course-filter-btn {
  display: inline-block;
  padding: 8px 18px;
  border: 1px solid var(--blue-dark);
  border-radius: 999px;
  background: #fff;
  color: var(--blue-dark);
  font-size: 14px;
  font-weight: bold;
  text-decoration: none;
  transition: background .2s, color .2s;
}
.course-filter-btn:hover {
  background: var(--blue-light);
  opacity: 1;
}
.course-filter-btn.is-active {
  background: var(--blue-dark);
  color: #fff;
}
.course-empty {
  text-align: center;
  padding: 48px 20px;
  background: #fff;
  border-radius: 8px;
  color: var(--text-sub);
  font-size: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,.06);
}

/* =========================================
   About Section
========================================= */
.about-block { margin-bottom: 56px; }
.about-heading {
  font-size: 22px;
  font-weight: bold;
  color: var(--blue-deep);
  border-left: 5px solid var(--blue-dark);
  padding-left: 14px;
  margin-bottom: 24px;
  line-height: 1.4;
}
.about-heading-pink {
  color: #d2326e;
  border-left-color: #d2326e;
}
.about-columns {
  display: flex;
  gap: 28px;
  align-items: flex-start;
}
.about-columns-text { flex: 1; }
.about-columns-text p { line-height: 1.9; margin-bottom: 16px; }
.about-signature {
  text-align: right;
  font-weight: bold;
  color: var(--text);
}
.about-columns-img { flex-shrink: 0; width: 193px; max-width: 35%; }
.about-columns-img img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0,0,0,.1);
}
.about-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 28px;
  font-size: 15px;
}
.about-table td {
  border-bottom: 1px dashed #d5d5d5;
  padding: 12px 10px;
  vertical-align: top;
  line-height: 1.7;
}
.about-table td:first-child {
  width: 140px;
  font-weight: bold;
  color: var(--blue-deep);
  white-space: nowrap;
}
.about-figure {
  text-align: center;
  margin: 0 0 28px;
}
.about-figure img {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
}
.about-figure figcaption {
  font-size: 13px;
  color: var(--text-sub);
  margin-top: 10px;
  line-height: 1.6;
}
.about-access-text {
  font-size: 17px;
  line-height: 1.8;
}
@media (max-width: 600px) {
  .about-columns { flex-direction: column; }
  .about-columns-img { width: 60%; max-width: 220px; align-self: center; }
  .about-table td:first-child { width: 110px; }
}

/* =========================================
   News Section
========================================= */
.news-list {
  max-width: 880px;
  margin: 0 auto;
  border-top: 1px solid var(--border);
}
.news-list li {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 8px;
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
}
.news-date {
  color: var(--text-sub);
  font-size: 14px;
  font-weight: 500;
  width: 90px;
  flex-shrink: 0;
}
.news-cat {
  display: inline-block;
  font-size: 11px;
  font-weight: bold;
  padding: 3px 10px;
  border-radius: 3px;
  width: 80px;
  text-align: center;
  flex-shrink: 0;
  color: #fff;
}
.news-cat-info { background: var(--blue-dark); }
.news-cat-result { background: var(--red); }
.news-cat-event { background: #f0ad4e; }
.news-list a {
  flex: 1;
  color: var(--text);
  font-size: 15px;
  min-width: 200px;
}
.news-list a:hover { color: var(--blue-dark); opacity: 1; text-decoration: underline; }

@media (max-width: 600px) {
  .news-list li { gap: 8px; }
  .news-date { width: auto; }
  .news-list a { flex-basis: 100%; }
}

/* =========================================
   Courses Section
========================================= */
.courses { background: var(--blue-light); }
.course-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 980px;
  margin: 0 auto;
}
.course-card {
  background: #fff;
  border: 2px solid var(--blue);
  border-radius: 6px;
  padding: 24px 18px;
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--text);
  transition: all .2s;
  min-height: 110px;
}
.course-card:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
  color: #fff;
  opacity: 1;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(42,127,184,.25);
}
.course-icon {
  width: 60px;
  height: 60px;
  background: var(--blue-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background .2s;
}
.course-card:hover .course-icon {
  background: rgba(255,255,255,.2);
}
.course-icon-mark {
  font-size: 28px;
  color: var(--blue-dark);
  font-weight: bold;
  transition: color .2s;
}
.course-card:hover .course-icon-mark { color: #fff; }
.course-name {
  font-size: 15px;
  font-weight: bold;
  line-height: 1.4;
  letter-spacing: .02em;
}

@media (max-width: 900px) {
  .course-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .course-grid { grid-template-columns: 1fr; }
  .course-card { min-height: auto; }
}

/* =========================================
   CTA Section
========================================= */
.cta-section {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue-deep) 100%);
  color: #fff;
  padding: 60px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: "";
  position: absolute;
  top: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  background: rgba(255,255,255,.05);
  border-radius: 50%;
}
.cta-section::after {
  content: "";
  position: absolute;
  bottom: -120px;
  right: -100px;
  width: 350px;
  height: 350px;
  background: rgba(255,255,255,.05);
  border-radius: 50%;
}
.cta-inner { position: relative; z-index: 1; }
.cta-title {
  font-size: 28px;
  margin-bottom: 12px;
}
.cta-lead {
  font-size: 15px;
  opacity: .9;
  margin-bottom: 28px;
}
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.cta-note {
  font-size: 13px;
  opacity: .85;
}
@media (max-width: 600px) {
  .cta-title { font-size: 22px; }
  .cta-buttons .btn-lg { width: 100%; max-width: 320px; }
}

/* =========================================
   Footer
========================================= */
.footer {
  background: #2a3a45;
  color: #d0d8de;
  padding: 50px 0 0;
  font-size: 14px;
}
.footer a { color: #d0d8de; }
.footer a:hover { color: #fff; opacity: 1; }
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}
.footer-name {
  font-size: 17px;
  color: #fff;
  font-weight: bold;
  margin-bottom: 14px;
  line-height: 1.5;
}
.footer-address { margin-bottom: 14px; line-height: 1.7; }
.footer-tel a {
  font-size: 22px;
  color: #fff;
  font-weight: bold;
  letter-spacing: .03em;
}
.footer-nav h4 {
  color: #fff;
  font-size: 15px;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--blue);
  display: inline-block;
}
.footer-nav ul li { margin-bottom: 8px; }
.footer-nav ul li a {
  font-size: 13px;
  display: block;
  padding: 2px 0;
}
.footer-copy {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 18px 0;
  text-align: center;
  font-size: 12px;
  color: #99a4ad;
}

@media (max-width: 768px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

/* =========================================
   Active Nav State
========================================= */
.gnav a.is-current { color: var(--blue-dark); }
.gnav a.is-current::after {
  content: "";
  display: block;
  width: 24px;
  height: 2px;
  background: var(--red);
  margin: 4px auto 0;
}
@media (max-width: 900px) {
  .gnav a.is-current::after { display: none; }
}

/* =========================================
   Breadcrumb
========================================= */
.breadcrumb {
  background: var(--blue-bg);
  font-size: 13px;
  padding: 12px 0;
  border-bottom: 1px solid #e8eef2;
}
.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.breadcrumb li {
  display: flex;
  align-items: center;
  color: var(--text-sub);
}
.breadcrumb li + li::before {
  content: "›";
  margin-right: 8px;
  color: #aaa;
}
.breadcrumb a { color: var(--blue-dark); }

/* =========================================
   Detail Page Head
========================================= */
.detail-head {
  background: linear-gradient(135deg, var(--blue-light) 0%, #fff 100%);
  padding: 40px 0 30px;
}
.detail-cat {
  display: inline-block;
  background: var(--blue-dark);
  color: #fff;
  font-size: 12px;
  padding: 3px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.detail-title {
  font-size: 28px;
  font-weight: 700;
  color: #222;
  line-height: 1.4;
  margin-bottom: 20px;
}
.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  font-size: 14px;
  color: var(--text-sub);
  border-top: 1px solid #d8e6ee;
  padding-top: 16px;
}
.detail-meta li { display: flex; gap: 8px; align-items: center; }
.detail-meta li span {
  background: #fff;
  border: 1px solid var(--blue);
  color: var(--blue-deep);
  font-size: 11px;
  padding: 2px 8px;
  border-radius: 3px;
  font-weight: 700;
}
@media (max-width: 600px) {
  .detail-title { font-size: 22px; }
  .detail-meta { flex-direction: column; gap: 8px; }
}

/* =========================================
   Detail Hero Image
========================================= */
.detail-hero { padding: 0 0 30px; background: linear-gradient(180deg, #fff 0%, var(--blue-bg) 100%); }
.detail-hero img {
  width: 100%;
  max-height: 460px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 6px 20px rgba(0,0,0,.1);
}

/* =========================================
   Detail Overview
========================================= */
.detail-overview { background: var(--blue-bg); }
.detail-lead {
  font-size: 16px;
  line-height: 2;
  background: #fff;
  padding: 28px 30px;
  border-radius: 8px;
  border-left: 4px solid var(--blue);
  margin-bottom: 30px;
  box-shadow: 0 2px 6px rgba(0,0,0,.04);
}
.detail-box {
  background: #fff;
  border-radius: 8px;
  padding: 30px;
  margin-bottom: 24px;
  box-shadow: 0 2px 6px rgba(0,0,0,.04);
}
.detail-sub-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-left: 14px;
  border-left: 5px solid var(--blue-dark);
  line-height: 1.2;
  color: #222;
}
.detail-sub-title span { display: inline-block; }

.detail-feature-list {
  display: grid;
  gap: 12px;
}
.detail-feature-list li {
  padding: 12px 16px 12px 42px;
  background: var(--blue-light);
  border-radius: 4px;
  position: relative;
  font-weight: 500;
}
.detail-feature-list li::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 50%;
  width: 14px;
  height: 8px;
  border-left: 2px solid var(--red);
  border-bottom: 2px solid var(--red);
  transform: translateY(-70%) rotate(-45deg);
}

.detail-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}
.detail-table th,
.detail-table td {
  text-align: left;
  vertical-align: top;
  padding: 14px 18px;
  border-bottom: 1px solid #e6e6e6;
}
.detail-table th {
  width: 160px;
  background: var(--blue-light);
  color: var(--blue-deep);
  font-weight: 700;
  border-bottom-color: #d8e6ee;
}
.detail-table tr:last-child th,
.detail-table tr:last-child td { border-bottom: none; }
.detail-table small { color: var(--text-sub); font-size: 13px; }
.text-accent-strong {
  color: var(--red);
  font-weight: 700;
  font-size: 17px;
}

@media (max-width: 700px) {
  .detail-box { padding: 20px; }
  .detail-table, .detail-table tbody, .detail-table tr, .detail-table th, .detail-table td {
    display: block;
    width: 100%;
  }
  .detail-table th {
    padding: 8px 12px;
    border-bottom: none;
    width: auto;
  }
  .detail-table td {
    padding: 10px 12px 14px;
  }
}

.detail-address {
  margin-bottom: 16px;
  line-height: 1.7;
}
.detail-map {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0,0,0,.08);
}
.detail-map iframe { display: block; }

/* =========================================
   Application Form
========================================= */
.form-section { background: #fff; }
.apply-form {
  max-width: 880px;
  margin: 0 auto;
  background: var(--blue-bg);
  border: 1px solid #e0ecf3;
  border-radius: 8px;
  padding: 40px;
}
.form-row {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 0 30px;
  padding: 18px 0;
  border-bottom: 1px dashed #d8e6ee;
}
.form-row:first-of-type { padding-top: 0; }
.form-label {
  font-weight: 700;
  padding-top: 12px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  color: #222;
}
.required-label {
  display: inline-block;
  background: var(--red);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 3px;
  line-height: 1.4;
}
.form-input { display: flex; flex-direction: column; }

.apply-form input[type="text"],
.apply-form input[type="tel"],
.apply-form input[type="email"],
.apply-form select,
.apply-form textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid #cfd9e0;
  border-radius: 4px;
  background: #fff;
  font-family: inherit;
  font-size: 15px;
  color: var(--text);
  transition: border-color .2s, box-shadow .2s;
}
.apply-form textarea { resize: vertical; min-height: 120px; }
.apply-form input:focus,
.apply-form select:focus,
.apply-form textarea:focus {
  outline: none;
  border-color: var(--blue-dark);
  box-shadow: 0 0 0 3px rgba(91,169,214,.2);
}
.form-input-zip input { max-width: 180px; }
.form-static {
  padding: 11px 14px;
  background: #fff;
  border: 1px solid #cfd9e0;
  border-radius: 4px;
  font-weight: 700;
  color: var(--blue-deep);
}
.form-check-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 8px 20px;
  padding-top: 8px;
}
.form-check-grid label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
.form-check-grid input { accent-color: var(--blue-dark); }

.form-privacy {
  background: #fff;
  border: 1px solid #d8e6ee;
  border-radius: 6px;
  padding: 18px;
  margin: 30px 0 24px;
  text-align: center;
}
.form-privacy-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-weight: 500;
}
.form-privacy-label input { accent-color: var(--blue-dark); width: 18px; height: 18px; }
.form-privacy-label a { text-decoration: underline; }

.form-submit { text-align: center; }
.form-submit .btn {
  min-width: 320px;
  border: none;
  cursor: pointer;
}

@media (max-width: 768px) {
  .apply-form { padding: 24px 18px; }
  .form-row {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 14px 0;
  }
  .form-label { padding-top: 0; }
  .form-submit .btn { min-width: 0; width: 100%; }
}

/* =========================================
   Thanks（お申込み完了）ページ
   ========================================= */
.thanks-section { background: var(--blue-bg); }
.thanks-box {
  max-width: 720px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 56px 40px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .04);
}
.thanks-icon { color: var(--blue); margin-bottom: 18px; }
.thanks-icon-error { color: var(--red); }
.thanks-title {
  font-size: 26px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 24px;
}
.thanks-lead {
  font-size: 17px;
  line-height: 1.9;
  color: var(--text);
  margin-bottom: 28px;
}
.thanks-note {
  font-size: 14px;
  line-height: 1.9;
  color: var(--text-sub);
  text-align: left;
  background: var(--blue-bg);
  border-radius: 8px;
  padding: 18px 20px;
  margin-bottom: 28px;
}
.thanks-tel {
  margin-bottom: 36px;
}
.thanks-tel span {
  display: block;
  font-size: 13px;
  color: var(--text-sub);
  margin-bottom: 4px;
}
.thanks-tel a {
  font-size: 28px;
  font-weight: 700;
  color: var(--blue-deep);
  letter-spacing: .5px;
}
.thanks-tel small {
  display: block;
  font-size: 12px;
  color: var(--text-sub);
  margin-top: 4px;
}
.thanks-actions { margin-top: 8px; }

@media (max-width: 768px) {
  .thanks-box { padding: 40px 22px; }
  .thanks-title { font-size: 22px; }
  .thanks-lead { font-size: 15px; }
  .thanks-tel a { font-size: 24px; }
}

/* =========================================
   お知らせ（ブログ）詳細ページ
   ========================================= */
.container-narrow { max-width: 820px; }
.news-article {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 48px 44px;
}
.news-article-head {
  padding-bottom: 26px;
  margin-bottom: 34px;
  border-bottom: 2px solid var(--blue-light);
}
.news-article-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.news-article-meta time {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 14px;
  color: var(--blue-deep);
  font-weight: 700;
  letter-spacing: .02em;
}
.news-article-meta time::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
}
.news-article-cat {
  display: inline-block;
  font-size: 12px;
  line-height: 1;
  color: #fff;
  background: var(--blue);
  padding: 5px 10px;
  border-radius: 4px;
}
.news-article-title {
  position: relative;
  padding-left: 16px;
  font-size: 27px;
  font-weight: 700;
  line-height: 1.55;
  color: var(--text);
}
.news-article-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: .2em;
  bottom: .2em;
  width: 5px;
  border-radius: 3px;
  background: var(--blue);
}
.news-article-body {
  font-size: 16px;
  line-height: 1.9;
  color: var(--text);
}
.news-article-body p { margin-bottom: 1.2em; }
.news-article-body p:last-child { margin-bottom: 0; }
.news-article-body a { color: var(--blue-deep); text-decoration: underline; }
.news-article-body img,
.news-article-body .cms_media_image_full {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
  margin: 12px 0;
}
.news-detail-back {
  text-align: center;
  margin-top: 40px;
}

@media (max-width: 768px) {
  .news-article { padding: 32px 22px; }
  .news-article-title { font-size: 21px; }
  .news-article-body { font-size: 15px; }
}

