@charset "UTF-8";
/**
* .about_page base_wrap
* aboutページ 共通画面幅
* 他ページと異なり間延びすると文字が読みにくいため狭める
**/
.about_page .base_wrap {}
/**
* .about_title__type00
* aboutページ 共通タイトル
* 共通スタイルのためflex内を想定したorder、widthは以下に記述しない
* flex内を想定したorder、width付与する場合は
* 親要素（もしくはグループ名）のクラス名を前方に付加、もしくは別クラス名をHTMLへ新たに追記し、CSS内該当パーツ記述箇所にて調整
**/
#about_concept {
  margin-top: 8rem
}
.about_title__type01 {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 48px;
  letter-spacing: 0.2ex;
  text-align: center;
  margin: 0 0 8rem;
  color:#D8211E;
}

.about_title__type05 {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 48px;
  letter-spacing: 0.2ex;
  text-align: center;
  margin: 0 0 6rem;
  color:#313131;
}


.big-num {
  font-size: 1.5em;   /* 周りより大きくする */
  font-weight: 700;   /* 太字強調（必要なら） */
  color:#D8211E;      /* 色も変えたい場合 */
  line-height: 1;
}

.about_box__type01_text .note {
  font-size: 0.75em;   /* 小さめ文字 */
  color: #666;         /* グレーで控えめに */
  margin-top: 0.5em;   /* 上に少し余白 */
  line-height: 1.4;
}

.parts_lead .about_title__type01 {
  margin-top: -9rem;
  margin-bottom: 3.5rem
}
.parts_lead .about_title__type01::before {
  color: var(--main_c)
}
.about_title__type01::before {
  margin-bottom: .5rem;
  content: attr(data-small);
  display: block;
  color: var(--sub_c);
  font-size: 1.8rem;
  line-height: 1;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  #about_concept {
    margin-top: 6rem
  }
  .about_title__type01 {
    font-size: 2rem;
    line-height: 28px;
    margin: 0 0 24px;
  }
  .parts_lead .about_title__type01 {
    margin-top: -6rem;
    margin-bottom: 2.5rem
  }
}
.about_title__type02 {
  color: var(--sub_c);
  font-size: 2.4rem;
  font-weight: 700;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
  line-height: 32px;
  text-align: center;
  margin-bottom: 4rem;
  padding: 0 16px;
}
.about_title__type01 + .about_title__type02 {
  margin-top: -24px;
}
@media (max-width: 767px) {
  .about_title__type02 {
    font-size: 1.6rem;
    line-height: 32px;
    margin: 12px 0 0;
    padding: 0 16px;
  }
}
.about_title__type03 {
  display: inline-block;
  border-bottom: 4px double var(--text_link_c);
  color: var(--text_link_c);
  font-size: 2.2rem;
  font-weight: 700;
  padding-bottom: 4px;
  margin: 10px 0 8px;
}
@media (max-width: 959px) {
  .about_title__type03 {
    font-size: 2rem;
    padding-bottom: 4px;
    margin: 16px 0 8px;
  }
}
/**
* .about_box__type00
* aboutページ 共通囲みスタイル
**/
.about_page__header {
  padding: 7rem 0;
  background: url(/common/images/mv-bg.png) no-repeat top left #f6f4f3;
  background-size: 650px;
  position: relative;
}
@media (max-width: 959px) {
  .about_page__header {
    padding: 6rem 2rem;
    background-size: 470px;
    background-position: center left;
  }
}
@media (max-width: 767px) {
  .about_page__header {
    padding: 3rem 2rem;
    background-size: 220px;
  }
}
.about_page__header h1, .about_page__header h2 {
  font-size: 3.4rem;
  font-weight: 700;
  letter-spacing: 0.3ex;
  text-align: center;
  max-width: none;
  width: auto;
  margin: 0;
  padding: 0;
}
@media (max-width: 959px) {
  .about_page__header h1, .about_page__header h2 {
    font-size: 3rem;
  }
}
@media (max-width: 767px) {
  .about_page__header h1, .about_page__header h2 {
    font-size: 2.4rem;
  }
}
.about_page__header h1 em, .about_page__header h2 em {
  color: var(--main_c);
}
/**
* .about_box__type00
* aboutページ 共通囲みスタイル
**/
.about_box__type01 {
  padding-top: 5rem;
  border-top: 2px solid #efeae0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.about_box__type01:last-child {
  padding-bottom: 5rem;
  border-bottom: 2px solid #efeae0;
}
.about_box__type01.many_letters {
  -ms-flex-line-pack: start;
  align-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: center;
}
.about_box__type01 + .about_box__type01 {
  margin-top: 5rem;
}
.about_box__type01_image {
  position: relative;
  width: 450px;
	  max-width: 100%;
  height: 350px;
}
.about_box__type01_image img {
  border-radius: 8px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  font-family: "object-fit: cover;";
}
.about_box__type01_text {
  width: calc(100% - 490px);
}
.about_box__type01.many_letters .about_box__type01_text {}
.about_box__type01:nth-child(even) .about_box__type01_image {
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
}
.about_box__type01:nth-child(even) .about_box__type01_text {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}
.about_box__type01_title {
  margin-bottom: 2rem;
  font-size: 2.8rem;
  font-weight: 700;
}
.about_box__type01_title span {
  padding: 0 1px 0px;
  background: linear-gradient(transparent 60%, #f6f4f3 0%);
  color: var(--sub_c);
  font-feature-settings: "palt";
  letter-spacing: 2px;
  display: inline;
}
.about_box__type01_text p, .about_box__type01_text ol, .about_box__type01_text ul {
  line-height: 1.8;
}
.about_box__type01_subttl {
  margin-bottom: 1rem;
  color: var(--main_c);
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 1px;
}
.about_box__type01_text p + p {
  margin-top: 1.5rem;
}
@media (max-width: 959px) {
.about_box__type01_image {
    width: 350px;
    height: 250px;
}
.about_box__type01_text {
  width: calc(100% - 370px);
}
	
}
@media (max-width: 767px) {
  .about_box__type01 {
    padding-top: 2rem;
    -ms-flex-line-pack: start;
    align-content: flex-start;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    flex-wrap: wrap
  }
  .about_box__type01:last-child {
    padding-bottom: 2rem
  }
  .about_box__type01 + .about_box__type01 {
    margin-top: 2rem;
  }
  .about_box__type01_image {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    width: 100%;
	  height: 220px
  }
  .about_box__type01_text {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    padding-top: 0;
    padding-bottom: 2rem;
    width: 100%;
  }
  .about_box__type01.many_letters .about_box__type01_text {
    padding-top: 0;
    padding-bottom: 2rem;
  }
  .about_box__type01_title {
    font-size: 2rem;
    margin-bottom: 1.5rem
  }
  .about_box__type01_title::before {
    border-top: solid 2px;
    width: 2em;
    margin-bottom: 1.5rem
  }
  .about_box__type01_text p, .about_box__type01_text ol, .about_box__type01_text ul {
    font-size: 1.4rem;
    line-height: 2;
  }
  .about_box__type01_text * + p, .about_box__type01_text * + ol, .about_box__type01_text * + ul {
    margin-top: 1.5rem;
  }
  .about_box__type01_text .about_box__type01_subttl {
    font-size: 2rem;
  }
}
.about_box__type02 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-line-pack: center;
  align-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
}
.about_box__type02 + .about_box__type02 {
  margin-top: 96px;
}
.about_box__type02_image {
  position: relative;
  width: 50%;
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
  pointer-events: none;
}
.about_box__type02_image::before {
  content: "";
  display: block;
  padding: 100% 0 0;
  position: relative;
  z-index: 1;
}
.about_box__type02_image img {
  border-radius: 8px;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: left top;
  object-position: left top;
  font-family: "object-fit: cover; object-position: left top;";
  -webkit-transform: translate(12.5%, 39%) rotate(30deg) scale(1.5);
  transform: translate(12.5%, 39%) rotate(30deg) scale(1.5);
  -webkit-filter: drop-shadow(8px 8px 8px #ddd);
  filter: drop-shadow(8px 8px 8px #ddd);
}
.about_box__type02_text {
  width: 50%;
  position: relative;
  z-index: 5;
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}
.about_box__type02_title {
  font-size: 2.8rem;
  font-weight: bold;
  letter-spacing: 0.1ex;
  line-height: 1.5;
  margin: 0 0 24px;
}
.about_box__type02_text p {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2;
}
.about_box__type02_text p + p {
  margin-top: 1.5rem;
}
@media (max-width: 767px) {
  .about_box__type02 {
    -ms-flex-line-pack: start;
    align-content: flex-start;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .about_box__type02 + .about_box__type02 {
    margin-top: 48px;
  }
  .about_box__type02_image {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    width: 100%;
  }
  .about_box__type02_text {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    width: 100%;
    padding-bottom: 16px;
  }
  .about_box__type02_title {
    font-size: 2.4rem;
    line-height: 1.5;
    margin: 0 0 20px;
  }
  .about_box__type02_text p {
    font-size: 1.4rem;
    line-height: 2;
  }
}
/**
* .about_section__base
* aboutページ 共通セクション
* 
* 使用範囲が広いため、全て共通の場合以外、画像・色の設定はしない
**/
.about_section__base {
  padding: 100px 0;
}
.about_section__base.last {
  padding-bottom: 96px;
}
@media (max-width: 767px) {
  .about_section__base {
    padding: 32px 0;
  }
  .about_section__base.last {
    padding-bottom: 2rem;
  }
}



/* ===== arrow ===== */
.about-to-member-arrow {
  text-align: center;    /* 中央寄せ */
  margin: 40px 0;        /* 上下の余白は調整 */
}
.about-to-member-arrow img {
  width: 20px;           /* 矢印の幅（pxで調整） */
  height: auto;
  display: inline-block;
}

/* ===== Member Features ===== */
.member-features{
  padding:150px 0;
  background:#fff; /* 必要なら背景色変更 */
}
.member-features__wrap{
  max-width:1000px; /* 既存 .base_wrap があればそちらに置換OK */
  width:calc(100% - 40px);
  margin:0 auto;
}

.member-features__title strong{
  font-weight:900;
}

/* グリッド配置 */
.member-features__grid{
  list-style:none;
  margin:0; padding:12px 0 0;
  display:grid;
  grid-template-columns:1fr;
  gap:32px 28px;
}
@media (min-width: 680px){
  .member-features__grid{ grid-template-columns:repeat(2, 1fr); }
}

/* アイテム */
.member-features__item{
  text-align:center;
}

/* 画像（Point付き画像を中央に） */
.member-features__thumb{
  width: 320px;           /* 画像の見え方を揃える基準幅 */
  max-width: 100%;
  margin: 0 auto 10px;
}
.member-features__thumb img{
  display:block;
  width:100%;
  height:auto;
}

/* Point04だけ大きめに */
.member-features__item.point04 .member-features__thumb img {
  max-width: 180%;   /* 通常100% → 120%に拡大 */
}

/* 余白感が足りない場合はここを足す */
@media (max-width: 680px){
  .member-features__thumb img{
    width:80%;
    height:auto;
    margin:0 auto;   /* ← これを追加 */
    display:block;
  }
}

/**
* .plan_list
* aboutページ 掲載プラン
**/
.plan_list > table {
  table-layout: fixed;
  border-collapse: collapse;
  border: 1px solid #d2d0cd;
  background: #fff;
  font-size: 1.4rem;
  font-weight: 500;
  max-width: 960px;
  width: 100%;
  margin: 0 auto;
}
.plan_list > table > thead > tr > th, .plan_list > table > thead > tr > td {
  background-color: var(--sub_c);
  color: #fff;
  font-weight: 700;
  text-align: center;
  padding: 12px 16px;
}
.plan_list > table > tbody > tr > th, .plan_list > table > tbody > tr > td {
  font-weight: 700;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
  padding: 12px 16px;
  border-left: 1px solid #d2d0cd;
}
.plan_list > table > tbody > tr > th {
  text-align: left;
}
.plan_list > table > tbody > tr > td {
  text-align: center;
}
.plan_list > table > tbody > tr:nth-child(even) > th, .plan_list > table > tbody > tr:nth-child(even) > td {
  background-color: #f6f4f3;
}
.plan_list_option {
  display: inline-block;
  border-radius: 3px;
  border: 1px solid var(--sub_c);
  background: var(--sub_c);
  color: #ff8d98;
  color: #fff;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.05ex;
  line-height: 14px;
  padding: 4px 8px;
  margin-top: 4px;
}
@media (min-width: 768px) {
  .plan_list > table > tbody > tr:nth-child(even) > :first-child {
    background-color: #f6f4f3;
  }
}
@media (max-width: 767px) {
  .plan_list > table {
    font-size: 11px;
  }
  .plan_list > table > thead > tr > :first-child, .plan_list > table > tbody > tr > :first-child {
    width: 144px;
  }
}
.plan_list > p {
  color: rgba(0, 0, 0, 0.56);
  font-size: 1.6rem;
  text-align: center;
  margin: 16px 0 0;
}
.plan_list table i {
  display: inline-block;
  -webkit-transform: scale(1.5);
  transform: scale(1.5);
}
/**
* .about_cta__box_btn
* aboutページ CTA
**/
.about_cta {
  padding: 40px;
  border-radius: 5px;
  max-width: 980px;
  margin: 0 auto 40px;
}
* + .about_cta {
  margin: 40px auto;
}
.about_cta > p {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 32px;
  text-align: center;
}
.about_cta > p small {
  color: rgba(0, 0, 0, 0.56);
  font-size: inherit;
}
@media (max-width: 767px) {
  .about_cta {
    margin: 24px auto 24px;
    padding: 24px;
  }
  .about_cta > p {
    font-size: 1.4rem;
    line-height: 28px;
  }
}
.about_cta__box_btn {
  margin: 40px 0 0;
}
.about_cta .about_cta__box_btn {
  margin-top: 24px;
}
.about_cta__box_btn a {
  display: block;
  border-radius: 5px;
  -webkit-box-shadow: 0 4px 16px -4px rgba(0, 0, 0, 0.2);
  box-shadow: 0 4px 16px -4px rgba(0, 0, 0, 0.2);
  background: var(--main_c);
  font-size: 2.2rem;
  font-weight: 700;
  text-align: center;
  max-width: 500px;
  width: 100%;
  padding: 20px 50px;
  margin: 0 auto;
}
.about_cta__box_btn a:hover {
  opacity: 0.9;
}
@media (max-width: 767px) {
  .about_cta__box_btn {
    margin: 20px 0 0;
  }
  .about_cta__box_btn a {
    font-size: 1.6rem;
    padding: 15px 8px;
  }
}
/**
* /about/ページ
**/
#about_benefit {
  background-color: #fff;
}
#about_useful {
  background-color: #fff;
}
.about_howtosearch {
  display: flex;
  justify-content: center;
  gap: 40px;
}
* + .about_howtosearch {
  margin-top: 72px;
}
@media (max-width: 767px) {
  .about_howtosearch {
    width: 80%;
    margin: 3rem auto 0;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 32px;
  }
}
.about_howtosearch_item {
  display: flex;
  flex-direction: column;
  align-items: center;
  align-content: center;
  max-width: 220px;
  width: 100%;
  position: relative;
}
@media (max-width: 767px) {
  .about_howtosearch_item {
    max-width: 220px;
    width: calc((100% - 32px) / 2);
  }
}
.about_howtosearch_item_img {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-content: center;
  /*box-shadow: 0 0 20px rgba(0,0,0,0.1);*/
  border-radius: 50%;
  border: solid 3px #444;
  background: #fff;
  max-width: 176px;
  width: 100%;
  margin: 0 auto;
  aspect-ratio: 1 / 1;
}
.about_howtosearch_item_img img {
  width: 80px;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  filter: grayscale(1) contrast(3) invert(1);
}
.about_howtosearch_item_img + span {
  background: var(--main_c);
  color: #fff;
  font-size: 1.7rem;
  font-weight: 500;
  padding: 2px 12px;
  position: absolute;
  left: 0;
  top: 10px;
  z-index: 1;
}
.about_howtosearch_item_text {
  color: var(--main_c);
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
}
* + .about_howtosearch_item_text {
  margin-top: 20px;
}
/**
* /about_services/ページ
**/
#about_service_elaborate {
  background-color: #fff;
}
#about_service_plans {
  background-color: var(--bg_bc_nav);
}
/**
* /about_kuchikomi/ページ
**/
#about_kuchikomi_3point {
  background-color: #fff;
}
#about_kuchikomi_3point .base_wrap {
  max-width: 1280px;
}
.about_kuchikomi_3point_parts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-line-pack: stretch;
  align-content: stretch;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  counter-reset: kuchikomi-3point;
}
.about_kuchikomi_3point_parts > dl {
  border-radius: 8px;
  border: solid 4px #e1e1e1;
  background: #fff;
  -webkit-box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.06);
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.06);
  padding: 24px 24px 96px;
  position: relative;
}
.about_kuchikomi_3point_parts > dl::before {
  counter-increment: kuchikomi-3point;
  content: "0"counter(kuchikomi-3point);
  display: block;
  color: #e1e1e1;
  font-family: "Segoe UI", "San Francisco", "Roboto", Arial, Helvetica, sans-serif;
  font-weight: bold;
  font-size: 64px;
  line-height: 1;
  text-align: right;
  padding: 0 2rem 2rem;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  pointer-events: none;
}
.about_kuchikomi_3point_parts > dl > dt {
  color: var(--text_link_c);
  font-size: 2rem;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
  font-weight: 700;
  line-height: 32px;
}
.about_kuchikomi_3point_parts > dl > dd {
  color: rgba(0, 0, 0, 0.56);
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 28px;
  margin-top: 1.5rem;
}
@media (min-width: 768px) {
  .about_kuchikomi_3point_parts {
    margin: 0 -24px;
  }
  .about_kuchikomi_3point_parts > dl {
    width: calc((100% - 144px) / 3);
    margin: 0 24px;
  }
}
@media (max-width: 767px) {
  .about_kuchikomi_3point_parts {
    margin: 0;
  }
  .about_kuchikomi_3point_parts > dl + dl {
    margin-top: 24px;
  }
}
#about_kuchikomi_equally {
  background-color: #fff;
  overflow: hidden;
}
@media (min-width: 768px) {
  #about_kuchikomi_equally {
    padding: 0;
  }
}
@media (max-width: 767px) {
  #about_kuchikomi_equally {
    padding-top: 48px;
  }
}
#about_kuchikomi_equally .about_box__type02 {
  min-height: 640px;
}
#about_kuchikomi_equally .about_box__type02_title > img {
  width: auto;
  height: 48px;
  vertical-align: top;
  margin: 0 0 32px;
}
#about_kuchikomi_equally .about_box__type02_title > span {
  display: block;
}
@media (max-width: 767px) {
  #about_kuchikomi_equally .about_box__type02 {
    min-height: 0;
  }
  #about_kuchikomi_equally .about_box__type02_title {
    text-align: center;
  }
  #about_kuchikomi_equally .about_box__type02_title > img {
    width: auto;
    height: 28px;
    margin: 0 0 16px;
  }
}
.about_disclaimer_parts {
  color: rgba(0, 0, 0, 0.56);
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 28px;
}
.about_disclaimer_parts .title_parts {
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.5ex;
  text-align: center;
}
.about_disclaimer_parts > * + * {
  margin-top: 28px;
}
@media (max-width: 767px) {
  .about_disclaimer_parts {
    font-size: 1.2rem;
    line-height: 24px;
  }
  .about_disclaimer_parts .title_parts {
    font-size: 1.2rem;
  }
  .about_disclaimer_parts > * + * {
    margin-top: 1.5rem;
  }
}
#about_ability {
  padding: 8rem 0;
  background: #f6f4f3
}
@media (max-width: 767px) {
  #about_ability {
    padding: 4rem 0;
  }
}



/* ===== SUCCESS / 成功事例 ===== */
.success-cases__wrap{
  max-width: 1000px; /* 既存 .base_wrap があれば置き換えOK */
  width: calc(100% - 40px);
  margin: 0 auto;
  text-align: center;
}

.success-cases__grid{
  display:grid;
  grid-template-columns: 1fr;
  gap: 28px;
  text-align: left;
}
@media (min-width: 768px){
  .success-cases__grid{
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}

/* カード */

/* ラッパーを中央寄せ＆幅制御 */
.success-cases__wrap{
  max-width: 1000px;              /* 好きな上限幅に */
  width: calc(100% - 40px);
  margin: 0 auto;
}


.success-card__hero img {
  max-width: 100%;
  max-height: 100%;   /* はみ出さない */
}

/* 念のためカード幅が親に従うように */
.success-card{
  width: 100%;
  box-sizing: border-box;
}
@media (min-width: 768px){
  .success-cases__grid{
    grid-template-columns: repeat(2, 1fr);  /* 2列 */
    gap: 50px;
  }
}


.about_cta {
  text-align: center; /* 子要素を中央寄せ */
}


.about_cta__btn .cta-btn img {
  display: inline-block;
  max-width: 100%;
  height: auto;
}


.about_cta__line {
  display: flex;
  justify-content: center;
}
.about_cta__line img {
  display: block;
  height: auto;
  width: 100%;       /* 任意。画像の見え方に合わせて調整 */
  margin: 0 auto 60px;
}

.about_cta__line2 {
  display: flex;
  justify-content: center;
}
.about_cta__line2 img {
  display: block;
  height: auto;
  width: 60%;           /* デフォルトで横幅いっぱい */
  margin: 0 auto 60px;
}



/* SPで幅を変える場合も中央キープ */
@media (max-width: 767px) {
  .about_cta__line2 {
    display: flex;
    justify-content: center;
  }
  .about_cta__line2 img {
    display: block;
    height: auto;
    width: 80%;           /* デフォルトで横幅いっぱい */
    margin: 0 auto 60px;
  }
}




.member-cta {
  text-align: center;          
  padding: 48px 20px 40px;
}

.member-cta__buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: min(5vw, 32px);            /* ボタン間の余白 */
  margin: 18px 0 18px;
  flex-wrap: wrap;
}

/* ボタン画像を必ず中央に */
.member-cta__btn {
  display: flex;                 /* a要素自体をフレックスに */
  justify-content: center;       /* 中央寄せ */
  margin-top: 20px;
}
.member-cta__btn img {
  display: block;
  height: auto;
  width: min(320px, 42vw);       /* 既存ルールを生かす */
  margin: 0 auto;                /* ← これが効きます */
}

/* SPで幅を変える場合も中央キープ */
@media (max-width: 767px) {
  .member-cta__btn img { width: 80%; margin: 0 auto; }
}
@media (max-width: 480px) {
  .member-cta__btn img { width: 60%; margin: 0 auto; }
}
.member-cta__links {
  list-style: none;
  padding: 0;
  margin: 80px auto 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px 28px;                  /* 行/列の余白 */
  font-size: 14px;
  color: #AF9E8C;
}

/* 各リンクの前に細いラインを付ける */
.member-cta__links li {
  position: relative;
  padding-left: 18px;
}
.member-cta__links li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 14px;
  height: 1px;
  background: #AF9E8C;            /* 線の色（画像に近い薄茶） */
  transform: translateY(-50%);
}

.member-cta__links a {
  color: #3b79c9;                  /* 青リンク色 */
  text-decoration: underline;
}


.member-cta__links a {
  color: #3b79c9;
  text-decoration: underline;
}
.member-cta__links .suffix {
  margin-left: .3em;   /* リンクとの間に少し余白 */
  color: #313131;         /* 本文色でリンクっぽくない見た目に */
}


