@charset "UTF-8";
html {
  font-size: 1.0666666667vw;
}
@media (min-width: 1300px) and (max-width: 1500px) {
  html {
    font-size: 16px;
  }
}
@media (min-width: 768px) and (max-width: 1300px) {
  html {
    font-size: 1.0666666667vw;
  }
}
@media (min-width: 390px) and (max-width: 768px) {
  html {
    font-size: 14px;
  }
}
@media (max-width: 389.98px) {
  html {
    font-size: 3.5897435897vw;
  }
}

@media (max-width: 768px) {
  .sp_none {
    display: none;
  }
}

@media (min-width: 768px) {
  .pc_none {
    display: none;
  }
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.5;
  letter-spacing: 0;
  font-weight: 500;
  color: #303030;
}
@media (max-width: 768px) {
  body {
    font-size: 1rem;
  }
}

:target {
  scroll-margin-top: 5rem;
}
@media (max-width: 1300px) {
  :target {
    scroll-margin-top: 5rem;
  }
}
@media (max-width: 768px) {
  :target {
    scroll-margin-top: 4.2857142857rem;
  }
}

a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

img {
  display: block;
  width: 100%;
}

a[href*="tel:"] {
  pointer-events: none;
  cursor: default;
  text-decoration: none;
}
@media (max-width: 768px) {
  a[href*="tel:"] {
    pointer-events: auto;
    cursor: pointer;
  }
}

@media (max-width: 768px) {
  a.fax[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}

/* common
------------------------------ */
.inner {
  width: 100%;
  max-width: 81.25rem;
  padding: 0 1.5625rem;
  margin-inline: auto;
}
@media (max-width: 768px) {
  .inner {
    max-width: 42.8571428571rem;
    padding: 0 1.1428571429rem;
  }
}

.btn {
  display: inline-block;
  font-weight: 700;
  width: 100%;
  max-width: 19.375rem;
  padding: 1.125rem 2.125rem 1.125rem;
  text-align: left;
  color: #fff;
  background-color: #BE8A13;
  z-index: 1;
  border-radius: 3.125rem;
}

.btn.btn_small {
  max-width: 16.875rem;
}

@media (min-width: 768px) {
  .btn:hover {
    background-color: #037F4A;
  }
}

.btn span {
  position: relative;
  display: inline-block;
  width: 100%;
  padding-right: 2.5rem;
}

.btn span::after {
  position: absolute;
  content: "";
  width: 1.75rem;
  height: 0.375rem;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url(../images/common/icon_arrow_right_white.png) no-repeat center center/contain;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.section_title {
  position: relative;
  text-align: center;
  padding-bottom: 2.875rem;
}

.section_title::after {
  position: absolute;
  content: "";
  width: 14.9375rem;
  height: 1.4375rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: 0;
  background: url(../images/common/section_title_icon.png) no-repeat center center/contain;
}

.section_title_en {
  font-size: 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #037F4A;
}
@media (max-width: 768px) {
  .section_title_en {
    font-size: 0.8571428571rem;
  }
}

.section_title_ja {
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #037F4A;
  margin-top: 0.5625rem;
}
@media (max-width: 768px) {
  .section_title_ja {
    font-size: 2.1428571429rem;
    margin-top: 0.4285714286rem;
  }
}

.section_title_ja span {
  font-size: 1.5rem;
}
@media (max-width: 768px) {
  .section_title_ja span {
    font-size: 1.4285714286rem;
  }
}

.faq_items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem 2.4375rem;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
@media (max-width: 768px) {
  .faq_items {
    grid-template-columns: 1fr;
    gap: 1.1428571429rem;
  }
}

.faq_item {
  display: grid;
  grid-row: span 2;
  grid-template-rows: subgrid;
  row-gap: 0;
}

.faq_item_question {
  position: relative;
  font-size: 1.125rem;
  line-height: 139%;
  background-color: #fff;
}

.faq_item_question::before {
  position: absolute;
  content: "Q";
  font-size: 2.125rem;
  font-family: "Arimo", sans-serif;
  color: #037F4A;
  left: 1.5rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media (max-width: 768px) {
  .faq_item_question::before {
    font-size: 1.7142857143rem;
    left: 0.8571428571rem;
  }
}

.faq_item_question button {
  font-size: 1.125rem;
  letter-spacing: 0.05em;
  width: 100%;
  height: 100%;
  padding: 1.5625rem 2.5625rem 1.5625rem 5.5rem;
  cursor: pointer;
}
@media (max-width: 768px) {
  .faq_item_question button {
    padding: 1.1428571429rem 1.1428571429rem 1.1428571429rem 2.8571428571rem;
  }
}

.faq_item_question span {
  position: relative;
  display: inline-block;
  width: 100%;
  padding-right: 3.875rem;
}

.faq_item_question span::after {
  position: absolute;
  content: "";
  width: 1.0625rem;
  height: 2rem;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  background: url(../images/common/icon_triangle_arrow_right_green.png) no-repeat center center/contain;
}

.faq_item.is_open .faq_item_question span::after {
  -webkit-transform: translateY(-50%) rotate(90deg);
          transform: translateY(-50%) rotate(90deg);
}

.faq_item_answer {
  display: none;
  position: relative;
  line-height: 180%;
  letter-spacing: 0.02em;
  padding: 1rem 3.125rem 1rem 4.25rem;
}
@media (max-width: 768px) {
  .faq_item_answer {
    padding: 1.1428571429rem 1.1428571429rem 1.1428571429rem 2.8571428571rem;
  }
}

.faq_item_answer::before {
  position: absolute;
  content: "A";
  font-size: 2.125rem;
  font-family: "Arimo", sans-serif;
  color: #BE8A13;
  left: 1.5rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media (max-width: 768px) {
  .faq_item_answer::before {
    font-size: 1.7142857143rem;
    left: 0.8571428571rem;
  }
}

/* body
------------------------------ */
.body.is_open {
  overflow: hidden;
}

/* header
------------------------------ */
.header {
  position: fixed;
  width: 100%;
  min-height: 9.375rem;
  top: 0;
  left: 0;
  z-index: 100;
  background-color: rgba(255, 255, 255, 0.9);
}
@media (max-width: 768px) {
  .header {
    min-height: 4.2857142857rem;
  }
}

.header.header_fixed {
  min-height: 5rem;
  background-color: rgba(255, 255, 255, 0.9);
}
@media (max-width: 768px) {
  .header.header_fixed {
    min-height: 4.2857142857rem;
  }
}

.header_fixed {
  -webkit-box-shadow: 0px 0.0625rem 0.1875rem rgba(48, 48, 48, 0.5);
          box-shadow: 0px 0.0625rem 0.1875rem rgba(48, 48, 48, 0.5);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.customize-support .header {
  top: 32px;
}

.header_inner {
  min-height: inherit;
}

.header_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 1.25rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (max-width: 768px) {
  .header_wrapper {
    min-height: inherit;
  }
}

.header_fixed .header_wrapper {
  min-height: inherit;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header_left {
  width: 100%;
  max-width: 27.5rem;
  margin-top: 0.875rem;
}
@media (max-width: 768px) {
  .header_left {
    display: grid;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    max-width: 11.4285714286rem;
    margin-top: 0;
  }
}

.header_fixed .header_left {
  max-width: 12.5rem;
}
@media (max-width: 768px) {
  .header_fixed .header_left {
    max-width: 11.4285714286rem;
  }
}

.header_lead {
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  color: #747474;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (max-width: 768px) {
  .header_lead {
    display: none;
  }
}

.header_fixed .header_lead {
  display: none;
}

.header_logo {
  width: 100%;
  max-width: 18.4375rem;
  margin-top: 1.1875rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (max-width: 768px) {
  .header_logo {
    max-width: 11.4285714286rem;
    margin-top: 0;
  }
}

.header_fixed .header_logo {
  max-width: 12.5rem;
  margin-top: 0;
}

.header_right {
  width: 100%;
  max-width: 48.4375rem;
}
@media (max-width: 768px) {
  .header_right {
    display: none;
  }
}

.header_fixed .header_right {
  max-width: 61.25rem;
}

.header_head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 0.875rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (max-width: 768px) {
  .header_head {
    display: none;
  }
}

.header_fixed .header_head {
  display: none;
}

.header_tel {
  width: 100%;
  max-width: 16.5rem;
}

.header_tel_time {
  font-size: 0.875rem;
  font-family: "Shippori Mincho", sans-serif;
  font-weight: 600;
  text-align: right;
  margin-top: 0.3125rem;
}

.header_inquiry {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.4375rem;
  width: 100%;
  max-width: 31.0625rem;
}

.header_line {
  width: 100%;
  max-width: 15.625rem;
}

.header_line a {
  display: inline-block;
  font-weight: 700;
  color: #fff;
  background-color: #037F4A;
  width: 100%;
  padding: 1.59375rem 1.25rem 1.59375rem;
}

@media (min-width: 768px) {
  .header_line a:hover {
    background-color: #5ABF48;
  }
}

.header_line_wrapper {
  display: inline-block;
  position: relative;
  width: 100%;
  padding: 0 0 0 2.0625rem;
}

.header_line_wrapper::before {
  position: absolute;
  content: "";
  width: 1.5625rem;
  height: 1.5625rem;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url(../images/common/icon_line_white.png) no-repeat center center/contain;
}

.header_line_wrapper span {
  display: inline-block;
  background-color: #035B35;
  border-radius: 0.5rem;
  padding: 0 0.5rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

@media (min-width: 768px) {
  .header_line a:hover .header_line_wrapper span {
    background-color: #037F4A;
  }
}

.header_mail {
  width: 100%;
  max-width: 15rem;
}

.header_mail a {
  display: inline-block;
  font-weight: 700;
  color: #fff;
  background-color: #BE8A13;
  width: 100%;
  padding: 1.59375rem 1.5625rem 1.59375rem;
}

@media (min-width: 768px) {
  .header_mail a:hover {
    background-color: #F3C82D;
  }
}

.header_mail a span {
  display: inline-block;
  position: relative;
  width: 100%;
  padding: 0 0 0 2.25rem;
}

.header_mail a span::before {
  position: absolute;
  content: "";
  width: 1.625rem;
  height: 1.125rem;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url(../images/common/icon_mail_white.png) no-repeat center center/contain;
}

.header_nav {
  margin-top: 1.8125rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (max-width: 768px) {
  .header_nav {
    display: none;
  }
}

.header_fixed .header_nav {
  margin-top: 0;
}

.header_lists {
  display: grid;
  grid-template-columns: repeat(6, auto);
  gap: 1.25rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
}

.header_fixed .header_lists {
  grid-template-columns: repeat(8, auto);
  gap: 1rem;
}

.header_list {
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header_list_line {
  display: none;
}

.header_fixed .header_list_line {
  display: block;
}

.header_list_mail {
  display: none;
}

.header_fixed .header_list_mail {
  display: block;
}

.header_list_link {
  display: inline-block;
  font-size: 0.9375rem;
  font-weight: 700;
}

.header_fixed .header_list_link {
  font-size: 0.875rem;
}

.header_list_line .header_list_link {
  color: #fff;
  background-color: #037F4A;
  padding: 0.3125rem 0.3125rem;
  border: 1px solid #037F4A;
}

@media (min-width: 768px) {
  .header_list_line .header_list_link:hover {
    background-color: #fff;
  }
}

.header_list_mail .header_list_link {
  color: #fff;
  background-color: #BE8A13;
  padding: 0.3125rem 0.3125rem;
  border: 1px solid #BE8A13;
}

@media (min-width: 768px) {
  .header_list_mail .header_list_link:hover {
    color: #BE8A13;
    background-color: #fff;
  }
}

@media (min-width: 768px) {
  .header_list_link:hover {
    color: #037F4A;
  }
}

.header_hamburger {
  display: none;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 999;
  width: 5rem;
  height: 5rem;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  text-align: center;
}
@media (max-width: 768px) {
  .header_hamburger {
    display: block;
    width: 4.2857142857rem;
    height: 4.2857142857rem;
  }
}

.header_hamburger.is_open {
  background-color: transparent;
}

.header_hamburger_bar {
  position: relative;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  display: block;
  width: 1.5625rem;
  height: 2px;
  background-color: #037F4A;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.header_hamburger_bar:nth-of-type(1) {
  top: -0.75rem;
}
@media (max-width: 768px) {
  .header_hamburger_bar:nth-of-type(1) {
    top: -0.8571428571rem;
  }
}

.header_hamburger_bar:nth-of-type(2) {
  top: -0.125rem;
}
@media (max-width: 768px) {
  .header_hamburger_bar:nth-of-type(2) {
    top: -0.2857142857rem;
  }
}

.header_hamburger_bar:nth-of-type(3) {
  top: 0.5rem;
}
@media (max-width: 768px) {
  .header_hamburger_bar:nth-of-type(3) {
    top: 0.2857142857rem;
  }
}

.header_hamburger.is_open .header_hamburger_bar:nth-of-type(1) {
  top: 1px;
  -webkit-transform: translateX(-50%) rotate(45deg);
          transform: translateX(-50%) rotate(45deg);
}

.header_hamburger.is_open .header_hamburger_bar:nth-of-type(2) {
  opacity: 0;
}

.header_hamburger.is_open .header_hamburger_bar:nth-of-type(3) {
  top: -3px;
  -webkit-transform: translateX(-50%) rotate(-45deg);
          transform: translateX(-50%) rotate(-45deg);
}

.header_hamburger_title {
  position: absolute;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0;
  color: #037F4A;
  width: 100%;
  left: 50%;
  bottom: 0.25rem;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media (max-width: 768px) {
  .header_hamburger_title {
    bottom: 0.2857142857rem;
  }
}

.header_drawer {
  padding: 4.375rem 0;
  position: absolute;
  z-index: 900;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(255, 255, 255, 0.95);
  overflow-y: scroll;
  scrollbar-width: none;
  opacity: 0;
  visibility: hidden;
}

.header_drawer.is_open {
  opacity: 1;
  visibility: visible;
}

.header_drawer::-webkit-scrollbar {
  display: none;
}

.header_drawer_nav {
  padding: 0 1.1428571429rem 6.25rem;
  height: 100%;
  overflow-y: scroll;
}

.header_drawer_list {
  border-bottom: 1px solid #037F4A;
}

.header_drawer_list_link {
  padding: 0.9375rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1;
  color: #037F4A;
}

.header_drawer_list_menu a {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 500;
  width: 100%;
  padding: 0.5rem 0.625rem;
  color: #037F4A;
}
@media (max-width: 768px) {
  .header_drawer_list_menu a {
    font-size: 1rem;
  }
}

/* main
------------------------------ */
.main {
  margin-top: 9.6875rem;
}
@media (max-width: 768px) {
  .main {
    margin-top: 4.2857142857rem;
  }
}

/* family_mv
------------------------------ */
.family_mv_inner {
  position: relative;
}

.family_mv_content {
  width: 100%;
  max-width: 86.6667vw;
  margin-inline: auto;
  padding: 10.5333vw 1.666vw 10.5333vw;
}
@media (max-width: 768px) {
  .family_mv_content {
    max-width: 100%;
    padding: 12.2667vw 0 10.6667vw;
  }
}

.family_mv_title {
  position: relative;
  font-size: 2.4vw;
  font-weight: 700;
  letter-spacing: 0.07em;
  line-height: 1.7222222222;
  color: #037F4A;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 768px) {
  .family_mv_title {
    font-size: 5.0667vw;
  }
}

.family_mv_title::after {
  position: absolute;
  content: "";
  width: 6.2vw;
  height: 6.1333vw;
  left: calc(50% + 1.3333vw);
  top: -4.6666vw;
  background: url(../images/family/family_mv_title_illust.png) no-repeat center center/contain;
}
@media (max-width: 768px) {
  .family_mv_title::after {
    display: none;
  }
}

.family_mv_title span {
  display: inline;
  padding: 0 0.625rem;
  background-color: #fff;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
@media (max-width: 768px) {
  .family_mv_title span {
    padding: 0 1.1428571429rem;
  }
}

.family_mv_text {
  font-size: 1.3333vw;
  font-weight: 700;
  line-height: 200%;
  color: #BE8A13;
  margin-top: 0.625rem;
}
@media (max-width: 768px) {
  .family_mv_text {
    font-size: 3.466vw;
  }
}

.family_mv_text span {
  display: inline;
  padding: 0 0.625rem;
  background-color: #fff;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
@media (max-width: 768px) {
  .family_mv_text span {
    padding: 0.1428571429rem 1.1428571429rem;
  }
}

.family_mv_img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
}

.family_mv_img img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}

/* family_worries
------------------------------ */
.family_worries {
  margin-top: 6.8125rem;
}
@media (max-width: 768px) {
  .family_worries {
    margin-top: 4rem;
  }
}

.family_worries_inner.inner {
  max-width: 69.5rem;
}
@media (max-width: 768px) {
  .family_worries_inner.inner {
    max-width: 37.5rem;
  }
}

.family_worries_lead {
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  margin-top: 2rem;
}
@media (max-width: 768px) {
  .family_worries_lead {
    font-size: 1.2857142857rem;
    margin-top: 1.4285714286rem;
  }
}

.family_worries_items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  margin-top: 5.4375rem;
}
@media (max-width: 768px) {
  .family_worries_items {
    grid-template-columns: 1fr;
    gap: 1.0714285714rem;
    margin-top: 2.2857142857rem;
  }
}

.family_worries_item {
  position: relative;
  font-size: 1.25rem;
  letter-spacing: 0.05em;
  line-height: 180%;
  background-color: #E6F2ED;
  text-align: center;
  padding: 1.5625rem 1rem;
}
@media (max-width: 768px) {
  .family_worries_item {
    font-size: 1.1428571429rem;
    padding: 1.0714285714rem 1.1428571429rem;
  }
}

.family_worries_item::before {
  position: absolute;
  content: "";
}

.family_worries_item:nth-of-type(1)::before {
  width: 7.5rem;
  height: 7.5625rem;
  left: -3.8125rem;
  bottom: 0;
  background: url(../images/family/family_worries_item_illust01.png) no-repeat center center/contain;
}
@media (max-width: 768px) {
  .family_worries_item:nth-of-type(1)::before {
    width: 4.6428571429rem;
    height: 4.7142857143rem;
    left: -0.5714285714rem;
  }
}

.family_worries_item:nth-of-type(2)::before {
  width: 4.5625rem;
  height: 3.875rem;
  right: 1.625rem;
  top: -3.125rem;
  background: url(../images/family/family_worries_item_illust02.png) no-repeat center center/contain;
  -webkit-transform: rotate(-17deg);
          transform: rotate(-17deg);
}
@media (max-width: 768px) {
  .family_worries_item:nth-of-type(2)::before {
    width: 3.1428571429rem;
    height: 2.7142857143rem;
    right: 1.2142857143rem;
    top: 0.3571428571rem;
  }
}

.family_worries_item:nth-of-type(3)::before {
  width: 1.875rem;
  height: 2.75rem;
  right: 2.0625rem;
  top: -1.0625rem;
  background: url(../images/family/family_worries_item_illust03.png) no-repeat center center/contain;
  -webkit-transform: rotate(26deg);
          transform: rotate(26deg);
}
@media (max-width: 768px) {
  .family_worries_item:nth-of-type(3)::before {
    width: 1.4285714286rem;
    height: 2.1428571429rem;
    right: auto;
    left: 0.7142857143rem;
    top: auto;
    bottom: 0.5714285714rem;
    -webkit-transform: rotate(-32deg);
            transform: rotate(-32deg);
  }
}

.family_worries_item:nth-of-type(4)::before {
  width: 2.5625rem;
  height: 2.75rem;
  right: 1.1875rem;
  top: -0.8125rem;
  background: url(../images/family/family_worries_item_illust04.png) no-repeat center center/contain;
  -webkit-transform: rotate(-13deg);
          transform: rotate(-13deg);
}
@media (max-width: 768px) {
  .family_worries_item:nth-of-type(4)::before {
    width: 1.9285714286rem;
    height: 2.7857142857rem;
    right: 1.1428571429rem;
    top: 0.6428571429rem;
    -webkit-transform: rotate(-9deg);
            transform: rotate(-9deg);
  }
}

.family_worries_item:nth-of-type(5)::before {
  width: 3.75rem;
  height: 3.75rem;
  left: -1.4375rem;
  top: 1.5625rem;
  background: url(../images/family/family_worries_item_illust05.png) no-repeat center center/contain;
  -webkit-transform: rotate(18deg);
          transform: rotate(18deg);
}
@media (max-width: 768px) {
  .family_worries_item:nth-of-type(5)::before {
    width: 2.7857142857rem;
    height: 2.7857142857rem;
    left: 0.7857142857rem;
    top: 0.6428571429rem;
    -webkit-transform: rotate(-3deg);
            transform: rotate(-3deg);
  }
}

.family_worries_item:nth-of-type(6)::before {
  width: 8.125rem;
  height: 8.375rem;
  right: -3.625rem;
  bottom: -0.25rem;
  background: url(../images/family/family_worries_item_illust06.png) no-repeat center center/contain;
}
@media (max-width: 768px) {
  .family_worries_item:nth-of-type(6)::before {
    width: 5.0714285714rem;
    height: 5.2142857143rem;
    right: -1.2142857143rem;
    bottom: 0;
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
}

.family_worries_text {
  position: relative;
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 200%;
  color: #037F4A;
  text-align: center;
  margin-top: 3.4375rem;
  padding-top: 8.375rem;
}
@media (max-width: 768px) {
  .family_worries_text {
    font-size: 1.4285714286rem;
    line-height: 180%;
    margin-top: 1.6428571429rem;
    padding-top: 5.3571428571rem;
  }
}

.family_worries_text::before {
  position: absolute;
  content: "";
  width: 5.0625rem;
  height: 6.25rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: 0;
  background: url(../images/common/icon_arrow_dotted_bottom_green.png) no-repeat center center/contain;
}
@media (max-width: 768px) {
  .family_worries_text::before {
    width: 3.9285714286rem;
    height: 4.8571428571rem;
  }
}

/* family_service
------------------------------ */
.family_service {
  margin-top: 5rem;
}
@media (max-width: 768px) {
  .family_service {
    margin-top: 4rem;
  }
}

.family_service_main {
  background-color: #FBF6ED;
  padding: 4.375rem 4.375rem 3.5625rem;
}
@media (max-width: 768px) {
  .family_service_main {
    padding: 4rem 1.1428571429rem;
  }
}

.family_service_head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 5.5rem;
}
@media (max-width: 768px) {
  .family_service_head {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.1428571429rem;
  }
}

.family_service_logo {
  width: 100%;
  max-width: 13.75rem;
}
@media (max-width: 768px) {
  .family_service_logo {
    max-width: 15.7142857143rem;
  }
}

.family_service_title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 155%;
  color: #037F4A;
  width: 100%;
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
}
@media (max-width: 768px) {
  .family_service_title {
    font-size: 1.8571428571rem;
  }
}

.family_service_title span {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, transparent), color-stop(50%, rgba(243, 200, 45, 0.3)));
  background: linear-gradient(transparent 50%, rgba(243, 200, 45, 0.3) 50%);
}

.family_service_text {
  line-height: 210%;
  margin-top: 3.1875rem;
  padding-top: 2.9375rem;
  border-top: 1px solid #BE8A13;
}
@media (max-width: 768px) {
  .family_service_text {
    line-height: 180%;
    margin-top: 1.7142857143rem;
    padding-top: 1.7142857143rem;
  }
}

.family_service_text p + p {
  margin-top: 0.75rem;
}
@media (max-width: 768px) {
  .family_service_text p + p {
    margin-top: 0.5714285714rem;
  }
}

/* family_recommend
------------------------------ */
.family_recommend {
  margin-top: 4.375rem;
}
@media (max-width: 768px) {
  .family_recommend {
    margin-top: 4rem;
  }
}

.family_recommend_title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #037F4A;
  text-align: center;
}
@media (max-width: 768px) {
  .family_recommend_title {
    font-size: 1.8571428571rem;
  }
}

.family_recommend_title_small {
  font-size: 1.875rem;
}
@media (max-width: 768px) {
  .family_recommend_title_small {
    font-size: 1.4285714286rem;
  }
}

.family_recommend_title_marker {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, transparent), color-stop(50%, rgba(243, 200, 45, 0.3)));
  background: linear-gradient(transparent 50%, rgba(243, 200, 45, 0.3) 50%);
}

.family_recommend_items {
  margin-top: 2.5625rem;
}
@media (max-width: 768px) {
  .family_recommend_items {
    margin-top: 1.7142857143rem;
  }
}

.family_recommend_item {
  padding: 0 3.375rem 2.25rem;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0, transparent), color-stop(2.125rem, #FBF6ED));
  background: linear-gradient(180deg, transparent 0 2.125rem, #FBF6ED 2.125rem 100%);
}
@media (max-width: 768px) {
  .family_recommend_item {
    padding: 0 2.5714285714rem 1.7142857143rem;
  }
}

.family_recommend_item + .family_recommend_item {
  margin-top: 3.125rem;
}
@media (max-width: 768px) {
  .family_recommend_item + .family_recommend_item {
    margin-top: 2.2857142857rem;
  }
}

.family_recommend_item_title {
  font-size: 1.875rem;
  font-weight: 700;
  color: #fff;
  background-color: #037F4A;
  text-align: center;
  width: 100%;
  max-width: 25.25rem;
  margin-inline: auto;
  padding: 0.6875rem 0.25rem;
  clip-path: polygon(0 0, 100% 0, calc(100% - 1.375rem) 50%, 100% 100%, 0 100%, 1.375rem 50%);
}
@media (max-width: 768px) {
  .family_recommend_item_title {
    font-size: 1.4285714286rem;
    padding: 0.2857142857rem 0.2857142857rem;
  }
}

.family_recommend_item_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 1.25rem;
  max-width: 65.5625rem;
  margin-left: auto;
  margin-top: 1.125rem;
}
@media (max-width: 768px) {
  .family_recommend_item_wrapper {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.1428571429rem;
    margin-top: 1.1428571429rem;
  }
}

.family_recommend_item_lists {
  width: 100%;
  max-width: 37.5rem;
  margin-top: 2rem;
}
@media (max-width: 768px) {
  .family_recommend_item_lists {
    margin-top: 0;
  }
}

.family_recommend_item_list {
  position: relative;
  font-size: 1.5rem;
  font-weight: 700;
  padding-left: 2.75rem;
}
@media (max-width: 768px) {
  .family_recommend_item_list {
    font-size: 1.2857142857rem;
    padding-left: 2.2857142857rem;
  }
}

.family_recommend_item_list + .family_recommend_item_list {
  margin-top: 0.875rem;
}
@media (max-width: 768px) {
  .family_recommend_item_list + .family_recommend_item_list {
    margin-top: 0.5714285714rem;
  }
}

.family_recommend_item_list::before {
  position: absolute;
  content: "";
  width: 1.875rem;
  height: 1.5rem;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url(../images/common/icon_check_green_bright.png) no-repeat center center/contain;
}
@media (max-width: 768px) {
  .family_recommend_item_list::before {
    width: 1.4285714286rem;
    height: 1.1428571429rem;
  }
}

.family_recommend_item_illust {
  width: 100%;
  max-width: 23.4375rem;
}
@media (max-width: 768px) {
  .family_recommend_item_illust {
    max-width: 15.7142857143rem;
  }
}

.family_recommend_points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 10.4375rem;
  counter-reset: cnt;
}
@media (max-width: 768px) {
  .family_recommend_points {
    grid-template-columns: 1fr;
    gap: 4rem;
    margin-top: 6.8571428571rem;
  }
}

.family_recommend_point {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 3;
  gap: 0;
  position: relative;
  background-color: #F7F7F7;
  padding-bottom: 1.6875rem;
}
@media (max-width: 768px) {
  .family_recommend_point {
    padding-bottom: 1.7142857143rem;
  }
}

.family_recommend_point_num {
  display: grid;
  text-align: center;
  position: absolute;
  font-size: 1.5rem;
  font-weight: 700;
  font-family: "Arimo", sans-serif;
  text-transform: uppercase;
  color: #037F4A;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: -4.1875rem;
}
@media (max-width: 768px) {
  .family_recommend_point_num {
    font-size: 1.2857142857rem;
    top: -3.1428571429rem;
  }
}

.family_recommend_point_num::after {
  counter-increment: cnt;
  content: counter(cnt, decimal);
  font-size: 4.5625rem;
  line-height: 100%;
}
@media (max-width: 768px) {
  .family_recommend_point_num::after {
    font-size: 2.8571428571rem;
  }
}

.family_recommend_point_img img {
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 391/267;
}

.family_recommend_point_title_wrapper {
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 1.5rem;
  margin-top: 1.375rem;
}
@media (max-width: 768px) {
  .family_recommend_point_title_wrapper {
    margin-top: 1.1428571429rem;
    padding: 0 1.1428571429rem;
  }
}

.family_recommend_point_title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #037F4A;
  text-align: center;
}
@media (max-width: 768px) {
  .family_recommend_point_title {
    font-size: 1.2857142857rem;
  }
}

.family_recommend_point_text_wrapper {
  padding: 0 1.5rem;
  margin-top: 2.1875rem;
}
@media (max-width: 768px) {
  .family_recommend_point_text_wrapper {
    margin-top: 1.1428571429rem;
    padding: 0 1.1428571429rem;
  }
}

.family_recommend_point_text {
  line-height: 219%;
  padding-top: 1.1875rem;
  border-top: 1px solid #BE8A13;
}
@media (max-width: 768px) {
  .family_recommend_point_text {
    line-height: 180%;
    padding-top: 1.1428571429rem;
  }
}

/* family_reasons
------------------------------ */
.family_reasons {
  margin-top: 7.5rem;
  padding: 7.5rem 0 7.5rem;
  background-color: #FBF6ED;
}
@media (max-width: 768px) {
  .family_reasons {
    margin-top: 4rem;
    padding: 4rem 0;
  }
}

.family_reasons_items {
  counter-reset: cnt;
  margin-top: 4.375rem;
}
@media (max-width: 768px) {
  .family_reasons_items {
    margin-top: 2.2857142857rem;
  }
}

.family_reasons_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 1.25rem;
  background-color: #fff;
  padding: 1.875rem 2.5rem 2.5rem 1.875rem;
}
@media (max-width: 768px) {
  .family_reasons_item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.1428571429rem;
    padding: 0 1.1428571429rem 1.7142857143rem;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0, transparent), color-stop(2.2142857143rem, #fff));
    background: linear-gradient(180deg, transparent 0 2.2142857143rem, #fff 2.2142857143rem 100%);
  }
}

.family_reasons_item + .family_reasons_item {
  margin-top: 2.5rem;
}
@media (max-width: 768px) {
  .family_reasons_item + .family_reasons_item {
    margin-top: 1.7142857143rem;
  }
}

.family_reasons_item_content_wrapper {
  display: grid;
  grid-template-columns: 6.8125rem 1fr;
  gap: 1.5625rem;
  width: 100%;
  max-width: 48.625rem;
}
@media (max-width: 768px) {
  .family_reasons_item_content_wrapper {
    grid-template-columns: 1fr;
    gap: 1.1428571429rem;
  }
}

.family_reasons_item_num {
  font-size: 1.5625rem;
  font-weight: 700;
  color: #fff;
  background-color: #037F4A;
  padding: 0.625rem;
  width: 6.8125rem;
  height: 6.8125rem;
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  border-radius: 50%;
}
@media (max-width: 768px) {
  .family_reasons_item_num {
    font-size: 1.1428571429rem;
    width: 4.5714285714rem;
    height: 4.5714285714rem;
    margin-inline: auto;
    padding: 0.5714285714rem;
  }
}

.family_reasons_item_num::after {
  counter-increment: cnt;
  content: counter(cnt, decimal);
  font-size: 3.1875rem;
  line-height: 100%;
  font-family: "Arimo", sans-serif;
}
@media (max-width: 768px) {
  .family_reasons_item_num::after {
    font-size: 2.2857142857rem;
    line-height: 80%;
  }
}

.family_reasons_item_content {
  width: 100%;
  max-width: 40.25rem;
  margin-top: 0.8125rem;
}
@media (max-width: 768px) {
  .family_reasons_item_content {
    margin-top: 0;
  }
}

.family_reasons_item_title {
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 134%;
  color: #037F4A;
}
@media (max-width: 768px) {
  .family_reasons_item_title {
    font-size: 1.4285714286rem;
    line-height: 150%;
    text-align: center;
  }
}

.family_reasons_item_text {
  line-height: 219%;
  margin-top: 1.9375rem;
  padding-top: 0.625rem;
  border-top: 1px solid #BE8A13;
}
@media (max-width: 768px) {
  .family_reasons_item_text {
    line-height: 180%;
    margin-top: 1.1428571429rem;
    padding-top: 1.1428571429rem;
  }
}

.family_reasons_item_btn {
  margin-top: 2.0625rem;
}
@media (max-width: 768px) {
  .family_reasons_item_btn {
    text-align: center;
    margin-top: 1.7142857143rem;
  }
}

.family_reasons_item_img {
  width: 100%;
  max-width: 22.6875rem;
}
@media (max-width: 768px) {
  .family_reasons_item_img {
    max-width: 100%;
  }
}

.family_reasons_item_img img {
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 363/248;
}

/* family_voices
------------------------------ */
.family_voices {
  padding: 7.5rem 0 7.5rem;
  background-color: #FBF6ED;
  background: url(../images/family/family_voices_bg_pc.jpg) no-repeat center center/cover;
}
@media (max-width: 768px) {
  .family_voices {
    padding: 4rem 0;
  }
}

.family_voices_lead {
  position: relative;
  font-size: 0.875rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 1.875rem auto 0;
  padding-left: 1.125rem;
}
@media (max-width: 768px) {
  .family_voices_lead {
    font-size: 0.9285714286rem;
    margin: 1.7142857143rem auto 0;
    padding-left: 1.1428571429rem;
  }
}

.family_voices_lead::before {
  position: absolute;
  content: "※";
  left: 0;
  top: 0;
}

.family_voices_items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-top: 4.375rem;
}
@media (max-width: 768px) {
  .family_voices_items {
    grid-template-columns: 1fr;
    gap: 1.7142857143rem;
    margin-top: 2.2857142857rem;
  }
}

.family_voices_item {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 2;
  gap: 0;
  background-color: rgba(255, 255, 255, 0.9);
  padding: 2.1875rem 1.625rem 2.3125rem;
  -webkit-box-shadow: 0 0 0.9375rem rgba(48, 48, 48, 0.25);
          box-shadow: 0 0 0.9375rem rgba(48, 48, 48, 0.25);
}
@media (max-width: 768px) {
  .family_voices_item {
    padding: 1.7142857143rem 1.1428571429rem;
  }
}

.family_voices_item_title {
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.625rem;
  font-weight: 700;
  line-height: 154%;
  color: #037F4A;
  text-align: center;
}
@media (max-width: 768px) {
  .family_voices_item_title {
    font-size: 1.2857142857rem;
  }
}

.family_voices_item_text {
  line-height: 219%;
  margin-top: 1.375rem;
  padding-top: 1.625rem;
  border-top: 1px solid #037F4A;
}
@media (max-width: 768px) {
  .family_voices_item_text {
    line-height: 180%;
    margin-top: 1.1428571429rem;
    padding-top: 1.1428571429rem;
  }
}

/* family_price
------------------------------ */
.family_price {
  padding: 7.5rem 0 7.5rem;
  background-color: #E6F2ED;
}
@media (max-width: 768px) {
  .family_price {
    padding: 4rem 0;
  }
}

.family_price_table_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 1.25rem;
  margin-top: 4.375rem;
}
@media (max-width: 768px) {
  .family_price_table_wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.4285714286rem;
    margin-top: 2.2857142857rem;
  }
}

.family_price_table {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  width: 100%;
  max-width: 36.75rem;
}
@media (max-width: 768px) {
  .family_price_table {
    max-width: 100%;
  }
}

.family_price_table table {
  width: 100%;
  border-collapse: collapse;
}

.family_price_table th {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  background-color: #037F4A;
  text-align: center;
  padding: 0.625rem 1.25rem;
}
@media (max-width: 768px) {
  .family_price_table th {
    font-size: 1.2857142857rem;
    padding: 0.5714285714rem 1.1428571429rem;
  }
}

.family_price_table.family_price_table_monthly th {
  background-color: #6DBA25;
}

.family_price_table th span {
  font-size: 1rem;
}
@media (max-width: 768px) {
  .family_price_table th span {
    font-size: 1rem;
  }
}

.family_price_table td {
  background-color: #fff;
  height: 3.75rem;
  vertical-align: middle;
}
@media (max-width: 768px) {
  .family_price_table td {
    height: 3.4285714286rem;
  }
}

.family_price_table tbody tr:not(:last-of-type) td {
  border-bottom: 1px solid #037F4A;
}

.family_price_table td:nth-of-type(1) {
  font-weight: 700;
  color: #037F4A;
  padding: 1rem 1.875rem;
  border-right: 1px solid #037F4A;
}
@media (max-width: 768px) {
  .family_price_table td:nth-of-type(1) {
    padding: 0.5714285714rem 1.1428571429rem;
  }
}

.family_price_table td:nth-of-type(2) {
  text-align: right;
  padding: 0.3125rem 2.25rem;
}
@media (max-width: 768px) {
  .family_price_table td:nth-of-type(2) {
    padding: 0.2857142857rem 1.1428571429rem;
  }
}

.family_price_table td:nth-of-type(2) span {
  font-size: 0.875rem;
}
@media (max-width: 768px) {
  .family_price_table td:nth-of-type(2) span {
    font-size: 0.8571428571rem;
  }
}

.family_price_table tbody tr:last-of-type td {
  font-size: 1.25rem;
  font-weight: 700;
  color: #037F4A;
  border-top: 0.25rem solid #037F4A;
}
@media (max-width: 768px) {
  .family_price_table tbody tr:last-of-type td {
    font-size: 1.1428571429rem;
    padding: 0.2857142857rem 1.1428571429rem;
  }
}

.family_price_table tbody tr:last-of-type td:nth-of-type(1) {
  font-size: 1.5rem;
  border-right: none;
}
@media (max-width: 768px) {
  .family_price_table tbody tr:last-of-type td:nth-of-type(1) {
    font-size: 1.2857142857rem;
  }
}

.family_price_text {
  font-size: 0.875rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 3.375rem auto 0;
}
@media (max-width: 768px) {
  .family_price_text {
    font-size: 0.9285714286rem;
    margin: 1.7142857143rem auto 0;
  }
}

.family_price_lists_wrapper {
  margin-top: 2.625rem;
}
@media (max-width: 768px) {
  .family_price_lists_wrapper {
    margin-top: 1.7142857143rem;
  }
}

.family_price_lists_title {
  font-size: 1.25rem;
  font-weight: 700;
  background-color: #BBE3CC;
  text-align: center;
  padding: 0.9375rem 0.625rem;
}
@media (max-width: 768px) {
  .family_price_lists_title {
    font-size: 1.1428571429rem;
    padding: 0.5714285714rem 1.1428571429rem;
  }
}

.family_price_lists_body {
  background-color: #fff;
  padding: 2.4375rem 3.5rem 2.3125rem;
}
@media (max-width: 768px) {
  .family_price_lists_body {
    padding: 1.7142857143rem 1.1428571429rem;
  }
}

.family_price_lists_unit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 1.25rem;
  max-width: 68.4375rem;
  margin-left: auto;
}
@media (max-width: 768px) {
  .family_price_lists_unit {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.1428571429rem;
  }
}

.family_price_lists {
  display: grid;
  grid-template-columns: repeat(2, auto);
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 0.375rem 1.25rem;
  width: 100%;
  max-width: 42.625rem;
}
@media (max-width: 768px) {
  .family_price_lists {
    grid-template-columns: 1fr;
    gap: 0.5714285714rem;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}

.family_price_list {
  position: relative;
  font-weight: 700;
  padding-left: 1.1875rem;
}
@media (max-width: 768px) {
  .family_price_list {
    padding-left: 1.1428571429rem;
  }
}

.family_price_list::before {
  position: absolute;
  content: "";
  width: 0.875rem;
  height: 0.875rem;
  left: 0;
  top: 0.375rem;
  background-color: #037F4A;
  border-radius: 50%;
}
@media (max-width: 768px) {
  .family_price_list::before {
    width: 0.7142857143rem;
    height: 0.7142857143rem;
    top: 0.2857142857rem;
  }
}

.family_price_lists_illust {
  width: 100%;
  max-width: 18.25rem;
  margin-top: -3.5rem;
}
@media (max-width: 768px) {
  .family_price_lists_illust {
    max-width: 12.8571428571rem;
    margin-top: 0;
  }
}

.family_price_content_list {
  margin-top: 2rem;
}
@media (max-width: 768px) {
  .family_price_content_list {
    margin-top: 1.1428571429rem;
  }
}

.family_price_content_row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}
@media (max-width: 768px) {
  .family_price_content_row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.family_price_content_row + .family_price_content_row {
  margin-top: 0.5rem;
}
@media (max-width: 768px) {
  .family_price_content_row + .family_price_content_row {
    margin-top: 0.5714285714rem;
  }
}

.family_price_content_term {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-weight: 700;
}

.family_price_content_term::after {
  content: "：";
}
@media (max-width: 768px) {
  .family_price_content_term::after {
    display: none;
  }
}

.family_price_content_desc {
  margin-left: 0;
}

.family_price_content_stack {
  margin-top: 0.5rem;
}
@media (max-width: 768px) {
  .family_price_content_stack {
    margin-top: 0.5714285714rem;
  }
}

.family_price_content_subhead {
  color: #037F4A;
  font-weight: 700;
}

.family_price_content_docs {
  position: relative;
  padding-left: 1rem;
}
@media (max-width: 768px) {
  .family_price_content_docs {
    padding-left: 0.8571428571rem;
  }
}

.family_price_content_docs::before {
  position: absolute;
  content: "";
  top: 0.75rem;
  left: 0;
  width: 0.3125rem;
  height: 0.3125rem;
  border-radius: 50%;
  background-color: #037F4A;
}
@media (max-width: 768px) {
  .family_price_content_docs::before {
    top: 0.6428571429rem;
    width: 0.2857142857rem;
    height: 0.2857142857rem;
  }
}

.family_price_content_text {
  margin-top: 0.375rem;
}
@media (max-width: 768px) {
  .family_price_content_text {
    margin-top: 0.2857142857rem;
  }
}

/* family_flow
------------------------------ */
.family_flow {
  margin-top: 7.5rem;
}
@media (max-width: 768px) {
  .family_flow {
    margin-top: 4rem;
  }
}

.family_flow_items {
  counter-reset: cnt;
  margin-top: 4.375rem;
}
@media (max-width: 768px) {
  .family_flow_items {
    margin-top: 2.2857142857rem;
  }
}

.family_flow_item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 1.25rem;
  padding: 2.5rem 0 0 2.5rem;
}
@media (max-width: 768px) {
  .family_flow_item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.1428571429rem;
    padding: 0 1.1428571429rem 4.0714285714rem;
  }
}

@media (max-width: 768px) {
  .family_flow_item:last-of-type {
    padding: 0 1.1428571429rem 1.7142857143rem;
  }
}

.family_flow_item::before {
  position: absolute;
  content: "";
  top: 0;
  right: 13.625rem;
  bottom: 2.4375rem;
  left: 0;
  background-color: #F7F7F7;
  z-index: -1;
}
@media (max-width: 768px) {
  .family_flow_item::before {
    top: 2.2142857143rem;
    right: 0;
    bottom: 0;
  }
}

.family_flow_item:not(:last-of-type)::after {
  position: absolute;
  content: "";
  width: 4.25rem;
  height: 5.625rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: -1.0625rem;
  background: url(../images/common/icon_arrow_dotted_bottom_green.png) no-repeat center center/contain;
}
@media (max-width: 768px) {
  .family_flow_item:not(:last-of-type)::after {
    width: 4.9285714286rem;
    height: 6.1428571429rem;
    bottom: -3.4285714286rem;
  }
}

.family_flow_item + .family_flow_item {
  margin-top: 2.5625rem;
}
@media (max-width: 768px) {
  .family_flow_item + .family_flow_item {
    margin-top: 4.5714285714rem;
  }
}

.family_flow_item_content_wrapper {
  display: grid;
  grid-template-columns: 6.8125rem 1fr;
  gap: 1.6875rem;
  width: 100%;
  max-width: 50.6875rem;
}
@media (max-width: 768px) {
  .family_flow_item_content_wrapper {
    grid-template-columns: 1fr;
    gap: 1.1428571429rem;
  }
}

.family_flow_item_num {
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  background-color: #BE8A13;
  padding: 0.625rem;
  width: 6.8125rem;
  height: 6.8125rem;
  border-radius: 50%;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .family_flow_item_num {
    font-size: 0.8571428571rem;
    width: 4.6428571429rem;
    height: 4.6428571429rem;
    padding: 0.5714285714rem;
    margin-inline: auto;
  }
}

.family_flow_item_num::after {
  counter-increment: cnt;
  content: counter(cnt, decimal);
  font-size: 3.1875rem;
  line-height: 100%;
  font-family: "Arimo", sans-serif;
}
@media (max-width: 768px) {
  .family_flow_item_num::after {
    font-size: 2.1428571429rem;
  }
}

.family_flow_item_content {
  width: 100%;
  max-width: 42.1875rem;
  margin-top: 0.375rem;
}

.family_flow_item_title {
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 120%;
  color: #037F4A;
}
@media (max-width: 768px) {
  .family_flow_item_title {
    font-size: 1.4285714286rem;
    line-height: 150%;
    text-align: center;
  }
}

.family_flow_item_text {
  line-height: 219%;
  margin-top: 0.875rem;
  padding-top: 1.6875rem;
  border-top: 1px solid #BE8A13;
}
@media (max-width: 768px) {
  .family_flow_item_text {
    line-height: 180%;
    margin-top: 1.1428571429rem;
    padding-top: 1.1428571429rem;
  }
}

.family_flow_item_img {
  width: 100%;
  max-width: 21.875rem;
  margin-top: 0.5625rem;
}
@media (max-width: 768px) {
  .family_flow_item_img {
    max-width: 100%;
    margin-top: 0;
  }
}

.family_flow_item_img img {
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 350/239;
}

/* family_faq
------------------------------ */
.family_faq {
  margin-top: 6.375rem;
  padding: 7.5rem 0 6.875rem;
  background-color: #FBF6ED;
}
@media (max-width: 768px) {
  .family_faq {
    margin-top: 4rem;
    padding: 4rem 0 2.8571428571rem;
  }
}

.family_faq_items {
  margin-top: 4.375rem;
}
@media (max-width: 768px) {
  .family_faq_items {
    margin-top: 2.2857142857rem;
  }
}

/* family_column
------------------------------ */
.family_column {
  margin-top: 7.5rem;
}
@media (max-width: 768px) {
  .family_column {
    margin-top: 4rem;
  }
}

.family_column_lead {
  font-size: 1.25rem;
  text-align: center;
  margin-top: 2.8125rem;
}
@media (max-width: 768px) {
  .family_column_lead {
    font-size: 1.1428571429rem;
    margin-top: 2.2857142857rem;
  }
}

.family_column_cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
  margin-top: 4.5rem;
}
@media (max-width: 768px) {
  .family_column_cards {
    grid-template-columns: 1fr;
    gap: 1.7142857143rem;
    margin-top: 2.2857142857rem;
  }
}

.family_column_card {
  display: grid;
  grid-row: span 4;
  grid-template-rows: subgrid;
  row-gap: 0;
}

.family_column_card a {
  display: grid;
  grid-row: span 4;
  grid-template-rows: subgrid;
  row-gap: 0;
  background-color: #F7F7F7;
  padding: 0 0 2.25rem;
}
@media (max-width: 768px) {
  .family_column_card a {
    padding: 0 0 1.7142857143rem;
  }
}

@media (min-width: 768px) {
  .family_column_card a:hover {
    background-color: #FBF6ED;
  }
}

.family_column_card_img {
  overflow: hidden;
}

.family_column_card_img img {
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 292/170;
  width: 100%;
  height: auto;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.family_column_card a:hover .family_column_card_img img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.family_column_card_date {
  font-size: 0.875rem;
  font-weight: 700;
  padding: 0 1.25rem;
  margin-top: 1.0625rem;
}
@media (max-width: 768px) {
  .family_column_card_date {
    font-size: 0.9285714286rem;
    padding: 0 1.1428571429rem;
    margin-top: 0.8571428571rem;
  }
}

.family_column_card_title {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 120%;
  color: #037F4A;
  padding: 0 1.25rem;
  margin-top: 0.75rem;
}
@media (max-width: 768px) {
  .family_column_card_title {
    font-size: 1.2857142857rem;
    margin-top: 0.5714285714rem;
  }
}

.top_news_card_categorys {
  padding: 0 1.25rem;
  margin-top: 1.0625rem;
}
@media (max-width: 768px) {
  .top_news_card_categorys {
    padding: 0 1.1428571429rem;
    margin-top: 0.5714285714rem;
  }
}

.top_news_card_category {
  font-size: 0.875rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #BE8A13;
  padding: 0.0625rem 0.8125rem;
  border: 1px solid #BE8A13;
}
@media (max-width: 768px) {
  .top_news_card_category {
    font-size: 0.9285714286rem;
    padding: 0.0714285714rem 0.5714285714rem;
  }
}

.family_column_btn {
  margin-top: 3.75rem;
  text-align: center;
}
@media (max-width: 768px) {
  .family_column_btn {
    margin-top: 1.7142857143rem;
  }
}

/* family_profile
------------------------------ */
.family_profile {
  margin-top: 7.5rem;
  padding: 7.75rem 0 7.5rem;
  background-color: #E6F2ED;
}
@media (max-width: 768px) {
  .family_profile {
    margin-top: 4rem;
    padding: 4rem 0;
  }
}

.family_profile_items {
  position: relative;
  margin-top: 4.5rem;
}
@media (max-width: 768px) {
  .family_profile_items {
    margin-top: 2.2857142857rem;
  }
}

.family_profile_items::before {
  position: absolute;
  content: "";
  width: 13.4375rem;
  height: 16.6875rem;
  right: 6.8125rem;
  top: -13.625rem;
  background: url(../images/family/family_profile_illust.png) no-repeat center center/contain;
}
@media (max-width: 768px) {
  .family_profile_items::before {
    display: none;
  }
}

.family_profile_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 1.25rem;
}
@media (max-width: 768px) {
  .family_profile_item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.1428571429rem;
  }
}

.family_profile_item + .family_profile_item {
  margin-top: 3.875rem;
}
@media (max-width: 768px) {
  .family_profile_item + .family_profile_item {
    margin-top: 2.8571428571rem;
  }
}

.family_profile_item_portrait {
  width: 100%;
  max-width: 27.8125rem;
}
@media (max-width: 768px) {
  .family_profile_item_portrait {
    max-width: 100%;
  }
}

.family_profile_item_portrait img {
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 445/329;
}

.family_profile_item_content {
  width: 100%;
  max-width: 47.25rem;
}

.family_profile_item_name {
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 120%;
  color: #037F4A;
}
@media (max-width: 768px) {
  .family_profile_item_name {
    font-size: 1.5714285714rem;
  }
}

.family_profile_item_name span {
  font-size: 1.25rem;
  font-weight: 500;
}
@media (max-width: 768px) {
  .family_profile_item_name span {
    font-size: 1.2857142857rem;
  }
}

.family_profile_item_lists {
  margin-top: 0.8125rem;
}
@media (max-width: 768px) {
  .family_profile_item_lists {
    margin-top: 0.5714285714rem;
  }
}

.family_profile_item_list {
  font-weight: 700;
  color: #037F4A;
}

.family_profile_item_list + .family_profile_item_list {
  margin-top: 0.6875rem;
}
@media (max-width: 768px) {
  .family_profile_item_list + .family_profile_item_list {
    margin-top: 0.2857142857rem;
  }
}

.family_profile_item_text {
  line-height: 219%;
  margin-top: 1.8125rem;
  padding-top: 1.75rem;
  border-top: 1px solid #BE8A13;
}
@media (max-width: 768px) {
  .family_profile_item_text {
    line-height: 180%;
    margin-top: 0.5714285714rem;
    padding-top: 0.5714285714rem;
  }
}

.family_profile_btn {
  margin-top: 3.75rem;
  text-align: center;
}
@media (max-width: 768px) {
  .family_profile_btn {
    margin-top: 1.7142857143rem;
  }
}

/* family_cta
------------------------------ */
.family_cta {
  background-color: #EEC43A;
  padding: 3.3125rem 0 3.375rem;
}
@media (max-width: 768px) {
  .family_cta {
    padding: 2.8571428571rem 0;
  }
}

.family_cta_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 1.25rem;
}
@media (max-width: 768px) {
  .family_cta_wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 1.1428571429rem;
  }
}

.family_cta_left {
  width: 100%;
  max-width: 49.375rem;
}

.family_cta_message {
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.5714285714;
  background-image: radial-gradient(circle, #BE8A13 0.09375rem, transparent 0.09375rem);
  background-position: left bottom;
  background-repeat: repeat-x;
  background-size: 0.4375rem 0.1875rem;
  padding-bottom: 0.9375rem;
}
@media (max-width: 768px) {
  .family_cta_message {
    font-size: 1.2142857143rem;
    text-align: center;
    padding-bottom: 1.4285714286rem;
  }
}

.family_cta_unit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2.3125rem;
  margin-top: 2rem;
}
@media (max-width: 768px) {
  .family_cta_unit {
    gap: 0.3571428571rem 0.7142857143rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    max-width: 24rem;
    margin: 1.2857142857rem auto 0;
    background-size: 0.5rem 0.2142857143rem;
  }
}

.family_cta_tel {
  width: 100%;
  max-width: 29.9375rem;
}
@media (max-width: 768px) {
  .family_cta_tel {
    display: contents;
  }
}

.family_cta_tel_link {
  width: 100%;
  max-width: 29.3125rem;
  margin-inline: auto;
}
@media (max-width: 768px) {
  .family_cta_tel_link {
    max-width: 100%;
  }
}

.family_cta_tel_time {
  text-align: center;
  font-size: 0.9375rem;
  font-weight: 700;
  color: #fff;
  background-color: #BE8A13;
  border-radius: 2.125rem;
  margin-top: 1.125rem;
  padding: 0.5625rem 1.125rem;
}
@media (max-width: 768px) {
  .family_cta_tel_time {
    font-size: 0.8571428571rem;
    max-width: 17.4285714286rem;
    padding: 0.2857142857rem 0.7142857143rem;
    margin-top: 0;
  }
}

.family_cta_illust {
  width: 100%;
  max-width: 14.5rem;
}
@media (max-width: 768px) {
  .family_cta_illust {
    max-width: 5.8571428571rem;
  }
}

.family_cta_right {
  width: 100%;
  max-width: 27rem;
  margin-top: 0.4375rem;
}
@media (max-width: 768px) {
  .family_cta_right {
    max-width: 24rem;
    margin-top: 0;
  }
}

.family_cta_line {
  width: 100%;
  max-width: 27rem;
}
@media (max-width: 768px) {
  .family_cta_line {
    max-width: 24rem;
  }
}

.family_cta_line a {
  display: inline-block;
  font-size: 1.75rem;
  font-weight: 700;
  color: #037F4A;
  background-color: #fff;
  width: 100%;
  padding: 2.4375rem 1.25rem 2.4375rem;
  -webkit-box-shadow: 0 0 0.625rem rgba(190, 138, 19, 0.7);
          box-shadow: 0 0 0.625rem rgba(190, 138, 19, 0.7);
  text-align: center;
}
@media (max-width: 768px) {
  .family_cta_line a {
    font-size: 1.7142857143rem;
    padding: 1.2857142857rem 1.1428571429rem;
  }
}

@media (min-width: 768px) {
  .family_cta_line a:hover {
    color: #fff;
    background-color: #037F4A;
  }
}

.family_cta_line_wrapper {
  display: inline-block;
  position: relative;
  width: 100%;
  max-width: 22.3125rem;
  text-align: left;
  padding: 0 0 0 4.0625rem;
}

.family_cta_line_wrapper::before {
  position: absolute;
  content: "";
  width: 3.0625rem;
  height: 2.875rem;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url(../images/common/icon_line_green.png) no-repeat center center/contain;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (max-width: 768px) {
  .family_cta_line_wrapper::before {
    width: 2.6428571429rem;
    height: 2.5rem;
  }
}

@media (min-width: 768px) {
  .family_cta_line a:hover .family_cta_line_wrapper::before {
    background: url(../images/common/icon_line_white.png) no-repeat center center/contain;
  }
}

.family_cta_line_wrapper span {
  display: inline-block;
  font-size: 1.625rem;
  letter-spacing: 0.1em;
  color: #fff;
  background-color: #037F4A;
  border-radius: 0.5rem;
  padding: 0 0.5rem;
}
@media (max-width: 768px) {
  .family_cta_line_wrapper span {
    font-size: 1.4285714286rem;
    padding: 0 0.2857142857rem;
  }
}

.family_cta_mail {
  width: 100%;
  max-width: 27rem;
  margin-top: 2.5rem;
}
@media (max-width: 768px) {
  .family_cta_mail {
    max-width: 24rem;
    margin-top: 1.0714285714rem;
  }
}

.family_cta_mail a {
  display: inline-block;
  font-size: 1.75rem;
  font-weight: 700;
  color: #BE8A13;
  background-color: #fff;
  width: 100%;
  padding: 2.4375rem 1.25rem 2.4375rem;
  -webkit-box-shadow: 0 0 0.625rem rgba(190, 138, 19, 0.7);
          box-shadow: 0 0 0.625rem rgba(190, 138, 19, 0.7);
  text-align: center;
}
@media (max-width: 768px) {
  .family_cta_mail a {
    font-size: 1.7142857143rem;
    padding: 1.2857142857rem 1.1428571429rem;
  }
}

@media (min-width: 768px) {
  .family_cta_mail a:hover {
    color: #fff;
    background-color: #BE8A13;
  }
}

.family_cta_mail a span {
  display: inline-block;
  position: relative;
  width: 100%;
  max-width: 21.25rem;
  padding: 0 0 0 4.4375rem;
}

.family_cta_mail a span::before {
  position: absolute;
  content: "";
  width: 2.8125rem;
  height: 2rem;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url(../images/common/icon_mail_gold.png) no-repeat center center/contain;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (max-width: 768px) {
  .family_cta_mail a span::before {
    width: 2.4285714286rem;
    height: 1.6428571429rem;
  }
}

@media (min-width: 768px) {
  .family_cta_mail a:hover span::before {
    background: url(../images/common/icon_mail_white.png) no-repeat center center/contain;
  }
}

/* sub_mv
------------------------------ */
.sub_mv {
  min-height: 27.3125rem;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0, transparent), color-stop(7.9375rem, #F7F7F7));
  background: linear-gradient(180deg, transparent 0 7.9375rem, #F7F7F7 7.9375rem 100%);
}
@media (max-width: 768px) {
  .sub_mv {
    min-height: 21.4285714286rem;
  }
}

.sub_mv_inner {
  min-height: inherit;
}

.sub_mv_wrapper {
  min-height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 768px) {
  .sub_mv_wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}

.sub_mv_title_wrapper {
  width: calc(50% - 6.875rem);
  min-height: inherit;
  padding-left: 1.5625rem;
}
@media (max-width: 768px) {
  .sub_mv_title_wrapper {
    width: 100%;
    padding: 1.1428571429rem 1.1428571429rem;
    min-height: auto;
  }
}

.sub_mv_title {
  position: relative;
  min-height: inherit;
  display: grid;
  -ms-flex-line-pack: end;
      align-content: flex-end;
  padding: 6.75rem 1.5625rem 6.75rem 0;
  width: 100%;
  max-width: 32.1875rem;
  margin-left: auto;
}
@media (max-width: 768px) {
  .sub_mv_title {
    max-width: 100%;
    padding: 0;
    min-height: auto;
  }
}

.sub_mv_title_en {
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #037F4A;
}

.sub_mv_title_ja {
  font-size: 2.5rem;
  letter-spacing: 0.05em;
  font-weight: 700;
  color: #037F4A;
}
@media (max-width: 768px) {
  .sub_mv_title_ja {
    font-size: 1.7142857143rem;
  }
}

.sub_mv_img {
  width: calc(50% + 6.875rem);
}
@media (max-width: 768px) {
  .sub_mv_img {
    width: 100%;
  }
}

.sub_mv_img img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 768px) {
  .sub_mv_img img {
    max-height: 14.2857142857rem;
  }
}

/* breadcrumb
------------------------------ */
.breadcrumb {
  font-size: 0.875rem;
  font-weight: 700;
  padding: 2.1875rem 0 2.75rem;
  background-color: #F7F7F7;
}
@media (max-width: 768px) {
  .breadcrumb {
    font-size: 0.9285714286rem;
    padding: 1.1428571429rem 0;
  }
}

.breadcrumb_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.25rem 1.1875rem;
  letter-spacing: 0;
}
@media (max-width: 768px) {
  .breadcrumb_inner {
    gap: 0.1428571429rem 0.5714285714rem;
  }
}

.breadcrumb_arrow {
  display: inline-block;
  width: 0.3125rem;
  height: 0.875rem;
  background: url(../images/common/icon_slash_green.png) no-repeat center center/contain;
}

/* family_contact_flow
------------------------------ */
.family_contact_flow {
  margin-top: 7.5rem;
}
@media (max-width: 768px) {
  .family_contact_flow {
    margin-top: 4rem;
  }
}

.family_contact_flow_items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3.5625rem;
  margin-top: 3.75rem;
  counter-reset: cnt;
}
@media (max-width: 768px) {
  .family_contact_flow_items {
    grid-template-columns: 1fr;
    gap: 2.8571428571rem;
    margin-top: 2.8571428571rem;
  }
}

.family_contact_flow_item {
  position: relative;
  padding: 0 1.0625rem 1.4375rem;
}
@media (max-width: 768px) {
  .family_contact_flow_item {
    padding: 0 1.1428571429rem 1.7142857143rem;
  }
}

.family_contact_flow_item::before {
  position: absolute;
  content: "";
  top: 3.8125rem;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #E6F2ED;
  z-index: -1;
  border-radius: 0.625rem;
}
@media (max-width: 768px) {
  .family_contact_flow_item::before {
    top: 1.7142857143rem;
  }
}

.family_contact_flow_item:not(:last-of-type)::after {
  position: absolute;
  content: "";
  width: 6.25rem;
  height: 5.0625rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: -5.3125rem;
  background: url(../images/common/icon_arrow_dotted_right_green.png) no-repeat center center/contain;
}
@media (max-width: 768px) {
  .family_contact_flow_item:not(:last-of-type)::after {
    width: 2.8571428571rem;
    height: 4.2857142857rem;
    top: auto;
    right: auto;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    bottom: -2.8571428571rem;
    background: url(../images/common/icon_arrow_dotted_bottom_green.png) no-repeat center center/contain;
  }
}

.family_contact_flow_item_num {
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  font-size: 1.25rem;
  font-weight: 700;
  color: #037F4A;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .family_contact_flow_item_num {
    font-size: 1.1428571429rem;
  }
}

.family_contact_flow_item_num::after {
  counter-increment: cnt;
  content: counter(cnt, decimal);
  font-size: 4.375rem;
  line-height: 100%;
  font-family: "Arimo", sans-serif;
}
@media (max-width: 768px) {
  .family_contact_flow_item_num::after {
    font-size: 2.5714285714rem;
  }
}

.family_contact_flow_item_illust {
  width: 100%;
  max-width: 9.375rem;
  margin: 1.875rem auto 0;
}
@media (max-width: 768px) {
  .family_contact_flow_item_illust {
    max-width: 5.7142857143rem;
    margin: 1.1428571429rem auto 0;
  }
}

.family_contact_flow_item_text {
  font-size: 1.25rem;
  letter-spacing: 0.05em;
  line-height: 186%;
  text-align: center;
  margin-top: 2rem;
}
@media (max-width: 768px) {
  .family_contact_flow_item_text {
    font-size: 1.1428571429rem;
    line-height: 180%;
    margin-top: 1.1428571429rem;
  }
}

.family_contact_flow_item_text span {
  font-size: 0.875rem;
}
@media (max-width: 768px) {
  .family_contact_flow_item_text span {
    font-size: 0.8571428571rem;
  }
}

/* family_contact_tel
------------------------------ */
.family_contact_tel {
  margin-top: 8.125rem;
}
@media (max-width: 768px) {
  .family_contact_tel {
    margin-top: 4rem;
  }
}

.family_contact_tel_text {
  line-height: 219%;
  font-weight: 700;
  text-align: center;
  margin-top: 1.875rem;
}
@media (max-width: 768px) {
  .family_contact_tel_text {
    line-height: 180%;
    text-align: left;
    margin-top: 1.1428571429rem;
  }
}

.family_contact_tel_unit {
  width: 100%;
  max-width: 45rem;
  background-color: #FBF6ED;
  margin: 3.125rem auto 0;
  padding: 2.9375rem 3.75rem 2.6875rem;
}
@media (max-width: 768px) {
  .family_contact_tel_unit {
    margin: 1.1428571429rem auto 0;
    padding: 1.7142857143rem 1.1428571429rem;
  }
}

.family_contact_tel_link {
  width: 100%;
  max-width: 26.125rem;
  margin-inline: auto;
}
@media (max-width: 768px) {
  .family_contact_tel_link {
    max-width: 20rem;
  }
}

.family_contact_tel_time {
  font-size: 0.875rem;
  margin-top: 1.125rem;
  padding-top: 1.5625rem;
  text-align: center;
  border-top: 1px solid #037F4A;
}
@media (max-width: 768px) {
  .family_contact_tel_time {
    font-size: 0.9285714286rem;
    margin-top: 1.1428571429rem;
    padding-top: 1.1428571429rem;
  }
}

.family_contact_tel_line {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.25rem;
  width: 100%;
  max-width: 45rem;
  background-color: #FBF6ED;
  margin: 2.5rem auto 0;
  padding: 2.5rem 3.75rem 2.5rem;
}
@media (max-width: 768px) {
  .family_contact_tel_line {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.1428571429rem;
    padding: 1.7142857143rem 1.1428571429rem;
  }
}

.family_contact_tel_line_left {
  width: 100%;
  max-width: 16.6875rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1.3125rem;
}
@media (max-width: 768px) {
  .family_contact_tel_line_left {
    gap: 1.1428571429rem;
    max-width: 14.2857142857rem;
  }
}

.family_contact_tel_line_title {
  width: 100%;
  max-width: 7.875rem;
}
@media (max-width: 768px) {
  .family_contact_tel_line_title {
    max-width: 7.1428571429rem;
  }
}

.family_contact_tel_line_qr {
  width: 100%;
  max-width: 7.5rem;
}
@media (max-width: 768px) {
  .family_contact_tel_line_qr {
    max-width: 7.1428571429rem;
  }
}

.family_contact_tel_line_qr img {
  aspect-ratio: 120/120;
  -o-object-fit: cover;
     object-fit: cover;
}

.family_contact_tel_line_right {
  width: 100%;
  max-width: 16.875rem;
}

.family_contact_tel_line_id {
  font-weight: 700;
  color: #037F4A;
  text-align: center;
}

.family_contact_tel_line_btn {
  margin-top: 1.0625rem;
}
@media (max-width: 768px) {
  .family_contact_tel_line_btn {
    margin-top: 1.1428571429rem;
  }
}

/* family_contact_mail
------------------------------ */
.family_contact_mail {
  margin-top: 8.125rem;
}
@media (max-width: 768px) {
  .family_contact_mail {
    margin-top: 4rem;
  }
}

.family_contact_mail_text {
  font-weight: 700;
  line-height: 219%;
  text-align: center;
  margin-top: 2.5rem;
}
@media (max-width: 768px) {
  .family_contact_mail_text {
    line-height: 180%;
    text-align: left;
    margin-top: 1.1428571429rem;
  }
}

.family_contact_mail_form {
  margin-top: 3.6875rem;
}
@media (max-width: 768px) {
  .family_contact_mail_form {
    margin-top: 2.8571428571rem;
  }
}

/* family_contact_thanks
------------------------------ */
.family_contact_thanks_main {
  margin-top: 8.125rem;
}
@media (max-width: 768px) {
  .family_contact_thanks_main {
    margin-top: 4rem;
  }
}

.family_contact_thanks_main_text {
  text-align: center;
  margin-top: 1.875rem;
}
@media (max-width: 768px) {
  .family_contact_thanks_main_text {
    margin-top: 1.1428571429rem;
  }
}

.family_contact_thanks_main_btn {
  text-align: center;
  margin-top: 3.125rem;
}
@media (max-width: 768px) {
  .family_contact_thanks_main_btn {
    margin-top: 1.1428571429rem;
  }
}

/* form
------------------------------ */
.visually_hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.form_row {
  display: grid;
  grid-template-columns: 23.125rem 1fr;
}
@media (max-width: 768px) {
  .form_row {
    grid-template-columns: 1fr;
  }
}

.form_title {
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 0.5rem;
  color: #037F4A;
  border-top: 1px solid #037F4A;
  border-right: 1px solid #037F4A;
  padding: 1.3125rem 1.875rem 1.3125rem;
}
@media (max-width: 768px) {
  .form_title {
    border-right: none;
    padding: 1.4285714286rem 0.5714285714rem;
  }
}

.form_title:last-of-type {
  border-bottom: 1px solid #037F4A;
}
@media (max-width: 768px) {
  .form_title:last-of-type {
    border-bottom: none;
  }
}

.form_title.form_title_start {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.form_title label {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.form_title span {
  font-size: 0.875rem;
  color: #fff;
  background-color: #037F4A;
  display: inline-block;
  width: 100%;
  max-width: 4.125rem;
  text-align: center;
  padding: 0.125rem 0.5rem;
  border-radius: 3.125rem;
}

.form_input {
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-top: 1px solid #037F4A;
  width: 100%;
  padding: 1.0625rem 1.25rem;
}
@media (max-width: 768px) {
  .form_input {
    padding: 0 0.5714285714rem 1.1428571429rem;
    border-top: none;
  }
}

.form_input:last-of-type {
  border-bottom: 1px solid #037F4A;
}

.form_input input {
  width: 100%;
  padding: 0.46875rem 1.25rem;
  background-color: #FBF6ED;
}

.form_input textarea {
  width: 100%;
  height: 12.125rem;
  padding: 0.625rem 1.25rem;
  background-color: #FBF6ED;
}

.form_input_postcode {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
}

.form_input_postcode input {
  max-width: 11.25rem;
}

.form_input_city {
  margin-top: 1.1875rem;
}

.form_input_pref {
  position: relative;
  width: 100%;
  max-width: 18.5rem;
}

.form_input_pref::after {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  bottom: 0;
  width: 2.9375rem;
  background: #BE8A13 url(../images/common/icon_triangle_arrow_bottom_white.png) no-repeat center center/1.5rem 0.875rem;
}

.form_input_pref select {
  width: 100%;
  max-width: 18.5rem;
  padding: 0.625rem 1.25rem;
  background-color: #FBF6ED;
}
@media (max-width: 768px) {
  .form_input_pref select {
    padding: 0.7142857143rem 0.5714285714rem;
  }
}

.form_input_who_age {
  margin-top: 1.125rem;
}

.form_input_who_age_text {
  font-weight: 700;
  color: #037F4A;
}

.form_input_who_age .wpcf7-form-control-wrap {
  display: block;
  margin-top: 0.9375rem;
}

.form_radio {
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 1.25rem 1.25rem;
}
@media (max-width: 768px) {
  .form_radio {
    padding: 0 0.4285714286rem 1.4285714286rem;
  }
}

.form_radio .wpcf7-form-control {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.875rem 2.5rem;
}
@media (max-width: 768px) {
  .form_radio .wpcf7-form-control {
    gap: 0.5714285714rem 1.1428571429rem;
  }
}

.form_radio .wpcf7-list-item {
  margin: 0;
}

.form_radio .wpcf7-list-item.has-free-text {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.form_radio label {
  display: block;
  font-weight: 700;
}

.form_radio input[type=radio] {
  display: none;
}

.form_radio input + span {
  position: relative;
  display: block;
  line-height: 1;
  cursor: pointer;
  padding: 0.625rem 0 0.625rem 3rem;
}
@media (max-width: 768px) {
  .form_radio input + span {
    font-size: 1.1428571429rem;
    padding: 0.2857142857rem 0 0.2857142857rem 2.4285714286rem;
  }
}

.form_radio input + span::before {
  position: absolute;
  content: "";
  display: block;
  width: 2.25rem;
  height: 2.25rem;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: #FBF6ED;
  border: none;
  border-radius: 50%;
}
@media (max-width: 768px) {
  .form_radio input + span::before {
    width: 1.2857142857rem;
    height: 1.2857142857rem;
  }
}

.form_radio input + span::after {
  content: "";
  width: 1.125rem;
  height: 1.125rem;
  position: absolute;
  top: 50%;
  left: 0.5625rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border: 1px solid transparent;
  border-radius: 50%;
  background-color: #037F4A;
  opacity: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (max-width: 768px) {
  .form_radio input + span::after {
    width: 0.6428571429rem;
    height: 0.6428571429rem;
    left: 0.2857142857rem;
  }
}

.form_radio input:checked + span::after {
  opacity: 1;
}

@media (max-width: 768px) {
  .form_check .wpcf7-form-control.wpcf7-checkbox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.form_check input {
  display: none;
}

.form_check input + span {
  cursor: pointer;
  display: inline-block;
  padding: 0 0 0 1.5625rem;
  position: relative;
  font-size: 0.9375rem;
  line-height: 1;
}

.form_check input + span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: #fff;
  border: 1px solid #303030;
  display: block;
  width: 2rem;
  height: 2rem;
}

.form_check input + span::after {
  content: "";
  margin-top: -0.125rem;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%) rotate(-45deg);
          transform: translateY(-50%) rotate(-45deg);
  display: block;
  width: 0.9375rem;
  height: 0.5rem;
  border-bottom: 0.1875rem solid #037F4A;
  border-left: 0.1875rem solid #037F4A;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  opacity: 0;
}

.form_check input:checked ~ span::after {
  opacity: 1;
}

.form_policy {
  overflow-y: scroll;
  max-height: 14.6875rem;
  padding: 2.5rem 2.6875rem;
  margin-top: 5.375rem;
  background-color: #FBF6ED;
}
@media (max-width: 768px) {
  .form_policy {
    padding: 1.7142857143rem 1.1428571429rem;
    margin-top: 1.7142857143rem;
  }
}

.form_policy_title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #037F4A;
}
@media (max-width: 768px) {
  .form_policy_title {
    font-size: 1.1428571429rem;
  }
}

.form_policy_text {
  line-height: 180%;
  margin-top: 1.4375rem;
}
@media (max-width: 768px) {
  .form_policy_text {
    margin-top: 0.5714285714rem;
  }
}

.form_policy_text:focus-visible {
  outline: 2px solid #037F4A;
  outline-offset: 2px;
}

.form_confirmation {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 3.375rem auto 0;
}
@media (max-width: 768px) {
  .form_confirmation {
    margin-top: 1.7142857143rem;
  }
}

.form_confirmation .wpcf7-list-item {
  margin: 0;
}

.form_confirmation input {
  display: none;
}

.form_confirmation input + span {
  cursor: pointer;
  display: inline-block;
  padding: 0.125rem 0 0.125rem 2.3125rem;
  position: relative;
  line-height: 140%;
}
@media (max-width: 768px) {
  .form_confirmation input + span {
    padding: 0 0 0 2.2857142857rem;
  }
}

.form_confirmation input + span::before {
  display: block;
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1.625rem;
  height: 1.625rem;
  background-color: #FBF6ED;
}
@media (max-width: 768px) {
  .form_confirmation input + span::before {
    width: 1.1428571429rem;
    height: 1.1428571429rem;
  }
}

.form_confirmation input + span::after {
  position: absolute;
  content: "";
  top: 50%;
  left: 0.375rem;
  -webkit-transform: translateY(-50%) rotate(-45deg);
          transform: translateY(-50%) rotate(-45deg);
  display: block;
  width: 1.25rem;
  height: 0.625rem;
  border-bottom: 0.1875rem solid #037F4A;
  border-left: 0.1875rem solid #037F4A;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  opacity: 0;
}
@media (max-width: 768px) {
  .form_confirmation input + span::after {
    width: 0.8571428571rem;
    height: 0.3571428571rem;
    left: 0.1428571429rem;
    border-bottom-width: 0.1428571429rem;
    border-left-width: 0.1428571429rem;
  }
}

.form_confirmation input:checked ~ span::after {
  opacity: 1;
}

.form_btn_wrapper {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 1.25rem;
  margin-top: 3.5rem;
}
@media (max-width: 768px) {
  .form_btn_wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 1.7142857143rem;
  }
}

.form_btn {
  position: relative;
  width: 100%;
  max-width: 16.875rem;
}
@media (max-width: 768px) {
  .form_btn {
    max-width: 18.5714285714rem;
  }
}

.form_btn::after {
  position: absolute;
  content: "";
  width: 1.75rem;
  height: 0.375rem;
  right: 2.375rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url(../images/common/icon_arrow_right_white.png) no-repeat center center/contain;
}

.form_btn input,
.form_btn button {
  display: inline-block;
  font-weight: 700;
  width: 100%;
  max-width: 16.875rem;
  color: #fff;
  background-color: #BE8A13;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  padding: 1.125rem 2.25rem;
  border-radius: 3.125rem;
}
@media (max-width: 768px) {
  .form_btn input,
  .form_btn button {
    max-width: 18.5714285714rem;
    padding: 1rem 1.7142857143rem;
  }
}

@media (min-width: 768px) {
  .form_btn input:hover,
  .form_btn button:hover {
    background-color: #037F4A;
  }
}

.form_confirm_btn[aria-disabled=true] {
  opacity: 0.5;
  cursor: not-allowed;
}

.form_btn .wpcf7-spinner {
  position: absolute;
  bottom: -1.875rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  margin: 0;
}

/* ---------------------------------------------------------
 * 確認モーダル
 * --------------------------------------------------------- */
.form_confirm_area {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
}

.form_confirm_area.is_open {
  display: block;
}

.form_confirm_area[hidden] {
  display: none !important;
}

body.is_confirm_open {
  overflow: hidden;
}

.form_confirm_overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(48, 48, 48, 0.5);
}

.form_confirm_modal {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: min(92%, 45rem);
  max-height: 86vh;
  max-height: 86dvh;
  overflow-y: auto;
  -ms-scroll-chaining: none;
      overscroll-behavior: contain;
  padding: 2.5rem;
  background-color: #fff;
}
@media (max-width: 768px) {
  .form_confirm_modal {
    padding: 1.7142857143rem 1.1428571429rem;
  }
}

.form_confirm_modal:focus {
  outline: none;
}

.form_confirm_lead {
  font-size: 1.25rem;
  font-weight: 700;
  text-align: center;
  color: #037F4A;
}
@media (max-width: 768px) {
  .form_confirm_lead {
    font-size: 1.2857142857rem;
  }
}

.form_confirm_sub {
  font-weight: 700;
  text-align: center;
  margin-top: 0.5rem;
}

.form_confirm_area .form_row {
  grid-template-columns: auto 1fr;
  margin-top: 1.5rem;
}
@media (max-width: 768px) {
  .form_confirm_area .form_row {
    grid-template-columns: 1fr;
    margin-top: 1.1428571429rem;
  }
}

.form_confirm_area [data-confirm] {
  white-space: pre-wrap;
}

.form_main.is_sending [type=submit],
.form_main.is_sending .form_back_btn {
  opacity: 0.5;
  pointer-events: none;
}

/* footer
------------------------------ */
.footer {
  margin-top: 7.375rem;
}
@media (max-width: 768px) {
  .footer {
    margin-top: 4rem;
  }
}

.footer_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 1.25rem;
}
@media (max-width: 768px) {
  .footer_wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 1.1428571429rem;
  }
}

.footer_info {
  width: 100%;
  max-width: 25.4375rem;
  margin-top: 0.75rem;
}
@media (max-width: 768px) {
  .footer_info {
    max-width: -webkit-fit-content;
    max-width: -moz-fit-content;
    max-width: fit-content;
    margin-top: 0;
  }
}

.footer_logo {
  width: 100%;
  max-width: 18.4375rem;
}
@media (max-width: 768px) {
  .footer_logo {
    max-width: 20rem;
    margin-inline: auto;
  }
}

.footer_title {
  font-size: 0.9375rem;
  font-weight: 700;
  margin-top: 2.625rem;
}
@media (max-width: 768px) {
  .footer_title {
    font-size: 1rem;
    margin-top: 1.1428571429rem;
  }
}

.footer_address {
  font-size: 0.9375rem;
  margin-top: 0.5rem;
}
@media (max-width: 768px) {
  .footer_address {
    font-size: 1rem;
    margin-top: 0.2857142857rem;
  }
}

.footer_address span {
  font-weight: 700;
}

.footer_time {
  font-size: 0.9375rem;
  margin-top: 0.5rem;
}
@media (max-width: 768px) {
  .footer_time {
    font-size: 1rem;
    margin-top: 0.2857142857rem;
  }
}

.footer_illust {
  width: 100%;
  max-width: 9.875rem;
  margin-top: 3.375rem;
}
@media (max-width: 768px) {
  .footer_illust {
    display: none;
  }
}

.footer_nav {
  width: 100%;
  max-width: 33.375rem;
}
@media (max-width: 768px) {
  .footer_nav {
    max-width: -webkit-fit-content;
    max-width: -moz-fit-content;
    max-width: fit-content;
  }
}

.footer_lists {
  display: grid;
  grid-template-columns: repeat(3, auto);
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 0.9375rem 1.125rem;
  max-width: 32.1875rem;
}
@media (max-width: 768px) {
  .footer_lists {
    display: none;
  }
}

.footer_list a {
  display: inline-block;
  font-size: 0.9375rem;
  font-weight: 700;
}

@media (min-width: 768px) {
  .footer_list a:hover {
    color: #037F4A;
  }
}

.footer_bnr {
  width: 100%;
  max-width: 33.375rem;
  margin-top: 3.875rem;
}
@media (max-width: 768px) {
  .footer_bnr {
    max-width: 25.7142857143rem;
    margin-top: 0;
  }
}

.footer_bnr a {
  display: block;
  overflow: hidden;
}

.footer_bnr img {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

@media (min-width: 768px) {
  .footer_bnr a:hover img {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
}

.footer_copyright {
  margin-top: 7.5rem;
  padding: 2.0625rem 1rem;
  text-align: center;
  background-color: #037F4A;
}
@media (max-width: 768px) {
  .footer_copyright {
    margin-top: 2.8571428571rem;
    padding: 1.7142857143rem 1.1428571429rem 8.5714285714rem;
  }
}

.footer_copyright small {
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
}

/* page_top
------------------------------ */
.page_top {
  position: fixed;
  right: 1.875rem;
  bottom: 1.875rem;
  width: 3.125rem;
  height: 3.125rem;
  background-color: #037F4A;
  border: 1px solid #fff;
  cursor: pointer;
  z-index: 10;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (max-width: 768px) {
  .page_top {
    background-color: #fff;
    border-color: #037F4A;
    right: 1.1428571429rem;
    bottom: 5.3571428571rem;
  }
}

.page_top.is_visible {
  opacity: 1;
  visibility: visible;
}

@media (min-width: 768px) {
  .page_top:hover {
    color: #037F4A;
    background-color: #fff;
  }
}

.page_top::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1rem;
  height: 1rem;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  -webkit-transform: translate(-50%) rotate(-45deg);
          transform: translate(-50%) rotate(-45deg);
}
@media (max-width: 768px) {
  .page_top::before {
    border-color: #037F4A;
  }
}

@media (min-width: 768px) {
  .page_top:hover::before {
    border-color: #037F4A;
  }
}

/* foot_menu
------------------------------ */
.foot_menu {
  position: fixed;
  width: 100%;
  left: 0;
  bottom: 0;
  z-index: 10;
  -webkit-box-shadow: 0px -0.0625rem 1.25rem rgba(48, 48, 48, 0.5);
          box-shadow: 0px -0.0625rem 1.25rem rgba(48, 48, 48, 0.5);
  opacity: 0;
  visibility: hidden;
}
@media (max-width: 768px) {
  .foot_menu {
    -webkit-box-shadow: 0px -0.0714285714rem 1.4285714286rem rgba(48, 48, 48, 0.5);
            box-shadow: 0px -0.0714285714rem 1.4285714286rem rgba(48, 48, 48, 0.5);
  }
}

.foot_menu.is_visible {
  opacity: 1;
  visibility: visible;
}

.foot_menu_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.foot_menu_line {
  width: 50%;
}

.foot_menu_line a {
  display: block;
  position: relative;
  font-weight: 700;
  line-height: 120%;
  width: 100%;
  color: #fff;
  background-color: #037F4A;
  padding: 2.2857142857rem 0.5714285714rem 1.5714285714rem;
  text-align: center;
}

.foot_menu_line a::before {
  position: absolute;
  content: "";
  top: 0.4285714286rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 1.4285714286rem;
  height: 1.4285714286rem;
  background: url(../images/common/icon_line_white.png) no-repeat center center/contain;
}

.foot_menu_mail {
  width: 50%;
}

.foot_menu_mail a {
  display: block;
  position: relative;
  font-weight: 700;
  line-height: 120%;
  width: 100%;
  color: #fff;
  background-color: #BE8A13;
  padding: 2.2857142857rem 0.5714285714rem 1.5714285714rem;
  text-align: center;
}

.foot_menu_mail a::before {
  position: absolute;
  content: "";
  top: 0.7142857143rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 1.4285714286rem;
  height: 1rem;
  background: url(../images/common/icon_mail_white.png) no-repeat center center/contain;
}