@charset "UTF-8";
@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;
  font-size: 16px;
  line-height: 1.875;
  letter-spacing: 0;
  font-weight: 500;
  color: #000;
}
@media (max-width: 768px) {
  body {
    font-size: 14px;
  }
}

:target {
  scroll-margin-top: 120px;
}
@media (max-width: 1300px) {
  :target {
    scroll-margin-top: 60px;
  }
}

a {
  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;
  }
}

.inner {
  width: 100%;
  max-width: 1300px;
  padding: 0 25px;
  margin: auto;
}
@media (max-width: 768px) {
  .inner {
    max-width: 600px;
    padding: 0 16px;
  }
}

.section_title_underline {
  width: fit-content;
  text-align: center;
  padding-bottom: 17px;
  padding-inline: 50px;
  border-bottom: 2px solid #fc7e24;
  font-size: 40px;
  line-height: 1.5;
  margin-inline: auto;
}
@media (max-width: 768px) {
  .section_title_underline {
    font-size: clamp(20px, 6.4vw, 24px);
    padding-inline: 20px;
    padding-bottom: 10px;
  }
}

.section_title_underline span {
  display: inline-block;
}

.section_title_top {
  color: #fff;
  width: fit-content;
  margin: 0 auto;
  padding: 14px clamp(100px, 8.6666666667vw, 130px) 22px;
  font-size: clamp(32px, 2.6666666667vw, 40px);
  line-height: 1.25;
  background-color: #ff5b49;
  border-radius: 5px;
  position: relative;
  letter-spacing: 0.05em;
  text-align: center;
}
@media (max-width: 768px) {
  .section_title_top {
    font-size: clamp(20px, 6.4vw, 24px);
    padding: 14px clamp(30px, 4vw, 60px) 22px;
  }
}

.section_title_top span {
  display: inline-block;
}

.section_title_sub {
  position: relative;
  padding: 18px 18px 18px 100px;
  background: #fc7e24;
  color: #fff;
  width: 100%;
  font-size: clamp(24px, 2.2666666667vw, 34px);
  line-height: 1.5;
  border-radius: 10px;
}
@media (max-width: 768px) {
  .section_title_sub {
    font-size: clamp(18px, 5.8666666667vw, 22px);
    padding: 12px 15px 12px 60px;
  }
}

.section_title_sub::before {
  position: absolute;
  content: "";
  width: 48px;
  height: 66px;
  left: 25px;
  top: 50%;
  transform: translateY(-50%);
  background: url(../images/sub/icon_sub_section_title.svg) no-repeat center center/contain;
}
@media (max-width: 768px) {
  .section_title_sub::before {
    width: 34px;
    height: 46px;
    left: 10px;
  }
}

.section_title_sub_underline {
  font-size: clamp(24px, 2vw, 30px);
  font-weight: 700;
  line-height: 1.3;
  padding-bottom: 20px;
  border-bottom: 2px solid #fc7e24;
}
@media (max-width: 768px) {
  .section_title_sub_underline {
    font-size: clamp(18px, 5.3333333333vw, 20px);
    padding-bottom: 14px;
  }
}

.button_green {
  background-color: #3ec081;
  border: 1px solid #3ec081;
  padding: 18px clamp(60px, 17.6vw, 66px) 20px clamp(22px, 8vw, 30px);
  color: #fff;
  border-radius: 50px;
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
  transition: all 0.3s;
}

@media (min-width: 768px) {
  .button_green:hover {
    background-color: #fff;
    color: #3ec081;
  }
}

.button_green::before {
  content: "";
  position: absolute;
  width: 26px;
  height: 6px;
  right: clamp(30px, 9.0666666667vw, 34px);
  top: 50%;
  transform: translateY(-50%);
  background: url(../images/common/icon_arrow_right_white.svg) no-repeat center center/contain;
  transition: all 0.3s;
}

@media (min-width: 768px) {
  .button_green:hover::before {
    background: url(../images/common/icon_arrow_right_green.svg) no-repeat center center/contain;
  }
}

.button_green_card {
  background-color: #3ec081;
  border: 1px solid #3ec081;
  padding: 18px clamp(60px, 17.6vw, 66px) 20px clamp(22px, 8vw, 30px);
  color: #fff;
  border-radius: 50px;
  position: relative;
  display: block;
  width: 100%;
  transition: all 0.3s;
}

.button_green_card::before {
  content: "";
  position: absolute;
  width: 26px;
  height: 6px;
  right: clamp(30px, 9.0666666667vw, 34px);
  top: 50%;
  transform: translateY(-50%);
  background: url(../images/common/icon_arrow_right_white.svg) no-repeat center center/contain;
  transition: all 0.3s;
}

.body.is_open {
  overflow: hidden;
}

.text_orange {
  color: #fc7e24;
  font-weight: 700;
}

/* Header
------------------------------ */
.header {
  position: fixed;
  width: 100%;
  height: 180px;
  top: 0;
  left: 0;
  z-index: 100;
  background-color: #fff;
}
@media (max-width: 768px) {
  .header {
    height: 60px;
  }
}

.header_fixed {
  box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.5);
  transition: 0.3s;
}

.header.header_fixed {
  height: 80px;
}
@media (max-width: 768px) {
  .header.header_fixed {
    height: 60px;
  }
}

.header_inner.inner {
  height: inherit;
}

.header_title {
  font-size: 12px;
  color: #a7a7a7;
  padding-top: 10px;
}
@media (max-width: 768px) {
  .header_title {
    display: none;
  }
}

.header.header_fixed .header_title {
  display: none;
}

.header_content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: inherit;
}
@media (max-width: 768px) {
  .header_content {
    flex-direction: row;
    align-items: center;
    height: inherit;
  }
}

.header_top {
  display: flex;
  gap: 15px;
  justify-content: space-between;
}

header.header_fixed .header_top {
  display: none;
}
@media (max-width: 768px) {
  header.header_fixed .header_top {
    display: block;
  }
}

.header_unit {
  padding-top: 14px;
  width: 100%;
  max-width: clamp(280px, 30.2vw, 453px);
}
@media (max-width: 768px) {
  .header_unit {
    max-width: clamp(150px, 74.6666666667vw, 280px);
    padding-top: 0;
  }
}

.header_logo {
  width: 100%;
  transition: 0.3s;
}

.header_contact {
  display: flex;
  gap: clamp(10px, 1.7333333333vw, 26px);
  align-items: center;
}
@media (max-width: 768px) {
  .header_contact {
    display: none;
  }
}

header.header_fixed .header_contact {
  display: none;
}

.header_contact_tel {
  max-width: 341px;
  width: 52.7047913447%;
  flex-shrink: 0;
}

.header_contact_tel_link {
  width: 100%;
}

.header_contact_mail {
  width: 100%;
  flex-grow: 1;
  max-width: 280px;
}

.button_header_mail {
  width: 100%;
  border-radius: 50px;
  background: #fc7e24;
  color: #fff;
  font-size: clamp(12px, 1.5vw, 18px);
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 16px clamp(7px, 1.9333333333vw, 29px) 18px clamp(44px, 4vw, 60px);
  display: inline-block;
  transition: 0.3s;
  position: relative;
  border: 1px solid #fc7e24;
  white-space: nowrap;
}

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

.button_header_mail::before {
  content: "";
  position: absolute;
  width: 25px;
  height: 17px;
  left: clamp(19px, 1.7333333333vw, 26px);
  top: 50%;
  transform: translateY(-50%);
  background: url(../images/common/icon_mail_white.svg) no-repeat center center/contain;
  transition: all 0.3s;
}

@media (min-width: 768px) {
  .button_header_mail:hover::before {
    background: url(../images/common/icon_mail_orange.svg) no-repeat center center/contain;
  }
}

.header_nav {
  width: 100%;
  max-width: 100%;
  height: 100%;
  display: grid;
  place-items: end stretch;
}
@media (max-width: 768px) {
  .header_nav {
    display: none;
  }
}

.header_lists {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  height: auto;
  border-right: 1px solid #a7a7a7;
  border-left: 1px solid #a7a7a7;
}

.header_list {
  width: 100%;
}

.header_list:nth-of-type(n + 2) {
  border-left: 1px solid #a7a7a7;
}

.header_list.header_list_contact {
  display: none;
}

.header.header_fixed .header_list.header_list_contact {
  display: block;
}

.header_list_link {
  display: block;
  text-align: center;
  place-items: center;
  letter-spacing: 0.05em;
  width: 100%;
  white-space: nowrap;
  padding: 18px 10px 28px;
  line-height: 1;
}

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

@media (min-width: 768px) {
  .header_list_link:hover::after {
    width: 100%;
  }
}

.header_hamburger {
  display: none;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 999;
  width: 100px;
  height: 100px;
  background-color: #fc7e24;
  cursor: pointer;
  transition: 0.3s;
  text-align: center;
}
@media (max-width: 768px) {
  .header_hamburger {
    display: block;
  }
}
@media (max-width: 768px) {
  .header_hamburger {
    width: 60px;
    height: 60px;
    color: #fff;
  }
}

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

.header_hamburger_bar {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  width: 50px;
  height: 3px;
  background-color: #fff;
  transition: 0.5s;
}
@media (max-width: 768px) {
  .header_hamburger_bar {
    width: 25px;
    height: 2px;
  }
}

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

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

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

.header_hamburger.is_open .header_hamburger_bar:nth-of-type(1) {
  top: -5px;
  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: -9px;
  transform: translateX(-50%) rotate(-45deg);
}

.header_hamburger_title {
  position: absolute;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #fff;
  width: 100%;
  left: 50%;
  bottom: 10px;
  transform: translateX(-50%);
}
@media (max-width: 768px) {
  .header_hamburger_title {
    font-size: 12px;
    letter-spacing: 0;
    bottom: 2px;
  }
}

.header_drawer {
  padding: 70px 0;
  display: none;
  position: absolute;
  z-index: 900;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #fc7e24;
  overflow-y: scroll;
  scrollbar-width: none;
}

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

.header_drawer_nav {
  padding: 0 5%;
  height: 100%;
  overflow-y: scroll;
}

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

.header_drawer_list_link {
  padding: 15px 0;
  display: flex;
  align-items: center;
  gap: 0 15px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  color: #fff;
}
@media (max-width: 768px) {
  .header_drawer_list_link {
    font-size: 15px;
  }
}

.header_drawer_list_menu a {
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  padding: 5px 10px;
}
@media (max-width: 768px) {
  .header_drawer_list_menu a {
    font-size: 14px;
  }
}

.main {
  margin-top: 180px;
}
@media (max-width: 768px) {
  .main {
    margin-top: 60px;
  }
}

/* top - top_mv
------------------------------ */
.top_mv {
  background: #fff7c9;
  padding-top: clamp(48px, 5.0666666667vw, 76px);
}
@media (max-width: 768px) {
  .top_mv {
    padding-top: 10px;
  }
}

.top_mv_content {
  display: flex;
}

.top_mv_content_left {
  width: 44%;
  max-width: 550px;
  min-width: 380px;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .top_mv_content_left {
    width: 100%;
    min-width: auto;
  }
}

.top_mv_title {
  width: 100%;
}

.top_mv_title_img {
  width: 100%;
}

.top_mv_content_message {
  font-family: "$font-family-zen-kaku";
  font-size: clamp(30px, 3.2vw, 42px);
  padding-top: 16px;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .top_mv_content_message {
    font-size: clamp(24px, 7.46vw, 36px);
    text-align: center;
  }
}

.top_mv_content_message span {
  color: #ff5b49;
}

.top_mv_content_right {
  width: 100%;
  flex-grow: 1;
}

.top_mv_img {
  width: 100%;
  max-width: 644px;
}

.top_mv_cards {
  background: #ffdf6b;
  height: clamp(60px, 7.7333333333vw, 116px);
  position: relative;
  background-color: #ffdf6b;
  margin: 0 calc(50% - 50vw);
  padding: 0 calc(50vw - 50%);
}
@media (max-width: 768px) {
  .top_mv_cards {
    height: auto;
    padding-top: 20px;
    background-color: transparent;
    gap: 3px;
  }
}

.top_mv_cards_container {
  position: absolute;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: clamp(10px, 1.9333333333vw, 29px);
  top: clamp(-128px, 262px + -26vw, -76px);
}
@media (max-width: 768px) {
  .top_mv_cards_container {
    grid-template-columns: 1fr;
    position: static;
  }
}

.top_mv_card {
  width: 100%;
}

/* top - top_example
------------------------------ */
.top_example {
  padding-block: 120px;
}
@media (max-width: 768px) {
  .top_example {
    padding-block: 60px;
  }
}

.top_example_title .top_example_title_orange {
  color: #fc7e24;
}

.top_example_cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  margin-top: 90px;
  gap: 32px clamp(20px, 2.6666666667vw, 40px);
  position: relative;
}
@media (max-width: 768px) {
  .top_example_cards {
    margin-top: 50px;
    grid-template-columns: 1fr;
  }
}

.top_example_cards::before {
  content: "";
  position: absolute;
  background: url(../images/common/cta_deco02.svg) no-repeat center center/contain;
  width: 80px;
  height: 103px;
  bottom: 3px;
  right: 50px;
  z-index: -1;
}

.top_example_card {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 3;
  position: relative;
  border-radius: 10px;
  gap: 0;
}

.top_example_card_img {
  position: absolute;
  content: "";
  max-width: 89px;
  width: 100%;
  height: 78px;
  margin: 0 auto;
  top: -24px;
  left: 50%;
  transform: translateX(-50%);
}

.top_example_card_title {
  padding: 73px clamp(20px, 2.3333333333vw, 35px) 24px;
  background: #ffdf6b;
  line-height: 1.4;
  font-size: clamp(24px, 2vw, 30px);
  border-radius: 10px 10px 0 0;
  text-align: center;
  width: 100%;
}

.top_example_card_text {
  padding: 24px clamp(20px, 2.3333333333vw, 35px) 0;
  font-size: clamp(16px, 1.2vw, 18px);
  line-height: 1.6;
  background: #fff7c9;
  text-align: center;
}

.top_example_card_button {
  padding-top: 30px;
  padding-bottom: 34px;
  border-radius: 0 0 10px 10px;
  background: #fff7c9;
}

.top_example_card_button_container {
  width: 100%;
  max-width: 240px;
  margin: 0 auto;
}

/* top - top_necessity
------------------------------ */
.top_necessity {
  background: url(../images/top/top_necessity_bg.jpg) no-repeat center center/cover;
  padding: 120px 0 120px;
}
@media (max-width: 768px) {
  .top_necessity {
    padding: 60px 0;
  }
}

.top_necessity_title::before {
  content: "";
  position: absolute;
  width: 71px;
  height: 81px;
  right: clamp(10px, 1.3333333333vw, 20px);
  top: -18px;
  background: url(../images/top/top_necessity_title_deco.svg) no-repeat center center/contain;
}
@media (max-width: 768px) {
  .top_necessity_title::before {
    width: 49.7px;
    height: 56.7px;
    top: -44px;
    right: -16px;
  }
}

.top_necessity_content {
  padding-top: 50px;
}
@media (max-width: 768px) {
  .top_necessity_content {
    padding-top: 30px;
  }
}

.top_necessity_lead {
  text-align: center;
  font-weight: 700;
  font-size: clamp(20px, 1.6vw, 24px);
  line-height: 1.25;
  letter-spacing: 0.05em;
  padding: 20px;
  border-radius: 50px;
  background: #ffdf6b;
  max-width: clamp(320px, 25.7333333333vw, 386px);
  margin-right: auto;
}
@media (max-width: 768px) {
  .top_necessity_lead {
    margin-inline: auto;
  }
}

.top_necessity_content dl {
  display: grid;
  grid-template-columns: clamp(320px, 25.7333333333vw, 386px) auto;
  gap: 24px 0;
  margin-top: 24px;
  position: relative;
}
@media (max-width: 768px) {
  .top_necessity_content dl {
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 16px;
  }
}

.top_necessity_content dl::before {
  content: "";
  position: absolute;
  background: url(../images/top/top_necessity_content_deco.svg) no-repeat center center/contain;
  width: 129px;
  height: 127px;
  top: -127px;
  right: 100px;
}
@media (max-width: 768px) {
  .top_necessity_content dl::before {
    display: none;
  }
}

.top_necessity_content dt {
  background: #ffdf6b;
  border-radius: 5px 0 0 5px;
  position: relative;
  padding: 22px 20px 24px 42px;
  display: flex;
  align-items: center;
}
@media (max-width: 768px) {
  .top_necessity_content dt {
    border-radius: 5px 5px 0 0;
    padding: 18px 20px 20px 20px;
  }
}

.top_necessity_content dt::before {
  content: "";
  width: 6px;
  height: 24px;
  background: #ffdf6b;
  position: absolute;
  left: 50%;
  top: -24px;
  transform: translateX(-50%);
}
@media (max-width: 768px) {
  .top_necessity_content dt::before {
    height: 16px;
    top: -16px;
  }
}

@media (max-width: 768px) {
  .top_necessity_content dt:nth-child(n+2) {
    margin-top: 16px;
  }
}

.top_necessity_content dt span {
  display: inline-block;
  padding-left: 85px;
  font-size: clamp(20px, 1.6vw, 24px);
  line-height: 1.25;
  position: relative;
  letter-spacing: 0.05em;
}
@media (max-width: 768px) {
  .top_necessity_content dt span {
    plo: 65px;
  }
}

.top_necessity_content dt span::before {
  content: "";
  position: absolute;
  width: 65px;
  height: 58px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background: url(../images/top/top_necessity_dt_deco.svg) no-repeat center center/contain;
}
@media (max-width: 768px) {
  .top_necessity_content dt span::before {
    width: 45px;
    height: 40px;
  }
}

.top_necessity_content dd {
  background: #fff;
  border-radius: 0 5px 5px 0;
  padding: 22px 20px 24px 44px;
}
@media (max-width: 768px) {
  .top_necessity_content dd {
    border-radius: 0 0 5px 5px;
    padding: 18px 20px 20px 20px;
  }
}

/* top - top_flow
------------------------------ */
.top_flow {
  padding-top: 120px;
  background: #fff7c9;
}

.top_flow_lead {
  margin-top: 60px;
}
@media (max-width: 768px) {
  .top_flow_lead {
    margin-top: 30px;
  }
}

.section_title_top.top_flow_title {
  background: #fc7e24;
}

.top_flow_title::before {
  content: "";
  position: absolute;
  width: 65px;
  height: 83px;
  left: clamp(10px, 1.3333333333vw, 20px);
  top: -18px;
  background: url(../images/top/top_flow_title_deco.svg) no-repeat center center/contain;
}
@media (max-width: 768px) {
  .top_flow_title::before {
    width: 45.5px;
    height: 58.1px;
    top: -44px;
    left: -10px;
  }
}

.top_flow_steps {
  padding-top: 80px;
  padding-bottom: 120px;
}
@media (max-width: 768px) {
  .top_flow_steps {
    padding-top: 40px;
    padding-bottom: 60px;
  }
}

.top_flow_steps.top_flow_steps_sub {
  padding-bottom: 0;
}

.top_flow_step {
  position: relative;
}

.top_flow_step + .top_flow_step {
  margin-top: 40px;
}

.top_flow_step_number {
  position: absolute;
  width: 74px;
  height: 74px;
  top: 0;
  left: 0;
  z-index: 2;
}
@media (max-width: 768px) {
  .top_flow_step_number {
    width: 50px;
    height: 50px;
  }
}

.top_flow_step_container {
  position: relative;
}

.top_flow_step_img {
  position: absolute;
  width: 233px;
  height: 159px;
  left: 34px;
  top: 40px;
}
@media (max-width: 768px) {
  .top_flow_step_img {
    position: static;
    width: 100%;
    padding: 25px 25px 0 25px;
    height: auto;
  }
}

.top_flow_step_img img {
  border-radius: 10px;
}

.top_flow_step_texts {
  padding: 38px 62px 42px 168px;
  background: #fff;
  margin-left: 140px;
  border-radius: 10px;
}
@media (max-width: 768px) {
  .top_flow_step_texts {
    margin-top: -30px;
    margin-left: 0;
    padding: 52px 25px 40px;
  }
}

.top_flow_steps_sub .top_flow_step_texts {
  background-color: #fff7c9;
  min-height: 240px;
}
@media (max-width: 768px) {
  .top_flow_steps_sub .top_flow_step_texts {
    min-height: auto;
  }
}

.top_flow_step_title {
  color: #fc7e24;
  font-size: 26px;
  line-height: 1.3;
}

.top_flow_step_text {
  margin-top: 8px;
}

.top_flow_step_button {
  margin-top: 18px;
  width: 100%;
  max-width: 290px;
  margin-left: auto;
}
@media (max-width: 768px) {
  .top_flow_step_button {
    margin-inline: auto;
  }
}

/* top - top_reason
------------------------------ */
.top_reason {
  padding: 110px 0 120px;
}
@media (max-width: 768px) {
  .top_reason {
    padding: 60px 0;
  }
}

.top_reason_title .top_example_title_red {
  color: #ff5b49;
  font-size: 50px;
}
@media (max-width: 768px) {
  .top_reason_title .top_example_title_red {
    font-size: clamp(20px, 8vw, 30px);
  }
}

.top_reason_title.section_title_underline {
  border-bottom: 2px solid #ff5b49;
}

.top_reason_cards {
  display: flex;
  justify-content: center;
  gap: 100px clamp(16px, 2.6666666667vw, 40px);
  flex-wrap: wrap;
  margin-top: 120px;
}
@media (max-width: 768px) {
  .top_reason_cards {
    margin-top: 60px;
    gap: 60px;
  }
}

.top_reason_card {
  width: 100%;
  max-width: clamp(300px, 26vw, 390px);
  position: relative;
  display: flex;
  flex-direction: column;
  height: auto;
}
@media (max-width: 768px) {
  .top_reason_card {
    max-width: 420px;
  }
}

.top_reason_card_number {
  position: absolute;
  width: 88px;
  top: -44px;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 768px) {
  .top_reason_card_number {
    width: 70px;
    top: -35px;
  }
}

.top_reason_card_title {
  width: 100%;
  padding: 48px 16px 16px;
  background: #ff5b49;
  text-align: center;
  color: #fff;
  font-size: clamp(20px, 1.7333333333vw, 26px);
  border-radius: 10px 10px 0 0;
  line-height: 1.34;
}
@media (max-width: 768px) {
  .top_reason_card_title {
    padding-top: 42px;
  }
}

.top_reason_card_img {
  width: 100%;
}

.top_reason_card_text {
  padding: 30px 20px 36px;
  background: #ffe7e4;
  font-weight: 500;
  line-height: 2.1875;
  border-radius: 0 0 10px 10px;
  flex-grow: 1;
}
@media (max-width: 768px) {
  .top_reason_card_text {
    padding: 22px 20px 28px;
  }
}

/* top - top_voice
------------------------------ */
.top_voice {
  padding: 120px 0;
  background: #fc7e24;
}
@media (max-width: 768px) {
  .top_voice {
    padding: 60px 0;
  }
}

.section_title_top.top_voice_title {
  background: #ffdf6b;
  color: #000;
}

.top_voice_title::before {
  content: "";
  position: absolute;
  width: 114px;
  height: 98px;
  right: -40px;
  top: -30px;
  background: url(../images/top/top_voice_title_deco.svg) no-repeat center center/contain;
}
@media (max-width: 768px) {
  .top_voice_title::before {
    width: 79.8px;
    height: 68.6px;
    top: -46px;
    right: -12px;
  }
}

.top_voice_lead {
  margin-top: 60px;
  text-align: center;
  color: #fff;
}
@media (max-width: 768px) {
  .top_voice_lead {
    margin-top: 30px;
  }
}

.top_voice_cards {
  margin-top: 60px;
  padding-top: 88px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 144px clamp(20px, 2.6666666667vw, 40px);
}
@media (max-width: 768px) {
  .top_voice_cards {
    grid-template-columns: 1fr;
    gap: 0;
    padding-top: 75px;
    margin-top: 30px;
  }
}

.top_voice_card {
  position: relative;
  padding: 108px 30px 30px;
  background: #fff;
  border-radius: 10px;
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 2;
  gap: 0;
}
@media (max-width: 768px) {
  .top_voice_card {
    padding-top: 80px;
  }
}

@media (max-width: 768px) {
  .top_voice_card + .top_voice_card {
    margin-top: 100px;
  }
}

.top_voice_card_img {
  position: absolute;
  width: 176px;
  top: -88px;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 768px) {
  .top_voice_card_img {
    width: 150px;
    top: -75px;
  }
}

.top_voice_card_name {
  text-align: center;
  line-height: 2.5;
}

.top_voice_card_head {
  border-bottom: 1px solid #fc7e24;
}

.top_voice_card_title {
  color: #ff5b49;
  font-size: clamp(22px, 1.7333333333vw, 26px);
  line-height: 1.53;
  margin-top: 16px;
  padding-bottom: 20px;
}
@media (max-width: 768px) {
  .top_voice_card_title {
    padding-bottom: 20px;
    font-size: 20px;
  }
}

.top_voice_card_text {
  margin-top: 26px;
  line-height: 2.18;
}
@media (max-width: 768px) {
  .top_voice_card_text {
    margin-top: 20px;
  }
}

/* top - top_office
------------------------------ */
.top_office {
  padding: 120px 0;
  background: #ffdf6b;
}
@media (max-width: 768px) {
  .top_office {
    padding: 60px 0;
  }
}

.top_office_blocks {
  display: flex;
  flex-direction: column;
  gap: 60px;
  margin-top: 60px;
}
@media (max-width: 768px) {
  .top_office_blocks {
    margin-top: 30px;
  }
}

.top_office_block {
  background: #fff;
  border-radius: 10px;
  padding: 46px clamp(30px, 3.3333333333vw, 50px) 70px;
}
@media (max-width: 768px) {
  .top_office_block {
    padding: 26px 20px;
  }
}

.top_office_block_title {
  width: 100%;
  border-bottom: 1px solid #fc7e24;
  font-size: 30px;
  line-height: 60px; /* 200% */
}
@media (max-width: 768px) {
  .top_office_block_title {
    font-size: clamp(20px, 1.6vw, 24px);
  }
}

.top_office_message_head {
  margin-top: 30px;
  display: flex;
  gap: clamp(20px, 3.3333333333vw, 50px);
}
@media (max-width: 768px) {
  .top_office_message_head {
    flex-direction: column;
    gap: 22px;
    margin-top: 20px;
  }
}

.top_office_message_head_texts {
  flex-grow: 1;
  width: 100%;
}

.top_office_message_head_lead {
  color: #fc7e24;
  font-size: 26px;
  line-height: 1.3;
}
@media (max-width: 768px) {
  .top_office_message_head_lead {
    font-size: 20px;
  }
}

.top_office_message_head_text {
  margin-top: 10px;
}

.top_office_message_head_text + .top_office_message_head_text {
  margin-top: 18px;
}

.top_office_message_head_image {
  width: 25.3496503497%;
  min-width: 200px;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .top_office_message_head_image {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }
}

.top_office_message_head_image img {
  border-radius: 18px;
}

.top_office_message_head_image figcaption {
  margin-top: 12px;
  text-align: right;
}

.top_office_message_head_image figcaption span {
  font-size: 26px;
}
@media (max-width: 768px) {
  .top_office_message_head_image figcaption span {
    font-size: 22px;
  }
}

.top_office_message_head_button {
  width: 100%;
  max-width: 280px;
  margin-top: 20px;
}
@media (max-width: 768px) {
  .top_office_message_head_button {
    margin-inline: auto;
    margin-top: 30px;
  }
}

.top_office_access_content {
  display: flex;
  gap: clamp(20px, 3.7333333333vw, 56px);
  margin-top: 44px;
}
@media (max-width: 768px) {
  .top_office_access_content {
    flex-direction: column-reverse;
    margin-top: 20px;
  }
}

.top_office_access_texts {
  width: 100%;
  flex-grow: 1;
}

.top_office_access_text {
  font-weight: 500;
}

.top_office_access_text span {
  font-weight: 700;
}

.top_office_access_text + .top_office_access_text {
  margin-top: 20px;
}

.top_office_access_map {
  flex-shrink: 0;
  width: 50%;
  min-width: 350px;
}
@media (max-width: 768px) {
  .top_office_access_map {
    width: 100%;
    min-width: auto;
  }
}

.top_office_access_map iframe {
  width: 100%;
  border-radius: 10px;
  aspect-ratio: 575/300;
}

.top_office_overview_content {
  margin-top: 50px;
}
@media (max-width: 768px) {
  .top_office_overview_content {
    margin-top: 20px;
  }
}

.top_office_overview_content dl {
  display: grid;
  grid-template-columns: clamp(200px, 25.2vw, 378px) auto;
  gap: 5px 0;
}
@media (max-width: 768px) {
  .top_office_overview_content dl {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

.top_office_overview_content dt {
  border-radius: 5px 0 0 5px;
  background: #ffdf6b;
  padding: 22px 30px;
}
@media (max-width: 768px) {
  .top_office_overview_content dt {
    border-radius: 5px 5px 0 0;
    padding: 16px 16px 10px 16px;
  }
}

@media (max-width: 768px) {
  .top_office_overview_content dt:nth-child(n+2) {
    margin-top: 5px;
  }
}

.top_office_overview_content dd {
  border-radius: 0 5px 5px 0;
  background: #fff7c9;
  padding: 22px 30px;
}
@media (max-width: 768px) {
  .top_office_overview_content dd {
    border-radius: 0 0 5px 5px;
    padding: 10px 16px 16px 16px;
  }
}

/* top - top_news
------------------------------ */
.top_news {
  padding: 100px 0 120px;
}
@media (max-width: 768px) {
  .top_news {
    padding: 70px 0 60px;
  }
}

.top_news_content {
  display: flex;
  gap: 30px;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .top_news_content {
    flex-direction: column;
    gap: 20px;
  }
}

.top_news_content_left {
  width: 100%;
  max-width: clamp(220px, 19.3333333333vw, 290px);
  flex-shrink: 0;
  padding-top: 16px;
}
@media (max-width: 768px) {
  .top_news_content_left {
    max-width: none;
    width: 100%;
    padding-top: 0;
  }
}

.top_news_title {
  line-height: 1.5;
  font-size: clamp(30px, 2.6666666667vw, 40px);
  padding-bottom: 120px;
  position: relative;
}
@media (max-width: 768px) {
  .top_news_title {
    padding-bottom: 0;
  }
}

.top_news_title::before {
  content: "";
  position: absolute;
  width: 167px;
  height: 86px;
  bottom: 0;
  left: 0;
  background: url(../images/top/top_news_deco.svg) no-repeat center center/contain;
}
@media (max-width: 768px) {
  .top_news_title::before {
    width: 116.9px;
    height: 60.2px;
    left: auto;
    right: 0;
  }
}

.top_news_button {
  width: 100%;
  max-width: 290px;
  margin-top: 48px;
}
@media (max-width: 768px) {
  .top_news_button {
    margin-top: 30px;
    margin-inline: auto;
  }
}

.top_news_content_right {
  width: 100%;
  flex-grow: 1;
  max-width: 820px;
}
@media (max-width: 768px) {
  .top_news_content_right {
    max-width: none;
  }
}

.top_news_list {
  width: 100%;
}

.top_news_list_item {
  width: 100%;
}

.top_news_list_link {
  padding: 32px 50px 30px 0;
  position: relative;
  background: #fff;
  width: 100%;
  border-bottom: 1px solid #3ec081;
  display: block;
}
@media (max-width: 768px) {
  .top_news_list_link {
    padding: 20px 40px 20px 0;
  }
}

@media (min-width: 768px) {
  .top_news_list_link:hover {
    background: #fff7c9;
  }
}

.top_news_list_link::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: url(../images/common/icon_arrow_right_circle_green.svg) no-repeat center center/contain;
  transition: all 0.3s;
}
@media (max-width: 768px) {
  .top_news_list_link::before {
    width: 30px;
    height: 30px;
  }
}

.top_news_list_meta {
  display: flex;
  gap: 5px 26px;
  flex-wrap: wrap;
}

.top_news_list_time {
  color: #3ec081;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.56;
}

.top_news_list_cats {
  display: flex;
  gap: 5px 5px;
  flex-wrap: wrap;
}

.top_news_list_cat {
  line-height: 1;
  padding: 6px 20px;
  background: #fc7e24;
  border-radius: 20px;
  font-size: 14px;
  color: #fff;
  white-space: nowrap;
}

.top_news_list_title {
  margin-top: 14px;
}

/* top - top_proposal
------------------------------ */
.top_proposal {
  padding-top: 100px;
  background: #fff7c9;
}
@media (max-width: 768px) {
  .top_proposal {
    padding-top: 60px;
  }
}

.top_proposal_content {
  display: flex;
  gap: clamp(20px, 2.8vw, 42px);
}
@media (max-width: 768px) {
  .top_proposal_content {
    flex-direction: column-reverse;
    gap: 20px;
  }
}

.top_proposal_img_container {
  width: 100%;
  max-width: clamp(300px, 24.6666666667vw, 370px);
  flex-shrink: 0;
  display: flex;
  align-items: flex-end;
}
@media (max-width: 768px) {
  .top_proposal_img_container {
    max-width: none;
    max-width: 280px;
    justify-content: center;
    margin: 0 auto;
  }
}

.top_proposal_img {
  width: 100%;
}

.top_proposal_texts {
  width: 100%;
  flex-grow: 1;
  padding-bottom: 30px;
}
@media (max-width: 768px) {
  .top_proposal_texts {
    padding-bottom: 0;
  }
}

.top_proposal_title {
  color: #ff5b49;
  font-size: clamp(20px, 2vw, 30px);
  line-height: 1.5;
}
@media (max-width: 768px) {
  .top_proposal_title {
    font-size: clamp(20px, 6.4vw, 24px);
  }
}

.top_proposal_text {
  margin-top: 16px;
}

/* cta
------------------------------ */
.cta {
  padding: 25px 15px 40px;
  background: #fc7e24;
  border-radius: 10px;
  box-shadow: 5px 5px 6px 0 rgba(0, 0, 0, 0.25);
  position: relative;
}
@media (max-width: 768px) {
  .cta {
    padding-top: 46px;
  }
}

@media (max-width: 768px) {
  .cta::before {
    content: "";
    position: absolute;
    width: 100px;
    height: 55px;
    background: url(../images/common/cta_deco_sp.svg) no-repeat center center/contain;
    top: -15px;
    right: 50%;
    transform: translateX(50%);
  }
}

.cta_title {
  color: #ffdf6b;
  position: relative;
  text-align: center;
  font-size: clamp(36px, 3.2vw, 48px);
  line-height: 1.25; /* 125% */
  width: fit-content;
  text-align: center;
  margin: 0 auto;
  font-weight: 700;
}
@media (max-width: 768px) {
  .cta_title {
    font-size: 30px;
  }
}

.cta_title span {
  display: inline-block;
}

.cta_title::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: -45px;
  width: 14px;
  height: 44px;
  background: url(../images/common/cta_title_line.svg) no-repeat center center/contain;
}
@media (max-width: 768px) {
  .cta_title::before {
    left: -24px;
    width: 9px;
    height: 30px;
  }
}

.cta_title::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: -45px;
  width: 14px;
  height: 44px;
  background: url(../images/common/cta_title_line.svg) no-repeat center center/contain;
  transform: scale(-1, 1);
}
@media (max-width: 768px) {
  .cta_title::after {
    right: -24px;
    width: 9px;
    height: 30px;
  }
}

.cta_lead {
  font-size: clamp(18px, 1.4666666667vw, 22px);
  line-height: 1.6;
  text-align: center;
  margin-top: 14px;
  color: #fff;
}
@media (max-width: 768px) {
  .cta_lead {
    font-size: 16px;
  }
}

.cta_content {
  background: #fff;
  border-radius: 20px;
  max-width: 1100px;
  margin-inline: auto;
  margin-top: 26px;
  position: relative;
  width: 100%;
}
@media (max-width: 768px) {
  .cta_content {
    background: transparent;
  }
}

.cta_content::before {
  content: "";
  position: absolute;
  width: 123px;
  height: 88px;
  background: url(../images/common/cta_deco01.svg) no-repeat center center/contain;
  top: -88px;
  left: clamp(0px, 2.6666666667vw, 40px);
}
@media (max-width: 1300px) {
  .cta_content::before {
    width: 66px;
    height: 44px;
    top: -44px;
    left: 16px;
  }
}
@media (max-width: 768px) {
  .cta_content::before {
    display: none;
  }
}

.cta_content::after {
  content: "";
  position: absolute;
  width: 80px;
  height: 103px;
  background: url(../images/common/cta_deco02.svg) no-repeat center center/contain;
  top: -103px;
  right: clamp(0px, 4.6666666667vw, 70px);
}
@media (max-width: 1300px) {
  .cta_content::after {
    width: 40px;
    height: 50px;
    top: -50px;
  }
}
@media (max-width: 768px) {
  .cta_content::after {
    display: none;
  }
}

.cta_content_wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 28px 0 30px;
  position: relative;
}
@media (max-width: 768px) {
  .cta_content_wrapper {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 0;
  }
}

.cta_content_wrapper::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1px;
  background-color: #fc7e24;
  transform: translate(-50%, -50%);
  height: 80%;
}
@media (max-width: 768px) {
  .cta_content_wrapper::before {
    display: none;
  }
}

.cta_content_unit {
  width: 100%;
  max-width: 416px;
  margin-inline: auto;
  padding: 0 15px;
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 2;
  gap: 0;
}
@media (max-width: 768px) {
  .cta_content_unit {
    padding: 18px clamp(12px, 1.2vw, 18px);
    background: #fff;
    border-radius: 10px;
  }
}

.cta_title_sub {
  text-align: center;
  font-size: clamp(18px, 1.3333333333vw, 20px);
  line-height: 1.6;
  padding-bottom: 15px;
  border-bottom: 2px solid #fc7e24;
}
@media (max-width: 768px) {
  .cta_title_sub {
    padding-bottom: 12px;
  }
}

.cta_body {
  margin-top: 22px;
  width: 100%;
}
@media (max-width: 768px) {
  .cta_body {
    margin-top: 18px;
  }
}

@media (max-width: 1300px) {
  .cta_body {
    font-size: 16px;
  }
}
.cta_tel_number {
  display: block;
  width: 100%;
  max-width: 340px;
  margin-inline: auto;
}

.cta_mail_button {
  display: block;
  width: 100%;
  max-width: 340px;
  margin: auto auto 0;
}

.button_cta_mail {
  width: 100%;
  border-radius: 50px;
  background: #3ec081;
  color: #fff;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 16px clamp(10px, 1.9333333333vw, 29px) 18px clamp(46px, 4vw, 60px);
  display: inline-block;
  transition: 0.3s;
  position: relative;
  box-sizing: border-box;
  border: 1px solid #3ec081;
}
@media (max-width: 768px) {
  .button_cta_mail {
    font-size: clamp(14px, 4.8vw, 18px);
    padding: 16px 18px 18px;
  }
}

@media (min-width: 768px) {
  .button_cta_mail:hover {
    background: #fff;
    color: #3ec081;
  }
}

.button_cta_mail span {
  position: relative;
}

.button_cta_mail span::before {
  content: "";
  position: absolute;
  width: 25px;
  height: 18px;
  left: -35px;
  top: 50%;
  transform: translateY(-50%);
  background: url(../images/common/icon_mail_white.svg) no-repeat center center/contain;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .button_cta_mail span::before {
    left: -29px;
  }
}

@media (min-width: 768px) {
  .button_cta_mail:hover span::before {
    background: url(../images/common/icon_mail_green.svg) no-repeat center center/contain;
  }
}

.button_cta_mail span::after {
  content: "";
  position: absolute;
  width: 31px;
  height: 6px;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  background: url(../images/common/icon_arrow_right_white.svg) no-repeat center center/contain;
}
@media (max-width: 768px) {
  .button_cta_mail span::after {
    right: -36px;
  }
}

@media (min-width: 768px) {
  .button_cta_mail:hover span::after {
    background: url(../images/common/icon_arrow_right_green.svg) no-repeat center center/contain;
  }
}

.cta_container_mv {
  background: linear-gradient(#ffdf6b 30%, #fff 30%) no-repeat 50% 50%/100% 100%;
  margin: 0 calc(50% - 50vw);
  padding: 40px calc(50vw - 50%) 0;
}
@media (max-width: 768px) {
  .cta_container_mv {
    background: #fff7c9 linear-gradient(#fff7c9) no-repeat 50% 50%/100% 100%;
    padding-top: 60px;
    padding-bottom: 40px;
  }
}

.cta_container_orange {
  background: linear-gradient(#ffdf6b 50%, #fff 50%) no-repeat 50% 50%/100% 100%;
  margin: 0 calc(50% - 50vw);
  padding: 0px calc(50vw - 50%) 0;
}

.cta_container_light-yellow {
  background: linear-gradient(#fff7c9 50%, #fff 50%) no-repeat 50% 50%/100% 100%;
  margin: 0 calc(50% - 50vw);
  padding: 0px calc(50vw - 50%) 0;
}

/* cta_min
------------------------------ */
.cta_min {
  padding: 45px clamp(30px, 4.6666666667vw, 70px) 45px clamp(20px, 3.8vw, 57px);
  background: #ffdf6b;
  border-radius: 10px;
}
@media (max-width: 768px) {
  .cta_min {
    padding-block: 24px;
    max-width: 400px;
    margin-inline: auto;
  }
}

.cta_min_inner {
  position: relative;
  padding-left: clamp(200px, 17.3333333333vw, 260px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(10px, 2.6666666667vw, 40px);
}
@media (max-width: 768px) {
  .cta_min_inner {
    padding-left: 60px;
    grid-template-columns: 1fr;
  }
}

.cta_min_inner::before {
  content: "";
  position: absolute;
  width: 189px;
  height: 164px;
  left: 0;
  bottom: -45px;
  background: url(../images/common/cta_min_deco.svg) no-repeat center center/contain;
}
@media (max-width: 768px) {
  .cta_min_inner::before {
    width: 70px;
    height: 61px;
    left: -12px;
    bottom: -24px;
  }
}

.cta_min_button {
  width: 100%;
}
@media (max-width: 768px) {
  .cta_min_button {
    max-width: 260px;
    margin-left: auto;
  }
}

.button_cta_min {
  display: block;
  border-radius: 10px;
  background: #fc7e24;
  padding: 42px 92px 42px clamp(20px, 2.6666666667vw, 40px);
  color: #fff;
  font-size: clamp(20px, 1.7333333333vw, 26px);
  position: relative;
  border: 1px solid #fc7e24;
}
@media (max-width: 768px) {
  .button_cta_min {
    padding: 20px 60px 20px clamp(20px, 2.6666666667vw, 40px);
    font-size: 16px;
  }
}

@media (min-width: 768px) and (min-width: 768px) {
  .button_cta_min:hover {
    background: #fff;
    color: #fc7e24;
  }
}
.button_cta_min::before {
  content: "";
  position: absolute;
  width: 42px;
  height: 8px;
  right: 45px;
  top: 50%;
  transform: translateY(-50%);
  background: url(../images/common/icon_arrow_right_white.svg) no-repeat center center/contain;
  transition: all 0.3s;
}
@media (max-width: 768px) {
  .button_cta_min::before {
    right: 16px;
  }
}

@media (min-width: 768px) and (min-width: 768px) {
  .button_cta_min:hover::before {
    background: url(../images/common/icon_arrow_right_orange.svg) no-repeat center center/contain;
  }
}
.cta_min_container {
  background: linear-gradient(#fff7c9 50%, #fff 50%) no-repeat 50% 50%/100% 100%;
}

.cta_footer_container {
  margin-top: 120px;
}
@media (max-width: 768px) {
  .cta_footer_container {
    margin-top: 60px;
  }
}

/* sub
------------------------------ */
.sub_main {
  margin-top: 180px;
}
@media (max-width: 768px) {
  .sub_main {
    margin-top: 60px;
  }
}

.sub_mv {
  min-height: 420px;
  background: #ffdf6b;
  position: relative;
}
@media (max-width: 768px) {
  .sub_mv {
    min-height: 200px;
  }
}

.sub_mv::before {
  content: "";
  position: absolute;
  width: 50%;
  height: 100%;
  top: 0;
  right: 0;
  background: url(../images/sub/sub_mv_img_news.jpg) no-repeat center center/cover;
}

.sub_mv.inheritance_mv::before {
  content: "";
  position: absolute;
  width: 50%;
  height: 100%;
  top: 0;
  right: 0;
  background: url(../images/sub/sub_mv_img_inheritance.jpg) no-repeat center center/cover;
}

.sub_mv.will_mv::before {
  content: "";
  position: absolute;
  width: 50%;
  height: 100%;
  top: 0;
  right: 0;
  background: url(../images/sub/sub_mv_img_will.jpg) no-repeat center center/cover;
}

.sub_mv.trust_mv::before {
  content: "";
  position: absolute;
  width: 50%;
  height: 100%;
  top: 0;
  right: 0;
  background: url(../images/sub/sub_mv_img_trust.jpg) no-repeat center center/cover;
}

.sub_mv.contact_mv::before {
  content: "";
  position: absolute;
  width: 50%;
  height: 100%;
  top: 0;
  right: 0;
  background: url(../images/sub/sub_mv_img_contact.jpg) no-repeat center center/cover;
}

.sub_mv.office_mv::before {
  content: "";
  position: absolute;
  width: 50%;
  height: 100%;
  top: 0;
  right: 0;
  background: url(../images/sub/sub_mv_img_office.jpg) no-repeat right center/cover;
}

.sub_mv_title {
  width: 45%;
  max-width: 530px;
  padding-top: 170px;
  padding-bottom: 9px;
  border-bottom: 2px solid #fc7e24;
  line-height: 1.42;
  font-size: clamp(32px, 2.8vw, 42px);
}
@media (max-width: 768px) {
  .sub_mv_title {
    padding-top: 80px;
    font-size: clamp(24px, 7.4666666667vw, 28px);
  }
}

@media (max-width: 768px) {
  .sub_mv_title.sub_mv_title_contact {
    font-size: clamp(20px, 6.6666666667vw, 25px);
  }
}

.sub_mv_title.sub_mv_title_thanks {
  font-size: 30px;
}
@media (max-width: 768px) {
  .sub_mv_title.sub_mv_title_thanks {
    font-size: 20px;
    padding-top: 60px;
  }
}

.breadcrumb {
  font-size: 12px;
  letter-spacing: 0.05em;
  padding-block: 30px;
  background: #fff7c9;
}
@media (max-width: 768px) {
  .breadcrumb {
    padding-block: 18px;
  }
}

.breadcrumb_inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}
@media (max-width: 768px) {
  .breadcrumb_inner {
    gap: 5px 10px;
  }
}

.breadcrumb_inner a {
  font-weight: 700;
  color: #fc7e24;
}

.breadcrumb_inner a:hover {
  font-weight: 700;
  color: #000;
}

.breadcrumb_arrow {
  display: block;
  position: relative;
  font-weight: 700;
  color: #fc7e24;
}

/* news - news_archive_main
------------------------------ */
.news_archive_main {
  margin-top: 110px;
}
@media (max-width: 768px) {
  .news_archive_main {
    margin-top: 50px;
  }
}

.news_archive_main_wrapper {
  display: flex;
  justify-content: space-between;
  gap: 58px;
}
@media (max-width: 768px) {
  .news_archive_main_wrapper {
    flex-direction: column;
    gap: 50px;
  }
}

.news_archive_main_group {
  width: 100%;
  max-width: 920px;
  flex: 2;
}

.news_archive_main_item + .news_archive_main_item {
  margin-top: 50px;
}
@media (max-width: 768px) {
  .news_archive_main_item + .news_archive_main_item {
    margin-top: 30px;
  }
}

.news_archive_main_item a {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: clamp(20px, 2.6666666667vw, 40px);
  background-color: #fff7c9;
  border: 2px solid #fff7c9;
  border-radius: 10px;
  padding: clamp(20px, 2.6666666667vw, 40px) clamp(20px, 2.6666666667vw, 40px);
}
@media (max-width: 768px) {
  .news_archive_main_item a {
    flex-direction: column;
    gap: 20px;
    padding: 20px 15px;
  }
}

@media (min-width: 768px) {
  .news_archive_main_item a:hover {
    border: 2px solid #fc7e24;
  }
}

.news_archive_main_item_img {
  width: 100%;
  max-width: clamp(180px, 16vw, 240px);
  overflow: hidden;
  border-radius: 10px;
}
@media (max-width: 768px) {
  .news_archive_main_item_img {
    max-width: 100%;
  }
}

.news_archive_main_item_img img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 250/170;
  transition: 0.3s;
}

@media (min-width: 768px) {
  .news_archive_main_item a:hover img {
    transform: scale(1.1);
  }
}

.news_archive_main_item_content {
  width: 100%;
  max-width: 490px;
}
@media (max-width: 768px) {
  .news_archive_main_item_content {
    max-width: 100%;
  }
}

.news_archive_main_item_unit {
  display: flex;
  align-items: center;
  gap: 20px;
}

.news_archive_main_item_cat {
  font-size: 14px;
  color: #fff;
  background-color: #fc7e24;
  width: fit-content;
  padding: 4px 28px;
  border-radius: 50px;
}

.news_archive_main_item_date {
  font-size: 16px;
  color: #fc7e24;
}

.news_archive_main_item_title {
  font-size: clamp(20px, 1.6vw, 24px);
  line-height: 1.3;
  margin-top: 22px;
}
@media (max-width: 768px) {
  .news_archive_main_item_title {
    font-size: clamp(18px, 5.3333333333vw, 20px);
    margin-top: 10px;
  }
}

.news_archive_main_item_text {
  margin-top: 10px;
}
.news_archive_main_item_btn {
  width: 100%;
  max-width: 240px;
  margin-left: auto;
  margin-top: 20px;
}
@media (max-width: 768px) {
  .news_archive_main_item_btn {
    margin: 20px auto 0;
  }
}

.news_archive_main_item_btn span {
  position: relative;
  display: inline-block;
  width: 100%;
}

.news_archive_main_side {
  width: 100%;
  max-width: 332px;
  flex: 1;
}
@media (max-width: 768px) {
  .news_archive_main_side {
    max-width: 100%;
  }
}

.news_archive_main_side_title {
  font-size: 18px;
  background-color: #ffdf6b;
  padding: 15px 20px 18px 33px;
  border-radius: 10px 10px 0 0;
}
@media (max-width: 768px) {
  .news_archive_main_side_title {
    font-size: clamp(18px, 5.3333333333vw, 20px);
    padding: 15px 20px;
  }
}

.news_archive_main_side_list_link {
  position: relative;
  display: inline-block;
  background: #fff7c9;
  width: 100%;
  padding: 15px 70px 18px 33px;
}
@media (max-width: 768px) {
  .news_archive_main_side_list_link {
    padding: 10px 40px 10px 10px;
  }
}

.news_archive_main_side_list:nth-of-type(n + 2) .news_archive_main_side_list_link {
  border-top: 1px solid #fc7e24;
}

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

.news_archive_main_side_list_link::after {
  position: absolute;
  content: "";
  width: clamp(23px, 1.8666666667vw, 28px);
  height: 17px;
  right: clamp(15px, 1.5333333333vw, 23px);
  top: 50%;
  transform: translateY(-50%);
  background: url(../images/common/icon_arrow_right_orange.svg) no-repeat center center/contain;
  transition: 0.3s;
}

@media (min-width: 768px) {
  .news_archive_main_side_list_link:hover::after {
    background: url(../images/common/icon_arrow_right_white.svg) no-repeat center center/contain;
  }
}

.news_archive_main_page_navigation {
  margin-top: 58px;
}
@media (max-width: 768px) {
  .news_archive_main_page_navigation {
    margin-top: 20px;
  }
}

.page_navigation {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 11px;
}

.page-numbers {
  display: grid;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: 700;
  background-color: #fff7c9;
  width: 38px;
  height: 38px;
  border-radius: 50%;
}

@media (min-width: 768px) {
  .page-numbers:hover {
    color: #fff;
    background-color: #fc7e24;
  }
}

.page-numbers.dots {
  pointer-events: none;
}

.page-numbers.current {
  color: #fff;
  background-color: #fc7e24;
}

/* news - news_single_main
------------------------------ */
.news_single_main {
  margin-top: 75px;
}
@media (max-width: 768px) {
  .news_single_main {
    margin-top: 50px;
  }
}

.news_single_main_wrapper {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
@media (max-width: 768px) {
  .news_single_main_wrapper {
    flex-direction: column;
    gap: 50px;
  }
}

.news_single_main_article {
  width: 100%;
  max-width: 860px;
  flex: 2;
}

.news_article {
  background-color: #fff7c9;
  border-radius: 10px;
  padding: clamp(20px, 2.6666666667vw, 40px) clamp(20px, 2.6666666667vw, 40px) clamp(20px, 2.2vw, 33px);
}
@media (max-width: 768px) {
  .news_article {
    padding: 20px;
  }
}

.news_article_unit {
  display: flex;
  align-items: center;
  gap: 20px;
}

.news_article_date {
  font-size: 16px;
  font-weight: 700;
  color: #0d2961;
}

.news_article_title {
  font-size: clamp(20px, 1.6vw, 24px);
  font-weight: 700;
  margin-top: 20px;
}
@media (max-width: 768px) {
  .news_article_title {
    font-size: clamp(18px, 5.3333333333vw, 20px);
    margin-top: 14px;
    padding-bottom: 5px;
  }
}

.news_article_content {
  line-height: 2.1875;
  border-top: 1px solid #fc7e24;
  margin-top: 16px;
  padding-top: 32px;
}
@media (max-width: 768px) {
  .news_article_content {
    margin-top: 10px;
    padding-top: 20px;
  }
}

.news_article_buttons {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 50px;
}
@media (max-width: 768px) {
  .news_article_buttons {
    gap: 12px;
    flex-direction: column;
    align-items: center;
    margin-top: 30px;
  }
}

.news_article_button {
  width: 100%;
  max-width: 240px;
}
@media (max-width: 768px) {
  .news_article_button {
    max-width: 220px;
  }
}

.news_article_button a {
  display: inline-block;
  position: relative;
  font-size: clamp(14px, 1.0666666667vw, 16px);
  letter-spacing: 0.05em;
  font-weight: 700;
  width: 100%;
  color: #fff;
  background-color: #3ec081;
  border: 1px solid #3ec081;
  border-radius: 50px;
  padding: 19px clamp(10px, 1.6666666667vw, 25px);
}
@media (max-width: 768px) {
  .news_article_button a {
    padding: 15px 20px;
  }
}

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

.news_article_button_previous a {
  text-align: right;
}

.news_article_button_previous a span {
  position: relative;
  display: inline-block;
  width: 100%;
  padding-left: 35px;
}
@media (max-width: 768px) {
  .news_article_button_previous a span {
    padding-left: 15px;
  }
}

.news_article_button_previous a span::before {
  position: absolute;
  content: "";
  width: 26.25px;
  height: 5px;
  left: 0;
  top: 50%;
  transform: translateY(-50%) scale(-1, 1);
  background: url(../images/common/icon_arrow_right_white.svg) no-repeat center center/contain;
  transition: 0.3s;
}
@media (max-width: 768px) {
  .news_article_button_previous a span::before {
    height: 10px;
  }
}

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

.news_article_button_all {
  text-align: center;
}

.news_article_button_next a span {
  position: relative;
  display: inline-block;
  width: 100%;
  padding-right: 30px;
}

.news_article_button_next a span::after {
  position: absolute;
  content: "";
  width: 21px;
  height: 12px;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background: url(../images/common/icon_arrow_right_white.svg) no-repeat center center/contain;
  transition: 0.3s;
}
@media (max-width: 768px) {
  .news_article_button_next a span::after {
    height: 10px;
  }
}

@media (min-width: 768px) {
  .news_article_button_next a:hover span:after {
    background: url(../images/common/icon_arrow_right_green.svg) no-repeat center center/contain;
  }
}

/* sub_page - component
------------------------------ */
/* sub_message
------------------------------ */
.sub_message_content {
  display: flex;
  gap: clamp(20px, 3.6666666667vw, 55px);
  margin-top: 60px;
}
@media (max-width: 768px) {
  .sub_message_content {
    flex-direction: column-reverse;
    gap: 20px;
    margin-top: 30px;
  }
}

.sub_message_texts {
  width: 100%;
  flex-grow: 1;
}

.sub_message_text {
  width: 100%;
}

.sub_message_text + .sub_message_text {
  margin-top: 24px;
}

.sub_message_text span {
  color: #fc7e24;
}

.sub_message_img {
  width: 31.6%;
  flex-shrink: 0;
  max-width: 395px;
  min-width: 280px;
  border-radius: 10px;
  overflow: hidden;
  height: fit-content;
}
@media (max-width: 768px) {
  .sub_message_img {
    width: 100%;
    max-width: 600px;
    min-width: auto;
    margin: 0 auto;
  }
}

/* sub_recommended
------------------------------ */
.sub_recommended_content {
  margin-top: 60px;
}
@media (max-width: 768px) {
  .sub_recommended_content {
    margin-top: 30px;
  }
}

.sub_recommended_cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 45px clamp(20px, 3.3333333333vw, 50px);
}
@media (max-width: 768px) {
  .sub_recommended_cards {
    gap: 32px 20px;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  }
}

.sub_recommended_card {
  display: grid;
  grid-template-rows: subgrid;
  gap: 0;
  grid-row: span 1;
  background-color: #fff7c9;
  border-radius: 10px;
  padding: 22px 20px;
  position: relative;
  place-items: center;
}
@media (max-width: 768px) {
  .sub_recommended_card {
    max-width: 320px;
    margin: 0 auto;
    width: 100%;
    min-width: auto;
  }
}

.sub_recommended_card::before {
  content: "";
  position: absolute;
  width: 52.052px;
  height: 28.858px;
  bottom: -24px;
  right: 50px;
  background: url(../images/sub/icon_sub_recommended_card.svg) no-repeat center center/contain;
}

.sub_recommended_card:nth-of-type(3n + 2)::before {
  right: auto;
  left: 50px;
  transform: scale(-1, 1);
}

.sub_recommended_card_text {
  font-size: 18px;
  line-height: 1.66;
  font-weight: 700;
}
@media (max-width: 768px) {
  .sub_recommended_card_text {
    text-align: left;
  }
}

.sub_recommended_content_text {
  margin-top: 55px;
  font-weight: 500;
}

.sub_recommended_content_text span {
  font-weight: 700;
}

/* sub_link_card
------------------------------ */
.sub_link_cards_wrapper {
  margin-top: 120px;
}
@media (max-width: 768px) {
  .sub_link_cards_wrapper {
    margin-top: 60px;
  }
}

.sub_link_cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(194px, 1fr));
  gap: 10px 20px;
  margin: 0 auto;
  place-items: center;
}
@media (max-width: 768px) {
  .sub_link_cards {
    grid-template-columns: repeat(auto-fill, minmax(194px, 1fr));
  }
}

.sub_link_cards.sub_link_cards_column6 {
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
}
@media (max-width: 768px) {
  .sub_link_cards.sub_link_cards_column6 {
    grid-template-columns: repeat(auto-fill, minmax(194px, 1fr));
  }
}

.sub_link_card {
  display: grid;
  grid-template-rows: subgrid;
  gap: 0;
  grid-row: span 1;
  width: 100%;
  min-height: 132px;
}
.sub_link_card_link {
  padding: 25px 18px 46px;
  border-radius: 10px;
  background: #3ec081;
  color: #fff;
  display: block;
  position: relative;
  text-align: center;
  line-height: 1.6;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  border: 1px solid #3ec081;
  font-size: 20px;
}
@media (max-width: 768px) {
  .sub_link_card_link {
    font-size: 18px;
    padding: 14px 14px 30px;
  }
}

@media (min-width: 768px) {
  .sub_link_card_link:hover {
    background: #fff;
    color: #3ec081;
  }
}

.sub_link_card_link span {
  display: inline-block;
}

.sub_link_card_link::before {
  content: "";
  position: absolute;
  width: 42px;
  height: 8px;
  right: 50%;
  bottom: 20px;
  transform: translateX(50%);
  background: url(../images/common/icon_arrow_right_white.svg) no-repeat center center/contain;
}
@media (max-width: 768px) {
  .sub_link_card_link::before {
    bottom: 15px;
  }
}

@media (min-width: 768px) {
  .sub_link_card_link:hover::before {
    background: url(../images/common/icon_arrow_right_green.svg) no-repeat center center/contain;
  }
}

/* sub_menu
------------------------------ */
.sub_menu_lead {
  margin-top: 60px;
}
@media (max-width: 768px) {
  .sub_menu_lead {
    margin-top: 30px;
  }
}

.sub_menu_lead span {
  color: #fc7e24;
}

.sub_menu_block_cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  margin-top: 70px;
  gap: clamp(30px, 3.6666666667vw, 55px);
}
@media (max-width: 768px) {
  .sub_menu_block_cards {
    margin-top: 30px;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px 14px;
  }
}

.will_menu .sub_menu_block_cards {
  grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
}
@media (max-width: 768px) {
  .will_menu .sub_menu_block_cards {
    margin-top: 30px;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px 14px;
  }
}

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

.sub_menu_block_card_title {
  background-color: #fc7e24;
  border-radius: 10px 10px 0 0;
  text-align: center;
  color: #fff;
  font-size: clamp(22px, 1.7333333333vw, 26px);
  padding: 22px 30px 24px;
  line-height: 1.15;
}
@media (max-width: 768px) {
  .sub_menu_block_card_title {
    padding: 20px;
    font-size: 20px;
  }
}

.sub_menu_block_card_title span {
  font-size: clamp(18px, 1.3333333333vw, 20px);
}
@media (max-width: 768px) {
  .sub_menu_block_card_title span {
    font-size: 16px;
  }
}

.sub_menu_block_card_text {
  background-color: #fff7c9;
  border-radius: 0 0 10px 10px;
  padding: 20px 30px 36px;
}
@media (max-width: 768px) {
  .sub_menu_block_card_text {
    padding: 20px;
  }
}

.sub_menu_block_card_text span {
  color: #fc7e24;
}

/* sub_cta
------------------------------ */
.sub_cta {
  margin-top: 120px;
}
@media (max-width: 768px) {
  .sub_cta {
    margin-top: 60px;
  }
}

/* sub_merit
------------------------------ */
.sub_merit_cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 50px clamp(10px, 2.8666666667vw, 43px);
  margin-top: 150px;
}
@media (max-width: 768px) {
  .sub_merit_cards {
    margin-top: 60px;
  }
}

.sub_merit_card {
  width: 100%;
  display: grid;
  grid-template-rows: subgrid;
  gap: 0;
  grid-row: span 2;
  position: relative;
}

.sub_merit_card::before {
  content: "";
  position: absolute;
  width: 88px;
  height: 88px;
  top: -44px;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 768px) {
  .sub_merit_card::before {
    width: 60px;
    height: 60px;
    top: -30px;
  }
}

.sub_merit_card:nth-of-type(1):before {
  background: url(../images/sub/sub_merit_card_num01.svg) no-repeat center center/contain;
}

.sub_merit_card:nth-of-type(2):before {
  background: url(../images/sub/sub_merit_card_num02.svg) no-repeat center center/contain;
}

.sub_merit_card:nth-of-type(3):before {
  background: url(../images/sub/sub_merit_card_num03.svg) no-repeat center center/contain;
}

.sub_merit_card:nth-of-type(4):before {
  background: url(../images/sub/sub_merit_card_num04.svg) no-repeat center center/contain;
}

.sub_merit_card_title {
  background: #fc7e24;
  padding: 56px 20px 15px;
  color: #fff;
  text-align: center;
  font-size: clamp(18px, 1.3333333333vw, 20px);
  border-radius: 10px 10px 0 0;
}

.sub_merit_card_title span {
  display: inline-block;
}

.sub_merit_card_text {
  padding: 24px 20px 26px;
  background: #fff7c9;
  border-radius: 0 0 10px 10px;
}

/* sub_section_price
------------------------------ */
.sub_section_price_lead {
  margin-top: 60px;
}
@media (max-width: 768px) {
  .sub_section_price_lead {
    margin-top: 30px;
  }
}

.sub_section_price_content {
  margin-top: 50px;
}
@media (max-width: 768px) {
  .sub_section_price_content {
    margin-top: 30px;
  }
}

.sub_section_price_content table {
  width: 100%;
  border-top: 1px solid #a7a7a7;
}

.sub_section_price_content table tr {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-bottom: 1px solid #a7a7a7;
}

.sub_section_price_content.trust_price_content_row3 table tr {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  border-bottom: 1px solid #a7a7a7;
}
@media (max-width: 768px) {
  .sub_section_price_content.trust_price_content_row3 table tr {
    grid-template-columns: 200px 200px 200px;
  }
}

.sub_section_price_content table th,
.sub_section_price_content table td {
  display: grid;
  place-items: center;
  grid-template-rows: subgrid;
  gap: 0;
  grid-row: span 1;
  padding: 18px;
  text-align: center;
}
@media (max-width: 768px) {
  .sub_section_price_content table th,
  .sub_section_price_content table td {
    padding: 14px;
  }
}

.sub_section_price_content table th {
  background-color: #fff7c9;
  color: #fc7e24;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .sub_section_price_content table th {
    font-size: 18px;
  }
}

.sub_section_price_content table td:nth-of-type(2) {
  color: #ff5b49;
}

.sub_section_price_content table th:nth-of-type(n + 2),
.sub_section_price_content table td:nth-of-type(n + 2) {
  border-left: 1px solid #a7a7a7;
}

.sub_section_price_content_annotation {
  margin-top: 26px;
  color: #a7a7a7;
  font-size: 14px;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .sub_section_price_content_annotation {
    font-size: 12px;
  }
}

/* sub_section_qa
------------------------------ */
.sub_section_qa_blocks {
  margin-top: 60px;
}
@media (max-width: 768px) {
  .sub_section_qa_blocks {
    margin-top: 30px;
  }
}

.sub_section_qa_block + .sub_section_qa_block {
  margin-top: 30px;
}
@media (max-width: 768px) {
  .sub_section_qa_block + .sub_section_qa_block {
    margin-top: 20px;
  }
}

.sub_section_qa_block_head {
  border-radius: 10px 10px 0 0;
  background: #ffdf6b;
  padding: 17px 28px;
}
@media (max-width: 768px) {
  .sub_section_qa_block_head {
    padding: 16px 20px;
  }
}

.sub_section_qa_block_q {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .sub_section_qa_block_q {
    gap: 14px;
    font-size: 16px;
  }
}

.icon_q {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  background: #fc7e24;
  border-radius: 50%;
  color: #fff;
  font-size: 30px;
  line-height: 1;
  padding-bottom: 4px;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .icon_q {
    width: 36px;
    height: 36px;
    font-size: 24px;
    padding-bottom: 2px;
    flex-shrink: 0;
  }
}

.sub_section_qa_block_body {
  border-radius: 0 0 10px 10px;
  background: #fff7c9;
  padding: 18px 28px 22px 96px;
  display: flex;
  align-items: center;
  gap: 10px;
}
@media (max-width: 768px) {
  .sub_section_qa_block_body {
    padding: 14px 20px 16px 38px;
  }
}

.sub_section_qa_block_a {
  display: flex;
  gap: 10px;
  align-items: center;
}
@media (max-width: 768px) {
  .sub_section_qa_block_a {
    gap: 14px;
  }
}

.icon_a {
  color: #fc7e24;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.66;
}

/* inheritance - inheritance_message
------------------------------ */
.inheritance_message {
  margin-top: 120px;
}
@media (max-width: 768px) {
  .inheritance_message {
    margin-top: 60px;
  }
}

/* inheritance - inheritance_recommended
------------------------------ */
.inheritance_recommended {
  margin-top: 120px;
}
@media (max-width: 768px) {
  .inheritance_recommended {
    margin-top: 60px;
  }
}

/* inheritance - inheritance_process
------------------------------ */
.inheritance_process {
  margin-top: 120px;
}
@media (max-width: 768px) {
  .inheritance_process {
    margin-top: 60px;
  }
}

.inheritance_process_lead {
  margin-top: 60px;
  font-weight: 500;
}
@media (max-width: 768px) {
  .inheritance_process_lead {
    margin-top: 30px;
  }
}

.inheritance_process_lead span {
  font-weight: 700;
}

.inheritance_process_intro {
  margin-top: 72px;
}
@media (max-width: 768px) {
  .inheritance_process_intro {
    margin-top: 40px;
  }
}

.inheritance_process_intro_cards {
  display: flex;
  gap: 60px clamp(30px, 4vw, 60px);
  flex-wrap: wrap;
  justify-content: center;
}
@media (max-width: 768px) {
  .inheritance_process_intro_cards {
    gap: 40px 20px;
  }
}

.inheritance_process_intro_card {
  position: relative;
}

.inheritance_process_intro_card:not(:last-child)::before {
  content: "";
  position: absolute;
  width: 30px;
  height: 51px;
  background: url(../images/sub/deco_inheritance_process_intro_card_link.svg) no-repeat center center/contain;
  top: 50%;
  right: clamp(-50px, 55px + -7vw, -36px);
  transform: translateY(-50%);
}
@media (max-width: 768px) {
  .inheritance_process_intro_card:not(:last-child)::before {
    width: 15px;
    height: 25px;
    right: -19px;
  }
}

.inheritance_process_intro_card_link {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background-color: #ffdf6b;
  border: 1px solid #ffdf6b;
  display: grid;
  place-items: center;
  position: relative;
  border: 1px solid #ffdf6b;
  padding-bottom: 10px;
  text-align: center;
  font-size: 20px;
}
@media (max-width: 768px) {
  .inheritance_process_intro_card_link {
    width: 128px;
    height: 128px;
    font-size: 14px;
  }
}

@media (min-width: 768px) {
  .inheritance_process_intro_card_link:hover {
    background-color: #fff7c9;
  }
}

.inheritance_process_intro_card_link::before {
  content: "";
  position: absolute;
  width: 60px;
  height: 60px;
  background: url(../images/sub/inheritance_process_intro_card_num01.svg) no-repeat center center/contain;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
}

@media (max-width: 768px) {
  .inheritance_process_intro_card:nth-of-type(1) .inheritance_process_intro_card_link::before {
    width: 40px;
    height: 40px;
    top: -20px;
  }
}

.inheritance_process_intro_card:nth-of-type(2) .inheritance_process_intro_card_link::before {
  background: url(../images/sub/inheritance_process_intro_card_num02.svg) no-repeat center center/contain;
}
@media (max-width: 768px) {
  .inheritance_process_intro_card:nth-of-type(2) .inheritance_process_intro_card_link::before {
    width: 40px;
    height: 40px;
    top: -20px;
  }
}

.inheritance_process_intro_card:nth-of-type(3) .inheritance_process_intro_card_link::before {
  background: url(../images/sub/inheritance_process_intro_card_num03.svg) no-repeat center center/contain;
}
@media (max-width: 768px) {
  .inheritance_process_intro_card:nth-of-type(3) .inheritance_process_intro_card_link::before {
    width: 40px;
    height: 40px;
    top: -20px;
  }
}

.inheritance_process_intro_card:nth-of-type(4) .inheritance_process_intro_card_link::before {
  background: url(../images/sub/inheritance_process_intro_card_num04.svg) no-repeat center center/contain;
}
@media (max-width: 768px) {
  .inheritance_process_intro_card:nth-of-type(4) .inheritance_process_intro_card_link::before {
    width: 40px;
    height: 40px;
    top: -20px;
  }
}

.inheritance_process_intro_card:nth-of-type(5) .inheritance_process_intro_card_link::before {
  background: url(../images/sub/inheritance_process_intro_card_num05.svg) no-repeat center center/contain;
}
@media (max-width: 768px) {
  .inheritance_process_intro_card:nth-of-type(5) .inheritance_process_intro_card_link::before {
    width: 40px;
    height: 40px;
    top: -20px;
  }
}

.inheritance_process_intro_card_link::before {
  content: "";
  position: absolute;
  width: 60px;
  height: 60px;
  background: url(../images/sub/inheritance_process_intro_card_num01.svg) no-repeat center center/contain;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
}

.inheritance_process_intro_card_link::after {
  content: "";
  position: absolute;
  width: 32px;
  height: 16px;
  background: url(../images/common/icon_arrow_down_orange.svg) no-repeat center center/contain;
  bottom: 33px;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 768px) {
  .inheritance_process_intro_card_link::after {
    width: 15px;
    height: 8px;
    bottom: 20px;
  }
}

.inheritance_process_blocks {
  margin-top: 60px;
}
@media (max-width: 768px) {
  .inheritance_process_blocks {
    margin-top: 40px;
  }
}

.inheritance_process_block {
  padding: 40px;
  border-radius: 10px;
  background: #fff7c9;
}
@media (max-width: 768px) {
  .inheritance_process_block {
    padding: 20px;
  }
}

.inheritance_process_block + .inheritance_process_block {
  margin-top: 50px;
}
@media (max-width: 768px) {
  .inheritance_process_block + .inheritance_process_block {
    margin-top: 30px;
  }
}

.inheritance_process_block_title {
  padding-left: 62px;
  position: relative;
  font-size: clamp(26px, 2vw, 30px);
  line-height: 1.3;
  padding-bottom: 18px;
  border-bottom: 2px solid #fc7e24;
}
@media (max-width: 768px) {
  .inheritance_process_block_title {
    font-size: clamp(18px, 5.3333333333vw, 20px);
    padding-left: 45px;
    padding-bottom: 14px;
  }
}

.inheritance_process_block_title::before {
  content: "";
  position: absolute;
  width: 46px;
  height: 46px;
  top: -2px;
  left: 0;
}
@media (max-width: 768px) {
  .inheritance_process_block_title::before {
    width: 32px;
    height: 32px;
  }
}

.inheritance_process_block:nth-of-type(1) .inheritance_process_block_title::before {
  background: url(../images/sub/inheritance_process_intro_card_num01.svg) no-repeat center center/contain;
}

.inheritance_process_block:nth-of-type(2) .inheritance_process_block_title::before {
  background: url(../images/sub/inheritance_process_intro_card_num02.svg) no-repeat center center/contain;
}

.inheritance_process_block:nth-of-type(3) .inheritance_process_block_title::before {
  background: url(../images/sub/inheritance_process_intro_card_num03.svg) no-repeat center center/contain;
}

.inheritance_process_block:nth-of-type(4) .inheritance_process_block_title::before {
  background: url(../images/sub/inheritance_process_intro_card_num04.svg) no-repeat center center/contain;
}

.inheritance_process_block:nth-of-type(5) .inheritance_process_block_title::before {
  background: url(../images/sub/inheritance_process_intro_card_num05.svg) no-repeat center center/contain;
}

.inheritance_process_block_texts {
  margin-top: 40px;
}
@media (max-width: 768px) {
  .inheritance_process_block_texts {
    margin-top: 24px;
  }
}

.inheritance_process_block_text {
  font-weight: 500;
}

.inheritance_process_block_text + .inheritance_process_block_text {
  margin-top: 26px;
}
@media (max-width: 768px) {
  .inheritance_process_block_text + .inheritance_process_block_text {
    margin-top: 20px;
  }
}

.inheritance_process_block_text span {
  font-weight: 700;
  color: #fc7e24;
}

span.inheritance_process_block_text_black {
  font-weight: 700;
  color: #000;
}

/* inheritance - inheritance_menu
------------------------------ */
.inheritance_menu {
  margin-top: 140px;
}
@media (max-width: 768px) {
  .inheritance_menu {
    margin-top: 60px;
  }
}

.inheritance_menu_blocks {
  margin-top: 80px;
}
@media (max-width: 768px) {
  .inheritance_menu_blocks {
    margin-top: 40px;
  }
}

.inheritance_menu_block + .inheritance_menu_block {
  margin-top: 100px;
}
@media (max-width: 768px) {
  .inheritance_menu_block + .inheritance_menu_block {
    margin-top: 60px;
  }
}

.inheritance_menu_block_lead {
  margin-top: 60px;
}
@media (max-width: 768px) {
  .inheritance_menu_block_lead {
    margin-top: 20px;
  }
}

.inheritance_menu_block_assets {
  margin-top: 70px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 40px clamp(30px, 3.6666666667vw, 55px);
}
@media (max-width: 768px) {
  .inheritance_menu_block_assets {
    margin-top: 30px;
    gap: 20px;
  }
}

.inheritance_menu_block_asset {
  border: 2px solid #fc7e24;
  border-radius: 10px;
  padding: 40px 30px 20px;
  display: grid;
  grid-template-rows: subgrid;
  gap: 0;
  grid-row: span 2;
  max-width: 400px;
  margin: 0 auto;
  width: 100%;
}

.inheritance_menu_block_asset_title {
  line-height: 1.25;
  padding-bottom: 24px;
  border-bottom: 1px solid #fc7e24;
  text-align: center;
  width: 100%;
  color: #fc7e24;
  font-size: 24px;
  font-weight: 700;
}

.inheritance_menu_block_asset_texts {
  width: 100%;
  padding-top: 20px;
}

.inheritance_menu_block_asset_img {
  width: 100%;
  max-width: 269px;
  margin: 0 auto;
  padding-top: 15px;
}

/* inheritance - inheritance_merit
------------------------------ */
.inheritance_merit {
  margin-top: 130px;
}
@media (max-width: 768px) {
  .inheritance_merit {
    margin-top: 80px;
  }
}

/* inheritance - inheritance_flow
------------------------------ */
.inheritance_flow {
  margin-top: 120px;
}
@media (max-width: 768px) {
  .inheritance_flow {
    margin-top: 60px;
  }
}

/* inheritance - inheritance_price
------------------------------ */
.inheritance_price {
  margin-top: 120px;
}
@media (max-width: 768px) {
  .inheritance_price {
    margin-top: 60px;
  }
}

.inheritance_price_list {
  margin-top: 24px;
}

.inheritance_price_list_item {
  font-weight: 700;
}

.inheritance_price_list_item span {
  color: #fc7e24;
}

/* inheritance - inheritance_qa
------------------------------ */
.inheritance_qa {
  margin-top: 120px;
}
@media (max-width: 768px) {
  .inheritance_qa {
    margin-top: 60px;
  }
}

/* will - will_message
------------------------------ */
.will_message {
  margin-top: 120px;
}
@media (max-width: 768px) {
  .will_message {
    margin-top: 60px;
  }
}

/* will - will_recommended
------------------------------ */
.will_recommended {
  margin-top: 120px;
}
@media (max-width: 768px) {
  .will_recommended {
    margin-top: 60px;
  }
}

/* will - will_menu
------------------------------ */
.will_menu {
  margin-top: 120px;
}
@media (max-width: 768px) {
  .will_menu {
    margin-top: 60px;
  }
}

/* will - will_flow
------------------------------ */
.will_flow {
  margin-top: 120px;
}
@media (max-width: 768px) {
  .will_flow {
    margin-top: 60px;
  }
}

/* will - will_merit
------------------------------ */
.will_merit {
  margin-top: 120px;
}
@media (max-width: 768px) {
  .will_merit {
    margin-top: 60px;
  }
}

/* will - will_price
------------------------------ */
.will_price {
  margin-top: 120px;
}
@media (max-width: 768px) {
  .will_price {
    margin-top: 60px;
  }
}

.will_price_block_title {
  margin-top: 60px;
}
@media (max-width: 768px) {
  .will_price_block_title {
    margin-top: 30px;
  }
}

/* will - will_qa
------------------------------ */
.will_qa {
  margin-top: 120px;
}
@media (max-width: 768px) {
  .will_qa {
    margin-top: 60px;
  }
}

/* trust - trust_message
------------------------------ */
.trust_message {
  margin-top: 120px;
}
@media (max-width: 768px) {
  .trust_message {
    margin-top: 60px;
  }
}

/* trust - trust_recommended
------------------------------ */
.trust_recommended {
  margin-top: 120px;
}
@media (max-width: 768px) {
  .trust_recommended {
    margin-top: 60px;
  }
}

/* trust - trust_detail
------------------------------ */
.trust_detail {
  margin-top: 120px;
}
@media (max-width: 768px) {
  .trust_detail {
    margin-top: 60px;
  }
}

.trust_detail_lead {
  margin-top: 60px;
}
@media (max-width: 768px) {
  .trust_detail_lead {
    margin-top: 30px;
  }
}

.trust_detail_composition {
  margin-top: 60px;
}
@media (max-width: 768px) {
  .trust_detail_composition {
    margin-top: 30px;
  }
}

.trust_detail_composition_img_container {
  position: relative;
  margin-top: 60px;
}
@media (max-width: 768px) {
  .trust_detail_composition_img_container {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    padding: 40px 15px;
    background: #fff7c9;
    margin-top: 30px;
    border-radius: 10px 10px 0 0;
  }
}

.trust_detail_composition_img {
  width: 100%;
}

.trust_detail_img_text {
  padding: 30px 50px;
  width: 100%;
  line-height: 1.8;
  margin-top: -1px;
  background-color: #fff7c9;
  border-radius: 0 0 10px 10px;
}
@media (max-width: 768px) {
  .trust_detail_img_text {
    padding: 30px 20px;
    width: 100%;
    max-width: 500px;
    margin: -1px auto 0;
    padding-top: 0;
  }
}

.trust_detail_difference {
  margin-top: 100px;
}
@media (max-width: 768px) {
  .trust_detail_difference {
    margin-top: 50px;
  }
}

/* trust - trust_system_merit
------------------------------ */
.trust_system_merit {
  margin-top: 120px;
}
@media (max-width: 768px) {
  .trust_system_merit {
    margin-top: 60px;
  }
}

.trust_detail_difference_text {
  margin-top: 60px;
}
@media (max-width: 768px) {
  .trust_detail_difference_text {
    margin-top: 30px;
  }
}

.trust_detail_difference_text + .trust_detail_difference_text {
  margin-top: 30px;
}
@media (max-width: 768px) {
  .trust_detail_difference_text + .trust_detail_difference_text {
    margin-top: 20px;
  }
}

/* trust - trust_merit
------------------------------ */
.trust_merit {
  margin-top: 120px;
}
@media (max-width: 768px) {
  .trust_merit {
    margin-top: 60px;
  }
}

/* trust - trust_price
------------------------------ */
.trust_price {
  margin-top: 120px;
}
@media (max-width: 768px) {
  .trust_price {
    margin-top: 60px;
  }
}

/* trust - trust_qa
------------------------------ */
.trust_qa {
  margin-top: 120px;
}
@media (max-width: 768px) {
  .trust_qa {
    margin-top: 60px;
  }
}

.trust_system_merit_cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 50px clamp(10px, 2.8666666667vw, 43px);
  margin-top: 104px;
}
@media (max-width: 768px) {
  .trust_system_merit_cards {
    margin-top: 60px;
  }
}

.trust_system_merit_card {
  width: 100%;
  display: grid;
  grid-template-rows: subgrid;
  gap: 0;
  grid-row: span 3;
  position: relative;
}

.trust_system_merit_card::before {
  content: "";
  position: absolute;
  width: 88px;
  height: 88px;
  top: -44px;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 768px) {
  .trust_system_merit_card::before {
    width: 60px;
    height: 60px;
    top: -30px;
  }
}

.trust_system_merit_card:nth-of-type(1):before {
  background: url(../images/sub/sub_merit_card_num01.svg) no-repeat center center/contain;
}

.trust_system_merit_card:nth-of-type(2):before {
  background: url(../images/sub/sub_merit_card_num02.svg) no-repeat center center/contain;
}

.trust_system_merit_card:nth-of-type(3):before {
  background: url(../images/sub/sub_merit_card_num03.svg) no-repeat center center/contain;
}

.trust_system_merit_card:nth-of-type(4):before {
  background: url(../images/sub/sub_merit_card_num04.svg) no-repeat center center/contain;
}

.trust_system_merit_card_title {
  background: #fc7e24;
  padding: 56px 20px 15px;
  color: #fff;
  text-align: center;
  font-size: clamp(18px, 1.3333333333vw, 20px);
  border-radius: 10px 10px 0 0;
}

.trust_system_merit_card_title span {
  display: inline-block;
}

.trust_system_merit_card_text {
  padding: 24px 20px 26px;
  background: #fff7c9;
  border-radius: 0 0 10px 10px;
}

/* trust - trust_flow
------------------------------ */
.trust_flow {
  margin-top: 120px;
}
@media (max-width: 768px) {
  .trust_flow {
    margin-top: 60px;
  }
}

/* trust - trust_merit
------------------------------ */
.trust_merit {
  margin-top: 120px;
}
@media (max-width: 768px) {
  .trust_merit {
    margin-top: 60px;
  }
}

/* office - office_profile
------------------------------ */
.office_profile {
  margin-top: 120px;
}
@media (max-width: 768px) {
  .office_profile {
    margin-top: 60px;
  }
}

.office_profile_content {
  margin-top: 30px;
  display: flex;
  gap: clamp(20px, 3.3333333333vw, 50px);
}
@media (max-width: 768px) {
  .office_profile_content {
    flex-direction: column-reverse;
    gap: 22px;
    margin-top: 20px;
  }
}

.office_profile_content_image {
  width: 25.3496503497%;
  min-width: 200px;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .office_profile_content_image {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }
}

.office_profile_content_image img {
  border-radius: 18px;
}

.office_profile_content_image figcaption {
  margin-top: 12px;
  text-align: right;
}

.office_profile_content_image figcaption span {
  font-size: 26px;
}
@media (max-width: 768px) {
  .office_profile_content_image figcaption span {
    font-size: 22px;
  }
}

.office_profile_cards {
  width: 100%;
}

.office_profile_card {
  border-radius: 10px;
  background: #fff7c9;
  padding: 30px 20px;
  display: flex;
  height: fit-content;
}
@media (max-width: 1300px) {
  .office_profile_card {
    flex-direction: column;
    padding: 30px 30px;
    width: 100%;
  }
}

.office_profile_card + .office_profile_card {
  margin-top: 10px;
}

.office_profile_card_title {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fc7e24;
  font-size: clamp(20px, 1.6vw, 24px);
  width: 25.641025641%;
  flex-shrink: 0;
  min-width: 200px;
}
@media (max-width: 1300px) {
  .office_profile_card_title {
    width: 100%;
    max-width: none;
    text-align: left;
    display: block;
    padding-bottom: 14px;
  }
}

.office_profile_card_texts {
  width: 100%;
  flex-grow: 1;
  padding-left: clamp(20px, 1.7333333333vw, 26px);
  border-left: 2px solid #fc7e24;
}
@media (max-width: 1300px) {
  .office_profile_card_texts {
    padding: 14px 0 0;
    border-left: none;
    border-top: 2px solid #fc7e24;
  }
}

.office_profile_card_list {
  width: 100%;
  font-weight: 500;
}

.office_profile_card_list_item {
  padding-left: 16px;
  position: relative;
}

.office_profile_card_list_item::before {
  content: "・";
  left: -4px;
  position: absolute;
}

.office_profile_images {
  margin-top: 40px;
  display: grid;
  gap: clamp(10px, 2.6666666667vw, 40px);
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 768px) {
  .office_profile_images {
    margin-top: 26px;
  }
}

.office_profile_image img {
  border-radius: 10px;
  overflow: hidden;
}

/* office - office_office
------------------------------ */
.office_office {
  margin-top: 120px;
}
@media (max-width: 768px) {
  .office_office {
    margin-top: 60px;
  }
}

.office_office .top_office_overview_content {
  width: 100%;
  margin-inline: auto;
}

.office_office_images {
  margin-top: 30px;
  display: flex;
  gap: 20px;
}
@media (max-width: 768px) {
  .office_office_images {
    flex-direction: column;
    gap: 10px;
  }
}

.office_office_image {
  border-radius: 10px;
  overflow: hidden;
}

/* office - office_access
------------------------------ */
.office_access {
  margin-top: 120px;
}
@media (max-width: 768px) {
  .office_access {
    margin-top: 60px;
  }
}

.office_access .top_office_access_map {
  width: 53%;
}
@media (max-width: 768px) {
  .office_access .top_office_access_map {
    width: 100%;
  }
}

/* contact - contact_tel
------------------------------ */
.contact_tel {
  margin-top: 120px;
}
@media (max-width: 768px) {
  .contact_tel {
    margin-top: 60px;
  }
}

.contact_tel {
  margin-top: 60px;
}
@media (max-width: 768px) {
  .contact_tel {
    margin-top: 30px;
  }
}

.contact_tel_lead {
  margin-top: 60px;
}
@media (max-width: 768px) {
  .contact_tel_lead {
    margin-top: 30px;
  }
}

.contact_tel_content {
  margin-top: 60px;
  width: 100%;
  max-width: 566px;
  border-radius: 10px;
  background-color: #fff7c9;
  padding: 48px 20px 46px;
}
@media (max-width: 768px) {
  .contact_tel_content {
    margin-top: 30px;
    padding: 30px 20px;
  }
}

.contact_tel_number {
  width: 100%;
  max-width: 340px;
  margin: 0 auto;
}

.contact_tel_time {
  margin-top: 25px;
  text-align: center;
  font-size: 16px;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .contact_tel_time {
    margin-top: 28px;
  }
}

.contact_tel_time span {
  display: inline-block;
}

/* contact - contact_mail
------------------------------ */
.contact_mail {
  margin-top: 120px;
}
@media (max-width: 768px) {
  .contact_mail {
    margin-top: 60px;
  }
}

.contact_mail_lead {
  margin-top: 60px;
}
@media (max-width: 768px) {
  .contact_mail_lead {
    margin-top: 30px;
  }
}

/* form
------------------------------ */
.form_blocks {
  margin-top: 60px;
}
@media (max-width: 768px) {
  .form_blocks {
    margin-top: 30px;
  }
}

.form_block + .form_block {
  margin-top: 60px;
}
@media (max-width: 768px) {
  .form_block + .form_block {
    margin-top: 30px;
  }
}

.form_block_title {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.3;
}
@media (max-width: 768px) {
  .form_block_title {
    font-size: 20px;
  }
}

.form_wrapper {
  margin-top: 28px;
}
@media (max-width: 768px) {
  .form_wrapper {
    margin-top: 14px;
  }
}

.form_row {
  display: grid;
  grid-template-columns: clamp(270px, 21.8666666667vw, 328px) 1fr;
}
@media (max-width: 768px) {
  .form_row {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

.form_row_center {
  align-items: center;
}

.form_title {
  position: relative;
  line-height: 2.5;
  font-weight: 700;
  letter-spacing: 0.05em;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid #fc7e24;
  padding: 16px 20px;
  background-color: #ffdf6b;
}
@media (max-width: 768px) {
  .form_title {
    align-items: center;
    padding: 10px 15px;
    border-bottom: 1px solid #fc7e24;
  }
}

.form_title:last-of-type {
  border-bottom: 1px solid #fc7e24;
}
.form_title_small {
  font-size: 14px;
  font-weight: 400;
}

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

.form_title_must,
.form_title_any {
  font-size: 14px;
  font-weight: 700;
  line-height: 100%;
  color: #fff;
  background-color: #fc7e24;
  border-radius: 50px;
  width: 100%;
  max-width: 57px;
  text-align: center;
  padding: 8px 5px;
  margin-top: 7px;
}
@media (max-width: 768px) {
  .form_title_must,
  .form_title_any {
    font-size: 13px;
    padding: 5px 5px;
    margin-top: 0;
  }
}

.form_input {
  line-height: 187.5%;
  letter-spacing: 0;
  display: grid;
  align-items: center;
  padding: 12px 20px 11px;
  min-height: 74px;
  border-top: 1px solid #fc7e24;
}
@media (max-width: 768px) {
  .form_input {
    padding: 0 15px 10px;
    border: none;
    min-height: auto;
  }
}

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

.form_input_example {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #999999;
  margin-top: 1px;
}

.form_input_request {
  padding: 25px 24px;
}

.form_input_about {
  padding: 19px 24px 23px;
}

.form_input_years {
  display: flex;
  align-items: center;
  gap: 0 9px;
}

.form_input input[type=text],
.form_input input[type=tel],
.form_input input[type=email] {
  width: 100%;
  background-color: #fff7c9;
  padding: 10px 15px;
}
@media (max-width: 768px) {
  .form_input input[type=text],
  .form_input input[type=tel],
  .form_input input[type=email] {
    padding: 10px 10px;
  }
}

.form_input_name input[type=text] {
  max-width: 404px;
}

.form_input_tel input[type=tel] {
  max-width: 404px;
}

.form_input_mail input[type=email] {
  max-width: 600px;
}

.form_address_wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 15px 30px;
}

.form_input_post {
  display: flex;
  align-items: center;
  gap: 10px 12px;
}

.form_input_post_mark {
  font-weight: 700;
  color: #000;
}

.form_input .form_input_post input[type=text] {
  width: 100%;
  max-width: 240px;
}

.form_input_prefectures_wrapper {
  position: relative;
  color: #000;
  background-color: #fff;
  width: 237px;
  max-width: 100%;
}

.form_input_prefectures_wrapper::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 8px;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: url(../images/common/icon_triangle_bottom_blue.svg) no-repeat center center/contain;
}

.form_input_prefectures {
  width: 100%;
  height: 100%;
  padding: 7.5px 15px;
}

.form_input_address {
  margin-top: 8px;
}

.form_input_textarea textarea {
  width: 100% !important;
  max-width: 881px;
  height: 274px !important;
  padding: 10px 15px;
  background-color: #fff7c9;
}

.form_input_text {
  position: relative;
  display: inline-block;
  font-size: 15px;
  padding-left: 15px;
}

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

.form_input_lot {
  padding: 25px 24px 22px;
}

.form_input_birth_calender {
  width: fit-content;
  background-color: #fff7c9;
  padding: 5px 15px;
}

.form_radio {
  padding: 11px 20px;
}
@media (max-width: 768px) {
  .form_radio {
    padding-top: 0;
  }
}

.form_radio_buttons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  height: 100%;
  gap: 10px 45px;
}
@media (max-width: 768px) {
  .form_radio_buttons {
    flex-direction: column;
    align-items: flex-start;
  }
}

.form_radio_button {
  letter-spacing: 0.05em;
}

.form_radio_button input[type=radio] {
  position: relative;
  display: inline-block;
  appearance: none;
  width: 40px;
  height: 40px;
  max-width: 100%;
  transition: all 0.15s ease-out 0s;
  cursor: pointer;
  background-color: #fff7c9;
  outline: none;
  border-radius: 50%;
}

.form_radio_button input[type=radio]:before {
  position: absolute;
  content: "";
  width: 20px;
  height: 20px;
  left: 50%;
  top: 50%;
  border-radius: 50%;
  transform: scale(0) translate(-50%, -50%);
  transition: all ease-out 250ms;
}

.form_radio_button input[type=radio]:checked:before {
  transform: scale(1) translate(-50%, -50%);
  background-color: #fc7e24;
}

.form_radio_button label {
  display: flex;
  align-items: center;
  gap: 0 9px;
  letter-spacing: 0.05em;
}

.form_input_select {
  position: relative;
  width: 100%;
  max-width: 404px;
  background: url(../images/common/icon_triangle_arrow_bottom_white.svg) no-repeat right 14px center/22px 13px, linear-gradient(270deg, #fff7c9 0, #fff7c9 50px, #fff7c9 50px, #fff7c9 100%);
}

.form_input_select select {
  width: 100%;
  cursor: pointer;
  padding: 10px 60px 10px 15px;
}

.form .mfp_err {
  display: none;
}

.form_file .mfp_element_file {
  font-size: 14px;
  max-width: 100%;
  padding: 7px 8px;
}

.form_privacy_wrapper {
  margin-top: 45px;
}
@media (max-width: 768px) {
  .form_privacy_wrapper {
    margin-top: 15px;
  }
}

.form_privacy {
  height: 178px;
  overflow: scroll;
  background-color: #fff7c9;
  padding: 24px 40px;
}
@media (max-width: 768px) {
  .form_privacy {
    height: 150px;
    padding: 15px 20px;
    margin-top: 15px;
  }
}

.form_privacy_title {
  font-size: clamp(20px, 1.6vw, 24px);
  font-weight: 700;
  color: #fc7e24;
}

.form_privacy_text {
  line-height: 180%;
  margin-top: 15px;
}
@media (max-width: 768px) {
  .form_privacy_text {
    margin-top: 10px;
  }
}

.form_privacy_text p + p {
  margin-top: 20px;
}
@media (max-width: 768px) {
  .form_privacy_text p + p {
    margin-top: 10px;
  }
}

.form_checkbox {
  display: flex;
  align-items: center;
  height: 100%;
}

.form_checkbox_wrapper {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px 20px;
}

.form_checkbox_confirmation {
  justify-content: center;
  margin-top: 56px;
}
@media (max-width: 768px) {
  .form_checkbox_confirmation {
    margin-top: 20px;
  }
}

.form_checkbox_label.form_checkbox_label_none {
  display: none;
}

.form_checkbox_parts {
  position: relative;
  display: inline-block;
  padding-left: 48px;
}

.form_checkbox_parts::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 35px;
  height: 35px;
  border: none;
  background-color: #fff7c9;
}

.form_checkbox_input {
  display: none;
}

.form_checkbox_input:checked + .form_checkbox_parts::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 11px;
  width: 12px;
  height: 24px;
  transform: translateY(-50%) rotate(45deg);
  border-bottom: 3px solid #fc7e24;
  border-right: 3px solid #fc7e24;
}

.checkbox_err .mfp_err {
  display: none;
  width: 228px;
  max-width: 100%;
  margin: auto;
  padding: 5px 0;
}

.form_btn {
  position: relative;
  width: 100%;
  max-width: 290px;
  margin: 50px auto 0;
  transition: 0.3s;
}
@media (max-width: 768px) {
  .form_btn {
    max-width: 260px;
    margin: 30px auto 0;
  }
}

.mfp_element_button {
  background-color: #fc7e24;
}

/* contact-thanks - contact_thanks
------------------------------ */
.contact-thanks {
  margin-top: 100px;
}
@media (max-width: 768px) {
  .contact-thanks {
    margin-top: 50px;
  }
}

.contact-thanks_text {
  margin-top: 50px;
}
@media (max-width: 768px) {
  .contact-thanks_text {
    margin-top: 20px;
  }
}

.contact-thanks_btn {
  margin-top: 50px;
  width: 100%;
  max-width: 260px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 768px) {
  .contact-thanks_btn {
    margin-top: 20px;
  }
}

/* 404
------------------------------ */
.not_found {
  margin-top: 100px;
}
@media (max-width: 768px) {
  .not_found {
    margin-top: 50px;
  }
}

.not_found_text {
  text-align: center;
}

.not_found_btn {
  text-align: center;
  margin-top: 50px;
  width: 100%;
  max-width: 300px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 768px) {
  .not_found_btn {
    margin-top: 30px;
  }
}

.other-page_cta01 {
  margin-top: 100px;
}
@media (max-width: 768px) {
  .other-page_cta01 {
    margin-top: 50px;
  }
}

/* footer
------------------------------ */
.footer {
  margin-top: 120px;
}
@media (max-width: 768px) {
  .footer {
    margin-top: 80px;
  }
}

.footer_logo {
  width: 100%;
  max-width: 490px;
  margin: 0 auto;
}

.footer_lead {
  margin-top: 26px;
  text-align: center;
  width: 100%;
  padding-bottom: clamp(20px, 2.4vw, 36px);
  border-bottom: 2px solid #3ec081;
}
@media (max-width: 768px) {
  .footer_lead {
    margin-top: 30px;
    border: none;
    padding-bottom: 0;
  }
}

.footer_nav {
  margin-top: clamp(20px, 3.8666666667vw, 58px);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px clamp(30px, 4.6666666667vw, 70px);
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .footer_nav {
    display: none;
  }
}

.footer_nav_item a {
  display: inline-block;
  white-space: nowrap;
  padding: 0 6px;
  position: relative;
}

.footer_nav_item a::before {
  content: "";
  background-color: #000;
  bottom: 2px; /* 要素の下端からの距離 */
  height: 2px; /* 下線の高さ */
  left: 0; /* 要素の左端からの距離 */
  opacity: 0; /* 不透明度 */
  position: absolute; /* 絶対位置指定 */
  transition: all 0.3s; /* アニメーション効果を追加 */
  width: 100%; /* 要素の幅 */
}

.footer_nav_item a:hover::before {
  bottom: -4px; /* 下線を上から下に移動 */
  opacity: 1; /* 不透明度を変更してフェードイン */
}

.footer_copyright {
  color: #fff;
  margin-top: 120px;
  padding: 40px 0;
  background: #ff5b49;
  text-align: center;
}
@media (max-width: 768px) {
  .footer_copyright {
    margin-top: 60px;
    padding: 16px 0 100px;
  }
}

.footer_copyright small {
  font-size: 12px;
  letter-spacing: 0.05em;
  color: #fff;
}
@media (max-width: 768px) {
  .footer_copyright small {
    display: block;
    width: 60%;
    margin: 0 auto;
  }
}

/* page_top
------------------------------ */
.page_top {
  position: fixed;
  right: 30px;
  bottom: 30px;
  width: 50px;
  height: 50px;
  color: #fff;
  background-color: #fc7e24;
  border: 1px solid #fc7e24;
  cursor: pointer;
  transition: 0.3s;
  z-index: 10;
  box-shadow: 0px 0px 5px rgba(255, 255, 255, 0.5);
}
@media (max-width: 768px) {
  .page_top {
    right: 16px;
    bottom: 100px;
  }
}

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

.page_top::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 16px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: translate(-50%) rotate(-45deg);
}

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

/* foot_menu
------------------------------ */
.foot_menu {
  display: none;
  position: fixed;
  width: 100%;
  left: 0;
  bottom: 0;
  z-index: 10;
  box-shadow: 0px -3px 5px rgba(255, 255, 255, 0.5);
  background-color: #fff;
  border: 1px solid #fc7e24;
}
@media (max-width: 768px) {
  .foot_menu {
    display: block;
  }
}

.foot_menu_wrapper {
  display: flex;
}

.foot_menu_tel {
  width: 50%;
}

.foot_menu_tel a {
  position: relative;
  display: block;
  line-height: 120%;
  color: #fff;
  background-color: #fc7e24;
  font-weight: 700;
  text-align: center;
  padding: 30px 10px 10px;
  width: 100%;
}

.foot_menu_tel a::before {
  position: absolute;
  content: "";
  width: 20px;
  height: 18px;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  background: url(../images/common/icon_tel_white.svg) no-repeat center center/contain;
}

.foot_menu_mail {
  width: 50%;
}

.foot_menu_mail a {
  position: relative;
  display: block;
  line-height: 120%;
  color: #fc7e24;
  background-color: #fff;
  font-weight: 700;
  text-align: center;
  padding: 30px 10px 10px;
  width: 100%;
}

.foot_menu_mail a::after {
  position: absolute;
  content: "";
  width: 24px;
  height: 15px;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  background: url(../images/common/icon_mail_orange.svg) no-repeat center center/contain;
}

/*# sourceMappingURL=style.css.map */
