/* ===============================
受講の流れ
================================ */
.flow-section {
  background: linear-gradient(180deg, #fffaf5 0%, #ffffff 90%);
  padding: 100px 20px;
}

.flow-container {
  max-width: 1000px;
  margin: 0 auto;
}

.flow-title {
  text-align: center;
  font-size: 32px;
  font-weight: 800;
  color: #2b2b2b;
  margin-bottom: 16px;
}

.flow-lead {
  text-align: center;
  color: #666;
  font-size: 16px;
  margin-bottom: 60px;
  line-height: 1.8;
}

.flow-steps {
  display: flex;
  flex-direction: column;
  gap: 40px;
  position: relative;
}

.flow-step {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  background: #fff;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 12px 12px 0 rgba(40, 47, 60, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 3px dashed #ff9158;
}

.flow-step:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(255, 140, 60, 0.25);
}

.flow-num {
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(rgb(255, 107, 0) 0%, rgb(255, 140, 26) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  box-shadow: 0 6px 15px rgba(255, 145, 72, 0.3);
}

.flow-text h3 {
  font-size: 20px;
  font-weight: 700;
  color: #ff7a2d;
  margin-bottom: 8px;
}

.flow-text p {
  color: #555;
  font-size: 15.5px;
  line-height: 1.8;
}

/* iPad Air対応 */
@media (min-width: 820px) and (max-width: 1180px) {
  .flow-step {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
  }
  .flow-num {
    width: 60px;
    height: 60px;
    font-size: 20px;
  }
  .flow-text h3 {
    font-size: 19px;
  }
}

/* スマホ対応 */
@media (max-width: 820px) {
  .flow-step {
    flex-direction: column;
    text-align: center;
    gap: 16px;
    padding: 25px 20px;
  }
  .flow-num {
    width: 60px;
    height: 60px;
    font-size: 20px;
  }
  .flow-text h3 {
    font-size: 18px;
  }
  .flow-text p {
    font-size: 14.5px;
  }
}

/* ===============================
担当講師紹介
================================ */
.profile .fixedcontainer {
  background: url(../img/konet/ttl-back.png) no-repeat;
  background-size: contain;
  background-position: top;
  padding-top: 30px;
}
.profile_in {
  border: 4px dashed #f8b221;
  padding: 40px;
  box-shadow: 0 12px 12px 0 rgba(40, 47, 60, 0.3);
}
.profile_one {
  display: flex;
}
.profile_img {
  width: 405px;
  margin-right: 50px;
}
.profile img {
  margin: 0 auto;
}
.profile_content {
  flex: 1;
}
.profile_content h3 {
  font-size: 24px;
  margin-bottom: 15px;
}
.profile_sub {
  margin-top: 30px;
  background: #f2f2f2;
  padding: 30px;
  box-shadow: 0 12px 12px 0 rgba(40, 47, 60, 0.3);
}
.profile_sub h4 {
  display: flex;
  align-items: center;
  font-size: 24px;
  margin-bottom: 10px;
}
.profile_sub h4 img {
  margin: 0;
}
.profile_sub span {
  margin-left: 10px;
}
.profile_two {
  margin: 30px 0;
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
  .profile {
    margin-right: 15px;
    margin-left: 15px;
  }
}
/* スマホ対応 */
@media (max-width: 768px) {
  .profile_one {
    display: block;
  }
  .profile .fixedcontainer {
    padding: 20px;
  }
  .profile_in {
    padding: 20px;
    border-width: 2px;
  }
  .profile_img {
    width: 100%;
    margin-right: 0;
    text-align: center;
    margin-bottom: 20px;
  }
  .profile_content h3 {
    font-size: 20px;
  }
  .profile_sub {
    margin-top: 20px;
    padding: 20px;
  }
  .profile_sub h4 {
    font-size: 20px;
  }
}
/* ===============================
ブログ
================================ */
/* 一覧レイアウト */
.news_inner {
  display: block;
}
.news_list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 768px) {
  .news_list {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}
@media (min-width: 1024px) {
  .news_list {
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
  }
}

/* 各記事カード */
.news_item {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 5px;
  overflow: hidden;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
  margin-top: 10px;
  box-shadow: 0 12px 12px 0 rgba(40, 47, 60, 0.3);
}
.news_item:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
}

/* サムネイル画像 */

.news_item:hover img {
  transform: scale(1.05);
}

/* 日付・タイトル */
.news_date {
  font-size: 0.875rem;
  color: #777;
  margin: 12px 20px 0;
}
.news_ttl {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
  margin: 6px 20px 20px;
  color: #111;
}
.news_ttl:hover {
  color: var(--brand, #ff7a00);
}

/* リンク全体 */
.news_link {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

/* ===============================
問い合わせ
================================ */
.smrj-download-section {
  padding: 0 20px;
  background: #fff;
}

.smrj-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 50px;
}

.smrj-text-box {
  flex: 1 1 50%;
  position: relative;
}

.smrj-badge {
  position: absolute;
  top: -20px;
  left: -20px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  background: #f8b400;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.4;
  text-align: center;
  border-radius: 50%;
}

.smrj-subtitle {
  margin-left: 100px;
  font-size: 16px;
  font-weight: bold;
  color: #f8b400;
}

.smrj-title {
  margin: 15px 0;
  margin-left: 100px;
  font-size: 24px;
  font-weight: bold;
  line-height: 1.4;
}

.smrj-description {
  margin-left: 100px;
  font-size: 14px;
  color: #333;
}

.smrj-image-box {
  flex: 1 1 50%;
  display: flex;
  justify-content: center;
  position: relative;
}
.smrj-image-box img {
  width: 300px;
}

.smrj-img-back {
  z-index: 1;
}

.smrj-img-front {
  position: relative;
  width: 70%;
  max-width: 350px;
  border-radius: 6px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  z-index: 2;
}

.contact-img {
  width: 70%;
}
.contact table {
  margin: 0 auto;
  width: 100%;
}

/* Responsive */
@media (max-width: 768px) {
  .smrj-download-section {
    padding: 10px 20px;
  }

  .smrj-container {
    display: block;
    padding: 0;
    gap: 15px;
  }
  .smrj-image-box img {
    width: 200px;
  }
  .smrj-badge {
    top: -10px;
    left: -10px;
    width: 70px;
    height: 70px;
    font-size: 12px;
  }

  .smrj-subtitle,
  .smrj-title,
  .smrj-description {
    margin-left: 80px;
  }

  .smrj-subtitle {
    font-size: 14px;
  }

  .smrj-title {
    font-size: 20px;
  }

  .smrj-description {
    font-size: 13px;
  }

  .smrj-img-back {
    width: 50%;
    max-width: 200px;
  }

  .smrj-img-front {
    width: 60%;
    max-width: 250px;
  }

  .contact-img {
    width: 100%;
  }
}

@media (max-width: 600px) {
  .smrj-title {
    font-size: 17px;
  }
}

/* ===============================
オンライン相談
================================ */
.trl-section {
  color: #222;
  max-width: 980px;
  margin: 0 auto;
  padding: 20px;
  box-sizing: border-box;
}

.trl-title {
  font-size: 22px;
  margin-bottom: 16px;
  color: #1f2937;
}

/* カード */
.trl-card {
  background: #fff;
  border: 3px dashed #ff9158;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(31, 41, 55, 0.06);
  padding: 16px;
  margin-bottom: 20px;
}

/* サブタイトル */
.trl-subtitle {
  font-size: 16px;
  margin-bottom: 10px;
  color: #0f172a;
}

/* 特徴リスト */
.trl-features-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px 18px;
  margin: 0;
  padding: 0;
}

.trl-feature-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 15px;
  color: #0b1220;
}

.trl-feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  color: #16a34a; /* 緑のチェック */
}

/* 流れリスト */
.trl-flow-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0;
  padding-left: 0;
}

.trl-flow-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 15px;
  color: #0b1220;
}

/* 注意書き */
.trl-note-list {
  margin: 0;
  padding-left: 20px;
}

.trl-note-item {
  font-size: 14px;
  color: #374151;
  margin-bottom: 8px;
}

/* TimeRex 埋め込み */
.trl-timeroot {
  padding: 12px;
  border: 1px dashed #e5e7eb;
  border-radius: 8px;
  text-align: center;
  font-size: 14px;
  color: #6b7280;
}

.online-img {
  width: 50%;
}

/* レスポンシブ */
@media (min-width: 720px) {
  .trl-features-list {
    grid-template-columns: 1fr 1fr;
  }
  .trl-section {
    padding: 28px;
  }
  .trl-title {
    font-size: 26px;
  }
}

@media (max-width: 420px) {
  .trl-card {
    padding: 12px;
  }
  .trl-title {
    font-size: 20px;
  }
  .trl-feature-item,
  .trl-flow-item {
    font-size: 14px;
  }
}

/* ===============================
ホイクメイトとは？
================================ */
.hoikumate-wrap {
  max-width: var(--maxw);
  margin: 40px auto;
  padding: 28px;
}

/* Hero */
.hoikumate-hero {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 28px;
  align-items: center;
  margin-bottom: 36px;
}
.hoikumate-hero-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 34px;
  box-shadow: var(--shadow);
}
.hoikumate-eyebrow {
  display: inline-block;
  font-weight: 800;
  color: var(--accent);
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
}
.hoikumate-title {
  margin: 12px 0 8px 0;
  font-size: 1.8rem;
  line-height: 1.25;
  font-weight: 800;
  color: #222;
}
.hoikumate-lead {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
}
.hoikumate-hero-aside {
  text-align: center;
}
.hoikumate-hero-illu {
  width: 100%;
  max-width: 360px;
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(255, 122, 0, 0.08);
  background: linear-gradient(180deg, #fff4ea, #fffaf5);
  padding: 18px;
}
.hoikumate-hero-illu svg {
  width: 100%;
  height: auto;
  display: block;
}

/* Section heading */
.hoikumate-section {
  margin: 48px 0;
}
.hoikumate-section h3 {
  margin: 0 0 12px 0;
  font-size: 1.25rem;
  color: var(--accent);
  font-weight: 800;
}
.hoikumate-section p.lead {
  margin: 0 0 20px 0;
  color: var(--muted);
  font-size: 1rem;
}

/* Problem / Why now */
.hoikumate-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.hoikumate-card {
  background: var(--card);
  border-radius: 12px;
  padding: 18px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
}
.hoikumate-card h4 {
  margin: 0 0 10px 0;
  font-size: 1.05rem;
  color: #222;
  font-weight: 700;
}
.hoikumate-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

/* Our approach (steps) */
.hoikumate-approach {
  display: flex;
  gap: 16px;
  margin-top: 18px;
  flex-wrap: wrap;
}
.hoikumate-step {
  flex: 1 1 200px;
  background: linear-gradient(180deg, #fff, #fff6f0);
  border-radius: 12px;
  padding: 18px;
  box-shadow: 0 8px 24px rgba(255, 122, 0, 0.06);
  text-align: left;
  border: 5px dashed #ff9158;
}
.hoikumate-step .num {
  display: inline-block;
  background: var(--accent);
  color: white;
  font-weight: 800;
  width: 36px;
  height: 36px;
  border-radius: 9px;
  text-align: center;
  line-height: 36px;
  margin-bottom: 10px;
  box-shadow: 0 6px 18px rgba(255, 122, 0, 0.12);
  background: linear-gradient(rgb(255, 107, 0) 0%, rgb(255, 140, 26) 100%);
}
.hoikumate-step h5 {
  margin: 8px 0 8px 0;
  font-size: 1rem;
  color: #222;
  font-weight: 800;
}
.hoikumate-step p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

/* Stats bar */
.hoikumate-stats {
  display: flex;
  gap: 16px;
  margin-top: 28px;
  flex-wrap: wrap;
  align-items: stretch;
}
.hoikumate-stat {
  flex: 1 1 180px;
  background: var(--card);
  padding: 16px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
  border: 5px dashed #ff9158;
}
.hoikumate-stat .num {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--accent);
}
.hoikumate-stat .label {
  font-size: 0.9rem;
  color: var(--muted);
}

/* CTA */
.hoikumate-cta {
  margin: 40px 0 10px 0;
  text-align: center;
}
.hoikumate-cta a {
  display: inline-block;
  background: linear-gradient(rgb(255, 107, 0) 0%, rgb(255, 140, 26) 100%);
  color: white;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(255, 122, 0, 0.14);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.hoikumate-cta a:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(255, 122, 0, 0.18);
}

/* Footer small note */
.hoikumate-note {
  color: var(--muted);
  font-size: 0.9rem;
  text-align: center;
  margin-top: 12px;
}

/* Responsive */
@media (max-width: 1000px) {
  .hoikumate-hero {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 780px) {
  .hoikumate-wrap {
    margin: 18px;
    padding: 18px;
  }
  .hoikumate-founder {
    display: block;
  }
  .hoikumate-hero {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .hoikumate-grid {
    grid-template-columns: 1fr;
  }
  .hoikumate-approach {
    flex-direction: column;
  }
  .hoikumate-founder {
    flex-direction: row;
    align-items: center;
  }
  .hoikumate-founder-photo {
    width: 96px;
    height: 96px;
  }
}
@media (max-width: 420px) {
  .hoikumate-title {
    font-size: 1.4rem;
  }
  .hoikumate-eyebrow {
    font-size: 0.8rem;
  }
  .hoikumate-hero-card {
    padding: 20px;
  }
  .hoikumate-hero-illu {
    max-width: 300px;
  }
}
/* ===============================
想い
================================ */
#introduction {
  margin: 50px 0 0;
  background-color: #ffffff;
  padding: 30px;
  border: 2px dashed #f39aa6;
  border-radius: 10px;
  position: relative;
}
.intro_ul {
  margin: 0 auto;
  box-sizing: border-box;
  -js-display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%;
}
.intro_li {
  width: 48%;
  margin-bottom: 50px;
}
.intro_li:last-child {
  margin-bottom: 0px;
}
#introduction li dt {
  background-color: #f8d9d6;
  padding: 7px 15px;
  border-radius: 10px;
  margin: 0 auto 20px;
  font-weight: bold;
}
#introduction li dd {
}
.thought08 {
  position: absolute;
  bottom: 0px;
  right: 20px;
  width: 270px;
}

#thought {
  background-color: #f6f4ee;
  padding: 30px;
}
.t_title {
  position: relative;
  padding: 0 0 150px;
  text-align: center;
  background-image: url(../img/support/thought_bk.png);
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: 100% auto;
}
.talk {
  text-align: center;
  display: inline-block;
  background: linear-gradient(rgb(255, 107, 0) 0%, rgb(255, 140, 26) 100%);
  padding: 3px 80px;
  color: #fff;
  border-radius: 10px;
  margin: 0 auto 20px;
  font-size: 40px;
}
.thought01 {
  position: absolute;
  bottom: -20px;
  right: 20px;
  width: 200px;
}

#part_1 {
  margin-bottom: 90px;
}
#thought .boxs,
#mostimptant .boxs,
#mostimptant .boxs_60 {
  clear: both;
  margin-bottom: 30px;
  overflow: hidden;
}
#thought .boxs .right,
#mostimptant .boxs .right {
  width: 50%;
}
#thought .boxs .left,
#mostimptant .boxs .left {
  width: 50%;
}
.thought02 {
  width: 70%;
  margin: 20px auto 0;
}
.thought03 {
  width: 70%;
  margin: 0px auto 0;
}
.thought04 {
  width: 85%;
  margin: 0px auto 0;
}
.thought-title {
  background: linear-gradient(rgb(255, 107, 0) 0%, rgb(255, 140, 26) 100%);
  padding: 7px 15px;
  color: #fff;
  border-radius: 10px;
  margin: 0 auto 20px;
  font-size: 27px;
}
#part_1 h3 {
  background: linear-gradient(rgb(255, 107, 0) 0%, rgb(255, 140, 26) 100%);
  padding: 7px 15px;
  color: #fff;
  border-radius: 10px;
  margin: 0 auto 20px;
  font-size: 27px;
}
.big {
  font-weight: bold;
}
.all_title {
  text-align: center;
  margin-bottom: 20px;
  font-size: 32px !important;
  font-weight: normal;
  line-height: 1.6em;
  letter-spacing: 0.08em;
  font-weight: bold;
}
.marker_y {
  background: linear-gradient(transparent 60%, #ffff66 60%);
}
.pri_box p {
  font-size: 20px;
  line-height: 2.5;
}
.left p {
  font-size: 20px;
  line-height: 2.5;
}
.right p {
  font-size: 20px;
  line-height: 2.5;
}
.thought-text {
  font-size: 20px;
  line-height: 2.5;
}

#part_2 .all_title {
  margin-bottom: 30px;
  position: relative;
}
#part_2 .all_title::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  display: block;
  background-repeat: no-repeat;
  background-image: url(images/thought/thought05.png);
  width: 73px;
  height: 33px;
  background-size: 73px 33px;
  top: -45px;
}
.thought06 {
  width: 70%;
  text-align: center;
  margin: 0px auto 0;
}
#part_1 {
  margin-bottom: 90px;
}
.white_b {
  background-color: #ffffff;
}
.pri_box {
  padding: 15px;
  border-radius: 10px;
  position: relative;
}
#thought .boxs .right,
#mostimptant .boxs .right {
  width: 50%;
}
.right {
  float: right;
}
.pri_box {
  padding: 15px;
  border-radius: 10px;
  position: relative;
}
.marker_y30 {
  background: linear-gradient(transparent 30%, #ffff9b 30%);
  font-weight: 700;
}

@media screen and (max-width: 640px) {
  #thought {
    padding: 15px;
  }
  .all_title {
    font-size: 20px !important;
  }
  .pri_box p {
    font-size: 14px;
  }
  .left p {
    font-size: 14px;
  }
  #part_1 h3 {
    font-size: 20px;
  }
  .thought-title {
    font-size: 20px;
  }
  .thought-text {
    font-size: 14px;
  }
  .right p {
    font-size: 14px;
  }
  .t_title {
    padding: 0 0 120px;
  }
  .talk {
    line-height: 1.8em;
    padding: 3px 30px;
    font-size: 15px;
  }
  .thought01 {
    bottom: -20px;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 120px;
    z-index: 2;
  }
  #part_1 {
    margin-bottom: 70px;
  }
  #thought .pri_box {
    padding: 20px 15px 0;
    border-radius: 10px;
    position: relative;
  }
  #thought .boxs,
  #mostimptant .boxs,
  #mostimptant .boxs_60 {
    margin-bottom: 0px;
  }
  #thought .boxs .right,
  #thought .boxs .left,
  #mostimptant .boxs .right,
  #mostimptant .boxs .left,
  #mostimptant .boxs_60 .right,
  #mostimptant .boxs_60 .left {
    width: 100%;
    float: none;
    margin: 0 0 20px;
  }
  .thought02 {
    margin: 0 auto;
  }
  .thought04 {
    width: 100%;
  }
  #introduction {
    margin: 30px 0 0;
    padding: 30px 30px 0;
  }
  #introduction li dt {
    margin: 0 auto 10px;
  }
  .intro_li {
    width: 100%;
    margin-bottom: 20px;
  }
  .thought08 {
    position: static;
    width: 85%;
    margin: 20px auto 0;
  }
}
@media screen and (max-width: 320px) {
  #introduction {
    padding: 15px 15px 0;
  }
  #introduction li dt {
    line-height: 1.5em;
  }
  .thought08 {
    width: 100%;
  }
}

@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
  /* iPad対応 */
  #thought {
    margin-right: 15px;
    margin-left: 15px;
  }
}
