@charset "UTF-8";
/* =========================
  Variables
========================= */
/* =========================
  Reset / Base
========================= */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 20px;
}
@media (max-width: 860px) {
  html {
    font-size: 16px;
  }
}

body {
  margin: 0;
  font-family: "Kiwi Maru", "Zen Maru Goshic", "Noto Sans JP", "Yu Gothic", "Meiryo", sans-serif;
  color: #17323a;
  line-height: 1.8;
  background: #fff;
}

main {
  margin-top: 0.5rem;
}
@media (max-width: 1350px) {
  main {
    margin-top: 0.6rem;
  }
}

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

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

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

h2 {
  font-size: 1.6rem;
}
@media (max-width: 860px) {
  h2 {
    font-size: 1.2rem;
  }
}

h3 {
  font-size: 1.2rem;
}
@media (max-width: 860px) {
  h3 {
    font-size: 1rem;
  }
}

.mgT2 {
  margin-top: 2rem;
}

.mgL2 {
  margin-left: 2rem;
}

.font_b {
  font-weight: bold;
}

.font24 {
  font-size: 1.2rem;
}

.flex {
  display: flex;
}

.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: 12px;
  padding: 8px 12px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
  transform: translateY(-140%);
  transition: transform 0.2s ease;
  z-index: 9999;
}
.skip-link:focus {
  transform: translateY(0);
}

/* =========================
  Layout
========================= */
.l-container {
  width: min(100% - 40px, 1100px);
  margin-inline: auto;
}
@media (max-width: 640px) {
  .l-container {
    width: min(100% - 24px, 1100px);
  }
}

.center {
  width: 100%;
  text-align: center;
  margin: 0 auto;
}

/* =========================
  Buttons / Badge
========================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  padding: 15px 30px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  line-height: 1;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
}
.btn:hover {
  transform: translateY(-1px);
}
.btn:active {
  transform: translateY(0);
}

.btn--primary {
  background: #0c6f7a;
  color: #fff;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
  font-size: 1rem;
  font-weight: normal;
}
.btn--primary:hover {
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
}

.btn--ghost {
  background: #9ad4e6;
  color: #17323a;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.btn--header {
  font-size: 0.8rem;
  background: #9ad4e6;
  color: #17323a;
  padding: 12px 18px;
  font-weight: normal;
  border-radius: 8px;
  box-shadow: 2px 4px 0 rgba(0, 0, 0, 0.25);
}

.btn--lg {
  padding: 16px 28px;
}

.btn--sm {
  padding: 10px 16px;
  font-size: 14px;
}

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 10px;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 700;
  border: 1px solid rgba(0, 0, 0, 0.1);
  white-space: nowrap;
}

.badge--info {
  border-color: rgba(12, 111, 122, 0.25);
  background: rgba(154, 212, 230, 0.25);
}

.badge--column {
  border-color: rgba(60, 160, 120, 0.25);
  background: rgba(160, 220, 190, 0.25);
}

/* =========================
  Section titles / prose
========================= */
.section {
  padding: 64px 0;
}
@media (max-width: 640px) {
  .section {
    padding: 48px 0;
  }
}

.section--soft {
  background: #eef7fb;
}

.section-title {
  font-weight: 700;
  font-size: 1.6rem;
  letter-spacing: 0.04em;
  text-align: center;
  margin-bottom: 28px;
  position: relative;
}
@media (max-width: 860px) {
  .section-title {
    font-size: 1.4rem;
  }
}
@media (max-width: 420px) {
  .section-title {
    font-size: 1.2rem;
  }
}
.section-title::after {
  content: "";
  display: block;
  width: 44px;
  height: 3px;
  margin: 10px auto 0;
  border-radius: 3px;
  background: rgba(12, 111, 122, 0.55);
}

.section-lead {
  text-align: center;
  margin-top: 18px;
}

/* ---- Responsive base ---- */
:root {
  --gap: 24px;
  --section-pad: 72px;
}

@media (max-width: 860px) {
  :root {
    --gap: 16px;
    --section-pad: 56px;
  }
}
@media (max-width: 640px) {
  :root {
    --gap: 12px;
    --section-pad: 44px;
  }
}
/* セクション共通の余白（.section が多いので） */
.section {
  padding: var(--section-pad) 0;
}

/* コンテナの左右余白（既にある場合は上書きでOK） */
.l-container {
  width: min(1100px, 100% - 32px);
  margin-inline: auto;
}

@media (max-width: 640px) {
  .l-container {
    width: min(1100px, 100% - 20px);
  }
}
/* =========================
  Header
========================= */
.site-header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.6);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}

.site-header__inner {
  margin: 0 auto;
  max-width: 1600px;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 1rem;
}
@media (max-width: 1350px) {
  .site-header__inner {
    flex-direction: column;
  }
}
@media (max-width: 860px) {
  .site-header__inner {
    flex-direction: row;
  }
}

/* =========================
  Logo
========================= */
.site-logo a {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
}

.site-logo__en {
  font-size: 2.4rem;
  letter-spacing: 0.02em;
}
@media (max-width: 1350px) {
  .site-logo__en {
    font-size: 2rem;
  }
}
@media (max-width: 860px) {
  .site-logo__en {
    font-size: 1.2rem;
  }
}

.site-logo__jp {
  font-size: 1.6rem;
  letter-spacing: 0.02em;
}
@media (max-width: 1350px) {
  .site-logo__jp {
    font-size: 1.4rem;
  }
}
@media (max-width: 860px) {
  .site-logo__jp {
    font-size: 0.8rem;
  }
}

/* =========================
  Global Nav (PC base)
========================= */
.global-nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.global-nav__list {
  display: flex;
  gap: 18px;
  font-size: 16px;
  color: #6b7a80;
}
.global-nav__list a {
  display: block;
  padding: 10px 8px;
  border-radius: 10px;
  font-size: 16px;
}
.global-nav__list a.is-current {
  color: #17323a;
  font-weight: 800;
}
.global-nav__list a:hover {
  color: #17323a;
  background: rgba(0, 0, 0, 0.04);
}

.btn--header {
  white-space: nowrap;
  padding: 30px 15px;
}

/* ---- JS挿入用（PCでは存在しない想定だが、念のため隠す） ---- */
.global-nav__list--mobile,
.global-nav__brand--mobile {
  display: none;
}

/* =========================
  Hamburger Button
========================= */
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: #fff;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
  cursor: pointer;
}
@media (max-width: 860px) {
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 6px;
  }
}
.nav-toggle__bar {
  display: block;
  width: 20px;
  height: 2px;
  background: #17323a;
  border-radius: 2px;
  transition: 0.2s ease;
}

/* --- Burger X animation --- */
body.is-nav-open {
  overflow: hidden; /* 背景のスクロールを止める */
}
body.is-nav-open .nav-toggle__bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
body.is-nav-open .nav-toggle__bar:nth-child(2) {
  opacity: 0;
}
body.is-nav-open .nav-toggle__bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* =========================
  Mobile Nav
========================= */
@media (max-width: 860px) {
  .global-nav {
    position: fixed;
    inset: 78px 0 auto 0;
    background: rgba(255, 255, 255, 0.98);
    padding: 18px 20px 22px;
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    transform: translateY(-120%);
    transition: transform 0.25s ease;
  }
  body.is-nav-open .global-nav {
    transform: translateY(0);
  }
  /* モバイルではヘッダーの通常ナビ（PC用）を隠す */
  .global-nav__list {
    display: none;
  }
  /* JSが挿入したフッターメニューを表示 */
  .global-nav__list--mobile {
    max-width: 400px;
    display: flex;
    flex-direction: column;
    align-items: first baseline;
    margin: 0 auto;
    gap: 8px;
  }
  .global-nav__list--mobile li {
    text-align: left;
  }
  .global-nav__list--mobile a {
    display: block;
    padding: 12px 10px;
    border-radius: 10px;
  }
  .global-nav__list--mobile a:hover {
    background: rgba(0, 0, 0, 0.04);
  }
  /* JSが挿入したフッターブランドを表示 */
  .global-nav__brand--mobile {
    display: block;
    text-align: center;
    padding-top: 14px;
    margin-top: 6px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    /* もともとの.footer-brandの見た目を少しだけ整える */
  }
  .global-nav__brand--mobile .footer-brand__logo {
    font-size: 1.6rem;
    letter-spacing: 0.06em;
  }
  .global-nav__brand--mobile .footer-brand__hours {
    font-size: 0.9rem;
    opacity: 0.9;
  }
  .btn--header {
    max-width: 200px;
    margin: 0 auto;
    width: 80%;
  }
}
/* Index only: remove underline from section titles */
body.page-index .section-title::after {
  content: none;
}

/* =========================
  Hero
========================= */
.hero {
  position: relative;
  background: url(../img/mainV.png) no-repeat 90% 80%/40%;
  display: flex;
  flex-direction: column;
  min-height: 650px;
  font-family: "Kiwi Maru";
  overflow: hidden;
}
@media (max-width: 1770px) {
  .hero {
    background-size: 50%;
    background-position: 110% 80%;
  }
}
@media (max-width: 1388px) {
  .hero {
    min-height: 450px;
    background-size: 70%;
    background-position: 140% 50%;
  }
}
@media (max-width: 1010px) {
  .hero {
    background-size: 60%;
    background-position: 130% 30%;
    min-height: 300px;
  }
}
@media (max-width: 860px) {
  .hero {
    background-size: 60%;
    background-position: 110% center;
    min-height: 300px;
  }
}
@media (max-width: 650px) {
  .hero {
    min-height: 300px;
    background: linear-gradient(rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5)), url(../img/mainV.png) no-repeat 100% center/90%;
  }
}
@media (max-width: 420px) {
  .hero {
    background-size: 120%;
    background-position: 50% center;
  }
}
.hero__inner {
  font-family: "Kiwi Maru";
  max-width: 1600px;
  width: 100%;
  min-height: 650px;
  margin: 0 auto;
  padding: 2rem;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
}
@media (max-width: 1555px) {
  .hero__inner {
    grid-template-columns: 2.2fr 1fr;
  }
}
@media (max-width: 1388px) {
  .hero__inner {
    grid-template-columns: 1fr;
    min-height: 450px;
  }
}
@media (max-width: 1262px) {
  .hero__inner {
    min-height: 450px;
  }
}
@media (max-width: 1010px) {
  .hero__inner {
    min-height: 300px;
    padding: 1rem;
  }
}
@media (max-width: 650px) {
  .hero__inner {
    min-height: 200px;
    padding: 1rem;
  }
}
.hero__copy {
  display: flex;
  flex-direction: column;
  font-weight: bold;
  width: 100%;
  font-family: "Zen Maru Gothic";
}
.hero__lead {
  font-size: 2.8rem;
  font-weight: bold;
  line-height: 1.4;
  letter-spacing: 0.05em;
  color: white;
  -webkit-text-stroke: 2px #546E7A;
  text-shadow: 2px 4px 4px #056E8B;
}
@media (max-width: 1388px) {
  .hero__lead {
    font-size: 2rem;
  }
}
@media (max-width: 1388px) {
  .hero__lead {
    font-size: 1.9rem;
  }
}
@media (max-width: 900px) {
  .hero__lead {
    font-size: 1.5rem;
    -webkit-text-stroke: 0.7px #546E7A;
    text-shadow: 1px 2px 2px #056E8B;
  }
}
@media (max-width: 650px) {
  .hero__lead {
    margin: 0 auto;
  }
}
.hero__sub {
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.7;
  margin-top: 1.5rem;
  color: white;
  -webkit-text-stroke: 0.7px #546E7A;
  text-shadow: 1px 2px 2px #056E8B;
}
@media (max-width: 1388px) {
  .hero__sub {
    font-size: 1.2rem;
  }
}
@media (max-width: 900px) {
  .hero__sub {
    font-size: 0.9rem;
  }
}
@media (max-width: 650px) {
  .hero__sub {
    margin: 1rem auto;
  }
}
.hero__overlay {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding-bottom: 1rem;
}
@media (max-width: 1388px) {
  .hero__overlay {
    align-items: start;
  }
}
@media (max-width: 1010px) {
  .hero__overlay {
    padding-bottom: 0;
  }
}
@media (max-width: 650px) {
  .hero__overlay {
    margin: 0 auto;
    align-items: center;
  }
}
.hero__note {
  font-size: 0.8rem;
  color: #17323a;
  margin-top: 0.5rem;
}
@media (max-width: 1262px) {
  .hero__note {
    font-size: 0.6rem;
  }
}
.hero .btn--hero {
  color: #546E7A;
  font-size: 1.6rem;
  margin-top: 1.5rem;
  width: 400px;
  padding: 30px 80px;
  box-shadow: #fff 4px 4px 4px;
  word-break: keep-all;
}
@media (max-width: 1555px) {
  .hero .btn--hero {
    width: 280px;
    font-size: 1.2rem;
    padding: 20px 60px;
  }
}
@media (max-width: 1388px) {
  .hero .btn--hero {
    width: 280px;
    font-size: 1rem;
    padding: 20px 40px;
  }
}
@media (max-width: 700px) {
  .hero .btn--hero {
    width: 180px;
  }
}
.hero .scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: #0c6f7a;
  font-size: 12px;
  text-decoration: none;
  z-index: 10;
  transition: opacity 0.3s ease;
}
@media (max-width: 860px) {
  .hero .scroll-indicator {
    display: none;
  }
}
.hero .scroll-indicator p {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0;
}
.hero .scroll-indicator i {
  display: block;
  width: 10px;
  height: 10px;
  border-right: 2px solid #0c6f7a;
  border-bottom: 2px solid #0c6f7a;
  transform: rotate(45deg);
  position: relative;
  margin-top: 5px;
}
.hero .scroll-indicator i::after {
  content: "";
  position: absolute;
  top: 5px;
  left: 5px;
  width: 10px;
  height: 10px;
  border-right: 2px solid #0c6f7a;
  border-bottom: 2px solid #0c6f7a;
}
.hero .scroll-indicator.is-animating i {
  -webkit-animation: scroll-bounce 2.5s infinite ease-in-out;
          animation: scroll-bounce 2.5s infinite ease-in-out;
}
.hero .scroll-indicator:hover {
  opacity: 0.7;
}
@-webkit-keyframes scroll-bounce {
  0%, 10%, 100% {
    transform: translateY(0) rotate(45deg);
  }
  5% {
    transform: translateY(8px) rotate(45deg);
  }
}
@keyframes scroll-bounce {
  0%, 10%, 100% {
    transform: translateY(0) rotate(45deg);
  }
  5% {
    transform: translateY(8px) rotate(45deg);
  }
}

/* =========================
  Worry cards / features
========================= */
#worries {
  overflow: hidden;
}
#worries .l-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#worries .section-title::after {
  display: none;
}
#worries .worry-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}
@media (max-width: 980px) {
  #worries .worry-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  #worries .worry-cards {
    grid-template-columns: 1fr;
  }
}
#worries .worry-card {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  border-radius: 16px;
  padding: 20px 30px;
  text-align: center;
  margin: 0 auto;
  place-items: center; /* これが上下左右中央寄せ */
}
#worries .worry-card img {
  display: block;
  padding: 20px;
  margin: 0 auto;
}
#worries .worry-card h3 {
  font-size: 1.2rem;
  line-height: 1.35;
  text-align: center;
  align-items: center;
}
#worries .worry-card p {
  text-align: center;
  font-size: 0.9rem;
  line-height: 1.6;
  align-items: center;
}
#worries .worry-card--pink {
  background: #fdecef;
}
#worries .worry-card--yellow {
  background: #fbf6d9;
}
#worries .worry-card--green {
  background: #e7f5dd;
}
#worries .worry-card--blue {
  background: #e3edfb;
}
#worries .worry-text {
  margin: 3rem auto;
  position: relative;
}
#worries .worry-text::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  top: 7.5rem;
  left: -20rem;
  background-image: url(../img/coffeebeans.png);
  background-repeat: no-repeat;
  background-size: 100%;
}
@media (max-width: 1066px) {
  #worries .worry-text::before {
    background-size: 80%;
    top: 8.5rem;
    left: 18rem;
  }
}
@media (max-width: 650px) {
  #worries .worry-text::before {
    display: none;
  }
}
#worries .worry-text::after {
  content: "";
  position: absolute;
  width: 500px;
  height: 200px;
  top: 4.5rem;
  left: 25rem;
  background-image: url(../img/heart.png);
  background-repeat: no-repeat;
  background-size: 40%;
}
@media (max-width: 1066px) {
  #worries .worry-text::after {
    background-size: 30%;
    top: 5.2rem;
    left: 25rem;
  }
}
@media (max-width: 650px) {
  #worries .worry-text::after {
    display: none;
  }
}
#worries .worry-text .tx-c {
  text-align: center;
}
#worries .worry-text h3 {
  font-size: 1.2rem;
  padding-top: 2rem;
  text-align: left;
  font-weight: 700;
}
@media (max-width: 420px) {
  #worries .worry-text h3 {
    font-size: 1.1rem;
  }
}
#worries .worry-text p {
  padding-top: 0.5rem;
  text-align: left;
  color: #17323a;
  line-height: 1.7;
}

/* =========================
  News list
========================= */
#top_news .section-title::after {
  display: none;
}

.news-list {
  max-width: 820px;
  margin: 0 auto 18px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.news-item {
  display: grid;
  grid-template-columns: 120px 90px 1fr;
  gap: 12px;
  align-items: center;
  padding: 14px 4px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  font-size: 0.9rem;
}
.news-item:hover {
  background: rgba(0, 0, 0, 0.02);
}
.news-item__date {
  color: #6b7a80;
}
.news-item .badge--info {
  font-weight: normal;
}
@media (max-width: 640px) {
  .news-item {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .news-item .badge {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    font-size: 0.8rem;
  }
}

/* =========================
  prose
========================= */
#thoughts .section-title::after {
  display: none;
}

.prose {
  max-width: 820px;
  margin: 0 auto 24px;
  text-align: left;
}
.prose p + p {
  margin-top: 14px;
}

/* =========================
  Sessions
========================= */
.top_counseling .section-title::after {
  display: none;
}

.session-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 18px;
}
@media (max-width: 860px) {
  .session-cards {
    grid-template-columns: 1fr;
  }
}

.session-card {
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
  text-align: center;
}
.session-card__img {
  height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.session-card h3 {
  font-weight: normal;
  color: white;
  padding: 14px 12px 16px;
  font-size: 1rem;
  background-color: #546E7A;
}
.session-card h3 span {
  font-size: 1rem;
}

/* =========================
  Voices slider (PC=3 / SP=1)
========================= */
#top_voice .section-title::after {
  display: none;
}

.voice-slider {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  --gap: 24px;
  --side: clamp(16px, 4vw, 64px);
  --perView: 3.8; /* PCは3.8枚見える */
  position: relative;
}

@media (max-width: 1200px) {
  .voice-slider {
    --perView: 2; /* 1200px以下は2枚きれいに表示 */
  }
}
@media (max-width: 420px) {
  .voice-slider {
    --perView: 1.15;
    --slideGap: 16px;
    padding: 0 0; /* SPは矢印を内側に重ねるので不要なら0 */
  }
}
.voice-slider__viewport {
  overflow: hidden;
  padding-inline: clamp(16px, 4vw, 64px);
}

.voice-slider__track {
  display: flex;
  gap: var(--gap);
  will-change: transform;
  transition: transform 500ms ease;
}

/* 3.8枚見える幅を作る（小数でもOK） */
.voice-slider [data-slide] {
  flex: 0 0 calc((100% - var(--gap) * (var(--perView) - 1)) / var(--perView));
}

.voice-slider__arrow--prev {
  left: 8px;
}

.voice-slider__arrow--next {
  right: 8px;
}

/* 1枚の幅 = (viewport - gap*(perView-1)) / perView */
.voice {
  min-width: 0;
}

/* ---- arrows ---- */
.voice-slider__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  background: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
}
.voice-slider__arrow::before {
  content: "";
  width: 10px;
  height: 10px;
  border-right: 2px solid #17323a;
  border-bottom: 2px solid #17323a;
}

.voice-slider__arrow--prev {
  left: 8px;
}

.voice-slider__arrow--prev::before {
  transform: rotate(135deg);
  margin-left: 2px;
}

.voice-slider__arrow--next {
  right: 8px;
}

.voice-slider__arrow--next::before {
  transform: rotate(-45deg);
  margin-right: 2px;
}

@media (max-width: 860px) {
  .voice-slider__arrow--prev {
    left: 10px;
  }
  .voice-slider__arrow--next {
    right: 10px;
  }
}
/* ---- dots ---- */
.voice-slider__dots {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 14px;
}
.voice-slider__dots button {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  background: transparent;
}
.voice-slider__dots button.is-active {
  background: rgba(12, 111, 122, 0.55);
  border-color: rgba(12, 111, 122, 0.55);
}

.voice__btn {
  margin: 1rem auto;
}

/* =========================
  Bubble: 長文でも崩れにくく
========================= */
.voice__bubble {
  width: 100%;
  background-image: url(../img/bubble.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
  /* 長文耐性 */
  display: flex;
  flex-direction: column;
  overflow-wrap: anywhere;
  word-break: break-word;
  /* 伸びても破綻しにくいpadding（好みで調整） */
  padding: clamp(28px, 3vw, 50px) clamp(16px, 2vw, 20px) clamp(80px, 6vw, 120px);
}

.voice__bubble p {
  line-height: 1.8;
}

.voice__name {
  margin-top: auto; /* 本文が伸びても名前を下に寄せる */
  padding-top: 10px;
  text-align: right;
}

/* =========================
  CTA
========================= */
.cta {
  position: relative;
  padding: 0 0 0;
}

.cta__inner {
  width: 100%;
  margin: 0 auto;
}

.cta__bg {
  background: linear-gradient(rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5)), url("../img/announce.png") center/cover no-repeat;
  min-height: 480px;
  padding: 80px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}
@media (max-width: 1366px) {
  .cta__bg {
    min-height: 300px;
  }
}
@media (max-width: 1000px) {
  .cta__bg {
    min-height: 250px;
  }
}
@media (max-width: 860px) {
  .cta__bg {
    min-height: 200px;
  }
}
@media (max-width: 420px) {
  .cta__bg {
    min-height: 200px;
    padding: 2rem;
  }
}
.cta__bg h2 {
  font-size: 1.6rem;
  letter-spacing: 0.04em;
}
@media (max-width: 1000px) {
  .cta__bg h2 {
    font-size: 1.4rem;
  }
}
@media (max-width: 700px) {
  .cta__bg h2 {
    font-size: 1.2rem;
  }
}
.cta__bg .btn--cta {
  color: #546E7A;
  font-size: 1.6rem;
  margin: 1.5rem 5rem;
  width: 360px;
  padding: 30px 80px;
  box-shadow: #fff 4px 4px 4px;
}
@media (max-width: 1555px) {
  .cta__bg .btn--cta {
    width: 280px;
    font-size: 1.2rem;
    padding: 20px 60px;
  }
}
@media (max-width: 1388px) {
  .cta__bg .btn--cta {
    width: 280px;
    font-size: 1rem;
    padding: 20px 40px;
  }
}
@media (max-width: 860px) {
  .cta__bg .btn--cta {
    width: 200px;
    padding: 1rem;
  }
}
@media (max-width: 420px) {
  .cta__bg .btn--cta {
    margin: 0;
  }
}

.cta__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  font-family: "BIZ UDGothic";
  word-break: keep-all;
}
@media (max-width: 860px) {
  .cta__cols {
    grid-template-columns: 1fr;
  }
}

.cta-card {
  padding: 40px 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 0.8rem;
  align-items: center;
}
.cta-card h3 {
  text-align: center;
  font-size: 1.45rem;
  line-height: 1;
}
@media (max-width: 420px) {
  .cta-card h3 {
    font-size: 1.2rem;
  }
}
.cta-card p {
  color: #0B2430;
  font-size: 0.9rem;
  line-height: 1.75;
  width: 100%;
  margin: 0 auto;
}
@media (max-width: 420px) {
  .cta-card p {
    font-size: 0.9rem;
  }
}
.cta-card__box {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(12, 111, 122, 0.22);
  border-radius: 16px;
  padding: 14px 30px;
}
.cta-card__box ul {
  list-style: disc;
  padding-left: 1.2em;
}
.cta-card__box li {
  color: #0B2430;
  font-size: 0.8rem;
}
.cta-card__boxTitle {
  text-align: center;
  margin-bottom: 6px;
}

.cta-card--mint {
  background: linear-gradient(to bottom, #EBFFE6, #F5FFF1, #EDFFE6);
  line-height: 2;
}
.cta-card--mint p {
  width: 50%;
}
@media (max-width: 1500px) {
  .cta-card--mint p {
    width: 60%;
  }
}
@media (max-width: 1100px) {
  .cta-card--mint p {
    width: 80%;
  }
}
@media (max-width: 420px) {
  .cta-card--mint p {
    width: 100%;
  }
}

.cta-card--ice {
  background-image: url(../img/back_ice.png);
  background-size: cover;
  background-position: 50%;
  background-repeat: no-repeat;
}
.cta-card--ice p {
  width: 85%;
}
@media (max-width: 420px) {
  .cta-card--ice p {
    width: 90%;
  }
}

/* =========================
  Footer
========================= */
.site-footer {
  background: #0c6f7a;
  color: #fff;
  padding: 80px 0;
}
@media (max-width: 860px) {
  .site-footer {
    display: none;
  }
}

.footer-nav {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 0.8rem;
  opacity: 0.9;
}
.footer-nav a:hover {
  text-decoration: underline;
}

.footer-brand {
  text-align: center;
  margin-top: 2rem;
}
.footer-brand__logo {
  font-size: 2rem;
  letter-spacing: 0.06em;
}
.footer-brand__hours {
  font-size: 1rem;
  opacity: 0.9;
}

.copyright {
  text-align: center;
  align-items: end;
  margin-top: 1rem;
  font-size: 0.7rem;
  opacity: 0.75;
}

/* =========================
  Pagination
========================= */
.pagination {
  margin-top: 48px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.pagination .nav-links {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 0 8px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  background: #fff;
  color: #17323a;
  font-size: 16px;
  font-weight: 700;
  transition: all 0.2s ease;
}
.pagination .page-numbers:hover:not(.dots):not(.current) {
  background: #eef7fb;
  border-color: #0c6f7a;
  color: #0c6f7a;
}
.pagination .page-numbers.current {
  background: #0c6f7a;
  border-color: #0c6f7a;
  color: #fff;
  cursor: default;
}
.pagination .page-numbers.dots {
  border: none;
  background: transparent;
  min-width: 24px;
}
.pagination .page-numbers.prev, .pagination .page-numbers.next {
  padding: 0 16px;
  font-size: 14px;
}
@media (max-width: 420px) {
  .pagination .page-numbers.prev, .pagination .page-numbers.next {
    padding: 0 12px;
  }
}

/* =========================
  Sub Pages (Bottom pages)
========================= */
.page--sub {
  padding-top: 0;
}

.page-hero {
  max-height: 160px;
  height: auto;
  background-image: url(../img/bottom_title.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.page-hero__title {
  text-align: center;
  font-size: 1.8rem;
  letter-spacing: 0.06em;
  color: #0c6f7a;
  padding: 3rem;
  font-weight: bold;
}
@media (max-width: 1100px) {
  .page-hero__title {
    padding: 1.5rem;
  }
}
@media (max-width: 420px) {
  .page-hero__title {
    font-size: 1.2rem;
  }
}

.sub-lead {
  max-width: 900px;
  margin: 0 auto 80px;
  text-align: center;
}

.sub-prose {
  max-width: 860px;
  margin: 0 auto;
}

/* --- About: greeting layout --- */
.about-greeting {
  display: grid;
  grid-template-columns: 320px 0.9fr;
  gap: 50px;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}
@media (max-width: 860px) {
  .about-greeting {
    grid-template-columns: 1fr;
    place-items: center;
  }
}

.about-greeting__img img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
  border: 5px solid #056E8B;
}
@media (max-width: 860px) {
  .about-greeting__img img {
    width: 50%;
    margin: 0 auto;
  }
}

.about-greeting__caption {
  text-align: center;
  margin-top: 10px;
  font-weight: 700;
  color: #6b7a80;
}

.company-box {
  max-width: 860px;
  margin: 0 auto;
  border-radius: 22px;
  background: rgba(154, 212, 230, 0.18);
  border: 1px solid rgba(12, 111, 122, 0.2);
  padding: 22px 22px;
}

.company-dl__row {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 14px;
  padding: 10px 0;
}
.company-dl__row:last-child {
  border-bottom: none;
}
.company-dl__row dt {
  font-weight: 800;
  color: #0c6f7a;
}
.company-dl__row dd {
  margin: 0;
}
@media (max-width: 640px) {
  .company-dl__row {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}

.company-list {
  padding-left: 1.2em;
  list-style: disc;
}

/* --- Service: features + menu cards --- */
.counseling {
  word-break: keep-all;
}
.counseling__lead {
  text-align: left;
  max-width: 825px;
  margin: 0 auto 1rem;
  padding: 0 1rem;
}

.feature-list {
  max-width: 520px;
  width: auto;
  margin: 0 auto 1rem;
  text-align: left;
  padding-left: 30px;
}
.feature-list li {
  list-style: disc;
}

.menu-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
@media (max-width: 800px) {
  .menu-cards {
    grid-template-columns: 1fr;
  }
}

.menu-card {
  background: #fff;
  border-radius: 22px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 22px;
}
.menu-card__header {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: auto;
}
@media (max-width: 1000px) {
  .menu-card__header {
    grid-template-columns: 0.5fr 0.5fr;
    grid-template-rows: 1fr 1fr;
  }
}
@media (max-width: 420px) {
  .menu-card__header {
    grid-template-columns: 2fr 1fr;
    grid-template-rows: auto;
  }
}
.menu-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
}
@media (max-width: 1150px) {
  .menu-card h3 {
    font-size: 1rem;
  }
}
@media (max-width: 800px) {
  .menu-card h3 {
    font-size: 1.2rem;
  }
}
@media (max-width: 800px) {
  .menu-card img {
    width: 130px;
    place-self: center;
    grid-row: 1/3;
    grid-column: 2/3;
  }
}
@media (max-width: 420px) {
  .menu-card img {
    width: 100px;
  }
}
.menu-card--price {
  grid-row: 2/3;
  grid-column: 1/3;
}
@media (max-width: 800px) {
  .menu-card--price {
    grid-column: 1/2;
    place-content: center;
  }
}
@media (max-width: 420px) {
  .menu-card--price {
    grid-row: 2/3;
    grid-column: 1/3;
  }
}
.menu-card--text {
  margin-top: 1rem;
}
.menu-card--trial {
  border: #E9F368 dotted 3px;
}
.menu-card--session {
  border: #7FF368 dotted 3px;
}
.menu-card--course {
  border: #D768F3 dotted 3px;
}

/* sticky header 分だけずらす（例：ヘッダーが約78px想定） */
:root {
  --header-h: 127px;
}

@media (max-width: 1350px) {
  :root {
    --header-h: 206px;
  }
}
@media (max-width: 860px) {
  :root {
    --header-h: 76px;
  }
}
/* アンカー対象に付与 */
#trialplan,
#oneplan,
#continueplan {
  scroll-margin-top: calc(var(--header-h) + 12px); /* 12pxは気持ちの余白 */
}

.cta__cols--only {
  margin-top: 8px;
}

/* --- News: grid cards --- */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 1100px;
  margin: 0 auto;
}
@media (max-width: 1000px) {
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .news-grid {
    grid-template-columns: 1fr;
  }
}

.news-card {
  background: #fff;
  border-radius: 22px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.news-card__thumb {
  height: 180px;
  background: rgba(0, 0, 0, 0.1);
}
.news-card__thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.news-card__body {
  padding: 16px 16px 18px;
}

.news-card__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.news-card__date {
  font-weight: 800;
  color: #6b7a80;
}

.news-card__title {
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.news-card__text {
  color: #6b7a80;
  font-size: 0.95rem;
}

/* --- Voices: grid cards --- */
.voices-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 1100px;
  margin: 0 auto;
}
@media (max-width: 1000px) {
  .voices-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .voices-grid {
    grid-template-columns: 1fr;
  }
}

.voice-card {
  background: #fff;
  border-radius: 22px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.voice-card__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
}

.voice-card__header {
  padding: 16px 16px 0;
}

.voice-card__title {
  font-size: 1.05rem;
  line-height: 1.5;
  position: relative;
  /* 前後に『』を自動付与 */
}
.voice-card__title::before {
  content: "『";
  margin-right: 2px;
}
.voice-card__title::after {
  content: "』";
  margin-left: 2px;
}

.voice-card__body {
  padding: 18px 16px 18px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.voice-card__excerpt {
  font-size: 0.95rem;
  line-height: 1.8;
  color: #17323a;
  position: relative;
  padding-left: 0.5rem;
  margin-bottom: 24px;
}

.voice-card__meta {
  margin-top: auto; /* これで最下部に固定 */
  padding-top: 12px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.voice-card__name {
  font-weight: 800;
  font-size: 0.85rem;
  color: #6b7a80;
}

.voice-card__tag {
  font-size: 0.8rem;
  font-weight: 700;
  color: #0c6f7a;
  background: rgba(154, 212, 230, 0.25);
  border: 1px solid rgba(12, 111, 122, 0.22);
  border-radius: 999px;
  padding: 6px 10px;
  white-space: nowrap;
}

/* --- Contact: form --- */
.contact-form {
  max-width: 560px;
  margin: 0 auto;
  padding: 26px 22px;
  border-radius: 22px;
  border: 1px solid rgba(12, 111, 122, 0.25);
  background: rgba(154, 212, 230, 0.14);
}
.contact-form .form-row {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
  position: relative;
}
.contact-form .form-row__choice::after {
  content: "";
  position: absolute;
  right: 16px;
  top: 70%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  background-image: url("data:image/svg+xml;utf8,  <svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none' stroke='%23056E8B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'>  <polyline points='6 8 10 12 14 8'/>  </svg>");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  pointer-events: none;
}
.contact-form .form-row label {
  font-weight: 800;
}
.contact-form .form-row select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 40px;
}
.contact-form .form-row input,
.contact-form .form-row select,
.contact-form .form-row textarea {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.14);
  background: #fff;
  padding: 12px 14px;
  outline: none;
}
.contact-form .form-row input:focus,
.contact-form .form-row select:focus,
.contact-form .form-row textarea:focus {
  border-color: rgba(12, 111, 122, 0.55);
  box-shadow: 0 0 0 4px rgba(154, 212, 230, 0.3);
}
.contact-form .form-row .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}
.contact-form .form-row textarea {
  resize: vertical;
}
.contact-form .req {
  color: #056E8B;
  font-weight: 900;
}
.contact-form .form-check {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 10px 0 6px;
}
.contact-form .form-check input {
  width: 15px;
  height: 15px;
  background-color: #fff;
  border: #056E8B solid 0.5px;
  border-radius: 5px;
  -webkit-appearance: auto;
     -moz-appearance: auto;
          appearance: auto;
}
.contact-form .form-check label {
  font-weight: 700;
}
.contact-form .privacy-link {
  text-align: left;
  margin-left: 1rem;
  margin-bottom: 18px;
}
.contact-form .privacy-link a {
  text-decoration: underline;
  color: #0c6f7a;
}
.contact-form .center span {
  display: none;
}

/* CTA（サブページは2カラムを出さない想定） */
.cta--simple .cta__cols {
  display: none;
}

/* =========================
  Voice Detail（背景なし）
========================= */
.voice-detail {
  max-width: 820px;
  margin: 0 auto;
}

.voice-detail__header {
  margin-bottom: 18px;
}

.voice-detail__title {
  font-size: 1.2rem;
  line-height: 1.5;
  margin-bottom: 14px;
  /* 前後に『』を自動付与 */
}
.voice-detail__title::before {
  content: "『";
  margin-right: 2px;
}
.voice-detail__title::after {
  content: "』";
  margin-left: 2px;
}

.voice-detail__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 0.9rem;
}
@media (max-width: 640px) {
  .voice-detail__meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}

.voice-detail__tag {
  background: rgba(154, 212, 230, 0.25);
  border: 1px solid rgba(12, 111, 122, 0.22);
  color: #0c6f7a;
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 0.8rem;
  white-space: nowrap;
}

.voice-detail__content {
  background: #fff;
  border-radius: 22px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
  padding: 36px 32px;
  line-height: 1.9;
  font-size: 1rem;
}
@media (max-width: 640px) {
  .voice-detail__content {
    padding: 24px 20px;
  }
}
.voice-detail__content p + p {
  margin-top: 1.2rem;
}

/* =========================
  Voice detail prev/next nav
========================= */
.voice-detail-nav {
  max-width: 820px;
  margin: 28px auto 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 12px;
  align-items: stretch;
}
@media (max-width: 860px) {
  .voice-detail-nav {
    grid-template-columns: 1fr;
  }
}

.voice-detail-nav__prev,
.voice-detail-nav__next {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  padding: 14px;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: #fff;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
  min-height: 64px;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.voice-detail-nav__prev:hover,
.voice-detail-nav__next:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

.voice-detail-nav__next {
  text-align: right;
}

.voice-detail-nav__label {
  font-size: 0.8rem;
  color: #6b7a80;
}

.voice-detail-nav__title {
  font-size: 0.8rem;
  color: #17323a;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  /* 前後に『』を自動付与 */
}
.voice-detail-nav__title::before {
  content: "『";
  margin-right: 2px;
}
.voice-detail-nav__title::after {
  content: "』";
  margin-left: 2px;
}

.voice-detail-nav__back {
  align-self: center;
  white-space: nowrap;
}
@media (max-width: 860px) {
  .voice-detail-nav__back {
    width: 100%;
    justify-content: center;
  }
}

/* =========================
  News detail (post detail)
========================= */
.post-detail {
  max-width: 820px;
  margin: 0 auto;
}

.post-detail__header {
  margin-bottom: 18px;
}

.post-detail__date {
  display: inline-block;
  font-weight: 800;
  color: #6b7a80;
  margin-bottom: 10px;
}

.post-detail__title {
  font-size: 1.25rem;
  line-height: 1.5;
  margin-bottom: 12px;
}

.post-detail__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  color: #0c6f7a;
  background: rgba(154, 212, 230, 0.25);
  border: 1px solid rgba(12, 111, 122, 0.22);
}

.post-detail__thumb {
  margin: 0 0 18px;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}
.post-detail__thumb img {
  width: 100%;
  height: auto;
  display: block;
}

.post-detail__content {
  background: #fff;
  border-radius: 22px;
  padding: 36px 32px;
  line-height: 1.9;
}
@media (max-width: 640px) {
  .post-detail__content {
    padding: 24px 20px;
  }
}
.post-detail__content p + p {
  margin-top: 1.2rem;
}
.post-detail__content h4 {
  margin-top: 1.6rem;
  font-size: 1.05rem;
}
.post-detail__content ul {
  list-style: disc;
  padding-left: 1.2em;
  margin-top: 0.6rem;
}
.post-detail__content li + li {
  margin-top: 0.25rem;
}

/* ---- prev/next nav (news) ---- */
.post-detail-nav {
  max-width: 820px;
  margin: 2rem auto 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 12px;
  align-items: stretch;
}
@media (max-width: 860px) {
  .post-detail-nav {
    grid-template-columns: 1fr;
  }
}

.post-detail-nav__prev,
.post-detail-nav__next {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  padding: 14px;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: #fff;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
  min-height: 64px;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.post-detail-nav__prev:hover,
.post-detail-nav__next:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

.post-detail-nav__next {
  text-align: right;
}

.post-detail-nav__label {
  font-size: 0.8rem;
  font-weight: 800;
  color: #6b7a80;
}

.post-detail-nav__title {
  font-size: 0.8rem;
  color: #17323a;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.post-detail-nav__back {
  align-self: center;
  white-space: nowrap;
}
@media (max-width: 860px) {
  .post-detail-nav__back {
    width: 100%;
    justify-content: center;
  }
}

/* =========================
  プライバシーポリシー
========================= */
.privacy-content h2 {
  margin-top: 2rem;
}
/*# sourceMappingURL=style.css.map */