@charset "UTF-8";
/*
    Template: swell
    Theme Name: SWELL CHILD
    Theme URI: https://swell-theme.com/
    Description: SWELLの子テーマ
    Version: 1.0.0
    Author: LOOS WEB STUDIO
    Author URI: https://loos-web-studio.com/

    License: GNU General Public License
    License URI: http://www.gnu.org/licenses/gpl.html
*/




/* =========================
   共通パーツ
========================= */
.swell-block-button a {
	padding: 16px!important;
}
.page-id-782 h1 {
	font-size: 30px;
    color: #333;
    font-weight: 600;
}
/* =========================
   トップページ
========================= */
.page-id-9 #content{
  padding-top: 0!important;
}
.page-id-9 h2::before {
	content: none;
}
.w-beforeFooter {
  margin-bottom: 0!important;
}
.l-content {
  margin-bottom: 0!important;
}
.c-gnav>.menu-item>a .ttl {
  font-weight: 600;
  letter-spacing: 0.1em;
}
#footer {
  display: none;
}
.swell-block-fullWide:last-of-type {
  padding-bottom: 0 !important;
}

/* FV */
.fv {
  position: relative;
  width: 100%;
  height: calc(100vh - 70px);
  overflow: hidden;
}
.fv__slide {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 1s ease;
}
.fv__slide.active {
  opacity: 1;
  z-index: 1;
}
.fv__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 4s ease;
}
.fv__slide.active img {
  transform: scale(1.1);
}
.fv__content {
  position: absolute;
  z-index: 5;
  top: 48%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(90%, 900px);
  text-align: center;
}
.fv__title-main {
  position: static;
  transform: none;
  width: 100%;
  font-size: clamp(60px, 6vw, 85px);
  font-weight: bold;
  line-height: 1.2;
  text-align: center;
  font-style: italic;
  color: #fff;
  margin-top: -50px;
  text-shadow: 3px 3px 5px rgba(0, 0, 0, 0.6);
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s ease forwards;
  animation-delay: 0.6s;
}
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fv__logo {
  position: static;
  width: 350px;
  margin: 0 auto;
  transform: none;
}
.fv__logo img {
  width: 100%;
}
.fv__title-accent {
 color: #f97316;
}
@media (max-width: 768px) {
  .fv {
    height: calc(100vh - 60px);
  }

  .fv__content {
    top: 46%;
  }

  .fv__logo {
    width: 220px;
    margin-bottom: 20px;
  }

  .scroll-line {
    height: 60px;
  }
}
/* =========================
   スクロールインジケーター
========================= */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  text-align: center;
  color: #fff;
  font-size: 12px;
}
.scroll-indicator span {
  display: block;
  margin-bottom: 5px;
  letter-spacing: 2px;
}
.scroll-line {
  width: 1.5px;
  height: 80px;
  background: rgba(255, 255, 255, 0.3);
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
.scroll-line::after {
  content: "";
  position: absolute;
  top: -100px; 
  left: 0;
  width: 100%;
  height: 100px;
  background: #fff;
  animation: scrollMove 2s infinite;
}
@keyframes scrollMove {
  0% {
    top: -100px;
  }
  30% {
    top: -100px;
  }
  100% {
    top: 100px;
  }
}

/* メッセージ */
.message-section {
  padding-bottom: 30px;
}
.message-section__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 48px;
}
.message-section__image {
  width: 100%;
  max-width: 600px;
  aspect-ratio: 1/1;
}
.message-section__image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.message-section__content {
  flex: 1;
  padding-top: 22px;
}
.message-section__title {
  position: relative;
  margin: 0 0 48px!important;
  padding-top: 0!important;
  padding-left: 0!important;
  padding-right: 0!important;
  color: #fff!important;
}
.message-section__title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 70px;
  height: 4px;
  background: #f97316;
}
.message-section__text {
  margin: 0 0 28px;
  line-height: 1.9;
  color: #fff;
}
.message-section__profile {
  margin-top: 52px;
}
.message-section__name {
  margin: 0 0 8px;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.5;
  color: #fff;
}
.message-section__position {
  margin: 0;
  font-size: 16px;
  color: #989fb0;
}
/* --- 既存のコードの下に追加 --- */

@media screen and (max-width: 1024px) {
  .message-section__inner {
    gap: 32px; /* 間隔を少し狭く */
  }
}

@media screen and (max-width: 768px) {
  .message-section {
    padding-bottom: 50px; /* 下の余白を調整 */
  }

  .message-section__inner {
    flex-direction: column-reverse; /* 縦並びに変更 */
    align-items: center;
    gap: 32px;
  }

  .message-section__image {
    width: 100%; /* 画像を横幅いっぱいに */
    max-width: none;
  }

  .message-section__content {
    padding-top: 0;
    width: 100%;
  }

  .message-section__title {
    margin-bottom: 32px !important;
    text-align: center; /* タイトルを中央寄せにする場合 */
  }

  .message-section__title::after {
    left: 50%;
    transform: translateX(-50%); /* オレンジの線も中央に */
  }

  .message-section__profile {
    margin-top: 40px;
  }
}

/* 活動内容 */
.activity {
  padding: 80px 0;
}
.activity__inner {
  width: min(100%, 1100px);
  margin: 0 auto;
}
.activity-item {
  position: relative;
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 90px;
}
.activity-item--reverse {
  grid-template-columns: 1fr 420px;
}
.activity-item--reverse .activity-item__image {
  order: 2;
}
.activity-item--reverse .activity-item__content {
  order: 1;
}

.activity-item__image {
  position: relative;
  overflow: hidden;
}

.activity-item--1 .activity-item__image {
  transform: translateY(-20px);
}

.activity-item--2 .activity-item__image {
  transform: translateY(24px);
}

.activity-item--3 .activity-item__image {
  transform: translateY(-12px);
}

.activity-item__image img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.activity-item__content {
  position: relative;
}

.activity-item__content::before {
  content: "";
  position: absolute;
  top: 0;
  left: -30px;
  width: 120px;
  height: 120px;
  background: rgba(30, 58, 138, 0.06);
  border-radius: 24px;
  z-index: 0;
}

.activity-item__num {
  position: absolute;
  top: -10px;
  right: 0;
  font-size: 88px;
  font-weight: 700;
  line-height: 1;
  color: rgba(30, 58, 138, 0.08);
}

.activity-item__title,
.activity-item__text {
  position: relative;
  z-index: 1;
}

.activity-item__title {
  margin: 0 0 20px;
  font-size: 32px;
}

.activity-item__text {
  margin: 0;
  font-size: 16px;
  line-height: 2;
}

@media (max-width: 767px) {
  .activity {
  padding: 30px 0;
}
  .activity-item,
  .activity-item--reverse {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .activity-item--reverse .activity-item__image,
  .activity-item--reverse .activity-item__content {
    order: initial;
  }

  .activity-item__image,
  .activity-item--1 .activity-item__image,
  .activity-item--2 .activity-item__image,
  .activity-item--3 .activity-item__image {
    transform: none;
  }

  .activity-item__content {
    padding: 24px 0 0;
  }

  .activity-item__num {
    top: -8px;
    right: 0;
    font-size: 56px;
  }
}

/* お客様の声 */
.voice-section {
  padding-top: 70px;
  padding-bottom: 20px;
  overflow: hidden;
}
.voice-section__inner {
  width: min(100%, 1200px);
  margin: 0 auto;
  padding: 0 20px;
}
.voice-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}
.voice-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ccc;
  cursor: pointer;
  transition: 0.3s;
}
.voice-dot.is-active {
  background: #f97316;
  transform: scale(1.2);
}
.voice-slider-container {
  position: relative;
  display: flex;
  align-items: center;
  padding: 0 50px;
}
.voice-slider {
  overflow: hidden;
  width: 100%;
}
.voice-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background-color: #f97316;
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  transition: opacity 0.3s;
}
.voice-control.prev {
  left: 15px;
  justify-content: flex-start;
  padding-left: 10px;
}
.voice-control.next {
  right: 15px;
  justify-content: flex-end;
  padding-right: 10px;
}
.voice-control:hover {
  opacity: 0.8;
}
@media (max-width: 767px) {
  .voice-control.prev {
  left: 0;
}
.voice-control.next {
  right: 0;
}
}

/* ドットの色の修正 */
.voice-dot.is-active {
  background: #f97316;
}

@media (max-width: 991px) {
  .voice-card { flex: 0 0 calc((100% - 24px) / 2); }
}
@media (max-width: 767px) {
  .voice-slider-container { padding: 0 30px; }
  .voice-card { flex: 0 0 100%; }
}
.voice-slider__track {
  display: flex;
  gap: 24px;
  transition: transform 0.6s ease;
}
.voice-card {
  flex: 0 0 calc((100% - 48px) / 3);
  padding: 33px 24px;
  background: #fff;
  border-radius: 24px;
  /* box-shadow: 0 12px 30px rgba(0,0,0,0.08); */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.voice-card__text {
  font-size: 18px!important;
  line-height: 1.7!important;
  margin-top: 0 !important;
  margin-bottom: 15px !important;
}
.voice-card__meta {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid #eee;
}
.voice-card__avatar {
  width: 80px;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid #fff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.voice-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.voice-card__info {
  display: flex;
  flex-direction: column;
}
.voice-card__name {
  font-size: 14px;
  font-weight: 700;
  color: #1e3a8a;
}
.voice-card__star {
  font-size: 13px;
  color: #f97316;
}
@media (max-width: 991px) {
  .voice-card {
    flex: 0 0 calc((100% - 24px) / 2);
  }
}
@media (max-width: 767px) {
  .voice-section {
    padding: 40px 0;
  }
  .voice-card {
    flex: 0 0 100%;
  }
  .voice-card__text {
    font-size: 14px;
  }
}


/* コーチ一覧 */
.post_content h2:where(:not([class^="swell-block-"]):not(.faq_q):not(.p-postList__title)) {
  background: transparent;
}
.post_content h2:where(:not([class^="swell-block-"]):not(.faq_q):not(.p-postList__title))::before {
  border-top-color: transparent;
}
.post_content h2 {
  font-size: 30px;
  margin-bottom: 0;
  padding-left: 30px;
}
.member-section {
  overflow: hidden;
}
.member-section__inner {
  width: min(100%, 1200px);
  margin-left: auto;
}
.member-section__header {
  position: relative;
  background: #1f3f95;
  border-radius: 28px 0 0 28px;
  padding: 72px 56px 190px;
  overflow: hidden;
}
.member-section__bg-text {
  position: absolute;
  top: 6px;
  right: 22px;
  margin: 0;
  font-size: clamp(64px, 11vw, 160px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.04);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}
.member-section__heading {
  position: relative;
  z-index: 2;
  max-width: 700px;
}
.member-section__title {
  margin: 0 0 20px;
  color: #fff;
  font-size: clamp(30px, 3vw, 52px);
  font-weight: 700;
  line-height: 1.3;
}
.member-section__lead {
  margin: 0;
  color: #fff;
  font-size: 16px;
  line-height: 1.9;
  padding-left: 30px;
}
.member-section__nav {
  position: absolute;
  right: 56px;
  top: 50%;
  transform: translateY(-10%);
  z-index: 3;
  display: flex;
  gap: 16px;
}
.member-section__arrow {
  width: 54px;
  height: 54px;
  border: none;
  border-radius: 50%;
  background: #f97316;
  color: #fff;
  font-size: 24px;
  line-height: 1;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: transform 0.25s ease, opacity 0.25s ease, background 0.25s ease;
}
.member-section__arrow:active {
  transform: translateY(0);
}
.member-section__arrow:disabled {
  opacity: 0.45;
  cursor: default;
}
.member-slider {
  position: relative;
  margin-top: -130px;
  z-index: 5;
  overflow-x: auto;
  overflow-y: visible;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-behavior: smooth;
}
.member-slider::-webkit-scrollbar {
  display: none;
}
.member-slider__track {
  display: flex;
  gap: 34px;
  width: max-content;
  padding: 0 120px 0 0;
}
.member-card {
  flex: 0 0 320px;
}
.member-card__linkwrap {
  display: block;
  color: inherit;
  text-decoration: none;
}
.member-card__image {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  aspect-ratio: 1 / 1.04;
  background: #ececec;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}
.member-card__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
	object-position: center top !important;
}
.member-card__name {
  margin: 22px 0 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.7;
  color: #222;
  letter-spacing: 0.02em;
}
.member-card__more {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  margin-top: 18px;
}
.member-card__more-text {
  font-size: 16px;
  font-weight: 700;
  color: #333;
  line-height: 1.5;
}
.member-card__more-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #f97316;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 22px;
  line-height: 1;
  flex-shrink: 0;
  transition: transform 0.25s ease, background 0.25s ease;
}
.member-card__linkwrap:hover .member-card__more-icon {
  transform: translateX(3px);
}

@media (max-width: 1024px) {
  .member-section {
    padding: 90px 0 80px;
  }

  .member-section__header {
    padding: 56px 32px 170px;
  }

  .member-section__nav {
    right: 32px;
  }

  .member-slider {
    margin-top: -115px;
  }

  .member-slider__track {
    gap: 24px;
    padding-right: 90px;
  }

  .member-card {
    flex-basis: 280px;
  }

  .member-card__name {
    font-size: 16px;
  }
}

@media (max-width: 767px) {
  .member-section {
    padding: 70px 0 64px;
  }

  .member-section__inner {
    padding: 0;
  }

  .member-section__header {
    border-radius: 22px;
    padding: 44px 20px 140px;
  }

  .member-section__bg-text {
    top: 14px;
    right: 12px;
    font-size: 58px;
  }

  .member-section__title {
    margin-bottom: 14px;
    font-size: 30px;
  }

  .member-section__lead {
    font-size: 14px;
    line-height: 1.8;
    padding-right: 10px;
  }

  .member-section__nav {
    position: static;
    transform: none;
    justify-content: flex-end;
    margin-top: 24px;
  }

  .member-section__arrow {
    width: 46px;
    height: 46px;
    font-size: 20px;
  }

  .member-slider {
    margin-top: -90px;
  }

  .member-slider__track {
    gap: 18px;
    padding-right: 40px;
  }

  .member-card {
    flex-basis: 78vw;
    max-width: 300px;
  }

  .member-card__image {
    border-radius: 24px;
  }

  .member-card__name {
    margin-top: 16px;
    font-size: 15px;
    line-height: 1.7;
  }

  .member-card__more {
    gap: 14px;
    margin-top: 14px;
  }

  .member-card__more-text {
    font-size: 14px;
  }

  .member-card__more-icon {
    width: 44px;
    height: 44px;
    font-size: 20px;
  }
}

/* よくある質問 */
.faq-feature-section__heading {
  position: relative;
  margin-bottom: 56px;
}
.faq-feature-section__bg-text {
  position: absolute;
  top: 50%;
  right: 40px;
  transform: translateY(-50%);
  margin: 0;
  font-size: clamp(64px, 11vw, 160px);
  font-weight: 700;
  line-height: 1;
  color: rgba(255, 255, 255, 0.05);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}
.faq-feature-section__title {
  position: relative;
  z-index: 1;
  margin: 0!important;
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 700;
  line-height: 1.4;
  color: #fff;
  padding-top: 75px!important;
  padding-left: 0!important;
  padding-right: 0!important;
}
.faq-feature-section__lead {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.8;
  color: #fff;
}
@media (max-width: 767px) {
  .faq-feature-section__heading {
    padding: 10px;
    border-radius: 28px;
    margin-bottom: 32px;
  }

  .faq-feature-section__bg-text {
    right: 12px;
    top: auto;
    bottom: -6px;
    transform: none;
    font-size: 72px;
  }

  .faq-feature-section__title {
    margin-bottom: 16px;
    padding-top: 0!important;
  }

  .faq-feature-section__lead {
    line-height: 1.7;
  }
}
.faq-feature-section {
  overflow: hidden;
}
.faq-feature-section__inner {
  width: 100%;
  max-width: 1200px;
  margin-right: auto;
  background: #1f3f95;
  border-radius: 0 28px 28px 0;
  padding: 20px 60px 80px;
  position: relative;
}
.faq-page--grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: start;
}
.faq-card {
  min-width: 0;
}
.faq-card__image {
  border-radius: 32px;
  overflow: hidden;
  aspect-ratio: 1.3 / 1;
  margin-bottom: 18px;
  background: #fff7c7;
}
.faq-card__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.faq-card__title {
  margin-top: 0!important;
  margin-bottom: 0!important;
  border-radius: 999px;
  min-height: 60px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 18px!important;
  line-height: 1.4;
  font-weight: 700;
  color: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}
.faq-list {
  display: grid;
  gap: 14px;
}
.faq-item {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(176, 144, 39, 0.18);
  border-radius: 18px;
  overflow: hidden;
  backdrop-filter: blur(2px);
}
.faq-question {
  width: 100%;
  padding: 18px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  border: none;
  background: transparent;
  font-size: 15px;
  line-height: 1.7;
  font-weight: 700;
  text-align: left;
  color: #4b3d1b;
  cursor: pointer;
}
.faq-question:hover {
  background: rgba(255, 255, 255, 0.55);
}
.faq-question__text {
  flex: 1;
  min-width: 0;
}
.faq-question__icon {
  width: 16px;
  height: 16px;
  position: relative;
  flex-shrink: 0;
}
.faq-question__icon::before,
.faq-question__icon::after {
  content: "";
  position: absolute;
  background: #8b7740;
  width: 100%;
  height: 2px;
  top: 50%;
  left: 0;
  border-radius: 999px;
  transform: translateY(-50%);
  transition: transform 0.3s ease;
}
.faq-question__icon::after {
  transform: translateY(-50%) rotate(90deg);
}
.faq-item.is-open .faq-question__icon::after {
  transform: translateY(-50%) rotate(0deg);
}
.faq-answer-wrap {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
}
.faq-item.is-open .faq-answer-wrap {
  grid-template-rows: 1fr;
}
.faq-answer {
  overflow: hidden;
}
.faq-answer__inner {
  padding: 0 18px 18px;
  border-top: 1px solid rgba(176, 144, 39, 0.18);
  color: #5c5135;
  font-size: 14px;
  line-height: 1.9;
}
.faq-answer__inner p {
  margin: 14px 0 0;
}
.faq-card__link {
  margin-top: 16px;
}
.faq-card__more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 20px;
  border-radius: 999px;
  background: #fff;
  color: #5a4720;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}
.faq-card__more:hover {
  opacity: 0.85;
}
@media (max-width: 1100px) {
  .faq-page--grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .faq-feature-section__inner {
    border-radius: 60px;
    padding: 70px 32px;
  }
}
@media (max-width: 767px) {
  .faq-feature-section {
    padding: 0;
  }

  .faq-feature-section__inner {
    padding: 48px 20px;
    border-radius: 36px;
  }

  .faq-feature-section__inner::before,
  .faq-feature-section__inner::after {
    display: none;
  }

  .faq-page--grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .faq-card__image {
    border-radius: 24px;
    margin-bottom: 14px;
  }

  .faq-card__title {
    min-height: 54px;
    font-size: 17px!important;
    margin-bottom: 16px;
  }

  .faq-question {
    padding: 16px;
    font-size: 14px;
  }

  .faq-answer__inner {
    padding: 0 16px 16px;
    font-size: 13px;
  }
}
.view-more-btn {
  background: none;
  border: none;
  width: 100%;
  max-width: 350px;
  cursor: pointer;
  padding: 16px 0;
  font-weight: 700;
  letter-spacing: 0.05rem;
  outline: none;
  position: relative;
  box-shadow: inset 0 0 0 4px #fff;
  color: #fff;
  display: block;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  margin-top: 50px;
  transition: color 0.25s 0.08333s;
}
.view-more-btn::before,
.view-more-btn::after {
  border: 0 solid transparent;
  box-sizing: border-box;
  content: '';
  pointer-events: none;
  position: absolute;
  width: 0;
  height: 0;
  bottom: 0;
  right: 0;
}
.view-more-btn::before {
  border-bottom-width: 4px;
  border-left-width: 4px;
}
.view-more-btn::after {
  border-top-width: 4px;
  border-right-width: 4px;
}
.view-more-btn:hover {
  color: #ffda65;
}
.view-more-btn:hover::before,
.view-more-btn:hover::after {
  border-color: #ffda65;
  transition: border-color 0s, width 0.25s, height 0.25s;
  width: 100%;
  height: 100%;
}
.view-more-btn:hover::before {
  transition-delay: 0s, 0s, 0.25s;
}
.view-more-btn:hover::after {
  transition-delay: 0s, 0.25s, 0s;
}



/* お問い合わせ */
.cta-section {
  padding: 80px 20px;
  background: #1f3f95;
}

.cta-section__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.cta-section__head {
  text-align: center;
  margin-bottom: 40px;
}

.cta-section__title {
  margin: 0 0 16px;
  color: #fff;
  font-size: 36px!important;
  font-weight: 700;
  line-height: 1.4;
}

.cta-section__lead {
  margin: 0;
  color: rgba(255,255,255,0.92);
  font-size: 16px;
  line-height: 1.9;
}

.cta-section__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.cta-card {
  background: #fff;
  border-radius: 24px;
  padding: 32px 28px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.cta-card__title {
  margin: 0 0 14px;
  font-size: 24px!important;
  font-weight: 700;
  color: #1f3f95;
}

.cta-card__text {
  margin: 0 0 24px;
  font-size: 15px;
  line-height: 1.9;
  color: #555;
}

.cta-card__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 15px 24px;
  width: 100%;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  transition: 0.3s;
}
.cta-card__btn--form {
  background: #f97316;
  color: #fff;
}
.cta-card__btn--line {
  background: #06c755;
  color: #fff;
}
.cta-card__btn:hover {
  opacity: 0.8;
}

@media (max-width: 767px) {
  .cta-section {
    padding: 56px 16px;
  }

  .cta-section__title {
    font-size: 28px!important;
  }

  .cta-section__cards {
    grid-template-columns: 1fr;
  }

  .cta-card {
    padding: 24px 20px;
    border-radius: 20px;
  }

  .cta-card__title {
    font-size: 20px!important;
  }
}
/* フッター前画像 */
.flow-images {
  overflow: hidden;
  background: #fff;
  margin-bottom: 0!important;
}
.flow-images__wrap {
  width: 100%;
}
.flow-images__track {
  display: flex;
  width: max-content;
  animation: flow 30s linear infinite;
}
.flow-images__item {
  flex: 0 0 auto;
  width: 320px;
}
.flow-images__item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}
@keyframes flow {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* フッター */
.footer {
  position: relative;
  background-image: url("/wp-content/uploads/2026/04/ChatGPT-Image-2026年4月9日-16_49_43.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  color: #fff;
}
.footer__overlay {
  background: rgba(0, 0, 0, 0.38);
}
.footer__inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 90px 50px 30px;
}
.footer__main {
  display: flex;
  justify-content: space-between;
  gap: 64px;
}
.footer__info {
  width: 40%;
}
.footer__logo {
  display: inline-block;
  max-width: 520px;
}
.footer__logo img {
  display: block;
  width: 100%;
  height: auto;
}
.footer__dots {
  width: 540px;
  max-width: 100%;
  height: 10px;
  margin: 34px 0 50px;
  background-image: radial-gradient(circle, #fff 3px, transparent 3px);
  background-size: 18px 10px;
  background-repeat: repeat-x;
  background-position: left center;
}
.footer__company p {
  margin: 0 0 18px;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.8;
  color: #fff;
}
.footer__nav-area {
  flex: 1;
}
.footer__nav-title {
  margin: 0 0 34px;
  background: #fff;
  border-radius: 999px;
  min-height: 56px;
  padding: 0 28px;
  display: flex;
  align-items: center;
  font-size: 22px;
  font-weight: 700;
  color: #5a4d3a;
}
.footer__nav {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 56px;
}
.footer__nav-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer__nav-list li {
  border-bottom: 1px dashed rgba(255, 255, 255, 0.7);
}
.footer__nav-list li + li {
  margin-top: 22px;
}
.footer__nav-list a {
  display: block;
  padding: 0 0 14px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.6;
  color: #fff;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.footer__nav-list a:hover {
  opacity: 0.75;
}
.footer__copyright {
  margin: 30px 0 0;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.8;
  color: #fff;
}
.footer__sns {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 40px 0 20px;
}
.footer__sns a {
  display: inline-block;
}
.footer__sns img {
  width: 38px;
  height: auto;
  transition: 0.3s;
}
.footer__sns a:hover img {
  opacity: 0.7;
  transform: translateY(-2px);
}
@media (max-width: 1024px) {
  .footer__main {
    gap: 40px;
  }
  .footer__nav {
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .footer {
    /* スマホでのスクロール不具合防止のため固定を解除 */
    background-attachment: scroll;
  }
  
  .footer__inner {
    padding: 60px 20px 30px;
  }

  .footer__main {
    flex-direction: column; /* 縦並びに変更 */
    gap: 50px;
  }

  .footer__info {
    width: 100%;
    text-align: center;
  }

  .footer__logo {
    max-width: 280px; /* スマホ用にロゴを少し小さく */
    margin: 0 auto;
  }

  .footer__dots {
    margin: 30px auto; /* 中央寄せ */
  }

  .footer__company p {
    font-size: 15px;
    margin-bottom: 12px;
  }

  .footer__nav-title {
    justify-content: center; /* タイトルを中央に */
    font-size: 18px;
    min-height: 48px;
    margin-bottom: 25px;
  }

  .footer__nav {
    grid-template-columns: 1fr; /* スマホではメニューを1列に */
    gap: 0;
  }

  .footer__nav-list li + li {
    margin-top: 0;
  }

  .footer__nav-list a {
    padding: 15px 0; /* タップしやすい広さに */
    font-size: 16px;
    text-align: center;
  }
  
  /* 1つ目のリストの下に境界線を追加（縦並び用） */
  .footer__nav-list:first-child {
    margin-bottom: 0;
  }

  .footer__sns {
    margin: 30px 0 15px;
    gap: 15px;
  }

  .footer__sns img {
    width: 32px; /* SNSアイコンを少し小さく */
  }

  .footer__copyright {
    font-size: 12px;
    margin-top: 20px;
  }
  .footer__nav-list {
    padding-left: 0!important;
  }
}
.footer__tel {
	margin-bottom: 0!important;
}
/* =========================
   下層共通
========================= */
.post_content h2.is-style-section_ttl::after {
  height: 4px;
  background: #f37b20;
}
.president-profile__section-title::before {
  height: 35px!important;
  top: -2px!important;
}
.c-pageTitle {
    text-align: center;
    margin-top: 20px;
    color: #C5A059;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.1em;
    position: relative;
}
.page-id-19 .c-pageTitle::before {
  content: "CONTACT";
  display: block;
  font-size: 38px;
  color: #fff;
  margin-bottom: 5px;
  font-weight: 600;
  font-family: 'Noto Serif JP', serif;
}
.page-id-17 .c-pageTitle::before {
  content: "FAQ";
  display: block;
  font-size: 38px;
  color: #fff;
  margin-bottom: 5px;
  font-weight: 600;
  font-family: 'Noto Serif JP', serif;
}
.page-id-15 .c-pageTitle::before {
  content: "COACH";
  display: block;
  font-size: 38px;
  color: #fff;
  margin-bottom: 5px;
  font-weight: 600;
  font-family: 'Noto Serif JP', serif;
}
.page-id-13 .c-pageTitle::before {
  content: "VOICE";
  display: block;
  font-size: 38px;
  color: #fff;
  margin-bottom: 5px;
  font-weight: 600;
  font-family: 'Noto Serif JP', serif;
}
.page-id-11 .c-pageTitle::before {
  content: "FOUNDER";
  display: block;
  font-size: 38px;
  color: #fff;
  margin-bottom: 5px;
  font-weight: 600;
  font-family: 'Noto Serif JP', serif;
}
.id_255 .c-pageTitle::before {
  content: "Q&A";
  display: block;
  font-size: 38px;
  color: #fff;
  margin-bottom: 5px;
  font-weight: 600;
  font-family: 'Noto Serif JP', serif;
}
@media (max-width: 767px) {
  .c-pageTitle {
    font-size: 14px;
    margin-top: 0;
}
  .page-id-19 .c-pageTitle::before {
  font-size: 26px;
}
  .page-id-17 .c-pageTitle::before {
  font-size: 26px;
}
  .page-id-15 .c-pageTitle::before {
  font-size: 26px;
}
  .page-id-13 .c-pageTitle::before {
  font-size: 26px;
}
  .page-id-11 .c-pageTitle::before {
  font-size: 26px;
}
}
/* =========================
   参加者の声
========================= */
.page-id-13 h2::before {
	content: none;
}
.page-id-13 h2 {
	padding-left: 0!important;
	padding-bottom: 30px;
}
/* =========================
   代表挨拶
========================= */

.president-profile__inner {
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 45px;
}

.president-profile__image {
  width: 400px;
  border-radius: 20px;
  overflow: hidden;
	aspect-ratio: 1 / 1;
}
.president-profile__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.president-profile__content {
  flex: 1;
}
.president-profile__eyebrow {
  margin: 0 0 8px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #f37b20;
  line-height: 1;
}
.president-profile__heading {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 12px 18px;
  margin-bottom: 34px;
}
.president-profile__name-ja {
  margin: 0;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
}
.president-profile__name-en {
  margin: 0;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  line-height: 1.4;
}
.president-profile__section + .president-profile__section {
  margin-top: 42px;
}
.president-profile__section-title {
  position: relative;
  margin: 0 0 22px;
  padding-left: 18px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  color: #fff;
}
.president-profile__text {
  color: #fff;
}
.president-profile__section-title::before {
  content: "";
  position: absolute;
  top: 0.2em;
  left: 0;
  width: 5px;
  height: 1.2em;
  background: #f37b20;
  border-radius: 999px;
}
.president-profile__book-list {
  margin: 0;
  color: #fff;
  padding-left: 1.2em;
}

@media (max-width: 991px) {
  .president-profile__inner {
    gap: 36px;
  }

  .president-profile__image {
    width: 280px;
  }

  .president-profile__eyebrow {
    font-size: 22px;
  }

  .president-profile__name-ja {
    font-size: 24px;
  }

  .president-profile__name-en {
    font-size: 18px;
  }
}

@media (max-width: 767px) {
  .president-profile {
    padding: 56px 16px;
  }

  .president-profile__inner {
    flex-direction: column;
    gap: 28px;
  }

  .president-profile__image {
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
  }

  .president-profile__eyebrow {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .president-profile__heading {
    margin-bottom: 24px;
    gap: 8px 12px;
  }

  .president-profile__name-en {
    font-size: 14px;
  }

  .president-profile__section + .president-profile__section {
    margin-top: 30px;
  }

  .president-profile__section-title::before {
    width: 4px;
  }
}
/* =========================
   コーチ
========================= */
.coach-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}
.coach-img img {
  width: 100%!important;
  height: 100%!important;
  object-fit: cover!important;
  object-position: center top!important;
}

.coach-area,
.coach-cert {
  display: inline-block;
  margin: 0 0 10px;
  padding: 5px 14px;
  border: 1px solid #1f4690;
  border-radius: 999px;
  color: #1f4690;
  font-weight: 600;
  font-size: 14px;
  background: #fff;
  letter-spacing: 0.05em;
}

.coach-cert {
  display: block;
  width: fit-content;
  background: #f3f6ff;
}
/* =========================
   お問い合わせ
========================= */
.contact-form-container {
  margin: 0 auto;
  padding: 48px;
  background-color: #f2f2f2;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}
.form-description {
  margin-bottom: 32px;
  line-height: 1.8;
  color: #374151;
  font-size: 15px;
  text-align: center;
}
.form-group {
  margin-bottom: 24px;
}
.form-group label {
  display: block;
  font-weight: 600;
  color: #111827;
  font-size: 16px;
}
.form-group .required {
    color: #fff;
    background-color: #EF4444;
    font-size: 12px;
    margin-left: 4px;
    padding: 3px 7px;
    border-radius: 5px;
    letter-spacing: 0.08em;
}
.contact-form-container input[type="text"],
.contact-form-container input[type="tel"],
.contact-form-container input[type="email"],
.contact-form-container textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #D1D5DB;
  border-radius: 8px;
  font-size: 15px;
  line-height: 1.6;
  background-color: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.contact-form-container textarea {
  min-height: 160px;
  resize: vertical;
}
.contact-form-container input:focus,
.contact-form-container textarea:focus {
  outline: none;
  border-color: #6CBAD8;
  box-shadow: 0 0 0 3px rgba(108, 186, 216, 0.2);
}
.contact-form-container ::placeholder {
  color: #9CA3AF;
}
.form-agreement {
  margin: 32px 0;
  font-size: 14px;
  color: #374151;
}
.form-agreement input[type="checkbox"] {
  margin-right: 6px;
}
.form-submit {
  text-align: center;
}
.form-submit input[type="submit"] {
  background-color: #F97316;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  padding: 14px 48px;
  width: 100%;
  max-width: 520px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background-color 0.2s, transform 0.1s, box-shadow 0.1s;
}
.form-submit input[type="submit"]:hover {
  background-color: #EA580C;
  box-shadow: 0 8px 20px rgba(156, 119, 70, 0.35);
}
@media (max-width: 640px) {
  .contact-form-container {
    padding: 32px 8px;
  }

  .form-description {
    font-size: 14px;
  }
}
.wpcf7-spinner {
  display: none;
}