@charset "UTF-8";
body {
  font-family: "dnp-shuei-mgothic-std", sans-serif;
  font-weight: 700;
  color: #272727;
}

.hamburger_menu .hamburger_menu_btn {
  display: flex;
  justify-content: space-evenly;
  position: absolute;
  flex-direction: column;
  z-index: 999;
  cursor: pointer;
  right: 1rem;
  top: calc(50% - 0.875rem);
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  width: 3.5rem;
  aspect-ratio: 1/1;
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  .hamburger_menu .hamburger_menu_btn {
    top: calc(50% - 0.375rem);
    right: 0.5rem;
    width: 1.5rem;
  }
}
.hamburger_menu .hamburger_menu_btn .bar {
  display: block;
  width: 75%;
  height: 0.125rem;
  background-color: #50a98d;
  transition: all 0.3s;
  margin-left: auto;
  margin-right: auto;
}
.hamburger_menu .hamburger_menu_list_wrapper {
  transition: all 0.5s;
  display: block;
  width: 100%;
  max-width: 46.875rem;
  height: 100%;
  overflow-x: auto;
  background-color: #fff;
  position: fixed;
  top: 0;
  right: -100%;
  padding: 4.5rem 1.65625rem;
}
@media screen and (max-width: 768px) {
  .hamburger_menu .hamburger_menu_list_wrapper {
    max-width: 25rem;
  }
}
.hamburger_menu .hamburger_menu_list_wrapper .hamburger_menu_list {
  display: block;
}
.hamburger_menu.open .hamburger_menu_btn {
  transition: all 0.3s;
  border: 1px solid #272727;
  justify-content: center;
}
.hamburger_menu.open .hamburger_menu_btn .bar {
  background-color: #272727;
}
.hamburger_menu.open .hamburger_menu_btn .bar:nth-child(1) {
  transform: translateY(0.0625rem) rotate(45deg);
}
@media screen and (max-width: 768px) {
  .hamburger_menu.open .hamburger_menu_btn .bar:nth-child(1) {
    transform: translateY(0.0625rem) rotate(45deg);
  }
}
.hamburger_menu.open .hamburger_menu_btn .bar:nth-child(2) {
  display: none;
}
.hamburger_menu.open .hamburger_menu_btn .bar:nth-child(3) {
  transform: translateY(-0.0625rem) rotate(-45deg);
}
@media screen and (max-width: 768px) {
  .hamburger_menu.open .hamburger_menu_btn .bar:nth-child(3) {
    transform: translateY(-0.0625rem) rotate(-45deg);
  }
}
.hamburger_menu.open .hamburger_menu_list_wrapper {
  right: 0;
  transition: all 0.5s;
}

.slider {
  width: 100%;
  margin: 0 auto;
  /* 矢印 */
  /* ドット */
}
.slider .slide_item {
  margin-bottom: 0.5rem !important;
}
.slider.center_slider .slide_item {
  width: 26.5rem;
  transition: all 0.5s;
  margin-left: 2.1875rem;
  margin-right: 2.1875rem;
}
@media screen and (max-width: 768px) {
  .slider.center_slider .slide_item {
    width: 20.375rem;
  }
}
.slider .slick-arrow {
  position: absolute;
  z-index: 500;
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 1.0625rem solid transparent;
  border-bottom: 1.0625rem solid transparent;
  cursor: pointer;
  top: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}
.slider .slick-arrow.slick-prev {
  border-left: 0;
  border-right: 1.0625rem solid #50a98d;
  left: calc(50% - 15.25rem);
}
.slider .slick-arrow.slick-next {
  border-left: 1.0625rem solid #50a98d;
  border-right: 0;
  left: calc(50% + 15.25rem);
}
.slider .slick-dots {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}
.slider .slick-dots li {
  display: inline-block;
}
.slider .slick-dots li button {
  color: transparent;
  outline: none;
  width: 1.5rem;
  height: 1.5rem;
  display: block;
  border-radius: 50%;
  background: #b9bdbc;
  border: 1px solid #fff;
}
.slider .slick-dots li.slick-active button {
  background: #50a98d;
}

/* リセットCSS */
* {
  margin: 0;
  padding: 0;
}

*,
::before,
::after {
  border-style: solid;
  box-sizing: border-box;
  border-width: 0;
}

html {
  height: 100%;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  line-height: 1.5;
  text-rendering: optimizeSpeed;
}

.all_container {
  overflow-x: hidden;
}

ul,
ol {
  list-style: none;
}

a {
  color: inherit;
  background-color: transparent;
  text-decoration: none;
  text-decoration-skip-ink: auto;
}

img,
video {
  display: block;
  max-width: 100%;
  width: 100%;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

html {
  font-size: 1.6129032258vw;
}
@media screen and (max-width: 768px) {
  html {
    font-size: 16px;
  }
}
@media (min-width: 992px) {
  html {
    font-size: 16px;
  }
}
@media screen and (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}

/* ホバー */
a,
button,
.btn {
  cursor: pointer;
  transition: 0.3s;
}
a:hover,
button:hover,
.btn:hover {
  opacity: 0.8;
}
@media screen and (max-width: 768px) {
  a:hover,
button:hover,
.btn:hover {
    opacity: 1;
  }
}

/* レスポンシブ */
@media screen and (max-width: 768px) {
  .u_pc {
    display: none !important;
  }
}

.u_sp,
.u_sp_b {
  display: none !important;
}
@media screen and (max-width: 768px) {
  .u_sp,
.u_sp_b {
    display: block !important;
  }
}

.u_sp_i {
  display: none !important;
}
@media screen and (max-width: 768px) {
  .u_sp_i {
    display: inline !important;
  }
}

.u_sp_ib {
  display: none !important;
}
@media screen and (max-width: 768px) {
  .u_sp_ib {
    display: inline-block !important;
  }
}

.u_sp_f {
  display: none !important;
}
@media screen and (max-width: 768px) {
  .u_sp_f {
    display: flex !important;
  }
}

.u_sp_t {
  display: none !important;
}
@media screen and (max-width: 768px) {
  .u_sp_t {
    display: table-row !important;
  }
}

/* インナーボックス */
.innerbox_1440 {
  max-width: calc(1440px + 2rem);
  margin: 0 auto;
  padding: 0 1rem;
}

.innerbox_1180 {
  max-width: calc(1180px + 2rem);
  margin: 0 auto;
  padding: 0 1rem;
}

.innerbox_870 {
  max-width: calc(870px + 2rem);
  margin: 0 auto;
  padding: 0 1rem;
}
@media screen and (max-width: 768px) {
  .innerbox_870 {
    padding: 0 1.5rem;
  }
}

/* その他頻出パーツ */
.flexbox {
  display: flex;
}

.flex_center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.btn {
  display: flex;
  justify-content: center;
  align-items: center;
}
.btn.return_btn {
  width: 12.5rem;
  height: 4rem;
  color: #fff;
  background-color: #50a98d;
  border-radius: 2rem;
}

/* WordPress用パーツ */
.index_php {
  padding: 6.25rem 1rem;
  text-align: center;
}
.index_php .return_btn {
  margin: 2rem auto 0;
}

.not_open {
  font-size: 1.125rem;
  font-weight: 700;
  text-align: center;
  padding: 2.5rem;
}

section#page_head .breadcrumb_wrapper {
  background-color: #f4f4f4;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
section#page_head .breadcrumb_wrapper .breadcrumb_inner {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
}
section#page_head .breadcrumb_wrapper .breadcrumb_inner .breadcrumb_item {
  white-space: nowrap;
}
section#page_head .breadcrumb_wrapper .breadcrumb_inner .breadcrumb_item a {
  font-size: 0.9375rem;
  line-height: 1.74;
  color: #272727;
}
@media screen and (max-width: 768px) {
  section#page_head .breadcrumb_wrapper .breadcrumb_inner .breadcrumb_item a {
    font-size: 0.875rem;
    line-height: 2;
  }
}
section#page_head .breadcrumb_wrapper .breadcrumb_inner .breadcrumb_item:nth-child(n+2) {
  margin-left: 0.85rem;
}
@media screen and (max-width: 768px) {
  section#page_head .breadcrumb_wrapper .breadcrumb_inner .breadcrumb_item:nth-child(n+2) {
    margin-left: 0.6rem;
  }
}
section#page_head .breadcrumb_wrapper .breadcrumb_inner .breadcrumb_item:nth-child(n+2)::before {
  content: ">";
  font-size: inherit;
  line-height: inherit;
  color: #272727;
  margin-right: 0.85rem;
}
@media screen and (max-width: 768px) {
  section#page_head .breadcrumb_wrapper .breadcrumb_inner .breadcrumb_item:nth-child(n+2)::before {
    margin-right: 0.6rem;
  }
}
section#page_head .breadcrumb_wrapper .breadcrumb_inner .breadcrumb_item:nth-last-child(1) {
  white-space: nowrap;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  max-height: 2em;
}
section#page_head .breadcrumb_wrapper .breadcrumb_inner .breadcrumb_item:nth-last-child(1) a {
  opacity: 0.4;
  pointer-events: none;
}
.page_contents_wrapper {
  padding-top: 6.5rem;
  padding-bottom: 6.5rem;
}
@media screen and (max-width: 768px) {
  .page_contents_wrapper {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}

body:not(#contact) .grecaptcha-badge {
  visibility: hidden;
}

.grecaptcha-badge {
  z-index: 9999;
}

/* body(全体) */
/* ヘッダー */
header#header {
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 6.875rem;
  background-image: url(../../assets/img/header_bg_pc.webp);
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  header#header {
    height: 3.4375rem;
  }
}
header#header .header_inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 1.75rem 1rem 2rem;
}
@media screen and (max-width: 768px) {
  header#header .header_inner {
    padding: 0.75rem 0.5rem 1.125rem;
  }
}
header#header .header_inner .header_left {
  width: 18.75rem;
  height: 100%;
}
header#header .header_inner .header_left a {
  display: block;
  height: 100%;
}
header#header .header_inner .header_left a .header_logo {
  height: 100%;
  object-fit: contain;
  object-position: left;
}
header#header .header_inner .header_right .hamburger_menu_list_wrapper {
  background-image: url(../../assets/img/hamburger_bg.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
header#header .header_inner .header_right .hamburger_menu_list_wrapper .hamburger_menu_list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2rem;
}
header#header .header_inner .header_right .hamburger_menu_list_wrapper .hamburger_menu_list .menu_item {
  border-bottom: 1px dashed #54a38a;
  padding-bottom: 0.375rem;
}
header#header .header_inner .header_right .hamburger_menu_list_wrapper .hamburger_menu_list .menu_item a {
  display: block;
  border-left: 0.5rem solid #54a38a;
  padding: 0 0.5rem 0 1.125rem;
  font-size: 1.171875rem;
}
header#header .header_inner .header_right .hamburger_menu_list_wrapper .hamburger_decoration {
  position: absolute;
  right: 1.71875rem;
  bottom: 2rem;
  width: 9.0625rem;
  height: 9.0625rem;
  object-fit: contain;
}

/* その他パーツ */
.section_title {
  font-size: 2.375rem;
  line-height: 1.1025641026;
  letter-spacing: 0.06em;
  color: #50a98d;
  gap: 1.75rem;
}
@media screen and (max-width: 768px) {
  .section_title {
    font-size: 1.1875rem;
    gap: 0.8125rem;
  }
}
.section_title::before, .section_title::after {
  content: "";
  display: block;
  width: 3.375rem;
  height: 0.125rem;
  background-color: #50a98d;
}
@media screen and (max-width: 768px) {
  .section_title::before, .section_title::after {
    width: 1.5625rem;
    height: 0.0625rem;
  }
}

.cta_parts .cta_upper,
.cta_parts .cta_lower {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.25rem;
}
@media screen and (max-width: 768px) {
  .cta_parts .cta_upper,
.cta_parts .cta_lower {
    gap: 0.875rem;
  }
}
.cta_parts .cta_upper a,
.cta_parts .cta_lower a {
  display: block;
}
.cta_parts .cta_upper a {
  width: 26.5625rem;
}
.cta_parts .cta_lower {
  margin-top: 1.75rem;
}
@media screen and (max-width: 768px) {
  .cta_parts .cta_lower {
    margin-top: 1.125rem;
  }
}
.cta_parts .cta_lower a {
  width: 26.8125rem;
}
@media screen and (max-width: 768px) {
  .cta_parts .cta_lower a {
    padding: 0 0.25rem;
  }
}

.before_arrow::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 3.375rem solid transparent;
  border-left: 3.375rem solid transparent;
  border-top: 1.9375rem solid transparent;
  border-bottom: 0;
  margin: 0 auto 2.5rem;
}
@media screen and (max-width: 768px) {
  .before_arrow::before {
    border-right: 1.6875rem solid transparent;
    border-left: 1.6875rem solid transparent;
    border-top: 0.96875rem solid transparent;
    margin-bottom: 1.25rem;
  }
}

.underline {
  text-decoration: underline;
  text-decoration-thickness: 0.5em;
  text-underline-offset: -0.2em;
  text-decoration-skip-ink: none;
  text-decoration-color: #fbf310;
}

.br_block {
  display: block;
}
.br_block:nth-child(n+2) {
  margin-top: 0.75em;
}

br.u_sp {
  display: none !important;
}
@media screen and (max-width: 480px) {
  br.u_sp {
    display: block !important;
  }
}

/* トップページ */
section#overview {
  background-color: #eaf7f2;
  padding-top: 1.5rem;
  padding-bottom: 2.75rem;
}
@media screen and (max-width: 768px) {
  section#overview {
    padding-top: 1rem;
    padding-bottom: 1.9375rem;
  }
}
section#overview .overview_title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 3.3125rem;
  font-size: 1.4375rem;
  letter-spacing: 0.48em;
  white-space: nowrap;
  color: #489d83;
  font-family: "hiragino-mincho-pron", sans-serif;
}
@media screen and (max-width: 768px) {
  section#overview .overview_title {
    gap: 0.75rem;
    font-size: 0.8125rem;
  }
}
section#overview .overview_title::before, section#overview .overview_title::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #489d83;
}
section#overview .overview_items_wrapper {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  border-bottom: 1px solid #489d83;
  padding: 1.125rem 0 1.25rem;
  margin-bottom: 2rem;
}
@media screen and (max-width: 768px) {
  section#overview .overview_items_wrapper {
    padding: 0.25rem 0 1rem;
    margin-bottom: 1.34375rem;
  }
}
section#overview .overview_items_wrapper .overview_item {
  display: flex;
  align-items: flex-start;
  font-size: 1.4375rem;
  line-height: 1;
  font-family: "hiragino-mincho-pron", sans-serif;
}
@media screen and (max-width: 768px) {
  section#overview .overview_items_wrapper .overview_item {
    font-size: 0.875rem;
    line-height: 1.3448275862;
  }
}
section#overview .overview_items_wrapper .overview_item::before {
  content: "";
  display: block;
  width: 0.625rem;
  height: 1.5625rem;
  background-color: #489d83;
  margin-right: 0.625rem;
}
@media screen and (max-width: 768px) {
  section#overview .overview_items_wrapper .overview_item::before {
    width: 0.40625rem;
    height: 0.9375rem;
    margin-right: 0.5rem;
    margin-top: 0.25rem;
  }
}

section#worries {
  background-color: #dfdfdf;
  padding-top: 4rem;
  padding-bottom: 2.5625rem;
}
@media screen and (max-width: 768px) {
  section#worries {
    padding-top: 2rem;
    padding-bottom: 1.21875rem;
  }
}
@media screen and (max-width: 768px) {
  section#worries .innerbox_870 {
    padding: 0 0.875rem;
  }
}
section#worries .worries_title {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2.9375rem;
  letter-spacing: 0.02em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  section#worries .worries_title {
    align-items: flex-end;
    font-size: 1.46875rem;
  }
}
section#worries .worries_title::before, section#worries .worries_title::after {
  content: "";
  display: block;
  width: 2.5rem;
  height: 3.25rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (max-width: 768px) {
  section#worries .worries_title::before, section#worries .worries_title::after {
    width: 1.25rem;
    height: 1.625rem;
    margin-bottom: 0.5rem;
  }
}
section#worries .worries_title::before {
  background-image: url(../../assets/img/frame_title_left.webp);
  margin-right: 2rem;
}
@media screen and (max-width: 768px) {
  section#worries .worries_title::before {
    margin-right: 1rem;
  }
}
section#worries .worries_title::after {
  background-image: url(../../assets/img/frame_title_right.webp);
  margin-left: 2rem;
}
@media screen and (max-width: 768px) {
  section#worries .worries_title::after {
    margin-left: 1rem;
  }
}
section#worries .worries_main_image {
  width: 23.75rem;
  margin: 2.5rem auto 0;
}
@media screen and (max-width: 768px) {
  section#worries .worries_main_image {
    width: 11.75rem;
    margin-top: 0.4375rem;
  }
}
section#worries .worries_list {
  background-color: #fff;
  padding: 0.5rem 1.75rem;
  margin-top: 2.75rem;
  border-radius: 0.8125rem;
}
@media screen and (max-width: 768px) {
  section#worries .worries_list {
    padding: 0.3125rem 0.78125rem;
    margin-top: 1.0625rem;
    border-radius: 0.46875rem;
  }
}
section#worries .worries_list .worries_list_item {
  position: relative;
  font-size: 1.75rem;
  line-height: 1.4050318923;
  letter-spacing: -0.02em;
  font-weight: 400;
  font-family: "hiragino-mincho-pron", sans-serif;
  padding: 1.5625rem 0 1.5625rem 4.875rem;
}
@media screen and (max-width: 768px) {
  section#worries .worries_list .worries_list_item {
    font-size: 0.9375rem;
    padding: 0.8125rem 0 0.8125rem 2.34375rem;
  }
}
section#worries .worries_list .worries_list_item .underline {
  font-weight: 700;
}
section#worries .worries_list .worries_list_item::before {
  content: "";
  display: block;
  position: absolute;
  width: 2.25rem;
  height: 2.25rem;
  background-image: url(../../assets/img/icon_check.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  left: 1.125rem;
  top: 1.5rem;
}
@media screen and (max-width: 768px) {
  section#worries .worries_list .worries_list_item::before {
    width: 1.21875rem;
    height: 1.21875rem;
    left: 0.3125rem;
    top: 0.75rem;
  }
}
section#worries .worries_list .worries_list_item:nth-child(n+2)::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0.0625rem;
  background-image: url(../../assets/img/line_dashed.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
section#worries .worries_triangle {
  width: 8.875rem;
  height: 3.0625rem;
  object-fit: contain;
  margin: 2.375rem auto 0;
}
@media screen and (max-width: 768px) {
  section#worries .worries_triangle {
    width: 4.4375rem;
    height: 1.53125rem;
    margin-top: 0.71875rem;
  }
}

section#reason .reason_head {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #4fac8f;
  padding-top: 3.4375rem;
  padding-bottom: 2.6875rem;
}
@media screen and (max-width: 768px) {
  section#reason .reason_head {
    padding-top: 1.625rem;
    padding-bottom: 1.3125rem;
  }
}
section#reason .reason_head span {
  display: block;
  position: relative;
  text-align: center;
  line-height: 1;
}
section#reason .reason_head span.upper {
  font-size: 1.9375rem;
  letter-spacing: -0.02em;
  color: #fff;
}
@media screen and (max-width: 768px) {
  section#reason .reason_head span.upper {
    font-size: 0.96875rem;
  }
}
section#reason .reason_head span.lower {
  font-size: 2.875rem;
  letter-spacing: -0.05em;
  color: #fbf310;
  padding-left: 0.5em;
  margin-top: 1.5rem;
}
@media screen and (max-width: 768px) {
  section#reason .reason_head span.lower {
    font-size: 1.4375rem;
    margin-top: 0.84375rem;
  }
}
section#reason .reason_head span.lower::before {
  content: "";
  display: block;
  position: absolute;
  top: -2.5625rem;
  left: -2rem;
  width: 3.3125rem;
  height: auto;
  aspect-ratio: 53/58;
  background-image: url(../../assets/img/frame_title_side.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  section#reason .reason_head span.lower::before {
    top: -1.25rem;
    left: -0.75rem;
    width: 1.65625rem;
  }
}
section#reason .reason_contents_wrapper {
  background-color: #ffffed;
  padding-top: 2.375rem;
  padding-bottom: 1.25rem;
}
@media screen and (max-width: 768px) {
  section#reason .reason_contents_wrapper {
    padding-top: 1.625rem;
    padding-bottom: 1.5rem;
  }
}
section#reason .reason_contents_wrapper .reason_title {
  padding: 0 1.25rem;
}
@media screen and (max-width: 768px) {
  section#reason .reason_contents_wrapper .reason_title {
    width: 17.625rem;
    margin: 0 auto;
    padding: 0;
  }
}
section#reason .reason_contents_wrapper .reason_subtitle {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 2.8125rem;
}
@media screen and (max-width: 768px) {
  section#reason .reason_contents_wrapper .reason_subtitle {
    margin-top: 1.59375rem;
    margin-left: -0.875rem;
    margin-right: -0.875rem;
  }
}
section#reason .reason_contents_wrapper .reason_subtitle > img {
  width: 11.25rem;
}
@media screen and (max-width: 768px) {
  section#reason .reason_contents_wrapper .reason_subtitle > img {
    width: 5.625rem;
  }
}
section#reason .reason_contents_wrapper .reason_subtitle::before, section#reason .reason_contents_wrapper .reason_subtitle::after {
  content: "";
  display: block;
  width: calc((100% - 11.25rem - 3.75rem) / 2);
  height: 1.3125rem;
  background-image: url(../../assets/img/frame_reason_subtitle.webp);
  background-position: center;
  background-repeat: repeat-x;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  section#reason .reason_contents_wrapper .reason_subtitle::before, section#reason .reason_contents_wrapper .reason_subtitle::after {
    width: calc((100% - 5.625rem - 1.875rem) / 2);
    height: 0.65625rem;
  }
}
section#reason .reason_contents_wrapper .reason_main_contents {
  margin-top: 0.5rem;
}
@media screen and (max-width: 768px) {
  section#reason .reason_contents_wrapper .reason_main_contents {
    margin-top: -0.625rem;
  }
}
section#reason .reason_contents_wrapper .reason_main_contents .re_co {
  padding-top: 2.9375rem;
  padding-bottom: 3.1875rem;
}
@media screen and (max-width: 768px) {
  section#reason .reason_contents_wrapper .reason_main_contents .re_co {
    padding-top: 1.25rem;
    padding-bottom: 1.125rem;
  }
}
section#reason .reason_contents_wrapper .reason_main_contents .re_co:nth-child(n+2) {
  border-top: 2px solid #51a98d;
}
@media screen and (max-width: 768px) {
  section#reason .reason_contents_wrapper .reason_main_contents .re_co:nth-child(n+2) {
    border-top-width: 1px;
  }
}
section#reason .reason_contents_wrapper .reason_main_contents .re_co .re_co_head {
  display: flex;
  align-items: center;
  gap: 1.625rem;
}
@media screen and (max-width: 768px) {
  section#reason .reason_contents_wrapper .reason_main_contents .re_co .re_co_head {
    gap: 0.5625rem;
  }
}
section#reason .reason_contents_wrapper .reason_main_contents .re_co .re_co_head .re_co_number {
  font-size: 2.125rem;
  line-height: 1;
  text-align: center;
  color: #4fac8f;
  width: 6.25rem;
  height: auto;
  aspect-ratio: 1/1;
  background-color: #fff;
  border: 2px solid #4fac8f;
  border-radius: 50%;
  padding-top: 0.2em;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  section#reason .reason_contents_wrapper .reason_main_contents .re_co .re_co_head .re_co_number {
    font-size: 1.0625rem;
    width: 3.125rem;
    border-width: 1px;
  }
}
section#reason .reason_contents_wrapper .reason_main_contents .re_co .re_co_head .re_co_title {
  font-size: 2.1875rem;
  line-height: 1.4571428571;
}
@media screen and (max-width: 768px) {
  section#reason .reason_contents_wrapper .reason_main_contents .re_co .re_co_head .re_co_title {
    font-size: 1.09375rem;
  }
}
section#reason .reason_contents_wrapper .reason_main_contents .re_co .re_co_head .re_co_title .green {
  font-size: 2.625rem;
  color: #4fac8f;
}
@media screen and (max-width: 768px) {
  section#reason .reason_contents_wrapper .reason_main_contents .re_co .re_co_head .re_co_title .green {
    font-size: 1.3125rem;
    letter-spacing: -0.02em;
  }
}
section#reason .reason_contents_wrapper .reason_main_contents .re_co .re_co_main {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 2rem;
}
@media screen and (max-width: 768px) {
  section#reason .reason_contents_wrapper .reason_main_contents .re_co .re_co_main {
    margin-top: 0.875rem;
  }
}
section#reason .reason_contents_wrapper .reason_main_contents .re_co .re_co_main .re_co_main_image {
  width: 18.125rem;
  object-fit: contain;
  background-color: #fff;
  box-shadow: 0.5625rem 0.5625rem 0 #98c9ba;
  margin-top: 0.625rem;
}
@media screen and (max-width: 768px) {
  section#reason .reason_contents_wrapper .reason_main_contents .re_co .re_co_main .re_co_main_image {
    width: 9.0625rem;
    box-shadow: 0.28125rem 0.28125rem 0 #98c9ba;
    margin-top: 0.25rem;
  }
}
section#reason .reason_contents_wrapper .reason_main_contents .re_co .re_co_main .re_co_main_text {
  width: calc(100% - 18.125rem - 2.6875rem);
  font-size: 1.6875rem;
  line-height: 1.4540740741;
  letter-spacing: -0.04em;
  font-family: "hiragino-mincho-pron", sans-serif;
}
@media screen and (max-width: 768px) {
  section#reason .reason_contents_wrapper .reason_main_contents .re_co .re_co_main .re_co_main_text {
    width: calc(100% - 9.0625rem - 1.34375rem);
    font-size: 0.84375rem;
    letter-spacing: -0.01em;
  }
}
section#reason .reason_contents_wrapper .reason_main_contents .re_co .re_co_main .re_co_main_text .green {
  color: #3f816c;
}
@media screen and (max-width: 768px) {
  section#reason .reason_contents_wrapper .reason_main_contents .re_co .re_co_main .re_co_main_text .br_block {
    margin-top: 0;
  }
}

section#voice {
  background-color: #eaf7f2;
  padding-bottom: 3.125rem;
}
@media screen and (max-width: 768px) {
  section#voice {
    padding-bottom: 2.6875rem;
  }
}
section#voice::before {
  border-top-color: #ffffed;
}
section#voice .voice_title {
  width: 25rem;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  section#voice .voice_title {
    width: 13.8125rem;
    padding-right: 1.3125rem;
  }
}
section#voice .voice_contents_wrapper {
  margin-top: 3.375rem;
}
@media screen and (max-width: 768px) {
  section#voice .voice_contents_wrapper {
    margin-top: 1.5rem;
  }
}
section#voice .voice_contents_wrapper .voice_slider .slick-track {
  display: flex;
}
section#voice .voice_contents_wrapper .voice_slider .slick-slide {
  height: auto !important;
}
section#voice .voice_contents_wrapper .voice_slider .slide_item {
  background-color: #fff;
  padding: 2.375rem 1.875rem 2.625rem;
  border-radius: 1.25rem;
  box-shadow: 0.125rem 0.125rem 0.5rem rgba(7, 7, 7, 0.15);
}
@media screen and (max-width: 768px) {
  section#voice .voice_contents_wrapper .voice_slider .slide_item {
    padding: 1.59375rem 1.375rem 1.0625rem;
    border-radius: 0.625rem;
  }
}
@media screen and (max-width: 768px) {
  section#voice .voice_contents_wrapper .voice_slider .slide_item:nth-child(n+2) {
    margin-top: 2.125rem;
  }
}
section#voice .voice_contents_wrapper .voice_slider .slide_item .slide_item_head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
section#voice .voice_contents_wrapper .voice_slider .slide_item .slide_item_head .slide_item_head_left {
  width: calc(100% - 6.625rem - 1rem);
  color: #50a98d;
}
@media screen and (max-width: 768px) {
  section#voice .voice_contents_wrapper .voice_slider .slide_item .slide_item_head .slide_item_head_left {
    width: calc(100% - 5.0625rem - 0.5rem);
  }
}
section#voice .voice_contents_wrapper .voice_slider .slide_item .slide_item_head .slide_item_head_left .sihl_title {
  font-size: 1.625rem;
  line-height: 1.3251345119;
  border: 1px solid #50a98d;
  width: 6.75rem;
  height: 2.375rem;
}
@media screen and (max-width: 768px) {
  section#voice .voice_contents_wrapper .voice_slider .slide_item .slide_item_head .slide_item_head_left .sihl_title {
    font-size: 1.25rem;
    width: 5.15625rem;
    height: 1.8125rem;
  }
}
section#voice .voice_contents_wrapper .voice_slider .slide_item .slide_item_head .slide_item_head_left .sihl_list {
  margin-top: 1.5rem;
}
@media screen and (max-width: 768px) {
  section#voice .voice_contents_wrapper .voice_slider .slide_item .slide_item_head .slide_item_head_left .sihl_list {
    margin-top: 1.25rem;
  }
}
section#voice .voice_contents_wrapper .voice_slider .slide_item .slide_item_head .slide_item_head_left .sihl_list > li {
  position: relative;
  font-size: 1.25rem;
  line-height: 1;
  letter-spacing: -0.04em;
  font-family: "hiragino-mincho-pron", sans-serif;
  padding-left: 1.5rem;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  section#voice .voice_contents_wrapper .voice_slider .slide_item .slide_item_head .slide_item_head_left .sihl_list > li {
    font-size: 1.0625rem;
    padding-left: 1.25rem;
  }
}
section#voice .voice_contents_wrapper .voice_slider .slide_item .slide_item_head .slide_item_head_left .sihl_list > li:nth-child(n+2) {
  margin-top: 0.75rem;
}
@media screen and (max-width: 768px) {
  section#voice .voice_contents_wrapper .voice_slider .slide_item .slide_item_head .slide_item_head_left .sihl_list > li:nth-child(n+2) {
    margin-top: 0.625rem;
  }
}
section#voice .voice_contents_wrapper .voice_slider .slide_item .slide_item_head .slide_item_head_left .sihl_list > li::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 0.4375rem solid transparent;
  border-bottom: 0.4375rem solid transparent;
  border-left: 0.625rem solid #50a98d;
  border-right: 0;
}
@media screen and (max-width: 768px) {
  section#voice .voice_contents_wrapper .voice_slider .slide_item .slide_item_head .slide_item_head_left .sihl_list > li::before {
    border-top: 0.3125rem solid transparent;
    border-bottom: 0.3125rem solid transparent;
    border-left: 0.5rem solid #50a98d;
  }
}
section#voice .voice_contents_wrapper .voice_slider .slide_item .slide_item_head .slide_item_head_right {
  width: 6.625rem;
}
@media screen and (max-width: 768px) {
  section#voice .voice_contents_wrapper .voice_slider .slide_item .slide_item_head .slide_item_head_right {
    width: 5.0625rem;
  }
}
section#voice .voice_contents_wrapper .voice_slider .slide_item .slide_item_head .slide_item_head_right .sihr_type {
  display: block;
  font-size: 0.875rem;
  line-height: 1.8571428571;
  font-family: "hiragino-mincho-pron", sans-serif;
  text-align: center;
  margin-top: 0.25rem;
}
@media screen and (max-width: 768px) {
  section#voice .voice_contents_wrapper .voice_slider .slide_item .slide_item_head .slide_item_head_right .sihr_type {
    font-size: 0.6875rem;
  }
}
section#voice .voice_contents_wrapper .voice_slider .slide_item .slide_item_main {
  font-size: 1.21875rem;
  line-height: 1.4358974359;
  letter-spacing: -0.12em;
  font-family: "hiragino-mincho-pron", sans-serif;
  margin-top: 1.5rem;
}
@media screen and (max-width: 768px) {
  section#voice .voice_contents_wrapper .voice_slider .slide_item .slide_item_main {
    font-size: 0.9375rem;
    line-height: 1.4333333333;
    margin-top: 1.25rem;
  }
}
section#voice .voice_contents_wrapper .voice_slider .slide_item.slide_item_1 .underline {
  text-decoration-color: #e3da7d;
}
section#voice .voice_contents_wrapper .voice_slider .slide_item.slide_item_2 .underline {
  text-decoration-color: #9bc9c7;
}
section#voice .voice_contents_wrapper .voice_slider .slide_item.slide_item_3 .underline {
  text-decoration-color: #f5bcac;
}

section#result {
  padding-bottom: 3.75rem;
}
@media screen and (max-width: 768px) {
  section#result {
    padding-bottom: 2.40625rem;
  }
}
section#result::before {
  border-top-color: #eaf7f2;
}
section#result .result_contents_wrapper {
  margin-top: 3.6875rem;
  margin-bottom: 3.3125rem;
}
@media screen and (max-width: 768px) {
  section#result .result_contents_wrapper {
    margin-top: 1.5625rem;
    margin-bottom: 1.75rem;
  }
}
section#result .result_contents_wrapper .rs_co {
  border: 2px dotted #50a98d;
  border-radius: 0.625rem;
  padding: 2.5rem 1.875rem 4.5rem;
}
@media screen and (max-width: 768px) {
  section#result .result_contents_wrapper .rs_co {
    max-width: 25rem;
    margin-left: auto;
    margin-right: auto;
    padding: 1rem 0.9375rem 1.75rem;
  }
}
section#result .result_contents_wrapper .rs_co:nth-child(n+2) {
  margin-top: 3.1875rem;
}
@media screen and (max-width: 768px) {
  section#result .result_contents_wrapper .rs_co:nth-child(n+2) {
    margin-top: 1rem;
  }
}
section#result .result_contents_wrapper .rs_co .rs_co_title {
  display: flex;
  align-items: center;
  gap: 1.625rem;
}
@media screen and (max-width: 768px) {
  section#result .result_contents_wrapper .rs_co .rs_co_title {
    gap: 0.625rem;
  }
}
section#result .result_contents_wrapper .rs_co .rs_co_title::before {
  content: "";
  display: block;
  width: 1.6875rem;
  height: 1.6875rem;
  background-color: #4c4c4c;
  border-radius: 50%;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  section#result .result_contents_wrapper .rs_co .rs_co_title::before {
    width: 0.625rem;
    height: 0.625rem;
  }
}
section#result .result_contents_wrapper .rs_co .rs_co_title > span {
  display: block;
  font-size: 2.5rem;
  line-height: 1.4328358209;
  letter-spacing: 0.06em;
  font-family: "hiragino-mincho-pron", sans-serif;
}
@media screen and (max-width: 768px) {
  section#result .result_contents_wrapper .rs_co .rs_co_title > span {
    font-size: 0.9375rem;
    line-height: 1.4333333333;
  }
}
section#result .result_contents_wrapper .rs_co .rs_co_worries {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  margin-top: 1.375rem;
}
@media screen and (max-width: 768px) {
  section#result .result_contents_wrapper .rs_co .rs_co_worries {
    gap: 0.28125rem 0.5625rem;
    margin-top: 0.625rem;
  }
}
section#result .result_contents_wrapper .rs_co .rs_co_worries span {
  display: inline-block;
  font-size: 2.5rem;
  line-height: 1;
  letter-spacing: 0.03em;
  font-family: "hiragino-mincho-pron", sans-serif;
  color: #fff;
  background-color: #50a98d;
  padding: 0.625rem 1.5rem 0.75rem;
  border-radius: 1.875rem;
}
@media screen and (max-width: 768px) {
  section#result .result_contents_wrapper .rs_co .rs_co_worries span {
    font-size: 0.9375rem;
    padding: 0.21875rem 0.5rem 0.28125rem;
    border-radius: 0.6875rem;
  }
}
section#result .result_contents_wrapper .rs_co .rs_co_before_after {
  display: flex;
  justify-content: space-between;
  margin-top: 2.875rem;
}
@media screen and (max-width: 768px) {
  section#result .result_contents_wrapper .rs_co .rs_co_before_after {
    margin-top: 1.0625rem;
  }
}
section#result .result_contents_wrapper .rs_co .rs_co_before_after .rs_co_before,
section#result .result_contents_wrapper .rs_co .rs_co_before_after .rs_co_after {
  position: relative;
  width: 19.25rem;
  padding: 0.5rem;
  border: 1px solid;
  border-radius: 0.625rem;
}
@media screen and (max-width: 768px) {
  section#result .result_contents_wrapper .rs_co .rs_co_before_after .rs_co_before,
section#result .result_contents_wrapper .rs_co .rs_co_before_after .rs_co_after {
    width: 7.1875rem;
    padding: 0.1875rem;
    border-radius: 0.3125rem;
  }
}
section#result .result_contents_wrapper .rs_co .rs_co_before_after .rs_co_before > img,
section#result .result_contents_wrapper .rs_co .rs_co_before_after .rs_co_after > img {
  height: auto;
  aspect-ratio: 291/455;
  object-fit: cover;
}
section#result .result_contents_wrapper .rs_co .rs_co_before_after .rs_co_before > span,
section#result .result_contents_wrapper .rs_co .rs_co_before_after .rs_co_after > span {
  position: absolute;
  bottom: -1.5rem;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  font-size: 2.5rem;
  line-height: 1;
  letter-spacing: 0.06em;
  font-family: "hiragino-mincho-pron", sans-serif;
  width: 11.8125rem;
  height: 3rem;
  border-radius: 1.125rem;
  background-color: #fff;
  border: 1px solid;
}
@media screen and (max-width: 768px) {
  section#result .result_contents_wrapper .rs_co .rs_co_before_after .rs_co_before > span,
section#result .result_contents_wrapper .rs_co .rs_co_before_after .rs_co_after > span {
    bottom: -0.5625rem;
    font-size: 0.9375rem;
    width: 4.375rem;
    height: 1.125rem;
    border-radius: 0.5625rem;
  }
}
section#result .result_contents_wrapper .rs_co .rs_co_before_after .rs_co_before {
  border-color: #50a98d;
}
section#result .result_contents_wrapper .rs_co .rs_co_before_after .rs_co_before > span {
  color: #50a98d;
  border-color: #50a98d;
}
section#result .result_contents_wrapper .rs_co .rs_co_before_after .rs_co_after {
  border-color: #f57a3f;
}
section#result .result_contents_wrapper .rs_co .rs_co_before_after .rs_co_after > span {
  color: #f57a3f;
  border-color: #f57a3f;
}
section#result .result_contents_wrapper .rs_co .rs_co_before_after .rs_co_text {
  flex-direction: column;
  width: calc(100% - 38.5rem - 2rem);
  padding-bottom: 3.5rem;
}
@media screen and (max-width: 768px) {
  section#result .result_contents_wrapper .rs_co .rs_co_before_after .rs_co_text {
    width: calc(100% - 14.375rem - 0.5rem);
  }
}
section#result .result_contents_wrapper .rs_co .rs_co_before_after .rs_co_text > span {
  display: block;
  font-size: 2.25rem;
  line-height: 1.6;
  letter-spacing: 0.02em;
  font-family: "hiragino-mincho-pron", sans-serif;
  text-align: center;
}
@media screen and (max-width: 768px) {
  section#result .result_contents_wrapper .rs_co .rs_co_before_after .rs_co_text > span {
    font-size: 0.84375rem;
  }
}
section#result .result_contents_wrapper .rs_co .rs_co_before_after .rs_co_text > img {
  width: 3.125rem;
  height: 2.5rem;
  object-fit: contain;
  margin-top: 1.75rem;
}
@media screen and (max-width: 768px) {
  section#result .result_contents_wrapper .rs_co .rs_co_before_after .rs_co_text > img {
    width: 1.25rem;
    height: 0.9375rem;
    margin-top: 0.8125rem;
  }
}

section#ratio {
  background-color: #eaf7f2;
  padding-bottom: 4rem;
}
@media screen and (max-width: 768px) {
  section#ratio {
    padding-bottom: 2.375rem;
  }
}
section#ratio::before {
  border-top-color: #fff;
}
section#ratio .ratio_contents_wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 2.75rem;
}
@media screen and (max-width: 768px) {
  section#ratio .ratio_contents_wrapper {
    flex-direction: column;
    align-items: center;
    gap: 1.375rem;
    margin-top: 1.25rem;
  }
}
section#ratio .ratio_contents_wrapper .rt_co {
  width: 17.4375rem;
  max-width: 100%;
  background-color: #fff;
  border: 1px dotted #50a98d;
  border-radius: 0.625rem;
  padding: 1.125rem 0.5rem 1rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  section#ratio .ratio_contents_wrapper .rt_co {
    width: 20.3125rem;
  }
}
section#ratio .ratio_contents_wrapper .rt_co .rt_co_title {
  display: inline-block;
  font-size: 1.125rem;
  padding: 0 0.25rem;
  border-bottom: 1px solid #272727;
}
section#ratio .ratio_contents_wrapper .rt_co .rt_co_image {
  height: 11.25rem;
  object-fit: contain;
  margin-top: 1rem;
}
@media screen and (max-width: 768px) {
  section#ratio .ratio_contents_wrapper .rt_co .rt_co_image {
    height: auto;
    margin-top: 0.5rem;
  }
}
section#ratio .ratio_contents_wrapper .rt_co.co1 .rt_co_image {
  padding-right: 0.5rem;
}
section#ratio .ratio_contents_wrapper .rt_co.co2 .rt_co_image {
  padding-left: 0.5rem;
}
section#ratio .ratio_contents_wrapper .rt_co.co3 .rt_co_image {
  padding-left: 0.625rem;
}

section#features {
  position: relative;
  z-index: 600;
  background-color: #fbfbf1;
}
section#features .innerbox_870 {
  position: relative;
  z-index: 500;
  overflow: hidden;
  padding-top: 4.5rem;
  padding-bottom: 5.875rem;
}
@media screen and (max-width: 768px) {
  section#features .innerbox_870 {
    padding-top: 2.5rem;
    padding-bottom: 1.25rem;
  }
}
@media screen and (max-width: 480px) {
  section#features .innerbox_870 {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
section#features .features_title {
  color: #3a3939;
}
section#features .features_title::before, section#features .features_title::after {
  background-color: #3a3939;
}
section#features .features_contents_wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2.5rem 2rem;
  margin-top: 3.75rem;
}
@media screen and (max-width: 768px) {
  section#features .features_contents_wrapper {
    gap: 1.1875rem;
    margin-top: 2.625rem;
  }
}
section#features .features_contents_wrapper .ft_co {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: calc((100% - 2rem) / 2);
}
@media screen and (max-width: 768px) {
  section#features .features_contents_wrapper .ft_co {
    width: 100%;
  }
}
section#features .features_contents_wrapper .ft_co .ft_co_image {
  width: 9.6875rem;
}
@media screen and (max-width: 768px) {
  section#features .features_contents_wrapper .ft_co .ft_co_image {
    width: 7.4375rem;
  }
}
section#features .features_contents_wrapper .ft_co .ft_co_text_wrapper {
  width: calc(100% - 9.6875rem - 0.5rem);
  padding-top: 0.5rem;
}
@media screen and (max-width: 768px) {
  section#features .features_contents_wrapper .ft_co .ft_co_text_wrapper {
    width: calc(100% - 7.4375rem - 0.78125rem);
    padding-top: 0.75rem;
  }
}
section#features .features_contents_wrapper .ft_co .ft_co_text_wrapper .ft_co_title {
  font-size: 1.4375rem;
  line-height: 1.2286838653;
  letter-spacing: -0.02em;
  color: #72babe;
}
@media screen and (max-width: 768px) {
  section#features .features_contents_wrapper .ft_co .ft_co_text_wrapper .ft_co_title {
    font-size: 1.09375rem;
  }
}
section#features .features_contents_wrapper .ft_co .ft_co_text_wrapper .ft_co_content {
  font-size: 1.225rem;
  line-height: 1.4336734694;
  letter-spacing: -0.02em;
  font-family: "hiragino-mincho-pron", sans-serif;
  margin-top: 0.625rem;
}
@media screen and (max-width: 768px) {
  section#features .features_contents_wrapper .ft_co .ft_co_text_wrapper .ft_co_content {
    font-size: 0.9375rem;
    line-height: 1.4333333333;
    margin-top: 0.375rem;
  }
}
section#features .decoration_image {
  position: absolute;
  z-index: -1;
  height: auto;
  aspect-ratio: 171/168;
  object-fit: contain;
}
section#features .decoration_image.top {
  display: none;
}
@media screen and (max-width: 768px) {
  section#features .decoration_image.top {
    display: block;
    width: 7.625rem;
    transform: rotate(-100deg);
    right: 0;
    top: 0;
  }
}
section#features .decoration_image.bottom {
  width: 10.6875rem;
  right: 3rem;
  bottom: 5.875rem;
}
@media screen and (max-width: 768px) {
  section#features .decoration_image.bottom {
    width: 7.1875rem;
    right: initial;
    left: -0.9375rem;
    bottom: -1.6875rem;
  }
}

section#flow {
  padding-top: 5.75rem;
  padding-bottom: 3.9375rem;
}
@media screen and (max-width: 768px) {
  section#flow {
    padding-top: 2.375rem;
    padding-bottom: 2.5625rem;
  }
}
section#flow .flow_title {
  color: #272727;
}
section#flow .flow_contents_wrapper {
  margin-top: 3rem;
}
@media screen and (max-width: 768px) {
  section#flow .flow_contents_wrapper {
    margin-top: 1.5rem;
  }
}
section#flow .flow_contents_wrapper .fl_co {
  display: flex;
}
section#flow .flow_contents_wrapper .fl_co:nth-last-child(1) .fl_co_number::after {
  display: none;
}
section#flow .flow_contents_wrapper .fl_co:nth-child(n+2) {
  margin-top: 2.5rem;
}
@media screen and (max-width: 768px) {
  section#flow .flow_contents_wrapper .fl_co:nth-child(n+2) {
    margin-top: 0.75rem;
  }
}
section#flow .flow_contents_wrapper .fl_co .fl_co_number {
  position: relative;
  width: 4.1875rem;
  font-size: 2.75rem;
  line-height: 1;
  color: #fff;
  background-color: #63b4bc;
  border-radius: 0.9375rem 0 0 0.9375rem;
}
@media screen and (max-width: 768px) {
  section#flow .flow_contents_wrapper .fl_co .fl_co_number {
    width: 2.09375rem;
    font-size: 1.375rem;
    border-radius: 0.46875rem 0 0 0.46875rem;
  }
}
section#flow .flow_contents_wrapper .fl_co .fl_co_number::after {
  content: "↓";
  display: block;
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  opacity: 0.46;
}
@media screen and (max-width: 768px) {
  section#flow .flow_contents_wrapper .fl_co .fl_co_number::after {
    bottom: 0.875rem;
  }
}
section#flow .flow_contents_wrapper .fl_co .fl_co_main {
  width: calc(100% - 4.1875rem);
  background-color: #eff3f6;
  padding: 2.1875rem 1.9375rem 2.5rem;
  border-radius: 0 0.9375rem 0.9375rem 0;
}
@media screen and (max-width: 768px) {
  section#flow .flow_contents_wrapper .fl_co .fl_co_main {
    width: calc(100% - 2.09375rem);
    padding: 1rem 0.25rem 1rem 1rem;
    border-radius: 0 0.46875rem 0.46875rem 0;
  }
}
section#flow .flow_contents_wrapper .fl_co .fl_co_main .fl_co_main_upper {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
@media screen and (max-width: 768px) {
  section#flow .flow_contents_wrapper .fl_co .fl_co_main .fl_co_main_upper {
    gap: 0.75rem;
  }
}
section#flow .flow_contents_wrapper .fl_co .fl_co_main .fl_co_main_upper .fl_co_image {
  width: 13.25rem;
  height: 9.3125rem;
  object-fit: cover;
}
@media screen and (max-width: 768px) {
  section#flow .flow_contents_wrapper .fl_co .fl_co_main .fl_co_main_upper .fl_co_image {
    width: 6.6875rem;
    height: 4.6875rem;
  }
}
section#flow .flow_contents_wrapper .fl_co .fl_co_main .fl_co_main_upper .fl_co_title {
  width: calc(100% - 13.25rem - 1.5rem);
}
@media screen and (max-width: 768px) {
  section#flow .flow_contents_wrapper .fl_co .fl_co_main .fl_co_main_upper .fl_co_title {
    width: calc(100% - 6.6875rem - 0.75rem);
  }
}
section#flow .flow_contents_wrapper .fl_co .fl_co_main .fl_co_main_upper .fl_co_title > span {
  font-size: 2rem;
  line-height: 1.3029841657;
  letter-spacing: 0.02em;
  color: #63b4bc;
  border-bottom: 1px solid #63b4bc;
  padding-bottom: 0.5rem;
}
@media screen and (max-width: 768px) {
  section#flow .flow_contents_wrapper .fl_co .fl_co_main .fl_co_main_upper .fl_co_title > span {
    font-size: 1rem;
    padding-bottom: 0.375rem;
  }
}
section#flow .flow_contents_wrapper .fl_co .fl_co_main .fl_co_main_lower {
  font-size: 1.875rem;
  line-height: 1.2666666667;
  letter-spacing: 0.02em;
  font-family: "hiragino-mincho-pron", sans-serif;
  margin-top: 2rem;
}
@media screen and (max-width: 768px) {
  section#flow .flow_contents_wrapper .fl_co .fl_co_main .fl_co_main_lower {
    font-size: 0.9375rem;
    letter-spacing: -0.02em;
    margin-top: 1rem;
  }
}
section#flow .flow_contents_wrapper .fl_co .fl_co_main .fl_co_main_lower .green {
  color: #4a858b;
}

section#price {
  background-color: #ffffed;
  padding-top: 3rem;
  padding-bottom: 5.4375rem;
}
@media screen and (max-width: 768px) {
  section#price {
    padding-top: 1.5rem;
    padding-bottom: 3.0625rem;
  }
}
section#price .price_title_head {
  width: 3.25rem;
  height: auto;
  aspect-ratio: 1/1;
  object-fit: contain;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 768px) {
  section#price .price_title_head {
    width: 1.625rem;
  }
}
section#price .price_title {
  margin-top: 1.875rem;
}
@media screen and (max-width: 768px) {
  section#price .price_title {
    margin-top: 0.9375rem;
  }
}
section#price .price_explain {
  font-size: 1.8125rem;
  line-height: 1.3103448276;
  letter-spacing: -0.02em;
  font-family: "hiragino-mincho-pron", sans-serif;
  margin-top: 2.5rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  section#price .price_explain {
    font-size: 0.90625rem;
    margin-top: 1.25rem;
  }
}
section#price .price_contents_wrapper {
  margin-top: 3.25rem;
}
@media screen and (max-width: 768px) {
  section#price .price_contents_wrapper {
    margin-top: 1.5rem;
  }
}
section#price .price_contents_wrapper .price_subtitle {
  width: 17.0625rem;
  height: 2.8125rem;
  font-size: 1.8125rem;
  line-height: 1;
  letter-spacing: 0.02em;
  font-family: "hiragino-mincho-pron", sans-serif;
  color: #fff;
  background-color: #489d83;
  border-radius: 1.375rem;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 768px) {
  section#price .price_contents_wrapper .price_subtitle {
    width: 9.0625rem;
    height: 1.5rem;
    font-size: 1rem;
    border-radius: 0.75rem;
  }
}
section#price .price_contents_wrapper .price_contents_inner {
  display: flex;
  flex-wrap: wrap;
  border: 2px dotted #489d83;
  border-radius: 1.25rem;
  padding: 2rem 0.5rem;
  margin-top: -1.375rem;
}
@media screen and (max-width: 768px) {
  section#price .price_contents_wrapper .price_contents_inner {
    border-radius: 0.625rem;
    padding: 0.125rem 0.875rem;
    margin-top: -0.75rem;
  }
}
section#price .price_contents_wrapper .price_contents_inner .pr_co {
  width: 50%;
  padding: 1.75rem 1.375rem;
}
@media screen and (max-width: 768px) {
  section#price .price_contents_wrapper .price_contents_inner .pr_co {
    width: 100%;
    padding: 1.125rem 0;
  }
}
section#price .price_contents_wrapper .price_contents_inner .pr_co .pr_co_title {
  font-size: 1.34375rem;
  line-height: 1.1513463324;
  letter-spacing: 0.02em;
  font-family: "hiragino-mincho-pron", sans-serif;
  border-left: 0.5rem solid #50a98d;
  padding-left: 0.625rem;
}
@media screen and (max-width: 768px) {
  section#price .price_contents_wrapper .price_contents_inner .pr_co .pr_co_title {
    font-size: 1rem;
    border-left: 0.375rem solid #50a98d;
    padding-left: 0.6875rem;
  }
}
section#price .price_contents_wrapper .price_contents_inner .pr_co .pr_co_text {
  padding: 1.25rem 1.25rem 0 1.25rem;
}
@media screen and (max-width: 768px) {
  section#price .price_contents_wrapper .price_contents_inner .pr_co .pr_co_text {
    padding: 0.9375rem 0.9375rem 0 0.9375rem;
  }
}
section#price .price_contents_wrapper .price_contents_inner .pr_co.co2 {
  border-left: 1px solid #50a98d;
}
@media screen and (max-width: 768px) {
  section#price .price_contents_wrapper .price_contents_inner .pr_co.co2 {
    border-left: none;
    border-top: 1px solid #50a98d;
  }
}
section#price .price_contents_wrapper::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 1.75rem solid transparent;
  border-left: 1.75rem solid transparent;
  border-top: 1.125rem solid #50a98d;
  border-bottom: 0;
  margin: 2.3125rem auto 2.5625rem;
}
@media screen and (max-width: 768px) {
  section#price .price_contents_wrapper::after {
    border-right: 0.875rem solid transparent;
    border-left: 0.875rem solid transparent;
    border-top: 0.5625rem solid #50a98d;
    margin: 0.78125rem auto 1.3125rem;
  }
}

section#faq {
  background-color: #eff3f6;
  padding-top: 3.75rem;
  padding-bottom: 7.0625rem;
}
@media screen and (max-width: 768px) {
  section#faq {
    padding-top: 2.1875rem;
    padding-bottom: 3.125rem;
  }
}
section#faq .faq_contents_wrapper {
  margin-top: 3.75rem;
}
@media screen and (max-width: 768px) {
  section#faq .faq_contents_wrapper {
    margin-top: 1.875rem;
  }
}
section#faq .faq_contents_wrapper .faq_co {
  border: 2px solid #64b4bc;
  border-radius: 0.625rem;
  box-shadow: 0.0625rem 0.0625rem 0.125rem rgba(78, 87, 88, 0.36);
}
@media screen and (max-width: 768px) {
  section#faq .faq_contents_wrapper .faq_co {
    border-radius: 0.3125rem;
    border-width: 1px;
  }
}
section#faq .faq_contents_wrapper .faq_co:nth-child(n+2) {
  margin-top: 2.1875rem;
}
@media screen and (max-width: 768px) {
  section#faq .faq_contents_wrapper .faq_co:nth-child(n+2) {
    margin-top: 0.9375rem;
  }
}
section#faq .faq_contents_wrapper .faq_co .faq_co_title,
section#faq .faq_contents_wrapper .faq_co .faq_co_content {
  display: flex;
  font-size: 1.6875rem;
  line-height: 1.4668525403;
  font-family: "hiragino-mincho-pron", sans-serif;
  gap: 0.6875rem;
}
@media screen and (max-width: 768px) {
  section#faq .faq_contents_wrapper .faq_co .faq_co_title,
section#faq .faq_contents_wrapper .faq_co .faq_co_content {
    font-size: 1rem;
    gap: 0.34375rem;
  }
}
section#faq .faq_contents_wrapper .faq_co .faq_co_title::before,
section#faq .faq_contents_wrapper .faq_co .faq_co_content::before {
  font-size: 1.875rem;
  line-height: inherit;
  letter-spacing: inherit;
  font-family: inherit;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  section#faq .faq_contents_wrapper .faq_co .faq_co_title::before,
section#faq .faq_contents_wrapper .faq_co .faq_co_content::before {
    font-size: 0.9375rem;
  }
}
section#faq .faq_contents_wrapper .faq_co .faq_co_title {
  color: #fff;
  background-color: #64b4bc;
  padding: 0.75rem 1.25rem 0.875rem;
  border-radius: 0.625rem 0.625rem 0 0;
}
@media screen and (max-width: 768px) {
  section#faq .faq_contents_wrapper .faq_co .faq_co_title {
    padding: 0.4375rem 0.8125rem 0.4375rem;
    border-radius: 0.3125rem 0.3125rem 0 0;
  }
}
section#faq .faq_contents_wrapper .faq_co .faq_co_title::before {
  content: "Q.";
}
section#faq .faq_contents_wrapper .faq_co .faq_co_content {
  letter-spacing: -0.02em;
  background-color: #fff;
  padding: 1.25rem 1.25rem;
  border-radius: 0 0 0.625rem 0.625rem;
}
@media screen and (max-width: 768px) {
  section#faq .faq_contents_wrapper .faq_co .faq_co_content {
    padding: 0.75rem 0.75rem 0.875rem;
    border-radius: 0 0 0.3125rem 0.3125rem;
  }
}
section#faq .faq_contents_wrapper .faq_co .faq_co_content::before {
  content: "A.";
}

section#director {
  background-color: #ffffed;
  padding-top: 4.25rem;
  padding-bottom: 5.5rem;
}
@media screen and (max-width: 768px) {
  section#director {
    padding-top: 2rem;
    padding-bottom: 2.5rem;
  }
}
section#director .director_contents_wrapper {
  margin-top: 3.25rem;
}
@media screen and (max-width: 768px) {
  section#director .director_contents_wrapper {
    margin-top: 1.375rem;
  }
}
section#director .director_contents_wrapper .dc_co_list {
  margin-top: 1.75rem;
}
@media screen and (max-width: 768px) {
  section#director .director_contents_wrapper .dc_co_list {
    margin-top: 0.625rem;
  }
}
section#director .director_contents_wrapper .dc_co_list .dc_co_listitem:nth-child(n+2) {
  margin-top: 2.5rem;
}
@media screen and (max-width: 768px) {
  section#director .director_contents_wrapper .dc_co_list .dc_co_listitem:nth-child(n+2) {
    margin-top: 0.875rem;
  }
}
section#director .director_contents_wrapper .dc_co_list .dc_co_listitem .dc_co_listitem_title {
  display: inline-block;
  position: relative;
  padding: 0 0.1875rem 0.5625rem 1.9375rem;
  border-bottom: 1px solid #50a98d;
  font-size: 1.875rem;
  line-height: 1;
  font-family: "hiragino-mincho-pron", sans-serif;
  color: #50a98d;
}
@media screen and (max-width: 768px) {
  section#director .director_contents_wrapper .dc_co_list .dc_co_listitem .dc_co_listitem_title {
    padding: 0 0.1875rem 0.1875rem 0.875rem;
    font-size: 0.9375rem;
  }
}
section#director .director_contents_wrapper .dc_co_list .dc_co_listitem .dc_co_listitem_title::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 0.8125rem;
  height: calc(100% - 0.5625rem);
  background-color: #50a98d;
}
@media screen and (max-width: 768px) {
  section#director .director_contents_wrapper .dc_co_list .dc_co_listitem .dc_co_listitem_title::before {
    width: 0.46875rem;
    height: calc(100% - 0.1875rem);
  }
}
section#director .director_contents_wrapper .dc_co_list .dc_co_listitem .dc_co_listitem_title.black {
  color: #262626;
}
section#director .director_contents_wrapper .dc_co_list .dc_co_listitem .dc_co_listitem_content {
  font-size: 1.6875rem;
  line-height: 1.4444444444;
  font-family: "hiragino-mincho-pron", sans-serif;
  padding: 0.625rem 0 0 1.9375rem;
}
@media screen and (max-width: 768px) {
  section#director .director_contents_wrapper .dc_co_list .dc_co_listitem .dc_co_listitem_content {
    font-size: 0.84375rem;
    padding: 0.25rem 0.875rem 0;
  }
}
section#director .director_contents_wrapper .dc_co_list .dc_co_listitem .dc_co_listitem_content.big {
  font-size: 2.5625rem;
}
@media screen and (max-width: 768px) {
  section#director .director_contents_wrapper .dc_co_list .dc_co_listitem .dc_co_listitem_content.big {
    font-size: 1.25rem;
  }
}
section#director .director_contents_wrapper .dc_co_list .dc_co_listitem .dc_co_listitem_content__padding_adjust {
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  section#director .director_contents_wrapper .dc_co_list .dc_co_listitem .dc_co_listitem_content__padding_adjust {
    font-size: 0.8125rem;
    padding-right: 0;
  }
}
section#director .director_contents_wrapper .dc_co_upper {
  position: relative;
  display: flex;
  justify-content: space-between;
}
section#director .director_contents_wrapper .dc_co_upper .dc_co_upper_left {
  width: calc(100% - 16.5625rem - 2rem);
  padding-top: 0.5rem;
}
@media screen and (max-width: 768px) {
  section#director .director_contents_wrapper .dc_co_upper .dc_co_upper_left {
    width: 100%;
    padding-top: 0.25rem;
  }
}
section#director .director_contents_wrapper .dc_co_upper .dc_co_upper_left .dc_co_title {
  display: inline-block;
  font-size: 1.625rem;
  line-height: 1;
  letter-spacing: -0.04em;
  color: #fff;
  background-color: #50a98d;
  padding: 0.4375rem 0.875rem;
}
@media screen and (max-width: 768px) {
  section#director .director_contents_wrapper .dc_co_upper .dc_co_upper_left .dc_co_title {
    font-size: 0.84375rem;
    letter-spacing: -0.08em;
    padding: 0.21875rem 0.4375rem;
  }
}
section#director .director_contents_wrapper .dc_co_upper .dc_co_upper_right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 16.5625rem;
}
@media screen and (max-width: 768px) {
  section#director .director_contents_wrapper .dc_co_upper .dc_co_upper_right {
    position: absolute;
    right: 0;
    top: 0;
    width: 8.84375rem;
  }
}
section#director .director_contents_wrapper .dc_co_upper .dc_co_upper_right .director_bg {
  width: 11.1875rem;
  height: 11.0625rem;
  object-fit: contain;
  margin: 1.625rem 0 0 auto;
}
@media screen and (max-width: 768px) {
  section#director .director_contents_wrapper .dc_co_upper .dc_co_upper_right .director_bg {
    width: 4.53125rem;
    height: 5.53125rem;
    margin-top: 2.5rem;
  }
}
@media screen and (max-width: 768px) {
  section#director .director_contents_wrapper .dc_co_lower .dc_co_list {
    margin-top: 0.75rem;
  }
}
section#director .director_contents_wrapper .dc_co_lower .dc_co_list .dc_co_listitem .dc_co_listitem_content {
  letter-spacing: -0.06em;
}
@media screen and (max-width: 768px) {
  section#director .director_contents_wrapper .dc_co_lower .dc_co_list .dc_co_listitem .dc_co_listitem_content {
    letter-spacing: 0;
  }
}
section#director .director_contents_wrapper .dc_co_lower .middle_block {
  width: fit-content;
  border: 2px dotted #50a98d;
  border-radius: 0.625rem;
  padding: 1.25rem 2.5625rem;
  margin: 1.5rem 0 2rem;
}
@media screen and (max-width: 768px) {
  section#director .director_contents_wrapper .dc_co_lower .middle_block {
    border-width: 1px;
    border-radius: 0.3125rem;
    padding: 0.78125rem 1.125rem;
    margin: 1rem 0;
  }
}
section#director .director_contents_wrapper .dc_co_lower .middle_block .mb_co {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
}
@media screen and (max-width: 768px) {
  section#director .director_contents_wrapper .dc_co_lower .middle_block .mb_co {
    gap: 0.5rem;
  }
}
section#director .director_contents_wrapper .dc_co_lower .middle_block .mb_co:nth-child(n+2) {
  margin-top: 2.5rem;
}
@media screen and (max-width: 768px) {
  section#director .director_contents_wrapper .dc_co_lower .middle_block .mb_co:nth-child(n+2) {
    margin-top: 1.25rem;
  }
}
section#director .director_contents_wrapper .dc_co_lower .middle_block .mb_co:nth-child(n+2)::after {
  content: "";
  display: block;
  position: absolute;
  top: -1.5rem;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 0.5625rem solid transparent;
  border-left: 0.5625rem solid transparent;
  border-top: 0.4375rem solid #262626;
  border-bottom: 0;
}
@media screen and (max-width: 768px) {
  section#director .director_contents_wrapper .dc_co_lower .middle_block .mb_co:nth-child(n+2)::after {
    top: -0.875rem;
    border-right: 0.3125rem solid transparent;
    border-left: 0.25rem solid transparent;
    border-top: 0.21875rem solid #262626;
  }
}
section#director .director_contents_wrapper .dc_co_lower .middle_block .mb_co span {
  font-size: 2rem;
  line-height: 1.59375;
  letter-spacing: 0.01em;
}
@media screen and (max-width: 768px) {
  section#director .director_contents_wrapper .dc_co_lower .middle_block .mb_co span {
    font-size: 1rem;
  }
}
section#director .director_contents_wrapper .dc_co_lower .middle_block .mb_co span.number {
  width: 2.6875rem;
  height: 2.6875rem;
  color: #fff;
  background-color: #50a98d;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  section#director .director_contents_wrapper .dc_co_lower .middle_block .mb_co span.number {
    width: 1.34375rem;
    height: 1.34375rem;
  }
}
section#director .director_contents_wrapper .dc_co_lower .middle_block .mb_co span.text {
  display: block;
  color: #50a98d;
}

section#information {
  background-image: url(../../assets/img/information_bg.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 3.375rem;
  padding-bottom: 6rem;
}
@media screen and (max-width: 768px) {
  section#information {
    padding-top: 2.5rem;
    padding-bottom: 1.75rem;
  }
}
section#information .information_title {
  color: #262626;
}
section#information .information_title::before, section#information .information_title::after {
  background-color: #262626;
}
section#information .information_contents_wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 3.5rem 1rem;
  margin-top: 2.125rem;
}
@media screen and (max-width: 768px) {
  section#information .information_contents_wrapper {
    gap: 1.25rem;
    margin-top: 1.8125rem;
  }
}
section#information .information_contents_wrapper .if_co.image_wrapper {
  display: flex;
  justify-content: center;
  gap: 2.375rem;
  width: 100%;
}
@media screen and (max-width: 768px) {
  section#information .information_contents_wrapper .if_co.image_wrapper {
    gap: 0.75rem;
  }
}
section#information .information_contents_wrapper .if_co.image_wrapper .if_co_image {
  max-width: calc((100% - 2.375rem) / 2);
  width: 16rem;
  height: auto;
  aspect-ratio: 256/191;
  object-fit: cover;
  box-shadow: 0.3125rem 0.3125rem 0 rgba(80, 169, 141, 0.4);
}
@media screen and (max-width: 768px) {
  section#information .information_contents_wrapper .if_co.image_wrapper .if_co_image {
    width: 9.6875rem;
    max-width: calc((100% - 0.75rem) / 2);
  }
}
section#information .information_contents_wrapper .if_co.text_wrapper {
  width: calc(100% - 22.6875rem - 1rem);
}
@media screen and (max-width: 768px) {
  section#information .information_contents_wrapper .if_co.text_wrapper {
    width: 100%;
  }
}
section#information .information_contents_wrapper .if_co.text_wrapper table.if_co_table {
  width: 100%;
}
section#information .information_contents_wrapper .if_co.text_wrapper table.if_co_table tr {
  vertical-align: top;
}
section#information .information_contents_wrapper .if_co.text_wrapper table.if_co_table tr th.title,
section#information .information_contents_wrapper .if_co.text_wrapper table.if_co_table tr td.content {
  font-size: 1.3125rem;
  line-height: 1.4448128849;
  letter-spacing: 0.04em;
  font-family: "hiragino-mincho-pron", sans-serif;
  text-align: left;
  padding: 0.3125rem 0.125rem;
}
@media screen and (max-width: 768px) {
  section#information .information_contents_wrapper .if_co.text_wrapper table.if_co_table tr th.title,
section#information .information_contents_wrapper .if_co.text_wrapper table.if_co_table tr td.content {
    font-size: 0.875rem;
    padding: 0.1875rem 0;
  }
}
section#information .information_contents_wrapper .if_co.text_wrapper table.if_co_table tr th.title {
  white-space: nowrap;
}
section#information .information_contents_wrapper .if_co.text_wrapper table.if_co_table tr th.title > span {
  padding-left: 1rem;
  padding-right: 1rem;
  border-left: 0.625rem solid #50a98d;
}
@media screen and (max-width: 768px) {
  section#information .information_contents_wrapper .if_co.text_wrapper table.if_co_table tr th.title > span {
    padding-left: 0.65625rem;
    padding-right: 0.65625rem;
    border-left: 0.46875rem solid #50a98d;
  }
}
section#information .information_contents_wrapper .if_co.map_wrapper {
  width: 22.6875rem;
}
@media screen and (max-width: 768px) {
  section#information .information_contents_wrapper .if_co.map_wrapper {
    width: 100%;
    height: 14.8125rem;
  }
}
section#information .information_contents_wrapper .if_co.map_wrapper iframe {
  width: 100%;
  height: 100%;
}

/* 下層ページ */

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