@charset "UTF-8";
body {
  color: #323232;
}
.breadcrumb {
  margin-top: 10px;
}
.c {
  margin: 0 auto;
}
.txt_r {
  text-align: right;
}
main h2.c {
  margin-bottom: 2em;
}

/* ヘッダー======================================== */
.page-header {
  width: 100vw;
  height: 180px;
  background-image: url("/guidance/images/header.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;

  display: flex;
  align-items: center;
  justify-content: center;

  /* ↓ z-indexに備えて relative は必須 */
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(91 91 91 / 56%); /* 薄いグレー */
  mix-blend-mode: multiply;
  z-index: 1;
  pointer-events: none; /* ボタン等があってもクリックできるように */
}

.page-header__title {
  position: relative;
  z-index: 2; /* 上にテキストなどがくるように */
}

.txt_box {
  margin-top: 3vw;
}
.front_txt {
  margin-top: 3em;
}
/* ご入会の流れ======================================== */
.bg-pattern3 {
  background: #f5f5f5;
  background-image: url(/common/images/bg_pattern3.png);
  background-repeat: repeat;
  background-position: center top;
  background-size: 10px;
}
/* カード */
.list-normal1 * {
  border-radius: 25px;
}
.list-normal1 .list {
  background: #fff;
}
/* STEP */
.step-circle {
  background-color: #009999; /* お好みの色に調整 */
  color: #fff;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.list.up h4 {
  display: flex;
  align-items: center;
  color: #323232;
}

.step-circle .step-label {
  font-size: 0.75rem;
  letter-spacing: 1px;
  line-height: 1;
}

.step-circle .step-number {
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1;
}
/* カード */
.list-normal1.flow {
  display: grid;
  gap: 2rem;
}

.list-normal1.flow {
  display: grid;
  gap: 2rem;
}
/* カード画像部分 */
.list .img {
  width: 100%;
  height: 200px; /* モバイル想定 */
  background-size: cover;
  background-position: center;
  border-radius: 25px;
}

/* 各STEPブロック */
.list-normal1.flow .list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
/* 注意事項======================================== */
.tuition-info {
  line-height: 1.8;
  font-size: 1rem;
  color: #333;
  max-width: 1200px;
  margin: 0 auto;
}

.tuition-info .tuition-block {
  border-radius: 12px;
  margin-bottom: 2rem;
  position: relative;
}

.tuition-info .tuition-block h3 {
  background-color: #009999;
  color: #fff;
  border-radius: 8px;
  font-size: 1rem;
  padding: 0.6rem 1rem 0.6rem 2rem;
  margin: -2.5rem 0 1rem;
  display: inline-block;
  position: relative;
  width: 100%;
}

.tuition-info .tuition-block h3::before {
  content: "";
  position: absolute;
  left: 0.8rem;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  background-color: #fff;
  border-radius: 50%;
}

.tuition-info ul {
  padding-left: 1.2rem;
  margin-top: 0.5rem;
}

.tuition-info ul li {
  margin-bottom: 0.4rem;
  list-style: none;
  position: relative;
  padding-left: 1em;
}

.tuition-info ul li::before {
  content: "・";
  position: absolute;
  left: 0;
  color: #009999;
}

@media screen and (min-width: 768px) {
  .list-normal1.flow .list {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-around;
  }
  .list .img {
    width: 326px;
    height: 290px;
    flex-shrink: 0;
  }
}

/* STEP丸 */
.step-circle {
  background-color: #009999;
  color: #fff;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 0.5rem;
}

@media screen and (min-width: 768px) {
  .step-circle {
    margin-bottom: 0;
    margin-right: 1rem;
  }
}

.step-label {
  font-size: 0.75rem;
  letter-spacing: 1px;
}

.step-number {
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1;
}

/* テキストブロック */
.list .text_step h4 {
  font-size: 1.2rem;
  margin: 0 0 0.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.list .text_step p {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-top: 1em;
}
/* お問い合わせ */
.contact-box {
  text-align: center;
  margin-top: 1rem;
}

.contact-info {
  display: inline-block;
  margin-bottom: 1rem;
}

.contact-row {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  line-height: 1.5;
}

.label {
  background-color: #e0f7f5;
  color: #009999;
  padding: 0.2rem 0.4rem;
  border-radius: 8px;
  font-size: 0.85rem;
  margin-right: 0.5rem;
  white-space: nowrap;
}

.value {
  color: #009999;
  font-size: 2rem;
  font-weight: 500;
}

/* STEP丸 */
.step-circle {
  background-color: #009999;
  color: #fff;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 0.5rem;
}

.txt_b {
  color: #323232;
  text-align: left;
}

@media screen and (min-width: 768px) {
  .list-normal1.flow .list {
    flex-direction: row;
    align-items: flex-start;
  }
  .step-circle {
    margin-bottom: 0;
    margin-right: 1rem;
  }
  .list .text_step_step p {
    margin-left: calc(80px + 1rem); /* step-circle の幅 + h4内の gap */
  }
  .tuition-info .tuition-block {
    padding: 1.5rem 1.5rem 1.5rem 2.5rem; /* 左側に余白を追加 */
  }

  .tuition-info .tuition-block h3 {
    margin-left: -1rem; /* タグは少し左に飛び出させる */
  }
}

.step-label {
  font-size: 0.75rem;
  letter-spacing: 1px;
}

.step-number {
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1;
}

/* テキストブロック */
.list .text_step h4 {
  font-size: 1.2rem;
  margin: 0 0 0.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.list .text_step p {
  font-size: 0.95rem;
  line-height: 1.6;
}

@media screen and (min-width: 900px) {
  .page-header {
    height: 310px;
  }
}

.page-header__title {
  color: #fff;
  font-size: 2rem;
  font-weight: bold;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  text-align: center;
  padding: 0 1em;
}

@media screen and (min-width: 900px) {
  .page-header {
    height: 310px;
  }
}

.page-header__title {
  color: #fff;
  font-size: 2rem;
  font-weight: bold;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  text-align: center;
  padding: 0 1em;
}

@media screen and (max-width: 767px) {
  .list .img {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3; /* もしくは 16 / 9 でもOK */
    background-size: cover;
    background-position: center;
    border-radius: 25px;
  }

  .list-normal1.flow .list {
    flex-direction: column;
    padding: 1.2rem 1rem;
  }
  .btn1 a {
    min-width: 200px;
    font-size: 1em;
  }
  .contact-row {
    flex-wrap: wrap;
  }
}
