@charset "UTF-8";
@media (min-width: 768px) {
  .is-hidden_pc {
    display: none;
  }
}
@media (max-width: 767px) {
  .is-hidden_sp {
    display: none;
  }
}
/* ---------------------------------------------
  common parts
--------------------------------------------- */
/* デバイス切り替え
----------------------- */
@media (min-width: 768px) {
  .is-hidden_pc {
    display: none !important;
  }
}
@media (max-width: 767px) {
  .is-hidden_sp {
    display: none !important;
  }
}
/* link
----------------------- */
a {
  color: inherit;
  text-decoration: none;
  transition: 0.3s;
}
a img {
  transition: 0.3s;
}
a:hover img {
  opacity: 0.7;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

/* list
----------------------- */
/* ul
----------------------- */
ul {
  list-style: none;
}

.c-list_disc li {
  text-indent: -0.5em;
  padding-inline-start: 1em;
}
.c-list_disc li::before {
  content: "・";
  display: inline-block;
}

/* table
----------------------- */
table {
  width: 100%;
}
@media (max-width: 767px) {
  table {
    display: block;
  }
  table tbody,
  table tr,
  table th,
  table td {
    box-sizing: border-box;
    display: block;
    width: 100% !important;
  }
}

/* flexbox
----------------------- */
.flex {
  display: flex;
  justify-content: space-between;
}
.flex > .flex--img {
  text-align: center;
}
.flex .flex-shrink {
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .flex.is-flex-direction-column_sp {
    flex-direction: column;
  }
}
.flex.flex-wrap {
  flex-wrap: wrap;
}
.flex.align-items-center {
  align-items: center;
}
.flex.align-items-start {
  align-items: flex-start;
}
.flex.align-items-end {
  align-items: flex-end;
}
.flex.justify-content-start {
  justify-content: flex-start;
}
.flex.justify-content-center {
  justify-content: center;
}
.flex.justify-content-end {
  justify-content: flex-end;
}
.flex.justify-content-evenly {
  justify-content: space-evenly;
}
.flex.flex-direction-column {
  flex-direction: column;
}

/* h
----------------------- */
.c-ttl_m {
  font-size: 2rem;
}
@media (max-width: 767px) {
  .c-ttl_m {
    font-size: 1.5rem;
  }
}

.c-ttl_s {
  font-size: 1.625rem;
}
@media (max-width: 767px) {
  .c-ttl_s {
    font-size: 1.375rem;
  }
}

.c-ttl_xs {
  font-size: 1.25rem;
}
@media (max-width: 767px) {
  .c-ttl_xs {
    font-size: 1rem;
  }
}

.c-ttl_primary {
  background-color: var(--color-main);
  border-radius: 5px;
  color: #fff;
  padding: 0.3125rem 1.5rem;
  width: fit-content;
}

.c-ttl_sub {
  background-color: var(--color-sub);
  border-radius: 5px;
  color: var(--color-main);
  padding: 0.3125rem 1.5rem;
  width: fit-content;
}

h1 {
  font-size: 3.75rem;
  font-weight: 700;
  line-height: normal;
}
@media (max-width: 767px) {
  h1 {
    font-size: 2.375rem;
  }
}

h2 {
  font-size: 3.125rem;
  font-weight: 700;
  line-height: normal;
}
@media (max-width: 767px) {
  h2 {
    font-size: 1.75rem;
  }
}

h3 {
  font-size: 2rem;
  font-weight: 700;
  line-height: normal;
}
@media (max-width: 767px) {
  h3 {
    font-size: 1.5rem;
  }
}

h4 {
  font-size: 1.625rem;
  font-weight: 700;
  line-height: normal;
}
@media (max-width: 767px) {
  h4 {
    font-size: 1.375rem;
  }
}

hgroup p {
  font-family: "Montserrat", sans-serif;
  font-size: 1.4375rem;
  font-weight: 600;
  letter-spacing: 0.1em;
}
@media (max-width: 767px) {
  hgroup p {
    font-size: 1.125rem;
  }
}
hgroup h2 + p {
  font-weight: 500;
  font-size: 1.4375rem;
}
@media (max-width: 767px) {
  hgroup h2 + p {
    font-size: 1rem;
  }
}

/* txt
----------------------- */
.c-txt_s {
  font-size: 1rem;
}
@media (max-width: 767px) {
  .c-txt_s {
    font-size: 0.8125rem;
  }
}

.c-td_underline {
  text-decoration: underline;
}
.c-td_underline:hover {
  text-decoration: none;
}

.c-annotation {
  font-size: 1.125rem;
  vertical-align: super;
}
@media (max-width: 767px) {
  .c-annotation {
    font-size: 0.9375rem;
  }
}

/* btn
----------------------- */
.c-btn_green {
  background: var(--color-main);
  border-radius: 10px;
  box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.0784313725);
  color: #fff;
  display: block;
  text-align: center;
  padding: 0.625rem 1.25rem;
}
.c-btn_green:hover {
  opacity: 0.85;
}

.c-btn_white {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.0784313725);
  color: var(--color-main);
  display: block;
  text-align: center;
  padding: 0.625rem 1.25rem;
}
.c-btn_white:hover {
  opacity: 0.85;
}

.c-btn_briefing {
  background: var(--color-main);
  border: 1px solid var(--color-main);
  border-radius: 10px;
  color: #fff;
  display: block;
  text-align: center;
  padding: 0.9375rem 0.625rem;
  box-shadow: 0px 2px 6px 0px rgba(0, 0, 0, 0.0784313725);
}
.c-btn_briefing:hover {
  opacity: 0.85;
}

.c-btn_contact {
  background: var(--color-sub);
  border: 1px solid var(--color-main);
  border-radius: 10px;
  color: var(--color-main);
  display: block;
  text-align: center;
  padding: 0.9375rem 0.625rem;
  box-shadow: 0px 2px 6px 0px rgba(0, 0, 0, 0.0784313725);
}
.c-btn_contact:hover {
  opacity: 0.85;
}

.c-btn_mypage {
  background: #fff;
  border: 1px solid var(--color-main);
  border-radius: 10px;
  color: var(--color-main);
  display: flex;
  gap: 0.4375rem;
  align-items: center;
  padding: 0.9375rem 0.625rem;
  box-shadow: 0px 2px 6px 0px rgba(0, 0, 0, 0.0784313725);
  position: relative;
}
.c-btn_mypage::before {
  content: "";
  background: url(../images/common/ico_key.svg) no-repeat center/contain;
  aspect-ratio: 15/19;
  width: 0.9375rem;
  display: block;
}
.c-btn_mypage:hover {
  opacity: 0.85;
}

.c-btn_corporation {
  background: #feecc2;
  border: 1px solid var(--color-main);
  border-radius: 10px;
  color: var(--color-main);
  display: block;
  text-align: center;
  padding: 0.9375rem 0.625rem;
  box-shadow: 0px 2px 6px 0px rgba(0, 0, 0, 0.0784313725);
}
.c-btn_corporation:hover {
  opacity: 0.85;
}

.c-txtlink {
  color: var(--color-main);
  text-decoration: underline;
}
.c-txtlink:hover {
  text-decoration: none;
}

.c-btn_txtlink {
  color: var(--color-main);
  font-weight: 700;
  padding-inline-end: 3.3125rem;
  width: fit-content;
}
.c-btn_txtlink.c-link_arrow::after {
  inset-inline-end: 0;
}
@media (max-width: 767px) {
  .c-btn_txtlink {
    padding-inline-end: 2.9375rem;
  }
}

.c-link_arrow {
  position: relative;
}
.c-link_arrow::after {
  content: "";
  background: url(../images/common/ico_arrow_wr.svg) no-repeat center var(--color-main);
  border-radius: 100%;
  display: block;
  margin-block: auto;
  height: 2.375rem;
  aspect-ratio: 1;
  position: absolute;
  inset-block: 0;
  transition: 0.3s;
}
@media (max-width: 767px) {
  .c-link_arrow::after {
    height: 2rem;
  }
}
.c-link_arrow:hover::after {
  height: 2.75rem;
  margin-inline-end: -0.1875rem;
}
@media (max-width: 767px) {
  .c-link_arrow:hover::after {
    height: 2.375rem;
  }
}

.c-btn_window {
  background: #fff;
  border: 1px solid var(--color-main);
  border-radius: 10px;
  box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.0784313725);
  color: var(--color-main);
  font-weight: 700;
  display: block;
  padding-block: 1.125rem;
  padding-inline: 1.25rem 2.625rem;
  width: fit-content;
}
.c-btn_window.c-link_window::after {
  inset-inline-end: 1.25rem;
}

.c-link_window {
  position: relative;
}
.c-link_window::after {
  content: "";
  background: url(../images/common/ico_window.svg) no-repeat center/contain;
  margin-block: auto;
  height: 0.75rem;
  aspect-ratio: 1;
  position: absolute;
  inset-block: 0;
  transition: 0.3s;
}
.c-link_window:hover::after {
  height: 1.125rem;
  margin-inline-end: -0.1875rem;
}

.no_click {
  pointer-events: none;
}

/* 下層ページ共通
----------------------- */
.page_wrap main {
  background: url(../images/common/bg_page_shape01.svg) no-repeat left calc(50% - 0.4375rem) top 2.6875rem;
}
@media (max-width: 767px) {
  .page_wrap main {
    background-image: url(../images/common/bg_page_shape01_sp.svg);
    background-position: left calc(50% + 0.9375rem) top 1.3125rem;
  }
}

.page_section:has(.page_body) {
  padding-block-start: 6.25rem !important;
}
.page_section:has(.page_ttl) {
  padding-block-start: 7.5rem !important;
}
@media (max-width: 1024px) {
  .page_section {
    padding-block-start: 4.1875rem !important;
  }
}

.page_body {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1.875rem;
}
@media (max-width: 1024px) {
  .page_body {
    flex-direction: column;
  }
}

.page_mv {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 7.5rem;
}
@media (max-width: 1024px) {
  .page_mv {
    flex-direction: column;
    gap: 1.875rem;
  }
}

.page_head {
  flex-grow: 1;
}

.page_head--txt {
  font-size: 1.25rem;
  font-weight: 700;
  margin-block-start: 2.9375rem;
}
@media (max-width: 767px) {
  .page_head--txt {
    font-size: 1rem;
    margin-block-start: 2.5rem;
  }
}
.page_head--txt .c-annotation {
  font-size: 0.8125rem;
}
@media (max-width: 767px) {
  .page_head--txt .c-annotation {
    font-size: 0.75rem;
  }
}

.page_img,
.page_main {
  flex-shrink: 0;
}

.page_main {
  margin-block-start: 1.25rem;
  max-width: 100%;
}
@media (max-width: 1024px) {
  .page_main {
    margin-block-start: 0;
    width: 100% !important;
  }
}

.page_head--btns {
  font-size: 0.8125rem;
  font-weight: 700;
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  margin-block-start: 2.5rem;
}
@media (max-width: 767px) {
  .page_head--btns {
    gap: 0.3125rem;
    margin-block-start: 1.25rem;
  }
}

.breadcrumbs {
  color: var(--color-txt-sub);
  font-size: 1rem;
  margin-block-end: 5.0625rem;
  padding-inline: 0.9375rem;
}
@media (max-width: 767px) {
  .breadcrumbs {
    font-size: 0.8125rem;
  }
}
.breadcrumbs ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3125rem;
}
.breadcrumbs ul li + *::before {
  content: ">";
  margin-inline-end: 0.3125rem;
}
.breadcrumbs ul li a:hover {
  color: var(--color-main);
}

/* スクロールすると用度がフェードイン
----------------------- */
.js-inview {
  transform: translateY(50px);
  opacity: 0;
  transition: transform 1s, opacity 1s;
}

.js-inview.is-show {
  transform: translateY(0);
  opacity: 1;
}

.js-inview_delay {
  transform: translateY(50px);
  opacity: 0;
}

.js-inview_delay.is-show {
  animation-name: fadeIn;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}

@keyframes fadeIn {
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/* アコーディオン
----------------------- */
.js-accordion_toggle {
  cursor: pointer;
}

.js-accordion_tree {
  display: none;
}

:root {
  --color-txt: #222;
  --color-main: #51a156;
  --color-border-gray: #b3b3b3;
  --color-txt-sub: #666;
  --color-sub: #ecfaed;
  --color-border-green: #9ec5a1;
  --color-border-gray-sub: #ddd;
  --color-box: #fcfaf5;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 5.25rem;
}

body {
  background: url(../images/common/bg_footer_shape.svg) no-repeat left calc(50% - 2.5625rem) bottom -9.375rem var(--color-box);
  color: var(--color-txt);
  font-family: "Zen Maru Gothic", serif;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.8;
  position: relative;
  color: var(--color-txt);
}
@media (max-width: 767px) {
  body {
    background-image: url(../images/common/bg_footer_shape_sp.svg);
    background-position: left calc(50% - 1.6875rem) bottom 15.9375rem;
    font-size: 0.9375rem;
    overflow-x: hidden;
  }
}

* {
  box-sizing: border-box;
  outline: none;
}

address {
  font-style: normal;
}

.container {
  width: 83.75rem;
  max-width: 100%;
  margin: auto;
}
@media (max-width: 767px) {
  .container {
    width: 100% !important;
  }
}
.container_narrow {
  width: 75rem;
  max-width: 100%;
  margin: auto;
}
@media (max-width: 767px) {
  .container_narrow {
    width: 100% !important;
  }
}

main {
  display: block;
}

.section {
  padding-inline: 0.9375rem;
  padding-block-start: 6.25rem;
}
@media (max-width: 767px) {
  .section {
    padding-block-start: 3.125rem;
  }
}

/* =======================================
ヘッダー関連 header
======================================= */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-inline: 3.125rem;
  height: 5.25rem;
}
@media (max-width: 1024px) {
  header {
    gap: 0.9375rem;
  }
}
@media (max-width: 767px) {
  header {
    padding-inline: 0.9375rem;
    height: 3.75rem;
  }
}

@media (max-width: 1024px) {
  .header--logo {
    width: 8.375rem;
  }
  .header--logo img {
    vertical-align: text-top;
  }
}
.header--logo a {
  display: flex;
  align-items: center;
}

.header--btn_briefing_sp {
  font-size: 0.8125rem;
  padding: 0.5rem 0.625rem;
  margin-inline-start: auto;
}
@media (min-width: 1025px) {
  .header--btn_briefing_sp {
    display: none;
  }
}

/* 固定ヘッダーが表示されたときのスタイル */
#js-header.is-show {
  background: var(--color-box);
  position: fixed;
  inset: 0 0 auto;
  opacity: 1;
  visibility: visible;
  animation: slideDown 0.3s ease-in-out;
  z-index: 50;
}

@keyframes slideDown {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0%);
  }
}
/* =======================================
グローバルナビゲーション関連 gnav
======================================= */
.gnav {
  flex-shrink: 0;
  transition: 0.3s;
}
.gnav.is-open {
  opacity: 1;
}
@media (max-width: 1024px) {
  .gnav {
    background: var(--color-box);
    position: fixed;
    inset: 0;
    z-index: 90;
    padding-block: 4.625rem 0;
    padding-inline: 0.9375rem;
  }
  .gnav:not(.is-open) {
    opacity: 0;
    visibility: hidden;
  }
}

.gnav--inner {
  display: flex;
  align-items: center;
}
@media (max-width: 1340px) and (min-width: 1025px) {
  .gnav--inner {
    display: grid;
    gap: 0 1.25rem;
    grid-template-columns: repeat(2, auto);
    grid-template-rows: repeat(2, auto);
  }
}
@media (max-width: 1024px) {
  .gnav--inner {
    flex-direction: column;
    align-items: normal;
  }
}

.gnav--list {
  display: flex;
  gap: 1rem;
}
@media (max-width: 1024px) {
  .gnav--list {
    flex-direction: column;
    gap: 0;
  }
}
@media (max-width: 1340px) and (min-width: 1025px) {
  .gnav--list_01 {
    grid-area: 1/1/2/2;
  }
}
.gnav--list_02 {
  border-inline-start: 1px solid var(--color-border-gray);
  margin-inline: 1rem 1.25rem;
  padding-inline-start: 1rem;
}
@media (max-width: 1340px) {
  .gnav--list_02 {
    border-inline-start: none;
    margin-inline: 0;
    padding-inline-start: 0;
  }
}
@media (max-width: 1340px) and (min-width: 1025px) {
  .gnav--list_02 {
    grid-area: 2/1/3/2;
    justify-content: flex-end;
  }
}
@media (max-width: 1024px) {
  .gnav--list_02 .gnav--item a {
    font-weight: 500;
  }
}
.gnav--list_03 {
  gap: 0.4375rem;
}
@media (max-width: 1340px) and (min-width: 1025px) {
  .gnav--list_03 {
    grid-area: 1/2/3/3;
  }
}
@media (max-width: 1024px) {
  .gnav--list_03 {
    margin-block-start: 1.5625rem;
    padding-inline: 2.1875rem;
  }
  .gnav--list_03 .gnav--item a {
    font-size: 1rem;
  }
}

.gnav--item {
  font-size: 0.875rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 1025px) {
  .gnav--item.current a:not([class*=c-btn_]) {
    color: var(--color-main);
  }
  .gnav--item.current a:not([class*=c-btn_])::after {
    transform: scaleX(1);
    transform-origin: bottom left;
  }
}
@media (max-width: 1024px) {
  .gnav--item {
    display: block;
  }
}
.gnav--item a {
  font-size: 0.875rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  position: relative;
}
.gnav--item a:not([class*=c-btn_]):hover {
  color: var(--color-main);
}
@media (min-width: 1025px) {
  .gnav--item a:not([class*=c-btn_])::after {
    content: "";
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 0.125rem;
    inset: auto auto -0.1875rem 0;
    background-color: var(--color-main);
    transform-origin: bottom right;
    transition: transform 0.4s cubic-bezier(0.86, 0, 0.07, 1);
  }
  .gnav--item a:not([class*=c-btn_]):hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
  }
}
@media (max-width: 1024px) {
  .gnav--item a:not([class*=c-btn_]) {
    color: var(--color-main);
    font-size: 0.9375rem;
    justify-content: normal;
    padding-block: 0.75rem;
    border-block-end: 2px solid var(--color-border-gray-sub);
    text-align: left;
    position: relative;
  }
  .gnav--item a:not([class*=c-btn_])::after {
    content: "";
    background: url(../images/common/ico_arrow_wr.svg) no-repeat center var(--color-main);
    border-radius: 100%;
    display: block;
    margin-block: auto;
    height: 2.375rem;
    aspect-ratio: 1;
    position: absolute;
    inset-block: 0;
    inset-inline-end: 0;
    transition: 0.3s;
  }
}
@media (max-width: 1024px) and (max-width: 767px) {
  .gnav--item a:not([class*=c-btn_])::after {
    height: 2rem;
  }
}
@media (max-width: 1024px) {
  .gnav--item a:not([class*=c-btn_]):hover::after {
    height: 2.75rem;
    margin-inline-end: -0.1875rem;
  }
}
@media (max-width: 1024px) and (max-width: 767px) {
  .gnav--item a:not([class*=c-btn_]):hover::after {
    height: 2.375rem;
  }
}

@media (min-width: 1025px) {
  .gnav--btn_corporation_sp {
    display: none !important;
  }
}

/* ハンバーガーボタン
----------------------- */
.gnav_btn {
  position: relative;
  z-index: 100;
  display: block;
  width: 1.5rem;
  height: 1.125rem;
  cursor: pointer;
  transition: 0.3s;
}
@media (min-width: 1025px) {
  .gnav_btn {
    display: none;
  }
}

.gnav_btn--line {
  position: absolute;
  display: block;
  width: 100%;
  height: 0.125rem;
  background: var(--color-main);
  border-radius: 0.625rem;
  transition: 0.3s;
}
.gnav_btn--line:first-child {
  top: 0;
}
.gnav_btn--line:nth-child(2) {
  top: calc(50% - 0.0625rem);
}
.gnav_btn--line:nth-child(3) {
  top: calc(100% - 0.125rem);
}

.gnav_btn.is-open .gnav_btn--line {
  transition: 0.2s;
}
.gnav_btn.is-open .gnav_btn--line:first-child {
  top: 48%;
  transform: rotate(38deg);
}
.gnav_btn.is-open .gnav_btn--line:nth-child(2) {
  opacity: 0;
}
.gnav_btn.is-open .gnav_btn--line:nth-child(3) {
  top: 48%;
  transform: rotate(-38deg);
}

/* =======================================
フッター関連 footer
======================================= */
footer {
  background: var(--color-main);
  padding: 1.875rem 0.9375rem 5.4375rem;
  position: relative;
}
footer::before {
  content: "";
  background: url(../images/common/frame_footer.webp) no-repeat center bottom/100% 100%;
  height: 4.125rem;
  position: absolute;
  inset: -4.125rem 0 auto;
}
@media (max-width: 767px) {
  footer {
    padding-block: 0.625rem 3.125rem;
  }
  footer::before {
    background-image: url(../images/common/frame_footer_sp.webp);
    height: 4.375rem;
    position: absolute;
    inset: -4.375rem 0 auto;
  }
}

.footer--site {
  color: #fff;
}

.footer--site-head {
  margin-block-end: 0.9375rem;
}
@media (max-width: 767px) {
  .footer--site-head {
    font-size: 0.9375rem;
    margin-block-end: 1.3125rem;
  }
}

.footer--site-btns {
  display: flex;
  gap: 1.25rem;
}
@media (max-width: 767px) {
  .footer--site-btns {
    flex-direction: column;
    gap: 0.3125rem;
  }
}

@media (min-width: 768px) {
  .footer--site-btn + * {
    border-inline-start: 1px solid var(--color-border-green);
    padding-inline-start: 1.25rem;
  }
}
.footer--site-btn a {
  background: #39903f;
  border: none;
  box-shadow: none;
  color: #fff;
  font-weight: 500;
  width: 100%;
}
.footer--site-btn a::after {
  mask: url(../images/common/ico_window.svg) no-repeat center/contain;
  background: #fff;
}

.footer--box {
  background: var(--color-box);
  border-radius: 20px;
  display: flex;
  gap: 1.25rem;
  align-items: center;
  justify-content: space-between;
  margin-block-start: 1.875rem;
  padding: 2.5rem 1.875rem;
}
@media (max-width: 767px) {
  .footer--box {
    justify-content: center;
    margin-block-start: 1.25rem;
    padding: 1.875rem 0.9375rem;
  }
}

.footer--company {
  font-size: 0.75rem;
  display: flex;
  gap: 0.875rem;
  flex-shrink: 0;
  align-items: center;
}
@media (max-width: 1229px) {
  .footer--company {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 767px) {
  .footer--company {
    align-items: center;
    text-align: center;
  }
}
.footer--company .logo {
  background: #fff;
  border: 1px solid var(--color-border-green);
  border-radius: 10px;
  padding: 0.5625rem 1.125rem;
}

.footer--nav {
  display: flex;
  gap: 0.875rem;
  align-items: center;
}

.footer--nav-list {
  display: flex;
}
.footer--nav-list_01 {
  font-size: 0.8125rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  justify-content: flex-end;
}
@media (max-width: 1024px) {
  .footer--nav-list_01 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 960px) {
  .footer--nav-list_01 {
    grid-template-columns: auto;
  }
}
.footer--nav-list_02 {
  font-size: 0.875rem;
  display: flex;
  gap: 0.4375rem;
  flex-shrink: 0;
}
@media (max-width: 1024px) {
  .footer--nav-list_02 {
    flex-direction: column;
  }
}

.footer--nav-item a:hover {
  color: var(--color-main);
}

.footer--bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-block-start: 1.5625rem;
}
@media (max-width: 767px) {
  .footer--bottom {
    flex-direction: column;
    gap: 1.25rem;
    align-items: center;
    justify-content: center;
    margin-block-start: 1.25rem;
  }
}

.footer--sns {
  display: flex;
  gap: 0.5625rem;
}
.footer--sns a {
  background: #39903f;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1;
  width: 2.25rem;
  border-radius: 100%;
}

.footer--copy {
  color: #fff;
  font-size: 0.8125rem;
  display: flex;
  gap: 0.8125rem;
}
@media (max-width: 767px) {
  .footer--copy {
    gap: 1.25rem;
    flex-direction: column;
    text-align: center;
  }
}
.footer--copy a:hover {
  opacity: 0.85;
}

/* =======================================
TOP
======================================= */
.top_wrap {
  background: url(../images/top/bg_top_shape01.svg) no-repeat left calc(50% - 0.4375rem) top 5.25rem, url(../images/top/bg_top_shape02.svg) no-repeat left calc(50% - 1.3125rem) top 60rem;
}
@media (max-width: 767px) {
  .top_wrap {
    background-image: url(../images/top/bg_top_shape01_sp.svg), url(../images/top/bg_top_shape02_sp.svg);
    background-position: left calc(50% + 0.375rem) top 3.3125rem, center top 63.3125rem;
  }
}

/* メインビジュアル　top_mv
----------------------- */
.top_mv {
  display: flex;
  justify-content: center;
  padding: 1.625rem 0.9375rem 3.5rem;
  height: calc(100vh - 5.25rem);
  max-height: fit-content;
}
@media (max-width: 1024px) {
  .top_mv {
    padding-block-end: 2.8125rem;
    height: calc(100vh - 3.75rem);
    max-height: none;
  }
}
.top_mv--inner {
  aspect-ratio: 1920/1347;
  max-height: 49.5625rem;
  width: fit-content;
  max-width: 100%;
  position: relative;
}
@media (max-width: 767px) {
  .top_mv--inner {
    aspect-ratio: 705/759;
    max-height: 79.3%;
    height: fit-content;
  }
}
.top_mv--catch {
  max-width: 55.22%;
  position: absolute;
  inset-block-end: 7.35%;
  inset-inline-start: -6.37%;
  z-index: 1;
}
@media (min-width: 768px) and (max-width: 900px) {
  .top_mv--catch {
    inset-inline-start: -0.88%;
  }
}
@media (max-width: 767px) {
  .top_mv--catch {
    padding-inline-end: 0.4375rem;
    max-width: 22.1875rem;
    inset: calc(100% - 1.875rem) auto auto -0.625rem;
  }
}
.top_mv .swiper-slide:not(.swiper-slide-active) {
  opacity: 0 !important;
}

/* お知らせ top_news
----------------------- */
.top_news {
  padding-block-start: 2.5rem;
}
@media (max-width: 767px) {
  .top_news {
    padding-block-start: 0;
  }
}
.top_news .container_narrow {
  display: flex;
  gap: 1.875rem;
  justify-content: space-between;
}
@media (max-width: 1024px) {
  .top_news .container_narrow {
    flex-direction: column;
  }
}

.top_news--ttl {
  flex-shrink: 0;
}

.top_news--content {
  width: 50rem;
  max-width: 100%;
}
@media (max-width: 1024px) {
  .top_news--content {
    width: 100%;
  }
}

.top_news--ul-li + * {
  margin-block-start: 0.4375rem;
}
@media (max-width: 767px) {
  .top_news--ul-li + * {
    margin-block-start: 0.3125rem;
  }
}
.top_news--ul-li a {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0px 3px 24px 0px rgba(0, 0, 0, 0.0784313725);
  display: block;
  line-height: normal;
  padding-block: 1.25rem;
  padding-inline: 2.5rem 6.75rem;
  position: relative;
}
.top_news--ul-li a::after {
  inset-inline: auto 2.5rem;
}
.top_news--ul-li a:hover {
  color: var(--color-main);
}
@media (max-width: 767px) {
  .top_news--ul-li a {
    padding: 0.9375rem 1.25rem;
  }
  .top_news--ul-li a::after {
    display: none;
  }
}

.top_news--detail {
  color: var(--color-txt-sub);
  font-size: 1rem;
  display: flex;
  gap: 0.9375rem;
}
@media (max-width: 767px) {
  .top_news--detail {
    font-size: 0.875rem;
  }
}

.top_news--ttl {
  margin-block-start: 0.625rem;
}
@media (max-width: 767px) {
  .top_news--ttl {
    margin-block-start: 0.375rem;
  }
}

.top_news--more {
  display: flex;
  justify-content: flex-end;
  margin-block-start: 2.6875rem;
  margin-inline-end: 2.5rem;
}
@media (max-width: 767px) {
  .top_news--more {
    margin-block-start: 1.5625rem;
    margin-inline-end: 0;
  }
}

/* メッセージ　top_about
----------------------- */
.top_about .container {
  background: var(--color-main);
  border-radius: 20px;
  color: #fff;
  display: flex;
  gap: 3.25rem;
  align-items: center;
  justify-content: space-between;
  padding: 2.875rem 3.75rem;
}
@media (max-width: 960px) {
  .top_about .container {
    border-radius: 0;
    gap: 1.25rem;
    flex-direction: column;
    margin-inline: -0.9375rem;
    padding: 1.875rem 0.9375rem;
    width: auto !important;
    max-width: none;
  }
}

.top_about--imgbox {
  flex-shrink: 0;
  text-align: center;
  width: 33.85%;
}
@media (max-width: 960px) {
  .top_about--imgbox {
    width: auto;
  }
}

.top_about--txtbox {
  width: 100%;
}
@media (max-width: 767px) {
  .top_about--txtbox {
    padding-inline: 0.9375rem;
  }
}

.top_about--ttl {
  margin-block-end: 1.5625rem;
}
@media (max-width: 767px) {
  .top_about--ttl {
    margin-block-end: 1.25rem;
  }
}

/* 他ページへのリンク　top_menu
----------------------- */
.top_menu {
  padding-block: 9.375rem 10.125rem;
}
@media (max-width: 767px) {
  .top_menu {
    padding-block: 3.125rem 9.5rem;
  }
}
.top_menu .container_narrow {
  display: grid;
  gap: 1.875rem;
  grid-template-columns: repeat(3, 1fr);
  align-items: flex-start;
}
@media (max-width: 1024px) {
  .top_menu .container_narrow {
    gap: 1.25rem;
    grid-template-columns: repeat(2, 1fr);
    align-items: normal;
  }
}
@media (max-width: 767px) {
  .top_menu .container_narrow {
    grid-template-columns: auto;
    justify-content: center;
  }
}

.top_menu--item {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0px 3px 24px 0px rgba(0, 0, 0, 0.0784313725);
  overflow: hidden;
}
@media (min-width: 1025px) {
  .top_menu--item:nth-child(2) {
    margin-block-start: 3.75rem;
  }
  .top_menu--item:nth-child(3) {
    margin-block-start: 7.5rem;
  }
}
@media (min-width: 768px) {
  .top_menu--item:nth-child(2).js-inview_delay.is-show {
    animation-delay: 200ms;
  }
  .top_menu--item:nth-child(3).js-inview_delay.is-show {
    animation-delay: 400ms;
  }
}
@media (max-width: 767px) {
  .top_menu--item {
    max-width: 25.875rem;
  }
}
.top_menu--item a {
  display: block;
}
.top_menu--item a:hover {
  color: var(--color-main);
}
.top_menu--item a:hover img {
  opacity: 1;
}
.top_menu--item a:hover .c-link_arrow::after {
  height: 2.75rem;
  margin-inline-end: -0.1875rem;
}

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

.top_menu--ttl {
  margin-block-end: 1.875rem;
}
@media (max-width: 767px) {
  .top_menu--ttl {
    margin-block-end: 1.25rem;
  }
}

.top_menu--txt {
  padding: 1.5rem 1.875rem 1.875rem;
}
@media (max-width: 767px) {
  .top_menu--txt {
    padding: 1.25rem 0.9375rem;
  }
}

.top_menu--more {
  margin-block-start: 1.625rem;
  margin-inline-start: auto;
}
@media (max-width: 767px) {
  .top_menu--more {
    margin-block-start: 1.25rem;
  }
}

/* =======================================
里親について
======================================= */
.about_wrap {
  background: url(../images/common/bg_page_shape03.svg) no-repeat top 93.75rem center;
}
@media (max-width: 767px) {
  .about_wrap {
    background: url(../images/common/bg_page_shape03_sp.svg) no-repeat top 118.0625rem left calc(50% + 0.375rem);
  }
}

/* 東京都の里親制度
----------------------- */
.about_system .container {
  background: #fff;
  border-radius: 20px;
  padding: 5.9375rem 4.375rem 5rem;
  position: relative;
}
@media (max-width: 1024px) {
  .about_system .container {
    padding-inline: 1.875rem;
  }
}
@media (max-width: 767px) {
  .about_system .container {
    border-radius: 0;
    margin-inline: -0.9375rem;
    padding: 3.75rem 0.9375rem 1.875rem;
    width: auto !important;
    max-width: none;
  }
}
.about_system h3 {
  position: absolute;
  inset: -1.875rem auto auto 4.375rem;
}
@media (max-width: 767px) {
  .about_system h3 {
    inset: -0.75rem auto auto 0.9375rem;
  }
}

.about_system--items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  counter-reset: number 0;
}
@media (max-width: 767px) {
  .about_system--items {
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: auto;
    gap: 1.875rem;
  }
}

@media (min-width: 768px) {
  .about_system--item:nth-child(odd) {
    border-inline-end: 2px solid var(--color-border-gray-sub);
    padding-inline-end: 2.5rem;
    position: relative;
  }
  .about_system--item:nth-child(odd)::before {
    content: "";
    background: #fff;
    width: 5rem;
    height: 0.125rem;
    position: absolute;
    inset: auto -2.5625rem -0.125rem auto;
    z-index: 1;
  }
  .about_system--item:nth-child(odd)::after {
    content: "";
    background: #fff;
    width: 0.125rem;
    height: 3.75rem;
    position: absolute;
    inset: auto -0.125rem -1.9375rem auto;
    z-index: 1;
  }
  .about_system--item:nth-child(even) {
    padding-inline-start: 2.5rem;
  }
  .about_system--item:nth-child(-n+2) {
    padding-block-end: 2.5rem;
  }
  .about_system--item:not(:nth-child(-n+2)) {
    padding-block-start: 2.9375rem;
  }
  .about_system--item:not(:nth-last-child(-n+2)) {
    border-block-end: 2px solid var(--color-border-gray-sub);
  }
}
@media (max-width: 1024px) {
  .about_system--item:nth-child(even) {
    padding-inline-start: 1.25rem;
  }
  .about_system--item:nth-child(-n+2) {
    padding-block-end: 1.25rem;
  }
}
@media (max-width: 767px) {
  .about_system--item {
    border-block-end: 2px solid var(--color-border-gray-sub);
    padding-inline: 0 !important;
    padding-block-end: 1.875rem !important;
  }
}
.about_system--item h4 {
  color: var(--color-main);
  display: flex;
  gap: 1.25rem;
  align-items: baseline;
  margin-block-end: 2.125rem;
}
@media (max-width: 767px) {
  .about_system--item h4 {
    gap: 1.125rem;
    margin-block-end: 1.5625rem;
  }
}
.about_system--item h4::before {
  background: var(--color-main);
  color: #fff;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  aspect-ratio: 1;
  width: 3.375rem;
  counter-increment: number 1;
  content: counter(number);
}
@media (max-width: 767px) {
  .about_system--item h4::before {
    width: 2.875rem;
  }
}

.about_system--box {
  background: var(--color-box);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-block-start: 3.75rem;
  padding: 1.875rem 0.9375rem;
}
.about_system--box p {
  text-align: center;
}
.about_system--box a {
  margin-block-start: 1.875rem;
}
@media (max-width: 767px) {
  .about_system--box {
    margin-block-start: 1.875rem;
    padding-inline: 1.25rem;
  }
  .about_system--box a {
    margin-block-start: 1.25rem;
  }
}

.about_system--box-head {
  font-weight: 700;
  margin-block-end: 0.625rem;
}

/* フォスタリング機関って？
----------------------- */
.about_fostering--lead {
  display: flex;
  margin-block-start: 4.375rem;
}
.about_fostering--lead h3 {
  color: var(--color-main);
  margin-block-end: 1.5625rem;
}
@media (max-width: 1024px) {
  .about_fostering--lead {
    flex-direction: column;
    margin-block-start: 2.5rem;
  }
  .about_fostering--lead h3 {
    margin-block-end: 1.25rem;
  }
}

.about_fostering--lead-img {
  flex-shrink: 0;
}
@media (min-width: 1025px) {
  .about_fostering--lead-img {
    max-width: 48.42%;
  }
}
@media (max-width: 1024px) {
  .about_fostering--lead-img {
    margin-inline-end: 1.25rem;
  }
}

.about_fostering--lead-txt {
  flex-grow: 1;
  background: #fff;
  border-radius: 20px;
  margin: 5.4375rem auto auto -3.75rem;
  padding: 3.125rem 3.75rem;
}
@media (max-width: 1024px) {
  .about_fostering--lead-txt {
    margin: -1.875rem auto auto 1.25rem;
    padding: 1.875rem 1.25rem;
  }
}

/* フォスタリング機関の活動内容
----------------------- */
.about_fostering--work {
  padding-block-start: 6.25rem;
}
.about_fostering--work h3 {
  margin-block-end: 1.875rem;
}
@media (max-width: 767px) {
  .about_fostering--work {
    padding-block-start: 3.125rem;
  }
  .about_fostering--work h3 {
    margin-block-end: 1.25rem;
  }
}

.about_fostering--work-items {
  display: grid;
  gap: 0.8125rem;
  grid-template-columns: repeat(5, 1fr);
}
@media (max-width: 1024px) {
  .about_fostering--work-items {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 767px) {
  .about_fostering--work-items {
    grid-template-columns: repeat(1, 1fr);
    gap: 0.3125rem;
  }
}

.about_fostering--work-item a {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0px 3px 24px 0px rgba(0, 0, 0, 0.0784313725);
  display: block;
  padding: 2.5rem 1.875rem;
  position: relative;
}
@media (min-width: 768px) {
  .about_fostering--work-item a {
    min-height: 13.3125rem;
  }
}
@media (max-width: 767px) {
  .about_fostering--work-item a {
    padding: 1.25rem;
  }
}
.about_fostering--work-item a .ico_toggle {
  background: var(--color-main);
  border-radius: 100%;
  aspect-ratio: 1;
  height: 2.1875rem;
  position: absolute;
  inset: auto 1.25rem 1.25rem auto;
  transition: 0.3s;
}
@media (max-width: 767px) {
  .about_fostering--work-item a .ico_toggle {
    margin-block: auto;
    height: 1.9375rem;
    inset-block: 0;
  }
}
.about_fostering--work-item a .ico_toggle::before, .about_fostering--work-item a .ico_toggle::after {
  content: "";
  background: #fff;
  border-radius: 5px;
  margin: auto;
  position: absolute;
  inset: 0;
}
.about_fostering--work-item a .ico_toggle::before {
  height: 0.125rem;
  width: 0.875rem;
}
.about_fostering--work-item a .ico_toggle::after {
  height: 0.875rem;
  width: 0.125rem;
}
.about_fostering--work-item a:hover {
  color: var(--color-main);
}
.about_fostering--work-item a:hover .ico_toggle {
  height: 2.5625rem;
  margin-inline: -0.1875rem;
  margin-block: -0.1875rem;
}
@media (max-width: 767px) {
  .about_fostering--work-item a:hover .ico_toggle {
    height: 2.3125rem;
    margin-block: auto;
  }
}

.about_fostering--work-modal h4 {
  color: var(--color-main);
  margin-block-end: 1.875rem;
}
@media (max-width: 767px) {
  .about_fostering--work-modal h4 {
    margin-block-end: 1.25rem;
  }
}

.modaal-container {
  border-radius: 20px;
}

.modaal-content-container {
  padding: 3.125rem 3.125rem 3.75rem;
}
@media (max-width: 767px) {
  .modaal-content-container {
    padding: 1.875rem 0.9375rem;
  }
}

.modaal-wrapper .modaal-close {
  border-radius: 0;
  width: 20px;
  height: 20px;
  position: absolute;
  inset: -1.875rem 0 auto auto;
}
.modaal-wrapper .modaal-close:hover {
  background-color: transparent;
}

.modaal-close:after,
.modaal-close:before {
  top: 0;
  left: 9px;
  width: 2px;
}

/* スタッフ紹介
----------------------- */
.about_fostering--staff {
  padding-block-start: 8.0625rem;
}
@media (max-width: 767px) {
  .about_fostering--staff {
    padding-block-start: 4.25rem;
  }
}
.about_fostering--staff .container {
  background: var(--color-main);
  border-radius: 20px;
  padding: 7.375rem 4.375rem 5rem;
  position: relative;
}
@media (max-width: 1024px) {
  .about_fostering--staff .container {
    padding-inline: 1.875rem;
  }
}
@media (max-width: 767px) {
  .about_fostering--staff .container {
    border-radius: 0;
    padding: 3.75rem 0.9375rem 3.125rem;
    margin-inline: -0.9375rem;
    width: auto !important;
    max-width: none;
  }
}
.about_fostering--staff h3 {
  position: absolute;
  inset-block-start: -1.8125rem;
  inset-inline-start: 4.375rem;
}
@media (max-width: 767px) {
  .about_fostering--staff h3 {
    inset-inline-start: 0.9375rem;
  }
}

.about_fostering--staff-items {
  display: grid;
  gap: 1.875rem 2.5rem;
  grid-template-columns: repeat(4, 1fr);
  align-items: start;
}
@media (max-width: 1340px) {
  .about_fostering--staff-items {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .about_fostering--staff-items {
    gap: 2.5rem;
    grid-template-columns: repeat(1, 1fr);
  }
}

.about_fostering--staff-item {
  background: var(--color-sub);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 1.875rem 1.875rem;
}
@media (min-width: 768px) {
  .about_fostering--staff-item {
    min-height: 19.9375rem;
  }
  .about_fostering--staff-item:nth-child(even) {
    margin-block-start: 3.75rem;
  }
}
@media (max-width: 767px) {
  .about_fostering--staff-item {
    padding: 0 0.9375rem 1.875rem;
  }
}

.about_fostering--staff-img {
  margin-block: -1.875rem 0.75rem;
  text-align: center;
}

.about_fostering--staff-head {
  font-weight: 700;
  font-size: 1.25rem;
  margin-block-end: 1.25rem;
  text-align: center;
}
@media (max-width: 767px) {
  .about_fostering--staff-head {
    font-size: 1rem;
  }
}
.about_fostering--staff-head + p {
  font-size: 1rem;
}
@media (max-width: 767px) {
  .about_fostering--staff-head + p {
    font-size: 0.8125rem;
  }
}

/* フォスタリング機関の概要
----------------------- */
.about_fostering--overview {
  padding-block: 6.25rem 4.625rem;
}
.about_fostering--overview h3 {
  margin-block-end: 2.5rem;
}
@media (max-width: 767px) {
  .about_fostering--overview {
    padding-block-start: 3.125rem;
  }
  .about_fostering--overview h3 {
    margin-block-end: 1.25rem;
  }
}

.about_fostering--overview-dl {
  display: grid;
  gap: 0.625rem;
  grid-template-columns: repeat(2, 1fr);
  margin-block-start: 3.3125rem;
}
@media (max-width: 767px) {
  .about_fostering--overview-dl {
    grid-template-columns: repeat(1, 1fr);
    margin-block-start: 1.875rem;
  }
}

.about_fostering--overview-item {
  background: #fff;
  border-radius: 20px;
  padding: 1.25rem 1.875rem;
}
@media (max-width: 767px) {
  .about_fostering--overview-item {
    padding-inline: 1.25rem 0.9375rem;
  }
}
.about_fostering--overview-item dt {
  color: var(--color-txt-sub);
  font-size: 1rem;
  margin-block-end: 0.4375rem;
}
@media (max-width: 767px) {
  .about_fostering--overview-item dt {
    font-size: rem819;
  }
}

/* =======================================
里親になるには？
======================================= */
.howto_wrap {
  background: url(../images/common/bg_page_shape02.svg) no-repeat top 93.75rem left calc(50% + 1.5rem);
}
@media (max-width: 767px) {
  .howto_wrap {
    background: url(../images/common/bg_page_shape02_sp.svg) no-repeat top 113.75rem center;
  }
}

/* 里親になるまでの流れ
----------------------- */
.howto_overview .container_narrow {
  background: #fff;
  border-radius: 20px;
  padding: 3.75rem;
}
@media (max-width: 767px) {
  .howto_overview .container_narrow {
    border-radius: 0;
    margin-inline: -0.9375rem;
    padding: 2.5rem 0.9375rem;
    width: auto !important;
    max-width: none;
  }
}
.howto_overview h2 {
  margin-block-end: 2.5rem;
}
@media (max-width: 767px) {
  .howto_overview h2 {
    margin-block-end: 2.0625rem;
  }
}

.howto_overview--ul-item {
  border-block-end: 2px solid var(--color-border-gray-sub);
  padding: 0.625rem 0 0.625rem 3.125rem;
  position: relative;
}
@media (max-width: 767px) {
  .howto_overview--ul-item {
    padding-inline-start: 2.25rem;
  }
}
.howto_overview--ul-item::before {
  content: "";
  background: var(--color-sub);
  border-radius: 100%;
  height: 1.875rem;
  aspect-ratio: 1;
  margin-block: auto;
  position: absolute;
  inset: 0 auto 0 0;
}
@media (max-width: 767px) {
  .howto_overview--ul-item::before {
    height: 1.625rem;
  }
}
.howto_overview--ul-item::after {
  content: "";
  content: "";
  mask: url(../images/common/ico_check.svg) no-repeat center/contain;
  background-color: var(--color-main);
  height: 0.8125rem;
  aspect-ratio: 1;
  margin-block: auto;
  position: absolute;
  inset: 0 auto 0 0.5rem;
}
@media (max-width: 767px) {
  .howto_overview--ul-item::after {
    height: 0.625rem;
  }
}

.howto_overview--attention {
  margin-block-start: 2.5rem;
  text-align: center;
}
@media (max-width: 767px) {
  .howto_overview--attention {
    margin-block-start: 1.5625rem;
  }
}

/* 里親になるまでの流れ
----------------------- */
.howto_flow {
  padding-block-start: 8.0625rem;
}
@media (max-width: 767px) {
  .howto_flow {
    padding-block-start: 4.25rem;
  }
}
.howto_flow .container {
  background: var(--color-main);
  border-radius: 20px;
  padding: 7.375rem 4.375rem 5rem;
  position: relative;
}
@media (max-width: 1024px) {
  .howto_flow .container {
    padding-inline: 1.875rem;
  }
}
@media (max-width: 767px) {
  .howto_flow .container {
    border-radius: 0;
    padding: 7.125rem 1.875rem 1.875rem;
    margin-inline: -0.9375rem;
    width: auto !important;
    max-width: none;
  }
}
.howto_flow h2 {
  position: absolute;
  inset-block-start: -1.8125rem;
  inset-inline-start: 4.375rem;
}
@media (max-width: 767px) {
  .howto_flow h2 {
    inset-block-start: -1.125rem;
    inset-inline-start: 0.9375rem;
  }
}

.howto_flow--step {
  display: flex;
  gap: 4.375rem 3rem;
  flex-wrap: wrap;
  justify-content: center;
  counter-reset: number 0;
}
@media (max-width: 767px) {
  .howto_flow--step {
    gap: 2.5rem;
    flex-direction: column;
  }
}

.howto_flow--step-item {
  background: var(--color-sub);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  text-align: center;
  min-height: 7.25rem;
  width: calc(25% - 2.25rem);
  position: relative;
}
@media (min-width: 1025px) {
  .howto_flow--step-item:nth-child(5)::before {
    display: none;
  }
}
@media (max-width: 1024px) {
  .howto_flow--step-item {
    width: calc(50% - 1.5rem);
  }
  .howto_flow--step-item:nth-child(odd)::before {
    display: none;
  }
}
@media (max-width: 767px) {
  .howto_flow--step-item {
    width: 100%;
  }
}
@media (min-width: 768px) {
  .howto_flow--step-item + .howto_flow--step-item::before {
    content: "";
    background: url(../images/common/ico_arrow_flow.svg) no-repeat center/contain;
    height: 1.3125rem;
    aspect-ratio: 1;
    margin-block: auto;
    position: absolute;
    inset: 0 auto 0 -2.125rem;
  }
}
.howto_flow--step-item .s {
  font-size: 1rem;
  font-weight: 500;
}
@media (max-width: 767px) {
  .howto_flow--step-item .s {
    font-size: 0.8125rem;
  }
}

.howto_flow--step-inner {
  padding-block-start: 1.25rem;
}
.howto_flow--step-inner::before {
  content: "STEP";
  background: #fff;
  border: 2px solid var(--color-main);
  border-radius: 100%;
  color: var(--color-main);
  font-family: "Montserrat", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  padding-block-start: 0.25rem;
  text-align: center;
  width: 3.75rem;
  aspect-ratio: 1;
  margin-inline: auto;
  position: absolute;
  inset: -1.875rem 0 auto;
}
.howto_flow--step-inner::after {
  counter-increment: number 1;
  content: counter(number);
  color: var(--color-main);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  position: absolute;
  width: fit-content;
  margin-inline: auto;
  position: absolute;
  inset: -0.4375rem 0 auto;
}

.howto_flow--attention {
  color: #fff;
  font-size: 1rem;
  margin-block-start: 2.5rem;
}
@media (min-width: 768px) {
  .howto_flow--attention {
    display: flex;
    justify-content: flex-end;
  }
}
@media (max-width: 767px) {
  .howto_flow--attention {
    font-size: 0.8125rem;
    margin-block-start: 1.5625rem;
  }
}

/* よくあるご質問
----------------------- */
.howto_faq {
  margin-block-end: 11.6875rem;
}
@media (max-width: 767px) {
  .howto_faq {
    margin-block-end: 9.5rem;
  }
}
.howto_faq h2 {
  margin-block-end: 2.5rem;
}
@media (max-width: 767px) {
  .howto_faq h2 {
    margin-block-end: 1.5625rem;
  }
}

.howto_faq--dl-item + * {
  margin-block-start: 0.625rem;
}

.howto_faq--q {
  background: var(--color-sub);
  border-radius: 10px;
  padding: 0.875rem 6.125rem 0.875rem 5rem;
  position: relative;
}
@media (max-width: 767px) {
  .howto_faq--q {
    padding: 0.6875rem 3.4375rem 0.6875rem 2.8125rem;
  }
}
.howto_faq--q::before {
  content: "Q";
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1;
  position: absolute;
  inset: 1.125rem auto auto 1.875rem;
}
@media (max-width: 767px) {
  .howto_faq--q::before {
    inset: 0.875rem auto auto 0.9375rem;
  }
}
.howto_faq--q .ico_toggle {
  background: var(--color-main);
  border-radius: 100%;
  height: 2.1875rem;
  aspect-ratio: 1;
  margin-block: auto;
  position: absolute;
  inset: 0 2.0625rem 0 auto;
  transition: 0.3s;
}
@media (max-width: 767px) {
  .howto_faq--q .ico_toggle {
    height: 1.875rem;
    inset-inline-end: 0.9375rem;
  }
}
.howto_faq--q .ico_toggle::before, .howto_faq--q .ico_toggle::after {
  content: "";
  background: #fff;
  width: 0.8125rem;
  height: 0.125rem;
  position: absolute;
  margin: auto;
  inset: 0;
  transition: 0.3s;
}
@media (max-width: 767px) {
  .howto_faq--q .ico_toggle::before, .howto_faq--q .ico_toggle::after {
    width: 0.6875rem;
  }
}
.howto_faq--q .ico_toggle::after {
  transform: rotate(90deg);
}
.howto_faq--q.is-open {
  border-radius: 10px 10px 0 0;
}
.howto_faq--q.is-open .ico_toggle {
  transform: rotate(90deg);
}
.howto_faq--q.is-open .ico_toggle::before {
  opacity: 0;
}

.howto_faq--a {
  background: #fff;
  border-radius: 0 0 10px 10px;
  padding: 1.5rem 5rem;
  position: relative;
}
@media (min-width: 768px) {
  .howto_faq--a {
    font-size: 1rem;
  }
}
@media (max-width: 767px) {
  .howto_faq--a {
    padding: 0.625rem 1.3125rem 0.625rem 2.8125rem;
  }
}
.howto_faq--a::before {
  content: "A";
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1;
  position: absolute;
  inset: 1.5rem auto auto 1.875rem;
}
@media (max-width: 767px) {
  .howto_faq--a::before {
    inset: 0.625rem auto auto 0.9375rem;
  }
}

.howto_faq--attention {
  font-size: 1rem;
  margin-block-start: 2.5rem;
}
@media (max-width: 767px) {
  .howto_faq--attention {
    font-size: 0.8125rem;
    margin-block-start: 1.5625rem;
  }
}

/* =======================================
お問い合わせ
======================================= */
.contact_section {
  margin-block-end: 1.875rem;
}
@media (max-width: 767px) {
  .contact_section {
    margin-block-end: 7.5625rem;
  }
}

.contact--body {
  display: flex;
  gap: 3.125rem;
  justify-content: space-between;
}

/* contact--main
----------------------- */
.contact--main {
  width: 43.125rem;
}
.contact--main section {
  background: #fff;
  border-radius: 1.25rem;
  padding: 2.5rem;
}
@media (max-width: 1024px) {
  .contact--main section {
    border-radius: 0;
    margin-inline: -0.9375rem;
    padding-inline: 0.9375rem;
  }
}

.contact--ttl {
  display: flex;
  gap: 1.25rem;
  align-items: center;
  margin-block-end: 2.5rem;
  position: relative;
}
.contact--ttl::before {
  content: "";
  aspect-ratio: 1;
  width: 2rem;
}
@media (max-width: 767px) {
  .contact--ttl {
    gap: 0.625rem;
    margin-block-end: 1.5625rem;
  }
  .contact--ttl::before {
    content: "";
    flex-shrink: 0;
    aspect-ratio: 1;
    width: 1.75rem;
  }
}

/* メールフォームでのお問い合わせ
----------------------- */
.contact--form .contact--ttl::before {
  background: url(../images/common/ico_mail.svg) no-repeat center/contain;
}

.contact--form-item + * {
  margin-block-start: 1.0625rem;
}
.contact--form-item .required {
  font-size: 1rem;
  color: var(--color-main);
}
@media (max-width: 767px) {
  .contact--form-item .required {
    font-size: 0.8125rem;
  }
}
.contact--form-item dd {
  margin-block-start: 0.625rem;
}
.contact--form-item input,
.contact--form-item select,
.contact--form-item textarea {
  border: 1px solid var(--color-main);
  border-radius: 10px;
  font-size: 1rem;
  padding: 0.75rem 1.25rem;
  width: 100%;
}
.contact--form-item input::placeholder,
.contact--form-item select::placeholder,
.contact--form-item textarea::placeholder {
  color: var(--color-border-gray);
}
@media (max-width: 767px) {
  .contact--form-item input,
  .contact--form-item select,
  .contact--form-item textarea {
    font-size: 0.8125rem;
    padding: 0.625rem;
  }
}
.contact--form-item select {
  -webkit-appearance: none;
  appearance: none;
  background: url("../images/common/ico_arrow_gb.svg") no-repeat right 1.25rem center;
}
.contact--form-item select:has(option:checked[value=""]) {
  color: var(--color-border-gray);
}
@media (max-width: 767px) {
  .contact--form-item select {
    background-position: right 0.9375rem center;
  }
}
.contact--form-item textarea {
  height: 14.5rem;
}

.checkbox {
  font-size: 1rem;
  display: flex;
  justify-content: center;
  margin-block-start: 1.25rem;
}
@media (max-width: 767px) {
  .checkbox {
    font-size: 0.8125rem;
  }
}

.checkbox_icon {
  appearance: none;
  background: #fff;
  border: 1px solid var(--color-main);
  border-radius: 100%;
  margin-inline-end: 0.5rem;
  position: relative;
  width: 1.875rem;
  height: 100%;
  aspect-ratio: 1;
  /* チェックマーク */
}
@media (max-width: 767px) {
  .checkbox_icon {
    width: 1.625rem;
  }
}
.checkbox_icon::before {
  content: "";
  background: url(../images/common/ico_check.svg) no-repeat center/contain;
  aspect-ratio: 1;
  width: 0.8125rem;
  opacity: 0;
  margin: auto;
  position: absolute;
  inset: 0;
}
.checkbox_icon:checked::before {
  opacity: 1;
}

.submit {
  font-weight: bold;
  display: flex;
  justify-content: center;
  margin-block-start: 2.5625rem;
}
.submit input[type=submit] {
  transition: 0.3s;
}
@media (max-width: 767px) {
  .submit {
    font-size: 1rem;
    margin-block-start: 1.625rem;
  }
}

/* お電話でのお問い合わせ
----------------------- */
.contact--tel {
  margin-block-start: 2.5rem;
}
@media (max-width: 767px) {
  .contact--tel {
    margin-block-start: 3.125rem;
  }
}
.contact--tel .contact--ttl::before {
  background: url(../images/common/ico_sphone.svg) no-repeat center/contain;
}
.contact--tel p + p {
  margin-block-start: 0.625rem;
}