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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
}

img,
picture,
svg,
video {
  display: block;
  max-width: 100%;
  height: auto;
}

svg {
  overflow: visible;
}

button,
input,
textarea,
select {
  font: inherit;
  color: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}
a:hover, a:focus-visible {
  text-decoration: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote {
  margin: 0;
}

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

/* ===========================
   Variables
=========================== */
/* ===========================
   CSS Variables（Gutenberg用）
=========================== */
:root {
  --font-serif: Noto Serif JP, serif !important;
  --font-sans: Noto Sans JP, sans-serif !important;
}

/* ===========================
   Mixins
=========================== */
/* flex center */
/* text clamp */
/* button */
/* container */
/* ===========================
   Base
=========================== */
html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  color: #333;
  background: #fff;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 {
  font-family: "Noto Serif JP", serif;
}

p {
  line-height: inherit;
}

a {
  transition: opacity 0.3s ease;
}
a:hover {
  opacity: 0.7;
}
a:focus-visible {
  outline: 2px solid #ddd;
  outline-offset: 3px;
}

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

.has-black-color {
  color: #000000 !important;
}

.has-black-background-color {
  background-color: #000000 !important;
}

.has-white-color {
  color: #ffffff !important;
}

.has-white-background-color {
  background-color: #ffffff !important;
}

.has-pale-pink-color {
  color: #f78da7 !important;
}

.has-pale-pink-background-color {
  background-color: #f78da7 !important;
}

.has-vivid-red-color {
  color: #cf2e2e !important;
}

.has-vivid-red-background-color {
  background-color: #cf2e2e !important;
}

.has-pale-cyan-blue-color {
  color: #8ed1fc !important;
}

.has-pale-cyan-blue-background-color {
  background-color: #8ed1fc !important;
}

.has-vivid-cyan-blue-color {
  color: #0693e3 !important;
}

.has-vivid-cyan-blue-background-color {
  background-color: #0693e3 !important;
}

.has-vivid-purple-color {
  color: #9b51e0 !important;
}

.has-vivid-purple-background-color {
  background-color: #9b51e0 !important;
}

.has-brand-pink-color {
  color: #d57098 !important;
}

.has-brand-pink-background-color {
  background-color: #d57098 !important;
}

.has-brand-lightpink-color {
  color: #F6E3EA !important;
}

.has-brand-lightpink-background-color {
  background-color: #F6E3EA !important;
}

.has-dark-blue-color {
  color: #567DA8 !important;
}

.has-dark-blue-background-color {
  background-color: #567DA8 !important;
}

.has-light-gray-color {
  color: #d3c4d5 !important;
}

.has-light-gray-background-color {
  background-color: #d3c4d5 !important;
}

.has-gray-color {
  color: #767676 !important;
}

.has-gray-background-color {
  background-color: #767676 !important;
}

.is-style-serif-font {
  font-family: var(--font-serif) !important;
}

.is-style-sans-font {
  font-family: var(--font-sans) !important;
}

/* ===========================
   Layout
=========================== */
/* ===========================
   Header
=========================== */
header,
.header-inner,
.gnav a,
.header-actions,
.btn--login {
  font-family: "Noto Serif JP", serif;
}

.site-header {
  font-family: "Noto Serif JP", serif;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background: transparent;
  mix-blend-mode: difference;
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 32px;
}

.logo {
  display: flex;
  align-items: center;
}
.logo img {
  max-width: 190px;
  height: auto;
  mix-blend-mode: inherit;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-left: auto;
}

@media (max-width: 1080px) {
  .site-header {
    position: fixed;
    z-index: 2000;
  }
  .logo img {
    max-height: 64px;
    max-width: auto;
    margin-top: -11px;
    margin-left: -6px;
  }
  .header-right {
    display: none;
  }
}
/* ===========================
   Nav
=========================== */
.gnav ul {
  display: flex;
  gap: 40px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.gnav a {
  text-decoration: none;
  color: #fff;
  font-weight: 300;
  font-size: 13px;
  letter-spacing: 0.2em;
  transition: opacity 0.4s ease;
}
.gnav a:hover {
  opacity: 0.7;
}

/* ===========================
   Hamburger
=========================== */
.drawer-menu, .drawer {
  display: none;
}

@media (max-width: 1080px) {
  .drawer-menu {
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 5000;
  }
  .hamburger {
    display: flex;
    width: 48px;
    position: fixed;
    height: 12px;
    top: 33px;
    right: 20px;
    z-index: 1200;
    cursor: pointer;
    border: none;
    background: none;
    padding: 0;
    font-family: "Noto Serif JP", serif;
    mix-blend-mode: difference;
  }
  .hamburger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    background: currentColor;
    transition: 0.3s ease;
    opacity: 1 !important;
    mix-blend-mode: inherit;
  }
  .hamburger span:nth-child(1) {
    top: 0;
  }
  .hamburger span:nth-child(2) {
    bottom: 0;
  }
  .hamburger.active span {
    mix-blend-mode: normal !important;
  }
  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg);
    top: 10px;
  }
  .hamburger.active span:nth-child(2) {
    transform: rotate(-45deg);
    bottom: 8px;
  }
  .drawer {
    font-family: "Noto Serif JP", serif;
    mix-blend-mode: normal !important;
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: 0;
    width: 70%;
    max-width: 300px;
    height: 100vh;
    padding: 80px 24px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: -2px 0 8px rgba(0, 0, 0, 0.1);
    transform: translateX(100%);
    transition: transform 0.35s ease;
    z-index: 500;
  }
  .drawer.active {
    transform: translateX(0);
  }
  .drawer .drawer-nav ul {
    display: flex;
    flex-direction: column;
    gap: 24px;
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .drawer .drawer-nav a {
    text-decoration: none;
    color: #404040;
    font-weight: 300;
    font-size: 13px;
    letter-spacing: 0.2em;
    transition: opacity 0.4s ease;
  }
  .drawer .drawer-nav a:hover {
    opacity: 0.7;
  }
}
/* ===========================
   Page Header
=========================== */
.page-header {
  position: relative;
  width: 100%;
  aspect-ratio: 16/4;
}
.page-header__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  z-index: 1;
}
.page-header__inner {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  height: 100%;
  padding-left: 10%;
}
.page-header__title-img {
  width: auto;
  max-width: 30%;
  height: auto;
}

/* ===========================
   Breadcrumb
=========================== */
.breadcrumb-area {
  font-family: "Noto Serif JP", serif;
  width: 100%;
  max-width: 1200px;
  margin: auto;
  padding: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  font-size: 13px;
  font-weight: 200;
  letter-spacing: 0.2em;
  color: #767676;
  border-bottom: 1px solid #bbb;
}
.breadcrumb-area a {
  text-decoration: none;
  opacity: 0.9;
  color: #767676;
  display: flex;
  align-items: center;
  transition: color 0.3s ease, opacity 0.3s ease;
}
.breadcrumb-area a:hover {
  opacity: 1;
  color: #d57098;
}

/* ===========================
   SP
=========================== */
@media (max-width: 768px) {
  .page-header {
    height: 240px;
  }
  .page-header__inner {
    padding-left: 4vw;
  }
  .page-header__title-img {
    max-width: 100%;
    height: 12vh;
    width: auto;
    margin-top: 66px;
  }
  .breadcrumb-area {
    font-size: 10px;
    gap: 8px;
    padding: 12px 0;
    margin: 0 24px;
    width: calc(100% - 48px);
    box-sizing: border-box;
  }
}
/* ===========================
   Header
=========================== */
.member-header {
  width: 100%;
  background: #fff;
  border-bottom: 1px solid #eee;
}
.member-header__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
}
.member-header__logo img {
  height: 40px;
  display: block;
}
.member-header__meta {
  display: flex;
  align-items: center;
  gap: 16px;
}
.member-header__name {
  font-weight: 600;
  color: #444;
}
.member-header__logout, .member-header__login {
  padding: 6px 12px;
  border-radius: 6px;
  border: 1px solid #aaa;
  font-size: 14px;
}
.member-header__notice {
  background: #fff7e6;
  padding: 8px 20px;
  border-top: 1px solid #f0e2c8;
  color: #915a00;
  font-size: 13px;
}

/* ============================
   ヒーローエリア全体
============================ */
.hero {
  position: relative;
  width: 100%;
  height: 34vh;
  min-height: 240px;
  max-height: 360px;
  overflow: hidden;
}

/* タブレット */
@media (min-width: 768px) and (max-width: 1023px) {
  .hero {
    height: 38vh;
    max-height: 380px;
  }
}
/* PC */
@media (min-width: 1024px) {
  .hero {
    height: 42vh;
    max-height: 420px;
  }
}
/* ============================
   背景画像
============================ */
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: right center;
     object-position: right center;
  display: block;
}

/* タブレット〜SP：少し左寄せで人物・本を見せる */
@media (max-width: 1023px) {
  .hero__bg img {
    -o-object-position: 60% center;
       object-position: 60% center;
  }
}
/* ============================
   グラデーション（下ピンク／乗算）
============================ */
.hero__grad {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.06) 25%, transparent 40%) top/100% 100% no-repeat, linear-gradient(to bottom, rgba(255, 231, 191, 0) 30%, rgba(255, 231, 191, 0.6) 55%, rgba(232, 143, 183, 0.85) 85%, rgba(232, 143, 183, 0.95) 100%);
  mix-blend-mode: multiply;
  opacity: 0.95;
}

.hero__grad2 {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(to bottom, rgb(236, 220, 199) 0%, rgb(213, 216, 217) 20%, rgb(192, 212, 237) 40%, rgb(197, 207, 177) 60%, rgb(250, 174, 178) 80%, rgb(213, 112, 152) 100%);
  mix-blend-mode: multiply;
  opacity: 0.85;
  pointer-events: none;
}

/* ============================
   白い波（SVG パララックス）
============================ */
.hero__wave {
  position: absolute;
  left: 0;
  bottom: -1px; /* 下のセクションとの境目 */
  width: 100%;
  z-index: 3;
  overflow: hidden;
}

/* SVG 自体を横幅いっぱいに */
.hero-wave-svg {
  display: block;
  width: 100%;
  height: 3.5em;
  max-height: 120px;
  margin: 0;
}

/* SP は少しだけ高さを増やす */
@media (max-width: 768px) {
  .hero-wave-svg {
    height: 9vw;
  }
}
/* サンプルの parallax アニメをヒーロー用に調整 */
.parallax > use {
  animation: move-forever 14s linear infinite;
}

.parallax > use:nth-child(1) {
  animation-delay: -2s;
  animation-duration: 12s;
}

.parallax > use:nth-child(2) {
  animation-delay: -3s;
  animation-duration: 8s;
}

.parallax > use:nth-child(3) {
  animation-delay: -4s;
  animation-duration: 5s;
}

/* 波だけが左右にゆっくり流れる */
@keyframes move-forever {
  0% {
    transform: translateX(-90px);
  }
  100% {
    transform: translateX(85px);
  }
}
/* ============================
   タイトル
============================ */
.hero__title {
  position: absolute;
  left: 8%;
  bottom: 26%;
  z-index: 4;
  color: #ffffff;
}

/* ページ名（About us） */
.hero__title h1 {
  margin: 0;
  font-family: "Italianno", serif;
  font-weight: 400;
  font-style: normal;
  line-height: 1;
  font-size: clamp(48px, 14vw, 80px);
}

/* タブレット：少し右寄せ＆サイズ調整 */
@media (min-width: 768px) and (max-width: 1023px) {
  .hero__title {
    left: 10%;
    bottom: 24%;
  }
}
/* PC：波との距離を少し近づける */
@media (min-width: 1024px) {
  .hero__title {
    left: 13%;
    bottom: 22%;
  }
  .hero__title h1 {
    font-size: clamp(40px, 8vw, 100px);
  }
}
/* ===========================
   main
=========================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  z-index: 10;
}
.site-header.is-scrolled {
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.site-header.is-hidden {
  transform: translateY(-100%);
  box-shadow: none;
}

/* ============================
   メインビジュアル全体
============================ */
.mv {
  position: relative;
  width: 100%;
  height: 60vh; /* SP 基本：50〜80vh の中間 */
  min-height: 420px;
  max-height: 80vh;
  overflow: hidden;
}

@media (min-width: 768px) and (max-width: 1031px) {
  .mv {
    height: 100vh;
    max-height: 100vh;
  }
}
@media (min-width: 1032px) {
  .mv {
    height: 110vh;
    max-height: 110vh;
  }
}
/* ============================
   背景写真
============================ */
.mv-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.mv-bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: right center;
     object-position: right center;
  display: block;
}

/* SP では人物寄りにトリミング */
@media (max-width: 1031px) {
  .mv-bg img {
    -o-object-position: 69% bottom;
       object-position: 69% bottom;
  }
}
/* 大画面では少し右寄せ */
@media (min-width: 1440px) {
  .mv-bg img {
    -o-object-position: 72% center;
       object-position: 72% center;
  }
}
/* ============================
   グラデーション（乗算＋揺らぎ）
============================ */
.mv-gradient {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.1) 20%, transparent 25%) top/100% 100% no-repeat, linear-gradient(17deg, #e88fb7 0%, #e88fb7 55%, #ffe7bf 70%, rgba(255, 231, 191, 0) 100%) top/100% 100% no-repeat, linear-gradient(135deg, #ffe7bf 0%, #ffe7bf 35%, #f9c3d3 60%, #e88fb7 100%);
  mix-blend-mode: multiply;
  opacity: 0.9;
  background-size: 160% 160%;
  animation: mvGradientWave 16s ease-in-out infinite alternate;
}

/* ふわっと女性的な“靡き”アニメーション */
@keyframes mvGradientWave {
  0% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-1.5%) scale(1.02);
  }
  100% {
    transform: translateY(0) scale(1);
  }
}
/* ============================
   白い波のベース
============================ */
.mv-wave {
  position: absolute;
  left: 50%;
  bottom: -5%;
  width: 115%;
  transform: translateX(-50%);
  z-index: 3;
}

.mv-wave img {
  width: 100%;
  height: auto;
  display: block;
}

/* SP は下端にフィットさせる */
@media (max-width: 1031px) {
  .mv-wave {
    bottom: 0;
    width: 120%;
  }
}
/* ============================
   ピンクの波線（canvas）
============================ */
/* PC 基準（この見え方をベースにする） */
#waveCanvas {
  position: absolute;
  left: -5%;
  bottom: 11%;
  width: 110%;
  height: 200px;
  z-index: 4;
  pointer-events: none;
  transform: rotate(12deg);
}

/* SP では高さだけ浅くしてトリミング調整 */
@media (max-width: 768px) {
  #waveCanvas {
    left: -5%;
    bottom: 2%;
    width: 110%;
    height: 120px;
    transform: rotate(12deg) scaleY(1); /* 形はPCと同じ */
    transform-origin: center;
  }
}
/* ============================
   コピー(copy.svg)
============================ */
/* SP〜タブレットの基準位置 */
.mv-copy {
  position: absolute;
  left: -20%;
  bottom: -25%;
  width: 180%;
  transform-origin: center;
  transform: rotate(-18deg);
  z-index: 5;
  pointer-events: none;
  overflow: visible;
}

/* PC ではユーザー指定のベストバランス */
@media (min-width: 1024px) {
  .mv-copy {
    left: 2%;
    bottom: 16%;
    width: 80%;
    transform: rotate(-0.5deg);
  }
}
/* SP 用：少しだけ大ぶり＆角度を浅く */
@media (max-width: 1031px) {
  .mv-copy {
    left: 3%;
    bottom: 12%;
    width: 90%;
    transform: rotate(-3deg);
  }
}
/* copy.svg 全体 */
.mv-copy svg {
  width: 100%;
  height: auto;
  display: block;
}

/* 文字（パス）ごとのアニメーション */
.mv-copy svg path {
  opacity: 0;
  transform-origin: center;
  animation: mvCopyChar 0.6s ease-out forwards;
  /* 一呼吸おいてから、左から順に */
  animation-delay: calc(1.5s + var(--delay, 0s));
}

@keyframes mvCopyChar {
  0% {
    opacity: 0;
    transform: translateY(8px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/* ===========================
   Footer
=========================== */
.site-footer {
  text-align: center;
  padding: 60px 0 40px;
  font-family: "Noto Serif JP", serif;
  background-color: #fff;
  color: #767676;
  /* --------------------------
     Footer Navi
  -------------------------- */
  /* --------------------------
     Footer Links
  -------------------------- */
  /* --------------------------
     Copylight
  -------------------------- */
  /* --------------------------
   SP
  -------------------------- */
}
.site-footer .footer-inner {
  max-width: 1240px;
  padding: 80px 0 0;
  border-top: 1px solid #ebe0ec;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.site-footer .footer-inner .logo--footer {
  width: 190px;
  margin: 0 auto 30px;
}
.site-footer .footer-inner .logo--footer svg {
  width: 100%;
  height: auto;
  fill: #404040;
}
.site-footer .fnav ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
}
.site-footer .fnav a {
  text-decoration: none;
  color: #404040;
  font-size: 14px;
  font-weight: 100;
  letter-spacing: 0.15em;
  transition: opacity 0.5s ease;
}
.site-footer .fnav a:hover {
  opacity: 0.7;
}
.site-footer .footer-links__list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
}
.site-footer .footer-links__list a {
  text-decoration: none;
  color: #404040;
  font-size: 14px;
  font-weight: 100;
  letter-spacing: 0.15em;
  transition: opacity 0.5s ease;
}
.site-footer .footer-links__list a:hover {
  opacity: 0.7;
}
.site-footer .copy {
  font-size: 12px;
  color: #404040;
  margin-top: 10px;
}
@media (max-width: 768px) {
  .site-footer .footer-inner {
    width: calc(100% - 48px);
    padding: 24px 0 0;
  }
  .site-footer .logo--footer {
    margin-bottom: 24px;
    height: 64px;
  }
  .site-footer .logo--footer img {
    width: auto;
    height: auto;
  }
  .site-footer .fnav ul {
    gap: 4px;
    margin-bottom: 24px;
  }
  .site-footer .fnav ul li {
    width: 100%;
  }
  .site-footer .fnav a {
    font-size: 12px;
  }
  .site-footer .footer-links__list {
    gap: 4px;
    margin-bottom: 24px;
  }
  .site-footer .footer-links__list li {
    width: 100%;
  }
  .site-footer .footer-links__list a {
    font-size: 12px;
  }
  .site-footer .copy {
    font-size: 11px;
  }
}

/* ===========================
   components
=========================== */
/* ===========================
   Button
=========================== */
.btn {
  all: unset;
  display: inline-block;
  box-sizing: border-box;
  padding: 12px 24px;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

/* ============================
   Login Button
============================ */
.btn--login {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid #bbb;
  border-radius: 0;
  color: #bbb;
  padding: 12px 40px;
  display: inline-block;
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.1em;
}

@media (max-width: 1080px) {
  .btn--login {
    margin-top: 40px;
    width: 100%;
    text-align: center;
  }
}
/* ===========================
   404page
=========================== */
.btn-404 {
  background-color: #d57098;
  color: #fff;
  font-size: 14px;
  padding: 12px 40px;
}
.btn-404:hover {
  opacity: 0.8;
}

/* ===========================
   View More Button
=========================== */
.btn--viewmore {
  all: unset;
  display: inline-block;
  cursor: pointer;
  font-family: "Noto Serif JP", serif;
}

.viewmore {
  font-family: "Noto Serif JP", serif;
  display: block;
  width: 200px;
  margin-left: auto;
  position: relative;
  padding-bottom: 14px;
  padding-left: 1rem;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: #767676;
  text-align: left;
  transition: transform 0.3s ease;
}
.viewmore:hover {
  transform: translateX(6px);
}
.viewmore::before {
  content: "+";
  position: absolute;
  right: 6px;
  bottom: 8px;
  font-size: 1.2rem;
  color: #767676;
  transition: 0.3s ease;
}
.viewmore::after {
  content: "";
  display: block;
  width: 200px;
  height: 1px;
  background: #bcbcbc;
  position: absolute;
  right: 0;
  bottom: 0;
  transform: scaleX(1);
  transform-origin: left;
  transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1);
}
.viewmore:hover::after {
  transform: scaleX(0);
  transform-origin: right;
}

@media (max-width: 768px) {
  .viewmore {
    width: 160px;
    padding-bottom: 12px;
    font-size: 70%;
  }
  .viewmore::after {
    width: 160px;
  }
  .viewmore::before {
    right: 8px;
    bottom: 12px;
    font-size: 1rem;
  }
}
.coach-viewmore {
  text-align: center;
  margin: 40px 0;
}
@media (max-width: 768px) {
  .coach-viewmore {
    margin: 32px 24px;
  }
}

/* ===========================
   coach single page
=========================== */
.coach-single__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 80%;
  font-weight: 300;
  background: #fff;
  color: #d57098;
  padding: 30px 20px;
  border-radius: 50px;
  border: 1px solid #d57098;
  letter-spacing: 0.2em;
  position: relative;
  transition: all 0.4s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.coach-single__btn::after {
  content: "";
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #d57098;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  transition: all 1s ease;
}
.coach-single__btn::before {
  content: "";
  position: absolute;
  right: 31px;
  top: 50%;
  transform: translateY(-50%);
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 8px solid #fff;
  transition: all 1s ease;
  z-index: 1;
}
.coach-single__btn:hover {
  background: #d57098;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(213, 112, 152, 0.6);
}
.coach-single__btn:hover::after {
  background: #fff;
}
.coach-single__btn:hover::before {
  border-left-color: #d57098;
}

@media (max-width: 768px) {
  .coach-single__btn {
    width: 100%;
    padding: 24px 0 24px 24px;
    font-size: 14px;
  }
  .coach-single__btn::after {
    width: 24px;
    height: 24px;
  }
  .coach-single__btn::before {
    right: 26px;
  }
}
/* ===========================
   Form 
=========================== */
.contact-form__table {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
}
.contact-form__row {
  display: flex;
  gap: 24px;
  align-items: center;
  padding-bottom: 16px;
  letter-spacing: 0.1rem;
  position: relative;
}
.contact-form__row::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, #d57098 25%, #bbb 25%);
}
.contact-form__row.contact-form__privacy::after {
  display: none;
}
.contact-form__label {
  font-family: "Noto Serif JP", serif;
  flex: 0 0 25%;
  font-size: 15px;
  color: #767676;
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
  padding-bottom: 6px;
}
.contact-form__field {
  flex: 1;
}
.contact-form__field input,
.contact-form__field textarea {
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  padding: 12px 8px;
  font-size: 14px;
  color: #767676;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  letter-spacing: 0.15rem;
}
.contact-form__field input::-moz-placeholder, .contact-form__field textarea::-moz-placeholder {
  color: #bbb;
}
.contact-form__field input::placeholder,
.contact-form__field textarea::placeholder {
  color: #bbb;
}
.contact-form__field textarea {
  min-height: 160px;
  resize: vertical;
}
.contact-form__field a {
  color: #d57098;
  text-decoration: underline;
}
.contact-form__field .wpcf7-list-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}
.contact-form__field .wpcf7-list-item label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.contact-form__field .wpcf7-list-item-label {
  font-family: "Noto Serif JP", serif;
  font-size: 15px;
}
.contact-form .required,
.contact-form .optional {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 12px;
  font-weight: 400;
  padding: 4px 16px;
  line-height: 1;
  background: #fff;
  border: 1px solid #bbb;
}
.contact-form .required {
  color: #d57098;
}
.contact-form .optional {
  color: #767676;
}
.contact-form__submit {
  text-align: center;
}
.contact-form__submit .contact-submit {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: #d57098;
  color: #fff;
  border: none;
  padding: 24px 48px;
  font-size: 14px;
  font-weight: 300;
  cursor: pointer;
  letter-spacing: 0.2rem;
  font-family: "Noto Serif JP", serif;
  transition: opacity 0.3s ease;
}
.contact-form__submit .contact-submit:hover {
  opacity: 0.8;
}
.contact-form__submit .contact-submit__icon {
  width: 22px;
  height: 22px;
  background: url("../harmonia/assets/images/ion-ios-send.png") no-repeat center/contain;
}
@media (max-width: 768px) {
  .contact-form__table {
    margin: 0 48px;
  }
  .contact-form__row {
    flex-direction: column;
    gap: 8px;
    padding-bottom: 0;
  }
  .contact-form__row::after {
    background: #bbb;
  }
  .contact-form__label {
    width: 100%;
    font-size: 14px;
    padding-bottom: 0;
  }
  .contact-form__field input,
  .contact-form__field textarea {
    font-size: 13px;
    padding: 12px 0;
  }
  .contact-form .contact-submit {
    width: 100%;
    padding: 20px 0 20px 16px;
    font-size: 13px;
  }
}

/* ===========================
   Tab Navi
=========================== */
.tab-nav {
  width: 100%;
  margin-top: 100px;
  font-family: "Noto Serif JP", serif;
  /* ===========================
     SP 
  ============================ */
}
.tab-nav__list {
  display: flex;
  justify-content: center;
  align-items: stretch;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
  letter-spacing: 0.2em;
}
.tab-nav__item {
  flex: 1 1 33.333%;
  max-width: 300px;
  display: flex;
  text-align: center;
  background: #fafafa;
}
.tab-nav__item a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 20px 0;
  font-size: 14px;
  letter-spacing: 0.2em;
  text-decoration: none;
  color: #767676;
  border-bottom: none;
  transition: all 0.4s ease;
}
.tab-nav__item a:hover {
  background: #d57098;
  color: #fff;
  opacity: 0.8;
}
.tab-nav__item.is-active a {
  background: #d57098;
  color: #fff;
}
@media (max-width: 768px) {
  .tab-nav {
    margin-top: 5vw;
    padding: 0 5%;
  }
  .tab-nav__list {
    flex-wrap: wrap;
    justify-content: space-between;
    border: 1px solid #d57098;
  }
  .tab-nav__item {
    flex: auto;
    width: 100%;
    max-width: none;
  }
  .tab-nav__item a {
    font-size: 12px;
    padding: 16px 0;
    line-height: 1;
  }
}

/* ===========================
   Filter
=========================== */
.filter-search-wrap {
  background: rgba(0, 0, 0, 0.02);
  padding: 64px 0;
  border-radius: 24px;
}
@media (max-width: 768px) {
  .filter-search-wrap {
    padding: 40px 24px;
  }
}

.filter-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
}
@media (max-width: 768px) {
  .filter-row {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    width: 100%;
    margin: 0 auto;
  }
}

.search_box {
  position: relative;
}
.search_box::before {
  content: "";
  width: 20px;
  height: 20px;
  background: url("../harmonia/assets/images/icon-search.png") no-repeat center/auto 100%;
  position: absolute;
  top: 50%;
  left: 8%;
  transform: translate(-50%, -50%);
}
@media (max-width: 768px) {
  .search_box {
    width: 100%;
  }
}

input#coach-keyword,
input#voice-keyword {
  width: 640px;
  padding: 16px 40px 16px 80px;
  border: 1px solid #bbb;
  border-radius: 30px;
  font-size: 14px;
  font-family: "Noto Sans JP", sans-serif;
}
input#coach-keyword::-moz-placeholder, input#voice-keyword::-moz-placeholder {
  color: #999;
}
input#coach-keyword::placeholder,
input#voice-keyword::placeholder {
  color: #999;
}
input#coach-keyword:focus,
input#voice-keyword:focus {
  border: 1px solid #ffeef6;
  box-shadow: 0 0 6px 2px rgba(219, 167, 183, 0.5);
  transition: all 0.8s ease;
}
@media (max-width: 768px) {
  input#coach-keyword,
  input#voice-keyword {
    width: 100%;
    padding: 14px 40px 14px 50px;
    font-size: 12px;
  }
}

#coach-search-btn,
#voice-search-btn {
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.4em;
  text-align: center;
  color: #d57098;
  background: #fff;
  border: 1px solid #fff;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.2);
  border-radius: 30px;
  padding: 12px 40px;
  cursor: pointer;
  transition: all 1s ease;
  font-family: "Noto Serif JP", serif;
}
#coach-search-btn:hover,
#voice-search-btn:hover {
  background: #d57098;
  color: #fff;
  border-color: #d57098;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
}
@media (max-width: 768px) {
  #coach-search-btn,
  #voice-search-btn {
    width: 100%;
    font-size: 12px;
    letter-spacing: 0.2em;
    padding: 8px 0;
  }
}

.filter-btn {
  padding: 6px 12px;
  border: 1px solid #bbb;
  background: #fff;
  color: #767676;
  cursor: pointer;
  transition: all 0.2s;
}
.filter-btn.is-active {
  background: #d57098;
  color: #fff;
  border-color: #d57098;
  transition: all 0.8s ease;
}

.filter-group {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin: 24px auto 0;
  max-width: 824px;
}

.filter-group[data-key=coach_category] {
  gap: 24px;
  max-width: 716px;
  margin: 24px auto;
  justify-content: center;
}
.filter-group[data-key=coach_category] .filter-label {
  display: none;
}
.filter-group[data-key=coach_category] .filter-btn {
  flex: 0 0 300px;
  padding: 16px 10px;
  font-size: 14px;
  letter-spacing: 0.1em;
  font-family: "Noto Serif JP", serif;
}
.filter-group[data-key=coach_category] .filter-btn:first-of-type {
  color: #91b8c4;
  border-color: #91b8c4;
}
.filter-group[data-key=coach_category] .filter-btn:first-of-type.is-active {
  background: #91b8c4;
  color: #fff;
}
.filter-group[data-key=coach_category] .filter-btn:not(:first-of-type) {
  color: #d57098;
  border-color: #d57098;
}
.filter-group[data-key=coach_category] .filter-btn:not(:first-of-type).is-active {
  background: #d57098;
  color: #fff;
}
@media (max-width: 768px) {
  .filter-group[data-key=coach_category] .filter-btn {
    flex: 1 1 45%;
    padding: 12px 0 10px;
    font-size: 11px;
  }
}

.filter-group[data-key=coach_type] {
  max-width: 824px;
}
.filter-group[data-key=coach_type] .filter-btn {
  flex: 1 0 208px;
  font-size: 12px;
  padding: 8px;
  border-radius: 9999px;
}
.filter-group[data-key=coach_type] .filter-btn.is-active {
  background: #d57098;
  color: #fff;
}
@media (max-width: 768px) {
  .filter-group[data-key=coach_type] .filter-btn {
    flex: 1 1 45%;
    padding: 8px 0;
    font-size: 11px;
  }
}

.filter-group[data-key=coach_genre] .filter-btn {
  flex: 1 1 100px;
  font-size: 12px;
  padding: 8px;
}
.filter-group[data-key=coach_genre] .filter-btn.is-active {
  background: #d57098;
  color: #fff;
}
@media (max-width: 768px) {
  .filter-group[data-key=coach_genre] .filter-btn {
    flex: 1 1 45%;
    min-width: 120px;
    font-size: 11px;
  }
}

@media (max-width: 768px) {
  .filter-search-wrap {
    padding: 40px 24px;
  }
  .filter-row {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    width: 100%;
    margin: 0 auto;
  }
  .search_box {
    width: 100%;
  }
  input#coach-keyword,
  input#voice-keyword {
    width: 100%;
    padding: 14px 40px 14px 50px;
    font-size: 12px;
  }
  #coach-search-btn,
  #voice-search-btn {
    width: 100%;
    font-size: 12px;
    letter-spacing: 0.2em;
    padding: 8px 0;
  }
  .filter-label {
    font-size: 12px;
    width: 100%;
  }
  .coach-filters {
    gap: 12px;
    margin: 16px 0;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
  .filter-group {
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-left: auto;
    margin-right: auto;
  }
  .filter-btn {
    padding: 8px 14px;
    font-size: 14px;
    border-radius: 9999px;
  }
  .filter-group[data-key=coach_category] .filter-btn {
    flex: 1 1 45%;
    padding: 12px 0 10px;
    font-size: 11px;
    min-width: auto;
  }
  .filter-group[data-key=coach_type] .filter-btn {
    flex: 1 1 45%;
    padding: 8px 0;
    font-size: 11px;
    min-width: auto;
  }
  .filter-group[data-key=coach_genre] .filter-btn {
    flex: 1 1 45%;
    min-width: 120px;
    font-size: 11px;
    padding: 8px;
  }
  #coach-orderby {
    width: 100%;
    font-size: 14px;
    padding: 10px;
  }
}
/* ===========================
   Filter Task Coach 
=========================== */
.filter-area .filter-group[data-key=coach_category] {
  gap: 24px;
  max-width: 716px;
  margin: 24px auto;
}
.filter-area .filter-group[data-key=coach_category] .filter-label {
  display: none;
}
.filter-area .filter-group[data-key=coach_category] .filter-btn {
  flex: 0 0 300px;
  padding: 16px 10px;
  font-size: 14px;
  letter-spacing: 0.1em;
  font-family: "Noto Serif JP", serif;
}
.filter-area .filter-group[data-key=coach_category] .filter-btn:first-of-type {
  color: #91b8c4;
  border-color: #91b8c4;
}
.filter-area .filter-group[data-key=coach_category] .filter-btn:first-of-type.is-active {
  background: #91b8c4;
  color: #fff;
}
.filter-area .filter-group[data-key=coach_category] .filter-btn:not(:first-of-type) {
  color: #d57098;
  border-color: #d57098;
}
.filter-area .filter-group[data-key=coach_category] .filter-btn:not(:first-of-type).is-active {
  background: #d57098;
  color: #fff;
}
@media (max-width: 768px) {
  .filter-area .filter-group[data-key=coach_category] .filter-btn {
    flex: 1 1 45%;
    padding: 12px 0 10px;
    font-size: 11px;
  }
}
.filter-area .filter-group[data-key=coach_type] .filter-btn {
  flex: 1 0 208px;
  border-radius: 9999px;
  font-size: 12px;
  padding: 8px;
  font-family: "Noto Sans JP", sans-serif;
}
@media (max-width: 768px) {
  .filter-area .filter-group[data-key=coach_type] .filter-btn {
    flex: 1 1 45%;
    padding: 8px 0;
    font-size: 11px;
  }
}
.filter-area .filter-group[data-key=coach_genre] .filter-btn {
  flex: 1 1 100px;
  font-size: 12px;
  padding: 8px;
  font-family: "Noto Sans JP", sans-serif;
}
@media (max-width: 768px) {
  .filter-area .filter-group[data-key=coach_genre] .filter-btn {
    flex: 1 1 45%;
    min-width: 120px;
    font-size: 11px;
  }
}

/* ===========================
   Filter Voice
=========================== */
.voice-filters {
  width: 100%;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .voice-filters {
    width: 90%;
    gap: 12px;
  }
}

input#voice-keyword {
  width: 640px;
}
@media (max-width: 768px) {
  input#voice-keyword {
    width: 100%;
  }
}

#voice-search-btn {
  padding: 10px 40px;
}
@media (max-width: 768px) {
  #voice-search-btn {
    width: 100%;
    padding: 8px 0;
  }
}

.voice-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
@media (max-width: 1024px) {
  .voice-grid {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 24px;
  }
}
@media (max-width: 768px) {
  .voice-grid {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 32px;
    padding: 0 24px;
  }
}

#voice-results {
  margin: 60px auto 0;
}
@media (max-width: 1024px) {
  #voice-results {
    margin: 40px auto 0;
  }
}

/* ===========================
   Coach Card Component
=========================== */
.coach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  list-style: none;
  padding: 0;
  margin: 60px 0;
  align-items: stretch;
}
@media (max-width: 1024px) {
  .coach-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}
@media (max-width: 768px) {
  .coach-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    margin: 40px 0;
    padding: 0 24px;
    display: flex;
    flex-wrap: wrap;
  }
}

/* ===========================
   Coach Card
=========================== */
.coach-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  overflow: hidden;
  height: auto;
  transform: translateZ(0);
  backface-visibility: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.coach-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.coach-card:hover .coach-card__thumb img {
  transform: scale(1.08);
}
.coach-card__link {
  text-decoration: none;
  color: inherit;
  display: block;
}
.coach-card__meta {
  background: #91b8c4;
  color: #fff;
  font-size: 13px;
  text-align: center;
  padding: 6px 0;
  font-weight: 600;
  position: relative;
  z-index: 3;
  margin-top: -1px;
}
.coach-card__category {
  letter-spacing: 0.2em;
  font-weight: 400;
  font-size: 9px;
}
.coach-card__thumb {
  width: 100%;
  height: 180px;
  overflow: hidden;
}
.coach-card__thumb img {
  display: block;
  transition: transform 0.6s ease;
  width: 110%;
  height: 110%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 30%;
     object-position: 50% 30%;
}
.coach-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 20px;
}
.coach-card__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}
.coach-card__title {
  font-size: 22px;
  font-weight: normal;
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.2em;
}
@media (max-width: 1024px) {
  .coach-card__title {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .coach-card__title {
    font-size: 16px;
    margin: 0 auto 6px;
  }
}
.coach-card__type {
  font-size: 12px;
  color: #d57098;
  border: 1px solid #d57098;
  border-radius: 30px;
  padding: 8px 16px;
  background: #fff;
}
@media (max-width: 768px) {
  .coach-card__type {
    font-size: 10px;
    padding: 6px 16px;
  }
}
.coach-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 0 0 12px 0;
  padding: 0;
}
.coach-card__tags li {
  background: #d57098;
  color: #fff;
  font-size: 12px;
  font-weight: 300;
  padding: 4px 10px;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .coach-card__tags li {
    font-size: 60%;
    padding: 2px 8px;
  }
}
.coach-card__excerpt {
  font-size: 14px;
  color: #767676;
  line-height: 1.9;
  letter-spacing: 0.1em;
  font-weight: 400;
}
@media (max-width: 768px) {
  .coach-card__excerpt {
    font-size: 11px;
    line-height: 1.7;
  }
}
@media (max-width: 768px) {
  .coach-card {
    width: 46%;
  }
}

.coach-cat--pro-task-coach {
  background-color: #91b8c4;
  color: #fff;
}

.coach-cat--task-coach {
  background-color: #d57098;
  color: #fff;
}

@media (max-width: 768px) {
  .coach-card {
    width: 46%;
  }
  .coach-card__meta {
    font-size: 3vw;
    padding: 4px 0;
  }
  .coach-card__thumb {
    aspect-ratio: 2/1;
    height: auto;
  }
  .coach-card__body {
    padding: 12px;
  }
  .coach-card__header {
    flex-wrap: wrap;
    justify-content: center;
  }
  .coach-card__title {
    font-size: 16px;
    margin: 0 auto 6px;
  }
  .coach-card__type {
    font-size: 10px;
    padding: 6px 16px;
  }
  .coach-card__tags {
    gap: 6px;
    margin-bottom: 12px;
  }
  .coach-card__tags li {
    font-size: 60%;
    padding: 2px 8px;
  }
  .coach-card__excerpt {
    font-size: 11px;
    line-height: 1.7;
  }
}
/* ===========================
   Voice Card
=========================== */
.voice-card {
  background: #fff;
  overflow: hidden;
  padding: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  /* ===========================
      Link
  ============================ */
  /* ===========================
      Top Area
  ============================ */
  /* ===========================
      Bottom Area
  ============================ */
  /* ===========================
      Coach Banner
  ============================ */
}
.voice-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}
.voice-card:hover .voice-card__photo img {
  transform: scale(1.05);
}
.voice-card__link {
  display: block;
  padding: 20px;
  color: inherit;
  text-decoration: none;
  transition: 0.3s ease;
}
.voice-card__link:hover, .voice-card__link:focus, .voice-card__link:active {
  text-decoration: none !important;
}
.voice-card__top {
  display: flex;
  align-items: center;
  gap: 48px;
  font-family: "Noto Serif JP", serif;
}
@media (max-width: 1024px) {
  .voice-card__top {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
.voice-card__photo {
  flex: 0 0 auto;
  width: 160px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  overflow: hidden;
}
.voice-card__photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
  transition: transform 0.6s ease;
}
@media (max-width: 1024px) {
  .voice-card__photo {
    width: 180px;
  }
}
.voice-card__info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (max-width: 1024px) {
  .voice-card__info {
    align-items: center;
    width: 100%;
  }
}
.voice-card__text {
  font-size: 14px;
  line-height: 2;
  font-weight: 300;
  font-family: "Noto Sans JP", sans-serif;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.voice-card__bottom {
  padding: 16px;
}
.voice-card__name {
  font-size: 18px;
  letter-spacing: 0.2rem;
}
.voice-card__coach-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  border: 1px solid #d57098;
  color: #d57098;
  transition: all 0.4s ease;
  position: relative;
}
@media (max-width: 1024px) {
  .voice-card__coach-banner {
    flex-direction: row;
    justify-content: center;
    max-width: 460px;
    width: 100%;
  }
}
.voice-single .voice-card__coach-banner:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(213, 112, 152, 0.3);
}
.voice-card__coach-banner .coach-banner__thumb {
  flex-shrink: 0;
  width: 100px;
  aspect-ratio: 1/1;
  overflow: hidden;
}
.voice-card__coach-banner .coach-banner__thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.voice-card__coach-banner .coach-banner__info {
  flex: 1;
  margin-left: 8px;
  letter-spacing: 0.1rem;
  font-family: "Noto Serif JP", serif;
}
@media (max-width: 1024px) {
  .voice-card__coach-banner .coach-banner__info {
    margin-left: 0;
  }
}
.voice-card__coach-banner .coach-banner__type {
  font-size: 12px;
}
.voice-card__coach-banner .coach-banner__plus {
  position: absolute;
  right: 10px;
  bottom: 10px;
  font-size: 24px;
  color: #d57098;
}
@media (max-width: 1024px) {
  .voice-card__coach-banner .coach-banner__plus {
    position: static;
    font-size: 20px;
    margin-left: 6px;
    padding: 6px;
  }
}

@media (max-width: 768px) {
  #voice-results {
    margin: 40px auto 0;
  }
  .voice-grid {
    margin: 0 auto;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 32px;
    padding: 0 16px;
  }
  input#voice-keyword,
  input#coach-keyword {
    width: 100%;
    padding: 14px 40px 14px 50px;
    font-size: 12px;
  }
  #voice-search-btn,
  #coach-search-btn {
    width: 100%;
    font-size: 12px;
    letter-spacing: 0.2em;
    padding: 8px 0;
  }
  .voice-filters,
  .coach-filters {
    gap: 12px;
    margin: 16px 0;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
  /* ===== voice card layout ===== */
  .voice-card {
    padding: 24px;
    width: 100%;
    margin: 0 auto;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  }
  .voice-card__link {
    padding: 0;
  }
  .voice-card__top {
    gap: 0;
  }
  .voice-card__photo {
    width: 140px;
    margin-bottom: 0;
  }
  .voice-card__bottom {
    font-size: 12px;
    line-height: 1.7;
    padding: 16px 0;
  }
  .voice-card__name {
    font-size: 16px;
    letter-spacing: 0.2rem;
    margin-top: 12px;
  }
  .voice-card__text {
    font-size: 13px;
  }
  /* ===== coach banner ===== */
  .coach-banner__info {
    text-align: left;
    margin-left: 0;
  }
  .voice-card__coach-banner .voice-card__coach-banner {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 16px;
  }
  .voice-card__coach-banner .coach-banner__type {
    font-size: 10px;
  }
  .voice-card__coach-banner .coach-banner__name {
    font-size: 14px;
  }
  .voice-card__coach-banner .coach-banner__thumb {
    width: 64px;
  }
}
/* ===========================
   Pages
=========================== */
/* ===========================
   single Page
=========================== */
body.single .single {
  padding-top: 120px;
}

.single-post {
  max-width: 900px;
  width: 100%;
  margin: auto;
}

/* ===========================
   Page
=========================== */
.page-inner,
.page-content {
  max-width: 1200px;
  margin: 0 auto;
  color: #767676;
  font-family: "Noto Sans JP", sans-serif;
}

.page-inner {
  padding: 80px 0;
}

.page-content {
  padding: 0;
}
.page-content h2 {
  color: #d57098;
  font-family: "Noto Serif JP", serif;
  font-size: 26px;
  letter-spacing: 0.2em;
  text-align: center;
  margin: 40px;
  font-weight: 400;
}
.page-content h3 {
  font-family: "Noto Serif JP", serif;
  color: #567DA8;
  text-decoration: underline;
  text-underline-offset: 12px;
  margin-bottom: 20px;
}
.page-content h4 {
  font-family: "Noto Sans JP", sans-serif;
  color: #767676;
  margin: 10px 0;
  font-weight: 300;
}
.page-content p {
  font-size: 16px;
  font-weight: 400;
  line-height: 2.4;
  padding: 12px 0;
}
.page-content .wp-block-columns {
  gap: 20px;
  margin: 40px auto;
  flex: 1 1 80%;
  max-width: 80%;
}
.page-content .wp-block-columns p {
  line-height: 1.8;
  font-family: "Noto Serif JP", serif;
  color: #567DA8;
  text-align: center;
}
.page-content .wp-block-columns > .wp-block-column:first-child {
  border: 2px solid #567DA8;
  border-radius: 8px;
  line-height: 1.2;
  padding: 16px;
}
.page-content .wp-block-columns > .wp-block-column:last-child {
  border: 2px solid #567DA8;
  border-radius: 8px;
  line-height: 1.2;
  padding: 16px;
}
.page-content .wp-block-list {
  list-style: none;
  padding-left: 6em;
  margin: 40px 0;
}
.page-content .wp-block-list li {
  position: relative;
  margin-bottom: 0.6em;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #d57098;
  line-height: 1.8;
}
.page-content .wp-block-list li::before {
  content: "";
  position: absolute;
  left: -1.6em;
  top: 0.3em;
  width: 1em;
  height: 1em;
  background-color: #767676;
  border-radius: 50%;
}
.page-content .wp-block-button {
  width: 100%;
  margin: auto;
}
.page-content .wp-block-button__link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  max-width: 940px;
  padding: 30px 20px;
  margin: 0 auto;
  background: #fff;
  color: #d57098;
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-decoration: none;
  border-radius: 0;
  border: 1px solid #d57098;
  transition: all 0.4s ease;
  position: relative;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.page-content .wp-block-button__link::after {
  content: "";
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #d57098;
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  transition: all 1s ease;
}
.page-content .wp-block-button__link::before {
  content: "";
  position: absolute;
  right: 50px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 8px solid #fff;
  transition: all 1s ease;
  z-index: 1;
}
.page-content .wp-block-button__link:hover {
  background: #d57098;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(213, 112, 152, 0.6);
}
.page-content .wp-block-button__link:hover::after {
  background: #fff;
}
.page-content .wp-block-button__link:hover::before {
  border-left-color: #d57098;
}
@media (max-width: 768px) {
  .page-content {
    padding: 0 24px;
    line-height: 1.8;
  }
  .page-content h2 {
    font-size: 5.5vw;
    margin: 24px 0;
    letter-spacing: 0.2em;
  }
  .page-content p {
    font-size: 14px;
    line-height: 2;
  }
  .page-content .wp-block-list {
    padding-left: 2em;
    margin: 40px 0;
  }
  .page-content .wp-block-list li {
    margin-bottom: 0.2em;
  }
  .page-content .wp-block-list li::before {
    left: -1.6em;
    top: 0.6em;
    width: 0.6em;
    height: 0.6em;
  }
  .page-content .wp-block-button__link {
    padding: 24px 16px;
    font-size: 14px;
    justify-content: space-between;
    padding-left: 40px;
  }
  .page-content .wp-block-button__link::after {
    width: 24px;
    height: 24px;
    right: 32px;
  }
  .page-content .wp-block-button__link::before {
    right: 39px;
  }
}

/* ===========================
   404 Page
=========================== */
.page-404 {
  min-height: 80vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 20px;
  text-align: center;
  background: #fafafa;
}
.page-404__inner {
  max-width: 600px;
}
.page-404__title {
  font-size: 48px;
  font-weight: normal;
  color: #d57098;
  margin-bottom: 20px;
  font-family: "Noto Serif JP", serif;
}
.page-404__text {
  font-size: 16px;
  color: #404040;
  line-height: 1.8;
  margin-bottom: 40px;
  font-family: "Noto Sans JP", sans-serif;
}
.page-404 .btn-404 {
  display: inline-block;
  padding: 12px 40px;
  background: #d57098;
  color: #fff;
  font-size: 14px;
  text-decoration: none;
  transition: opacity 0.3s ease;
  font-family: "Noto Serif JP", serif;
}
.page-404 .btn-404:hover {
  opacity: 0.8;
}
@media (max-width: 768px) {
  .page-404 {
    padding: 40px 24px;
  }
  .page-404__title {
    font-size: 36px;
  }
  .page-404__text {
    font-size: 14px;
  }
  .page-404 .btn-404 {
    width: 100%;
    padding: 12px 0;
    font-size: 13px;
  }
}

/* ===========================
   ABOUT US
=========================== */
.aboutus-content {
  margin: 0 0 80px;
  font-size: 17px;
  line-height: 2.4;
  letter-spacing: 0.2em;
  text-align: center;
}
.aboutus-content p {
  font-family: "Noto Serif JP", serif;
  margin: 24px auto;
  font-size: 16px;
  line-height: 2.8;
  letter-spacing: 0.2em;
  text-align: center;
}
@media (max-width: 768px) {
  .aboutus-content {
    font-size: 3.5vw;
    margin: 40px 0 80px;
  }
  .aboutus-content p {
    width: calc(100% - 48px);
    font-size: 3vw;
  }
}

/* --------------------------
   Profile
-------------------------- */
.aboutus-profile {
  margin: 100px 0 100px;
  padding: 100px 0;
  display: flex;
  gap: 80px;
  align-items: flex-end;
  position: relative;
  overflow: visible;
  z-index: 2;
}
.aboutus-profile::before {
  content: "";
  position: absolute;
  top: 0;
  right: -4%;
  width: 60%;
  height: 60%;
  background: url("../harmonia/assets/images/KaoruHasebe.png") no-repeat top right/contain;
  z-index: 1;
}
.aboutus-profile .profile-text {
  flex: 0 0 50%;
  letter-spacing: 0.2em;
  position: relative;
  z-index: 2;
  line-height: 1.8;
}
.aboutus-profile .profile-photo img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.aboutus-profile .profile-name {
  font-family: "Noto Serif JP", serif;
  font-size: 34px;
  font-weight: 200;
  letter-spacing: 0.2em;
}
.aboutus-profile .profile-title,
.aboutus-profile .profile-place {
  font-family: "Noto Serif JP", serif;
  color: #767676;
  font-size: 13px;
  margin-bottom: 0;
}
.aboutus-profile .profile-desc {
  margin-top: 48px;
  font-size: 15px;
  font-weight: 300;
  color: #767676;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 2.5;
}
@media (max-width: 768px) {
  .aboutus-profile {
    flex-direction: column;
    padding: 0 48px;
    gap: 24px;
  }
  .aboutus-profile::before {
    top: -14%;
    left: -14%;
    width: 250px;
    height: 250px;
  }
  .aboutus-profile .profile-name {
    font-size: 5.35vw;
  }
  .aboutus-profile .profile-title,
  .aboutus-profile .profile-place {
    font-size: 3vw;
  }
  .aboutus-profile .profile-desc {
    margin-top: 29px;
    font-size: 13px;
    line-height: 2;
    text-align: justify;
  }
}

.aboutus-greeting {
  margin-bottom: 100px;
  max-width: 1520px;
}
.aboutus-greeting .greeting-text {
  font-family: "Noto Sans JP", sans-serif;
  background: rgba(0, 0, 0, 0.02);
  font-size: 16px;
  line-height: 2.4;
  padding: 100px;
  color: #d57098;
  margin-bottom: 30px;
  border-radius: 24px;
}
.aboutus-greeting .greeting-text picture {
  display: block;
  max-width: 620px;
  margin: 0 auto 0 80px;
  width: 100%;
}
.aboutus-greeting .greeting-text img {
  max-width: 100%;
  height: auto;
}
.aboutus-greeting .greeting-signature {
  text-align: right;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
}
.aboutus-greeting .greeting-signature img {
  display: inline-block;
  max-width: 146px;
  height: auto;
  margin-bottom: -38px;
}
@media (max-width: 768px) {
  .aboutus-greeting {
    margin: 0 5vw;
  }
  .aboutus-greeting .greeting-text {
    padding: 9vw;
    font-size: 3.5vw;
    line-height: 1.8;
  }
  .aboutus-greeting .greeting-text picture {
    max-width: 85%;
    margin-left: 0;
  }
  .aboutus-greeting .greeting-signature {
    font-size: 4vw;
  }
  .aboutus-greeting .greeting-signature img {
    max-width: 80px;
    margin-bottom: 0;
  }
}

/* --------------------------
   Company
-------------------------- */
.aboutus-company {
  position: relative;
  margin-top: 100px;
  padding: 80px 0 40px;
  background: url("../harmonia/assets/images/title-company.png") no-repeat left top;
}
.aboutus-company .company-inner {
  display: flex;
  gap: 40px;
}
.aboutus-company .company-left {
  flex: 0 0 20%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.aboutus-company .company-left h2 {
  font-family: "Noto Serif JP", serif;
  font-size: 18px;
  font-weight: normal;
  letter-spacing: 0.3em;
  color: #767676;
}
.aboutus-company .company-right {
  flex: 1;
  letter-spacing: 0.2em;
  font-family: "Noto Serif JP", serif;
}
.aboutus-company .company-item {
  display: flex;
  align-items: flex-start;
  border-bottom: 1px solid #d3c4d5;
  padding: 50px 0;
  font-size: 15px;
}
.aboutus-company .company-item .company-label {
  width: 25%;
  min-width: 120px;
  color: #767676;
  padding-left: 40px;
  font-size: 13px;
  text-align: left;
}
.aboutus-company .company-item .company-value {
  flex: 1;
  color: #767676;
  padding-left: 10px;
  font-size: 13px;
  line-height: 1.8;
}
@media (max-width: 768px) {
  .aboutus-company {
    width: calc(100% - 48px);
    margin: 0 auto;
    padding: 40px 0 0;
  }
  .aboutus-company .company-inner {
    flex-direction: column;
  }
  .aboutus-company .company-item {
    flex-direction: column;
    padding: 16px 0;
    font-size: 14px;
  }
  .aboutus-company .company-item .company-label {
    padding-left: 8px;
    font-size: 13px;
  }
  .aboutus-company .company-item .company-value {
    padding-left: 24px;
    margin-top: 8px;
    font-size: 12px;
  }
  .aboutus-company .company-right {
    padding: 5vw;
  }
}

/* ===========================
   service
=========================== */
.service-banner {
  position: relative;
  z-index: 1;
}
.service-banner .banner-grid__title {
  position: absolute;
  top: -170px;
  left: 30%;
  z-index: 0;
  width: 50%;
  max-width: 650px;
  transform: translateX(-50%);
}
.service-banner .banner-grid__title img {
  width: 100%;
  height: auto;
  display: block;
}
.service-banner .banner-grid__title-img {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  transform: rotate(-8deg);
  opacity: 0.15;
  width: 50%;
  max-width: 998px;
}
.service-banner .banner-grid__title-img img {
  width: 100%;
  height: auto;
  display: block;
}

.banner-grid {
  padding: 100px 0;
  position: relative;
  z-index: 2;
}
#page-service .banner-grid {
  padding: 0;
}
.banner-grid__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  font-family: "Noto Serif JP", serif;
}
.banner-grid__item {
  overflow: hidden;
}

.banner-item {
  position: relative;
  display: block;
  color: #fff;
  text-decoration: none;
  overflow: hidden;
  aspect-ratio: 740/360;
  z-index: 3;
  transition: opacity 0.5s ease;
}
.banner-item:hover {
  opacity: 0.7;
}
.banner-item__img {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  clip-path: polygon(5% 0%, 100% 0%, 95% 100%, 0% 100%);
  transition: transform 0.6s ease;
}
.banner-item__img img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.8s ease;
  transform-origin: center center;
}
.banner-item:hover .banner-item__img img {
  transform: scale(1.02);
}
.banner-item__content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  padding: 40px 60px 24px;
  color: #fff;
  text-align: left;
  z-index: 2;
}
.banner-item h3 {
  font-size: 1.4rem;
  font-weight: normal;
  font-family: "Noto Serif JP", serif;
  line-height: 1.4;
  margin-top: 40px;
  color: #fff;
  text-decoration: none;
  margin-bottom: 0;
  text-underline-offset: 0;
}
.banner-item__link {
  display: inline-block;
  position: relative;
  transition: transform 0.3s ease;
  padding-bottom: 14px;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  padding-left: 1rem;
}
.banner-item__link::after {
  content: "";
  display: block;
  width: 200px;
  height: 1px;
  background-color: #fff;
  position: absolute;
  bottom: 0;
  left: 0;
  transform-origin: left;
  transform: scaleX(1);
  transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1);
}
.banner-item__link::before {
  content: "+";
  position: absolute;
  right: -100px;
  bottom: 13px;
  font-size: 1.1rem;
  line-height: 1;
}
.banner-item:hover .banner-item__link {
  transform: translateX(8px);
}
.banner-item:hover .banner-item__link::after {
  transform: scaleX(0);
  transform-origin: right;
}

@media (max-width: 768px) {
  .banner-grid {
    padding: 0;
  }
  .banner-grid__inner {
    grid-template-columns: 1fr;
    gap: 20px;
    margin: -40px auto 0;
  }
  #page-service .banner-grid__inner {
    margin: 40px auto 0;
    padding: 0;
  }
  .service-banner .banner-grid__title {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 160px;
    margin: 0 auto;
    transform: translateX(0%);
  }
  .service-banner .banner-grid__title img {
    width: auto;
    height: 100%;
    margin: 0 auto;
  }
  .banner-item__content {
    padding: 3vw 5vw 6vw 10vw;
  }
  .banner-item h3 {
    font-size: 16px;
    margin-top: 24px;
  }
  .banner-item__link {
    margin-left: -16px;
    font-size: 0.6rem;
    padding-bottom: 8px;
    display: block;
    width: 160px;
  }
  .banner-item__link::after {
    width: 160px;
  }
  .banner-item__link::before {
    right: 12px;
    bottom: 8px;
    font-size: 1rem;
  }
}
/* ===========================
   legal Page
=========================== */
.legal-section {
  padding: 80px 0 0;
  color: #767676;
  font-family: "noto-serif-jp", serif;
}
.legal-section .legal-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 60px;
  color: #767676;
}
.legal-section .legal-left {
  flex: 0 0 30%;
  position: relative;
}
.legal-section .legal-left .legal-title {
  position: relative;
  color: #767676;
}
.legal-section .legal-left .legal-title img {
  position: absolute;
  top: 0;
  left: 0;
  width: 380px;
  pointer-events: none;
}
.legal-section .legal-left .legal-title h2 {
  padding-top: 60px;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.2em;
  color: #767676;
  font-family: "Noto Serif JP", serif;
  position: relative;
  z-index: 1;
}
.legal-section .legal-right {
  flex: 1;
  padding: 0 0 40px;
  font-size: 14px;
  line-height: 1.8;
  color: #767676;
  border-bottom: 1px solid #d3c4d5;
}
.legal-section .legal-right.is-last {
  border-bottom: none;
}
.legal-section .legal-right h4 {
  font-size: 15px;
  margin: 20px 0 10px;
  font-family: "Noto Serif JP", serif;
}
.legal-section .legal-right p,
.legal-section .legal-right dd {
  margin-bottom: 1em;
  line-height: 2;
}
.legal-section .legal-right .legal-top-text {
  font-size: 14px;
  padding: 40px 0;
  margin-bottom: 40px;
  line-height: 1.8;
  border-bottom: 1px solid #d3c4d5;
}
.legal-section .legal-right dt {
  font-weight: normal;
  margin-top: 0.8em;
}
.legal-section .tokutei-table {
  display: grid;
  grid-template-columns: 30% 1fr;
  width: 100%;
}
.legal-section .tokutei-table dt,
.legal-section .tokutei-table dd {
  margin: 0;
  line-height: 1.6;
  border-bottom: 1px solid #d3c4d5;
}
.legal-section .tokutei-table dt {
  padding: 40px 16px 40px 0;
  font-family: "Noto Serif JP", serif;
  color: #767676;
}
.legal-section .tokutei-table dd {
  padding: 40px 0 40px 40px;
  font-size: 14px;
  color: #767676;
}
.legal-section hr {
  border: none;
  border-top: 1px solid #d3c4d5;
  margin: 40px 0;
}
@media (max-width: 768px) {
  .legal-section {
    padding: 16px 24px;
  }
  .legal-section .legal-inner {
    flex-direction: column;
    gap: 8px;
  }
  .legal-section .legal-left {
    flex: 1;
    padding: 16px 0;
    font-size: 12px;
    letter-spacing: 0.05rem;
  }
  .legal-section .legal-left .legal-title h2 {
    font-size: 18px;
    padding: 16px 0;
  }
  .legal-section .legal-left .legal-title img {
    width: 100%;
  }
  .legal-section .legal-right {
    padding: 16px 0;
    font-size: 12px;
    letter-spacing: 0.05rem;
  }
  .legal-section .legal-right .legal-top-text {
    padding: 16px 0 40px;
    margin-bottom: 24px;
    font-size: 12px;
  }
  .legal-section .legal-right p,
  .legal-section .legal-right dd {
    width: 90%;
    margin: 0 auto 1em;
    line-height: 2;
  }
  .legal-section .legal-right h4 {
    font-size: 15px;
    margin: 24px 0 8px 5%;
  }
  .legal-section .tokutei-table {
    grid-template-columns: 30% 1fr;
  }
  .legal-section .tokutei-table dt {
    padding: 24px 16px 0 8px;
    font-size: 12px;
  }
  .legal-section .tokutei-table dd {
    width: 100%;
    padding: 24px 0 24px 24px;
    font-size: 11px;
    line-height: 1.8;
    letter-spacing: 0.1rem;
    margin: 0;
  }
}

/* ===========================
   blog
=========================== */
.blog {
  padding: 0;
  color: #767676;
}
.blog__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
  position: relative;
}
.blog .section-title {
  position: absolute;
  top: -150px;
  right: 0;
  width: 40%;
  max-width: 280px;
  z-index: 2;
}
.blog .section-title img {
  width: 100%;
  height: auto;
  display: block;
}
.blog__list {
  margin-top: 100px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.blog .blog-card {
  border-bottom: 1px solid #bbb;
  padding-bottom: 24px;
}
.blog .blog-card a {
  display: flex;
  align-items: center;
  text-decoration: none;
  padding-left: 40px;
  color: #767676;
  transition: 0.6s;
}
.blog .blog-card a:hover {
  opacity: 0.8;
}
.blog .blog-card__date {
  font-size: 0.85rem;
  margin-right: 80px;
  min-width: 90px;
  letter-spacing: 0.1em;
  font-family: "Noto Serif JP", serif;
}
.blog .blog-card__title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-size: 14px;
  letter-spacing: 0.2em;
  transition: color 0.3s ease;
}
.blog__more {
  margin-top: 40px;
  text-align: right;
}
.blog .viewmore {
  display: block;
  width: 200px;
  margin-left: auto;
  position: relative;
  padding-bottom: 14px;
  padding-left: 1rem;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: #767676;
  text-align: left;
  transition: transform 0.3s ease;
}
.blog .viewmore:hover {
  text-decoration: none;
  transform: translateX(6px);
}
.blog .viewmore::before {
  content: "+";
  position: absolute;
  right: 6px;
  bottom: 8px;
  font-size: 1.2rem;
  line-height: 1;
  transition: transform 0.3s ease;
}
.blog .viewmore::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 200px;
  height: 1px;
  background: #bbb;
  transform: scaleX(1);
  transform-origin: left;
  transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1);
}
.blog .viewmore:hover::after {
  transform: scaleX(0);
  transform-origin: right;
}
@media (max-width: 768px) {
  .blog__inner {
    padding: 0 24px;
  }
  .blog .section-title {
    position: relative;
    top: 40px;
    width: 100%;
    height: 160px;
  }
  .blog .section-title img {
    width: auto;
    height: 100%;
  }
  .blog__list {
    margin-top: 0;
    gap: 16px;
  }
  .blog .blog-card {
    padding-bottom: 16px;
  }
  .blog .blog-card a {
    flex-direction: column;
    align-items: flex-start;
    padding-left: 0;
  }
  .blog .blog-card__date {
    margin-bottom: 8px;
    font-size: 70%;
  }
  .blog .blog-card__title {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 400;
    font-size: 13px;
  }
}

/* ===========================
   social
=========================== */
.social {
  padding: 120px 0 0;
  font-family: "Noto Serif JP", serif;
}
.social__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
  position: relative;
}
.social__title {
  width: 200px;
  position: absolute;
  top: -140px;
  left: 0;
}
.social__title img {
  width: 100%;
  height: auto;
  display: block;
}
.social__list {
  display: flex;
  justify-content: space-between;
  flex-wrap: nowrap;
  list-style: none;
  padding: 0;
  margin: 60px 0 0;
  gap: 20px;
}
.social__item {
  flex: 1 1 calc(25% - 20px);
}
.social__item a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: "Noto Serif JP", serif;
  font-weight: 100;
  text-decoration: none;
  color: #767676;
  border: 1px solid #bbb;
  padding: 16px 24px;
  transition: color 0.6s ease, border-color 0.6s ease, background-color 0.6s ease;
  /* SVG icon */
}
.social__item a:hover {
  color: darkgray;
  border-color: rgb(244.3267326733, 240.6881188119, 244.8118811881);
  background-color: rgba(0, 0, 0, 0.02);
}
.social__item a .social__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
}
.social__item a .social__icon img {
  max-height: 100%;
}
.social__item a .social__icon svg {
  width: 24px;
  height: 24px;
  fill: #d57098;
}
.social__item a .social__icon svg path {
  fill: #d57098;
  transition: opacity 0.6s ease;
}
.social__item a:hover .social__icon svg path {
  opacity: 0.8;
}
.social__text {
  flex: 1;
  margin: 0 0 0 -20px;
  text-align: center;
  font-size: 0.8rem;
  font-family: "Noto Serif JP", serif;
  font-weight: 300;
  letter-spacing: 0.2rem;
}
@media (max-width: 768px) {
  .social {
    padding: 40px 0 0;
  }
  .social__title {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 120px;
  }
  .social__title img {
    width: auto;
    height: 100%;
    margin: 0 auto;
  }
  .social__list {
    flex-wrap: wrap;
    gap: 12px;
    margin: 0 auto;
  }
  .social__item {
    flex: 1 1 calc(50% - 15px);
  }
  .social__item a {
    padding: 12px 0;
  }
  .social__text {
    font-size: 65%;
    margin-left: -24px;
  }
  .social .social__icon {
    width: 20px;
    height: 20px;
    margin-left: 12px;
  }
  .social .social__icon img {
    height: 100%;
  }
}

/* ===========================
   contact Page
=========================== */
.contact-lead {
  position: relative;
  padding: 40px 0;
}
.contact-lead__inner {
  max-width: 1080px;
  margin: 100px auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  color: #767676;
  letter-spacing: 0.1rem;
  position: relative;
}
.contact-lead__left {
  flex: 0 0 20%;
  min-width: 120px;
  position: relative;
}
.contact-lead__title {
  font-size: 24px;
  font-weight: normal;
  color: #767676;
  letter-spacing: 0.1rem;
  font-family: "Noto Serif JP", serif;
  position: relative;
  z-index: 2;
}
.contact-lead__bg {
  position: absolute;
  top: -150px;
  left: 0;
  width: 400px;
  z-index: 1;
}
.contact-lead__bg img {
  width: 100%;
  height: auto;
}
.contact-lead__right {
  flex: 1;
  width: 95%;
  margin: 0 auto;
  font-size: 14px;
  line-height: 2.2;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
}
@media (max-width: 768px) {
  .contact-lead {
    padding: 40px 24px;
  }
  .contact-lead__inner {
    flex-direction: column;
    gap: 24px;
    margin: 24px 0;
  }
  .contact-lead__left {
    flex: none;
  }
  .contact-lead__bg {
    width: 257px;
    top: -62px;
    left: auto;
  }
}

/* ===========================
   archive-task_coach
=========================== */
.archive-task-coach {
  padding: 0;
}
.archive-task-coach .coach-search {
  display: flex;
  gap: 12px;
  align-items: center;
  margin: 24px 0 32px;
}
.archive-task-coach .coach-search__field {
  flex: 1;
}
.archive-task-coach .coach-viewmore {
  text-align: center;
  margin: 40px 0;
}
.archive-task-coach .btn--viewmore {
  border: none;
  font-family: "Noto Serif JP", serif;
  transition: background-color 0.3s ease;
}
@media (max-width: 1024px) {
  .archive-task-coach .coach-card__thumb {
    height: 220px;
  }
  .archive-task-coach .coach-card__title {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .archive-task-coach .coach-search {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    width: 90%;
    margin: 16px auto 24px;
  }
  .archive-task-coach .coach-viewmore {
    margin: 32px 24px;
  }
  .archive-task-coach .btn--viewmore {
    font-size: 15px;
    padding: 10px 24px;
    border-radius: 30px;
  }
  .archive-task-coach .viewmore {
    width: 160px;
    padding-bottom: 12px;
    font-size: 70%;
  }
  .archive-task-coach .viewmore::after {
    width: 160px;
  }
  .archive-task-coach .viewmore::before {
    right: 8px;
    bottom: 12px;
    font-size: 1rem;
  }
}

/* ===========================
   archive-voice
=========================== */
.archive-voice #voice-results {
  margin: 60px auto 0;
}
@media (max-width: 1024px) {
  .archive-voice #voice-results {
    margin: 40px auto 0;
  }
}
.archive-voice .voice-grid {
  margin-top: 40px;
}
@media (max-width: 1024px) {
  .archive-voice .voice-grid {
    margin-top: 32px;
  }
}
@media (max-width: 768px) {
  .archive-voice .voice-grid {
    margin-top: 24px;
    padding: 0 24px;
  }
}

/* ===========================
   coach single Page
=========================== */
body.single .coach-single {
  padding-top: 0;
  /* ---------------------------
     Main Area
  --------------------------- */
  /* ---------------------------
     CTA
  --------------------------- */
  /* ---------------------------
     SNS
  --------------------------- */
}
body.single .coach-single .coach-single__inner {
  max-width: 960px;
  margin: 80px auto 0;
  padding: 0 20px;
}
body.single .coach-single .coach-single__header {
  text-align: center;
  display: flex;
  align-items: center;
  margin-bottom: 40px;
  gap: 50px;
}
body.single .coach-single .coach-single__header .coach-single__title {
  font-size: 36px;
  font-weight: 400;
  letter-spacing: 0.3em;
  color: #767676;
  font-family: "Noto Serif JP", serif;
}
body.single .coach-single .coach-single__header .coach-single__furigana {
  display: block;
  letter-spacing: 0.3em;
  font-size: 18px;
  color: #bbb;
}
body.single .coach-single .coach-single__main {
  display: flex;
  gap: 80px;
  align-items: center;
  margin-bottom: 40px;
  color: #767676;
  letter-spacing: 0.1em;
}
body.single .coach-single .coach-single__main .coach-single__left {
  flex: 0 0 40%;
}
body.single .coach-single .coach-single__main .coach-single__left .coach-single__thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
}
body.single .coach-single .coach-single__main .coach-single__left .coach-single__thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
body.single .coach-single .coach-single__main .coach-single__right {
  flex: 1;
}
body.single .coach-single .coach-single__main .coach-single__right .coach-single__info-item {
  display: flex;
  margin-bottom: 10px;
  font-family: "Noto Sans JP", sans-serif;
}
body.single .coach-single .coach-single__main .coach-single__right .coach-single__info-item dt {
  width: 130px;
  font-weight: bold;
}
body.single .coach-single .coach-single__main .coach-single__right .coach-single__info-item dd {
  flex: 1;
}
body.single .coach-single .coach-single__main .coach-single__right .coach-single__info-item--type {
  margin: 40px 0;
  line-height: 1.8;
  align-items: center;
  display: flex;
  gap: 40px;
}
body.single .coach-single .coach-single__main .coach-single__right .coach-single__info-item--type .coach-single__info-item-label {
  margin: 0 20px 0 0;
  font-size: 14px;
}
body.single .coach-single .coach-single__main .coach-single__right .coach-single__info-item--type .coach-type-list {
  padding: 8px 40px;
  background: #fff;
  border: 1px solid #d57098;
  color: #d57098;
  font-size: 14px;
  font-weight: 300;
  text-align: center;
  border-radius: 60px;
  font-family: "Noto Sans JP", sans-serif;
}
body.single .coach-single .coach-single__main .coach-single__right .coach-single__info-item--type .coach-genre-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1;
}
body.single .coach-single .coach-single__main .coach-single__right .coach-single__info-item--type .coach-genre-list .coach-genre-item {
  background: #d57098;
  color: #fff;
  flex: 1 0 150px;
  padding: 8px 10px;
  font-size: 13px;
  line-height: 1.4;
}
body.single .coach-single .coach-cat-task-coach {
  background: #fff;
  width: 100%;
  text-align: center;
  padding: 20px;
  border-radius: 60px;
  color: #91b8c4;
  border: 1px solid #91b8c4;
  font-family: "Noto Serif JP", serif;
  font-size: 16px;
  letter-spacing: 0.3em;
}
body.single .coach-single .coach-single__content {
  width: 80%;
  margin: 40px auto;
  line-height: 1.8;
  font-weight: 300;
  letter-spacing: 0.15em;
  color: #767676;
  font-family: "Noto Sans JP", sans-serif;
}
body.single .coach-single .coach-single__cta {
  margin: 80px 0 0;
}
body.single .coach-single .coach-single__cta .coach-single__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 80%;
  margin: 0 auto;
  padding: 30px 20px;
  background: #fff;
  color: #d57098;
  border: 1px solid #d57098;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 300;
  letter-spacing: 0.2em;
  position: relative;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
}
body.single .coach-single .coach-single__cta .coach-single__btn::after {
  content: "";
  width: 32px;
  height: 32px;
  background: #d57098;
  border-radius: 50%;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  transition: all 1s ease;
}
body.single .coach-single .coach-single__cta .coach-single__btn::before {
  content: "";
  position: absolute;
  right: 31px;
  top: 50%;
  transform: translateY(-50%);
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 8px solid #fff;
  transition: all 1s ease;
  z-index: 1;
}
body.single .coach-single .coach-single__cta .coach-single__btn:hover {
  background: #d57098;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
body.single .coach-single .coach-single__cta .coach-single__btn:hover::after {
  background: #fff;
}
body.single .coach-single .coach-single__cta .coach-single__btn:hover::before {
  border-left-color: #d57098;
}
body.single .coach-single .coach-single__sns {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin: 40px 0;
  padding: 0;
  list-style: none;
}
body.single .coach-single .coach-single__sns .sns-item a {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #bbb;
  background: #fff;
  transition: all 1s ease;
}
body.single .coach-single .coach-single__sns .sns-item a .sns-icon svg {
  width: 24px;
  height: 24px;
  fill: #d57098;
  transition: fill 0.3s ease;
}
body.single .coach-single .coach-single__sns .sns-item a:hover {
  background: #d57098;
  border-color: #d57098;
}
body.single .coach-single .coach-single__sns .sns-item a:hover .sns-icon svg {
  fill: #fff;
}
body.single .coach-single .coach-single__back {
  text-align: center;
  margin: 80px auto 0;
}
body.single .coach-single .coach-single__back .viewmore {
  margin: 0 auto;
  font-size: 0.8rem;
}
@media (max-width: 768px) {
  body.single .coach-single {
    padding: 0 24px;
  }
  body.single .coach-single .coach-single__inner {
    margin: 40px auto 0;
  }
  body.single .coach-single .coach-single__header {
    gap: 0;
    justify-content: space-between;
    margin-bottom: 8px;
  }
  body.single .coach-single .coach-single__header .coach-single__title {
    font-size: 7vw;
  }
  body.single .coach-single .coach-single__furigana {
    font-size: 3.4vw;
  }
  body.single .coach-single .coach-single__main {
    flex-direction: column;
    gap: 20px;
  }
  body.single .coach-single .coach-single__main .coach-single__left,
  body.single .coach-single .coach-single__main .coach-single__right {
    width: 100%;
    flex: none;
  }
  body.single .coach-single .coach-single__info-item-label {
    font-size: 12px;
  }
  body.single .coach-single .coach-type-list {
    padding: 4px 24px;
    font-size: 12px;
  }
  body.single .coach-single .coach-cat-task-coach {
    padding: 12px 0;
    font-size: 12px;
  }
  body.single .coach-single .coach-genre-item {
    flex: 0 1 29%;
    font-size: 10px;
    padding: 8px 0;
  }
  body.single .coach-single .coach-single__content {
    width: 100%;
    font-size: 14px;
  }
  body.single .coach-single .coach-single__btn {
    width: 100%;
    padding: 24px 0 24px 24px;
  }
  body.single .coach-single .coach-single__btn::after {
    width: 24px;
    height: 24px;
  }
  body.single .coach-single .coach-single__btn::before {
    right: 26px;
  }
  body.single .coach-single .sns-item a {
    width: 48px;
    height: 48px;
  }
  body.single .coach-single .sns-item a .sns-icon svg {
    width: 20px;
    height: 20px;
  }
}

/* ===========================
   single-voice
=========================== */
.voice-single {
  background: #fff;
  border-radius: 12px;
  padding: 0;
  width: 80%;
  margin: 0 auto;
}
.voice-single__title {
  margin-bottom: 24px;
  text-align: left;
  font-size: 32px;
  font-weight: 400;
  letter-spacing: 0.3em;
  color: #767676;
  font-family: "Noto Serif JP", serif;
}
.voice-single__title span {
  font-size: 18px;
}
.voice-single__top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 80px;
  margin-bottom: 60px;
}
.voice-single__photo {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
.voice-single__photo img {
  width: 100%;
  max-width: 560px;
  height: auto;
  aspect-ratio: 560/400;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: block;
}
.voice-single__banner {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.voice-single__content {
  width: 80%;
  margin: 40px auto;
  line-height: 1.8;
  font-weight: 300;
  letter-spacing: 0.15em;
  color: #767676;
  font-family: "Noto Sans JP", sans-serif;
}
.voice-single__back {
  text-align: center;
  margin-top: 60px;
}
.voice-single__back .viewmore {
  text-align: left;
  margin: 0 auto;
  font-size: 0.8rem;
  padding-bottom: 14px;
  padding-left: 1rem;
  letter-spacing: 0.2em;
}
@media (max-width: 1024px) {
  .voice-single {
    margin: 40px auto 0;
  }
  .voice-single__top {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
    margin-bottom: 24px;
  }
  .voice-single__title {
    font-size: 7vw;
    margin-bottom: 8px;
  }
  .voice-single__photo, .voice-single__banner {
    flex: 1 1 100%;
    max-width: 100%;
    width: 100%;
  }
  .voice-single__photo img {
    max-width: 100%;
  }
  .voice-single__content {
    width: 90%;
    font-size: 13px;
    margin: 0 auto;
    line-height: 1.8;
  }
}

/* ===========================
   taskcoaching Page
=========================== */
.page-content--task-coaching {
  max-width: 940px;
  margin: 0 auto;
  padding: 0 24px;
}

.inline-box-taskcoaching {
  display: inline-block;
  background: #d57098;
  color: #fff;
  padding: 20px 10px;
  border-radius: 8px;
  line-height: 1.8;
  display: block;
  margin: 10px auto;
  text-align: center;
  font-size: 18px;
}

.inline-box-taskcoaching .inline-taskword {
  font-family: "Noto Serif JP", serif;
  font-size: 1.8em;
}

/* ===========================
   login
=========================== */
/* ===========================
   login Page
=========================== */
.login-section {
  background-color: #fff;
  font-family: "Noto Serif JP", serif;
}
.login-section .login-inner {
  max-width: 750px;
  margin: 100px auto 80px;
  box-shadow: none;
  border-radius: 0;
  width: 100%;
}
.login-section .login-inner form {
  width: 100%;
}
.login-section .login-inner form label {
  display: block;
  width: 100%;
  margin: 40px 0;
}
.login-section .login-inner form input {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid #d3c4d5;
  margin: 4px 0 10px;
}
.login-section .login-inner input,
.login-section .login-inner textarea {
  width: 100%;
  background: transparent;
  outline: none;
  padding: 12px 8px;
  font-size: 14px;
  color: #767676;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  letter-spacing: 0.15rem;
}
.login-section .login-inner .login__submit {
  text-align: center;
}
.login-section .login-inner .login__submit .btn--primary {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: #d57098;
  color: #fff;
  border-radius: 40px;
  padding: 24px 140px;
  font-size: 14px;
  font-weight: 300;
  cursor: pointer;
  letter-spacing: 0.2rem;
  font-family: "Noto Serif JP", serif;
  transition: opacity 0.3s ease;
}
.login-section .login-inner .aux {
  text-align: center;
  margin-top: 80px;
  font-size: 12px;
  letter-spacing: 0.2em;
}
.login-section .login-inner .aux a {
  color: #d57098;
  text-decoration: underline;
  transition: opacity 0.3s ease;
}
.login-section .login-inner .aux a:hover {
  opacity: 0.7;
}

/* ===========================
   member Page
=========================== */
.site-main,
.member-main {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

body.is-member .site-header {
  mix-blend-mode: normal !important;
}
body.is-member .site-header .header-inner {
  justify-content: space-between;
}

body .logo--member img {
  width: 150px;
}

.member-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  border: 1px solid #bbb;
  padding: 0 10px;
}

.member-icon img {
  width: 28px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.member-name {
  font-size: 15px;
  line-height: 1.2;
}

.member-notice-bar {
  background: #567DA8;
  color: #fff;
  padding: 8px 0;
  font-size: 14px;
}

.member-notice-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 1200px;
}

.notice-icon img {
  width: 20px;
  height: 20px;
  display: block;
}

body.is-member .site-header {
  position: relative;
  font-size: 14px;
}
body.is-member .member-sidebar {
  font-size: 14px;
  color: #767676;
  background: #fff;
  font-family: "Noto Serif JP", serif;
}
body.is-member .member-nav {
  color: #767676;
}
body.is-member .member-top .doc-link {
  color: #767676;
}

.member-accordion .acc-item:first-child {
  border-top: none;
}
.member-accordion li {
  border: 1px solid #d3c4d5;
  margin: 2px 0;
}
.member-accordion .acc-icon {
  color: #d3c4d5;
  font-size: 0;
  position: relative;
  width: 18px;
  height: 18px;
  transition: transform 0.25s ease;
}
.member-accordion .acc-toggle {
  color: #767676;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  border-top: 1px solid #d3c4d5;
  background: #fff;
  padding: 10px 14px;
  cursor: pointer;
  font-family: "Noto Serif JP", serif;
  transition: background 0.25s ease;
}
.member-accordion .doc-list li {
  border: none;
}
.member-accordion .doc-list li a {
  color: #767676;
  font-size: 13px;
  font-family: "Noto Sans JP", sans-serif;
}
.member-accordion .acc-toggle[aria-expanded=false] .acc-icon::before,
.member-accordion .acc-toggle:not([aria-expanded=true]) .acc-icon::before {
  content: "＋";
  font-size: 18px;
  color: currentColor;
  position: absolute;
  top: -8px;
  left: 0;
}
.member-accordion .acc-toggle[aria-expanded=true] .acc-icon::before {
  content: "－";
  font-size: 18px;
  color: #fff;
  position: absolute;
  top: -8px;
  left: 0;
}
.member-accordion .acc-toggle[aria-expanded=true] {
  background: #C698A6;
  color: #fff;
}

.acc-panel .empty {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 13px;
  padding: 6px;
}

@media (max-width: 768px) {
  .btn--logout {
    padding: 4px;
  }
  .member-name {
    font-size: 13px;
    line-height: 1.2;
    flex: 1;
    padding: 4px 0;
  }
  .member-meta {
    padding: 0;
    gap: 4px;
  }
  .member-icon {
    padding: 4px;
  }
  .member-icon img {
    width: 24px;
  }
  body.is-member .member-content .inner {
    padding: 0;
  }
  .mpc-grid dd {
    margin: 0 10px;
  }
}
/* ===========================
   右カラムコンテンツ部分
=========================== */
body.is-member .member-content {
  background-color: #fff;
  color: #767676;
  padding: 40px 20px;
}
body.is-member .member-content .inner {
  font-size: 0.85rem;
}
body.is-member .member-content h1 {
  margin: 40px 0;
  line-height: 1.4;
}
body.is-member .member-content .member-doc__content {
  line-height: 1.8;
}
body.is-member .member-content .member-doc__content h2 {
  font-size: 22px;
  margin: 30px 0 15px;
}
body.is-member .member-content .member-doc__content h3 {
  font-size: 18px;
  margin: 20px 0 10px;
}
body.is-member .member-content .member-doc__content p {
  margin-bottom: 1.6em;
}

@media (max-width: 768px) {
  body.is-member .member-content.is-content {
    margin: 0;
    padding: 3vw;
  }
  body.is-member .member-content.is-content h1 {
    margin: 20px 0;
  }
}/*# sourceMappingURL=style.css.map */