@charset "UTF-8";
/* ============================
   About ページ共通
   ============================ */
.about_page .base_wrap {
  max-width: 1100px;
}
.about_page .bc_nav ~ [id="content"] {
  padding-top: 0;
}
.pc_only {
  display: inline;
}
.sp_only {
  display: none;
}
@media (max-width: 767.98px) {
  .pc_only {
    display: none;
  }
  .sp_only {
    display: inline;
  }
}
/* ============================
   ページタイトルバナー
   ============================ */
.about_page_ttl {
  position: relative;
  height: 300px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about_page_ttl__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about_page_ttl__text {
  position: relative;
  z-index: 1;
  font-size: 32px;
  font-weight: 700;
  color: var(--md-primary);
  letter-spacing: 0.15em;
}
@media (max-width: 767.98px) {
  .about_page_ttl {
    height: 200px;
  }
  .about_page_ttl__text {
    font-size: 28px;
  }
}
/* ============================
   コンセプトセクション
   ============================ */
.about_hero {
  position: relative;
  padding: 60px 0 80px;
  background: #F8FAFC;
}
.about_hero__inner {
  position: relative;
  z-index: 1;
}
.about_hero__device {
  text-align: center;
  margin-bottom: 50px;
  margin-top: -140px;
}
.about_hero__device img {
  max-width: 700px;
  width: 70%;
  height: auto;
}
.about_hero__text {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.about_hero__lead {
  font-size: 28px;
  font-weight: 700;
  color: var(--md-primary);
  line-height: 1.6;
  margin-bottom: 20px;
}
.about_hero__desc {
  font-size: 18px;
  font-weight: 500;
  color: #334155;
  line-height: 1.9;
}
@media (max-width: 767.98px) {
  .about_hero {
    padding: 30px 0 40px;
  }
  .about_hero__device {
    margin-bottom: 24px;
    margin-top: -80px;
  }
  .about_hero__device img {
    width: 85%;
    max-width: 320px;
  }
  .about_hero__lead {
    font-size: 22px;
    margin-bottom: 16px;
  }
  .about_hero__desc {
    font-size: 13px;
    text-align: left;
    line-height: 1.8;
  }
}
/* ============================
   お悩みセクション
   ============================ */
.about_nayami {
  background: var(--md-primary);
  padding: 100px 0 100px;
  color: #fff;
}
.about_nayami__title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 40px;
}
.about_nayami__title_em {
  color: #F97316;
  font-size: 46px;
  font-weight: 900;
}
.about_nayami__cases {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 900px;
  margin: 0 auto 30px;
  position: relative;
}
.about_nayami__case {
  background: #fff;
  border: 2px solid #9CA3AF;
  border-radius: 10px;
  padding: 36px 30px 32px;
  position: relative;
  text-align: center;
}
.about_nayami__case_label {
  position: absolute;
  top: -1px;
  left: -1px;
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  background: var(--md-primary);
  letter-spacing: 0.1em;
  padding: 4px 14px;
  border-radius: 8px 0 8px 0;
  margin-bottom: 0;
  text-align: left;
  width: auto;
}
.about_nayami__case_text {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.7;
  color: var(--md-primary);
}
.about_nayami__case_img {
  display: none;
}
.about_nayami__illust {
  text-align: center;
  margin: -10px 0 20px;
  position: relative;
  z-index: 2;
}
.about_nayami__illust_img {
  max-width: 400px;
  width: 60%;
  height: auto;
}
.about_nayami__arrow {
  text-align: center;
  margin: 30px 0;
}
.about_nayami__arrow::before {
  content: '';
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-top: 24px solid #F97316;
}
.about_nayami__solution {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 30px;
}
.about_nayami__solution_text {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #F97316;
  color: #fff;
  font-size: 28px;
  font-weight: 700;
  padding: 16px 50px;
}
.about_nayami__solution_logo {
  height: 32px;
  width: auto;
  filter: brightness(0) invert(1);
  vertical-align: middle;
}
.about_nayami__desc {
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
}
@media (max-width: 767.98px) {
  .about_nayami {
    padding: 50px 0 40px;
  }
  .about_nayami__title {
    font-size: 24px;
    margin-bottom: 24px;
  }
  .about_nayami__title_em {
    font-size: 28px;
  }
  .about_nayami__cases {
    gap: 10px;
    margin-bottom: 16px;
  }
  .about_nayami__case {
    padding: 28px 14px 20px;
  }
  .about_nayami__case_label {
    font-size: 9px;
    padding: 3px 10px;
  }
  .about_nayami__case_text {
    font-size: 13px;
    line-height: 1.5;
  }
  .about_nayami__case_img {
    width: 50px;
    bottom: -6px;
    right: -6px;
  }
  .about_nayami__case:nth-child(1) .about_nayami__case_img, .about_nayami__case:nth-child(3) .about_nayami__case_img {
    left: -6px;
  }
  .about_nayami__illust_img {
    width: 70%;
  }
  .about_nayami__arrow {
    margin: 20px 0;
  }
  .about_nayami__arrow::before {
    border-left: 14px solid transparent;
    border-right: 14px solid transparent;
    border-top: 18px solid #F97316;
  }
  .about_nayami__solution {
    margin-bottom: 20px;
  }
  .about_nayami__solution_text {
    font-size: 16px;
    padding: 10px 24px;
    gap: 4px;
  }
  .about_nayami__solution_logo {
    height: 18px;
  }
  .about_nayami__desc {
    font-size: 12px;
    text-align: left;
    line-height: 1.7;
  }
}
/* ============================
   ご利用のメリット
   ============================ */
.about_merit {
  background: #fff;
  padding: 100px 0 100px;
}
.about_merit__title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 32px;
  font-weight: 700;
  color: var(--md-primary);
  text-align: center;
  margin-bottom: 60px;
}
.about_merit__title_icon {
  width: 36px;
  height: 36px;
}
.about_merit__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 50px 30px;
  max-width: 900px;
  margin: 0 auto;
}
.about_merit__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: calc((100% - 60px) / 3);
  text-align: center;
}
.about_merit__item_icon {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #E2E8F0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.about_merit__item:nth-child(1) .about_merit__item_icon {
  border-color: #3B82F6;
}
.about_merit__item:nth-child(2) .about_merit__item_icon {
  border-color: #10B981;
}
.about_merit__item:nth-child(3) .about_merit__item_icon {
  border-color: #F97316;
}
.about_merit__item:nth-child(4) .about_merit__item_icon {
  border-color: #E6DE00;
}
.about_merit__item:nth-child(5) .about_merit__item_icon {
  border-color: #E34343;
}
.about_merit__item_icon img {
  width: 40px;
  height: 40px;
}
.about_merit__item_dot {
  display: block;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  margin-bottom: 20px;
}
.about_merit__item_dot--blue {
  background: #3B82F6;
}
.about_merit__item_dot--green {
  background: #10B981;
}
.about_merit__item_dot--orange {
  background: #F97316;
}
.about_merit__item_dot--yellow {
  background: #E6DE00;
}
.about_merit__item_dot--red {
  background: #E34343;
}
.about_merit__item_text {
  font-size: 17px;
  font-weight: 600;
  color: #1E293B;
  line-height: 1.6;
}
@media (max-width: 767.98px) {
  .about_merit {
    padding: 50px 0 60px;
  }
  .about_merit__title {
    font-size: 24px;
    margin-bottom: 36px;
    gap: 8px;
  }
  .about_merit__title_icon {
    width: 24px;
    height: 24px;
  }
  .about_merit__list {
    flex-direction: column;
    gap: 0;
    align-items: center;
  }
  .about_merit__item {
    width: 100%;
    flex-direction: row;
    gap: 16px;
    text-align: left;
    padding: 20px 0;
    border-bottom: 1px solid #E2E8F0;
  }
  .about_merit__item:first-child {
    padding-top: 0;
  }
  .about_merit__item:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
  .about_merit__item_icon {
    width: 56px;
    height: 56px;
    margin-bottom: 0;
    flex-shrink: 0;
  }
  .about_merit__item_icon img {
    width: 28px;
    height: 28px;
  }
  .about_merit__item_dot {
    display: none;
  }
  .about_merit__item_text {
    font-size: 15px;
  }
}
/* ============================
   ご利用の流れ
   ============================ */
.about_flow {
  background: #F0F4F8;
  padding: 100px 0 100px;
  border-top: 1px solid #e9eced;
}
.about_flow__title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 32px;
  font-weight: 700;
  color: var(--md-primary);
  text-align: center;
  margin-bottom: 50px;
}
.about_flow__title_icon {
  width: 36px;
  height: 36px;
}
.about_flow__list {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.about_flow__list::before {
  display: none;
}
.about_flow__step {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 45px 40px;
  background: #FFF;
  border-radius: 8px;
  position: relative;
}
.about_flow__step + .about_flow__step {
  margin-top: 0;
}
/* ステップ間の下矢印 */
.about_flow__step + .about_flow__step::before {
  content: '';
  position: absolute;
  top: -28px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 14px solid transparent;
  border-right: 14px solid transparent;
  border-top: 18px solid var(--md-primary);
}
/* 矢印用のスペース */
.about_flow__step + .about_flow__step {
  margin-top: 45px;
}
.about_flow__step_num {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
  color: var(--md-gold);
}
.about_flow__step_num::before {
  content: 'STEP';
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 2px;
}
.about_flow__step_num_val {
  font-size: 34px;
  font-weight: 700;
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  line-height: 1;
}
.about_flow__step_body {
  display: flex;
  align-items: center;
  gap: 30px;
  flex: 1;
}
.about_flow__step_title {
  min-width: 140px;
  font-size: 18px;
  font-weight: 700;
  white-space: nowrap;
  flex-shrink: 0;
}
.about_flow__step_desc {
  font-size: 16px;
  font-weight: 500;
  color: #334155;
  line-height: 1.8;
}
.about_flow__step_link {
  color: var(--md-primary);
  text-decoration: underline;
}
.about_flow__step_link:hover {
  text-decoration: none;
}
@media (max-width: 767.98px) {
  .about_flow {
    padding: 50px 0 60px;
  }
  .about_flow__title {
    font-size: 24px;
    margin-bottom: 32px;
    gap: 8px;
  }
  .about_flow__title_icon {
    width: 24px;
    height: 24px;
  }
  .about_flow__step {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 24px 20px;
  }
  .about_flow__step + .about_flow__step {
    margin-top: 28px;
  }
  .about_flow__step + .about_flow__step::before {
    top: -20px;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 14px solid var(--md-primary);
  }
  .about_flow__step_num {
    flex-direction: row;
    gap: 6px;
    align-items: baseline;
  }
  .about_flow__step_num::before {
    font-size: 10px;
    margin-bottom: 0;
  }
  .about_flow__step_num_val {
    font-size: 28px;
  }
  .about_flow__step_body {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
  .about_flow__step_title {
    white-space: normal;
  }
  .about_flow__step_desc {
    font-size: 13px;
  }
}
/* ============================
   よくある質問セクション
   ============================ */
.about_faq {
  background: #F8FAFC;
  padding: 100px 0 100px;
  border-top: 1px solid #e9eced;
}
.about_faq__title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 32px;
  font-weight: 700;
  color: var(--md-primary);
  text-align: center;
  margin-bottom: 50px;
}
.about_faq__title_icon {
  width: 36px;
  height: 36px;
}
.about_faq .md_faq_item {
  box-shadow: none;
}
.about_faq .box_btn {
  margin-top: 40px;
}
@media (max-width: 767.98px) {
  .about_faq {
    padding: 50px 0 60px;
  }
  .about_faq__title {
    font-size: 24px;
    margin-bottom: 32px;
    gap: 8px;
  }
  .about_faq__title_icon {
    width: 24px;
    height: 24px;
  }
}