﻿@charset "UTF-8";

/* =================================ayout & Base ================= */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* コンテナ共通設定 */
.wellness-overview,
.wellness-nagara,
.wellness-troubles,
.wellness-feature,
.wellness-expert,
.wellness-features-4,
.wellness-simple,
.wellness-developer,
.wellness-verification,
.wellness-voices,
.wellness-courses {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}

/* --- 個別画像・アイコン指定 --- */
.wellness-verification__photo,
.wellness-developer__photo img,
.wellness-expert__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wellness-simple__item img,
.wellness-features-4 img,
.wellness-troubles__image img,
.wellness-feature__image img,
.wellness-developer__photo img {
  width: 100%;
  height: auto;
}

/* ================================== 共通パーツ ================= */
.wellness-title--large {
  display: block;
  font-size: 1.8rem;
  font-weight: bold;
  color: #333;
  margin: 0 0 25px 0;
  line-height: 1.4;
  padding: 5px 0 5px 15px;
  border-left: 5px solid #005eb8;
}

.wellness-text {
  display: block;
  font-size: 1.15rem;
  line-height: 1.9;
  color: #444;
  margin: 0 0 1.8em 0;
}

/* ================================== 各セクション ================= */

/* メインビジュアル */
.wellness-overview {
  padding: 40px 20px;
}
.wellness-overview__hero img {
  display: block;
  width: 100%;
  height: auto;
}

/* ながら運動エリア */
.wellness-nagara {
  margin: 40px auto;
  padding: 0 20px;
}
.wellness-nagara__text-wrapper {
  margin-bottom: 40px;
}
.wellness-nagara__images {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.wellness-nagara__image {
  flex: 1;
  min-width: 280px;
}
.wellness-nagara__image img {
  display: block;
  width: 100%;
  height: auto;
}
.wellness-nagara__badge {
  display: inline-block;
  background-color: #005eb8;
  color: #fff;
  padding: 6px 20px;
  border-radius: 50px;
  font-weight: bold;
  font-size: 1.5rem;
  margin-bottom: 12px;
}
.wellness-nagara__subtitle {
  font-size: 1.8rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 20px;
  line-height: 1.3;
}
.wellness-nagara__text-wrapper--gap {
  margin-top: 40px;
}


/* --- ユーキャンオリジナル紹介ブロック（赤基調） --- */
.wellness-original-banner {
  max-width: 1000px;
  margin: 30px auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.wellness-original-banner__inner {
  background: #fdf2f2; /* 薄い赤の背景 */
  border: 2px solid #e74c3c; /* 鮮やかな赤の枠線 */
  border-radius: 12px;
  padding: 20px 25px;
  text-align: center;
}

.wellness-original-banner__tag {
  display: inline-block;
  background-color: #e74c3c; /* 鮮やかな赤の背景 */
  color: #fff;
  font-size: 0.9rem;
  font-weight: bold;
  padding: 4px 15px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.wellness-original-banner__text {
  font-size: 1.05rem;
  color: #333;
  line-height: 1.7;
  margin: 0;
}

/* スマホ対応 */
@media (max-width: 768px) {
  .wellness-original-banner__inner {
    padding: 15px;
  }
  .wellness-original-banner__text {
    font-size: 0.95rem;
  }
}

/* お悩みセクション */
.wellness-troubles {
  margin: 60px auto;
  padding: 0 20px;
}
.wellness-troubles__header {
  font-size: 1.6rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
  color: #333;
}
.wellness-troubles__content,
.wellness-feature__content {
  display: flex;
  align-items: center;
  gap: 40px;
}
.wellness-troubles__list,
.wellness-troubles__image,
.wellness-feature__image,
.wellness-feature__text-wrapper {
  flex: 1;
}
.wellness-troubles__item {
  font-size: 1.2rem;
  padding: 15px 0;
  border-bottom: 1px solid #eee;
  display: flex;
  align-items: center;
}
.wellness-troubles__icon {
  margin-right: 12px;
  display: inline-block;
  vertical-align: middle;
  font-size: 1.5rem;
}
.wellness-troubles__image img {
  border-radius: 10px;
}

/* 特徴セクション */
.wellness-feature {
  margin: 60px auto;
  padding: 0 20px;
}
.wellness-feature__title {
  font-size: 1.6rem;
  font-weight: bold;
  color: #e67e22;
  text-align: center;
  margin-bottom: 30px;
  padding: 0 20px;
  line-height: 1.4;
}
.wellness-feature__item {
  font-size: 1.15rem;
  line-height: 1.8;
  color: #444;
  margin-bottom: 10px;
}
.wellness-feature__image img {
  border-radius: 10px;
}

/* 専門家（黒田先生）セクション */
.wellness-expert {
  margin: 60px auto;
  padding: 40px;
  background-color: #f9f9f9;
  border-top: 5px solid #005eb8;
  border-radius: 8px;
}
.wellness-expert__title {
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 30px;
  color: #005eb8;
}
.wellness-expert__profile {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}
.wellness-expert__photo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  flex-shrink: 0;
}
.wellness-expert__profile-text {
  display: flex;
  flex-direction: column;
}
.wellness-expert__profile-text .expert-role {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 4px;
}
.wellness-expert__profile-text .expert-name {
  font-size: 1.4rem;
  font-weight: bold;
  color: #333;
}
.wellness-expert__body {
  font-size: 1.15rem;
  line-height: 1.9;
  color: #333;
}
.wellness-expert__img-in-text {
  display: block;
  width: 100%;
  max-width: 400px !important;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.wellness-expert__note {
  margin-top: 30px;
  font-size: 0.85rem;
  color: #777;
  border-top: 1px solid #ddd;
  padding-top: 10px;
}
.wellness-expert__subtitle {
  font-size: 1.1rem;
  font-weight: bold;
  color: #005eb8;
  text-align: center;
  margin: 0 auto 20px auto;
  padding: 10px;
  border: 2px solid #005eb8;
  border-radius: 8px;
  background-color: #fff;
  display: block;
  width: fit-content;
}

/* 4つの特徴セクション */
.wellness-features-4 {
  margin: 60px auto;
  padding: 20px;
}
.wellness-features-4__title {
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
  color: #005eb8;
}
.wellness-feature-card {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  margin-bottom: 50px;
}
.wellness-feature-card__img {
  flex: 0 0 40%;
}
.wellness-feature-card__img img {
  border-radius: 10px;
}
.wellness-feature-card__num {
  font-size: 2rem;
  color: #e67e22;
  font-weight: bold;
}
.wellness-feature-card__subtitle {
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 15px;
}
.wellness-feature-box {
  background: #fffdf5;
  border: 2px solid #ffeaa7;
  padding: 20px;
  border-radius: 8px;
  margin-top: 20px;
}
.box-title {
  font-weight: bold;
  color: #e67e22;
  margin-bottom: 5px;
}

/* シンプル操作セクション */
.wellness-simple {
  margin: 60px auto;
  padding: 0 20px;
  text-align: center;
}
.wellness-simple__title {
  font-size: 1.6rem;
  font-weight: bold;
  color: #fff;
  background: #e74c3c;
  padding: 10px 25px;
  border-radius: 5px;
  display: inline-block;
  position: relative;
  box-shadow: 3px 3px 0px #c0392b;
  margin-bottom: 30px;
}
.wellness-simple__text {
  font-size: 1.15rem;
  line-height: 1.8;
  margin-bottom: 40px;
}
.wellness-simple__images {
  display: flex;
  justify-content: center;
  gap: 30px;
}
.wellness-simple__item {
  flex: 1;
  max-width: 300px;
}
.wellness-simple__item p {
  font-weight: bold;
  font-size: 1.1rem;
}

/* 開発者セクション */
.wellness-developer {
  margin: 80px auto;
  padding: 0 20px;
}
.wellness-developer__heading {
  font-size: 1.2rem;
  color: #005eb8;
  font-weight: bold;
  text-align: center;
  margin-bottom: 10px;
}
.wellness-developer__lead {
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.4;
  color: #333;
}
.wellness-developer__content {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-direction: row-reverse;
}
.wellness-developer__photo {
  flex: 0 0 50%;
}
.wellness-developer__photo img {
  border-radius: 10px;
}
.wellness-developer__text {
  flex: 1;
}
.wellness-developer__name {
  font-weight: bold;
  margin-bottom: 20px;
  color: #e67e22;
  font-size: 1.1rem;
}
.wellness-developer__text p {
  font-size: 1.15rem;
  line-height: 1.9;
  margin-bottom: 20px;
  color: #444;
}

/* 検証セクション */
.wellness-verification {
  margin: 50px auto;
  padding: 0 20px;
}
.wellness-verification__title {
  font-size: 2.2rem;
  font-weight: bold;
  color: #e74c3c;
  text-align: center;
  margin-bottom: 10px;
}
.wellness-verification__lead {
  font-size: 1.6rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
  color: #333;
}
.wellness-verification__image {
  text-align: center;
}
.wellness-verification__image img {
  max-width: 750px;
  margin: 0 auto 30px auto;
  border-radius: 10px;
}
.wellness-verification__comment-box {
  background: #f9f9f9;
  padding: 30px;
  border-radius: 10px;
  margin-top: 30px;
}
.wellness-verification__profile {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}
.wellness-verification__photo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 3px solid #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
}
.wellness-verification__profile-text .role {
  font-size: 0.9rem;
  color: #666;
  display: block;
}
.wellness-verification__profile-text .name {
  font-size: 1.4rem;
  font-weight: bold;
  color: #333;
  margin: 4px 0;
  display: block;
}
.wellness-verification__profile-text .affiliation {
  font-size: 0.95rem;
  color: #444;
  display: block;
}
.wellness-verification__text p {
  font-size: 1.15rem;
  line-height: 1.9;
  color: #444;
  margin-bottom: 1em;
}

/* お客様の声セクション */
.wellness-voices {
  margin: 80px auto;
  padding: 40px;
  background: #f0f7ff;
  border-radius: 30px;
}
.wellness-voices__title {
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 40px !important;
  color: #005eb8;
  font-weight: bold;
}
.wellness-voices__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}
.wellness-voices__card {
  background: #ffffff;
  padding: 25px;
  border: 2px dashed #b3d7ff;
  border-radius: 25px 5px 25px 5px;
  position: relative;
  color: #333;
  line-height: 1.7;
  box-shadow: 4px 4px 0px rgba(0, 94, 184, 0.1);
}
.wellness-voices__card .age {
  display: block;
  font-size: 0.9rem;
  color: #005eb8;
  margin-top: 15px;
  text-align: right;
  font-weight: bold;
}
.wellness-voices__note {
  margin-top: 30px;
  font-size: 0.85rem;
  color: #888;
  line-height: 1.5;
}

/* コース紹介セクション */
.wellness-courses {
  margin: 80px auto;
  padding: 0 20px;
}
.wellness-courses__title {
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  color: #333;
  margin-bottom: 10px;
}
.wellness-courses__lead {
  text-align: center;
  color: #666;
  margin-bottom: 40px;
}
.wellness-courses__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}
.wellness-courses__card {
  background: #ffffff;
  border: 2px solid #005eb8;
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  transition: transform 0.2s;
}
.wellness-courses__card .card-header {
  font-size: 1.5rem;
  font-weight: bold;
  color: #005eb8;
  margin-bottom: 15px;
}
.wellness-courses__card .card-header span {
  display: block;
  font-size: 1rem;
  color: #555;
  margin-top: 5px;
}
.wellness-courses__card p {
  font-size: 0.9rem;
  color: #444;
  line-height: 1.6;
}
.wellness-courses__card:hover {
  transform: translateY(-5px);
  background: #f0f7ff;
}

/* ================================== メディアクエリ ================= */

/* PC時のセンタリング制御 */
@media (min-width: 769px) {
  .wellness-nagara__text-wrapper {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .wellness-title--large,
  .wellness-text {
    text-align: center;
  }
  .wellness-title--large {
    border-left: none;
    border-bottom: 5px solid #005eb8;
    padding-left: 0;
    padding-bottom: 10px;
    display: inline-block;
  }
}

/* レスポンシブ対応（スマホ） */
@media (max-width: 768px) {
  .wellness-title--large {
    font-size: 1.4rem;
  }
  .wellness-text {
    font-size: 1.05rem;
  }
  .wellness-troubles__header {
    font-size: 1.3rem;
  }
  .wellness-troubles__content,
  .wellness-feature__content {
    flex-direction: column;
  }
  .wellness-feature__title {
    font-size: 1.3rem;
  }

  /* 黒田先生（専門家）セクションのスマホ調整 */
  .wellness-expert {
    padding: 25px 15px;
  }
  .wellness-expert__title {
    font-size: 1.5rem;
  }
  .wellness-expert__profile {
    flex-direction: row;
    align-items: center;
    gap: 15px;
  }
  .wellness-expert__photo {
    width: 80px;
    height: 80px;
  }
  .wellness-expert__profile-text .expert-role {
    font-size: 0.75rem;
    line-height: 1.4;
  }
  .wellness-expert__profile-text .expert-name {
    font-size: 1.1rem;
  }
  .wellness-expert__img-in-text {
    max-width: 100%;
    margin: 20px auto;
  }
  .wellness-expert__body {
    font-size: 1.05rem;
  }
  .wellness-expert__subtitle {
    font-size: 0.95rem;
    padding: 0 10px;
  }

  .wellness-nagara__subtitle {
    font-size: 1.3rem;
  }
  .wellness-feature-card {
    flex-direction: column;
  }
  .wellness-feature-card__img {
    flex: 0 0 100%;
  }
  .wellness-simple__images {
    flex-direction: column;
    align-items: center;
  }
  .wellness-developer__content {
    flex-direction: column;
  }
  .wellness-developer__lead {
    font-size: 1.4rem;
  }
  .wellness-verification__profile {
    flex-direction: column;
    text-align: center;
  }
  .wellness-voices__grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .wellness-voices__card {
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
  }
  .wellness-voices__title {
    font-size: 1.4rem;
  }
  /* --- 既存のスタイル --- */
  .wellness-verification__profile {
    flex-direction: column;
    text-align: center;
  }
  .wellness-verification__profile .wellness-verification__photo {
    width: 200px;
    height: 200px;
  }

.wellness-features-4__title {
    font-size: 1.4rem; 
  }

  /* ▼ 検証セクションの画像をスマホで大きくする設定 ▼ */
  .wellness-verification__image img {
    max-width: 100%; /* スマホ画面の幅いっぱいに広げる場合 */
    width: 100%;
    height: auto;
}

.wellness-verification__title {
    font-size: 1.5rem;
   }
}