@charset "utf-8";

/* Header */
.site-header {
  top: 40px;
}
.site-header__inner {
  width: min(1400px, calc(100% - 40px));
  height: 72px;
  padding: 0 136px 0 72px;
  border-radius: 45px;
  gap: 24px;
}
@media screen and (max-width: 1024px) {
  .site-header__inner {
    padding: 0 40px 0 40px;
  }
}
.site-header__logo {
  flex-shrink: 0;
}
.site-header__menu {
  display: none;
}
.global-nav__accordion {
  gap: 10px;
}

@media screen and (max-width: 767px) {
  /* Layout */
  .l-inner {
    width: calc(100% - 40px);
  }

  /* Header */
  .site-header {
    top: 11px;
    transition: background .25s var(--ease);
  }
  .site-header__inner {
    width: min(calc(100% - 16px), 100%);
    height: 56px;
    padding: 0 16px;
    border-radius: 100px;
  }
  .site-header__logo img {
    width: 90px;
  }
  .site-header__menu {
    position: relative;
    display: block;
    width: 40px;
    height: 40px;
    border-radius: 50px;
    background: #F6F7F5;
  }
  .site-header.is-open .site-header__menu {
    position: fixed;
    top: 19px;
    right: 24px;
  }
  .site-header__menu::before,
  .site-header__menu span {
    position: absolute;
    left: 11px;
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 16px;
    background: var(--color-green);
    content: "";
    transition: opacity .2s var(--ease), transform .25s var(--ease);
  }
  .site-header__menu span:first-child {
    top: 14px;
  }
  .site-header__menu::before {
    top: 19px;
  }
  .site-header__menu span:last-child {
    top: 24px;
  }
  .site-header.is-open {
    top: 0;
    bottom: 0;
    overflow-y: auto;
    /*background: var(--color-green);*/
    background: #247048;
    pointer-events: auto;
  }
  .site-header.is-open .site-header__inner {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    width: 100%;
    min-height: 56px;
    padding: 19px 24px 64px;
    border-radius: 0;
    background: unset;
  }
  .site-header.is-open .site-header__menu::before {
    opacity: 0;
  }
  .site-header.is-open .site-header__menu span:first-child {
    top: 19px;
    transform: rotate(45deg);
  }
  .site-header.is-open .site-header__menu span:last-child {
    top: 19px;
    transform: rotate(-45deg);
  }
  .site-header.is-open .site-header__logo {
    opacity: 0;
    pointer-events: none;
  }
  .global-nav {
    position: static;
    grid-column: 1 / -1;
    display: none;
    width: min(calc(100vw - 32px), 100%);
    margin: 0 auto 0;
    padding: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    padding-bottom: 64px;
  }
  .site-header.is-open .global-nav {
    display: block;
  }
  .global-nav__list--pc {
    display: none;
  }
  .global-nav__accordion {
    display: block;
  }
  .global-nav__section {
  }
  .global-nav__section.is-open {
    border-color: rgba(0, 0, 0, .1);
  }
  .global-nav__section:hover .global-nav__heading {
    color: #fff;
    background: unset;
  }
  .global-nav__section:hover .global-nav__sublist, .global-nav__section:focus-within .global-nav__sublist {
  transform: translate(-50%,8px);
  }
  .global-nav__heading,
  .global-nav__heading a {
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    text-align: left;
    padding: 0;
    line-height: 1.35;
  }
  .global-nav__heading a {
    padding: 0;
  }
  .global-nav__toggle {
    position: relative;
    width: 100%;
    padding: 16.5px 28px 16.7px 2px;
    color: #0a0a0a;
    font-size: 14.7px;
    font-weight: 700;
    line-height: 1.85;
    text-align: left;
  }
  .global-nav__toggle::before,
  .global-nav__toggle::after {
    position: absolute;
    top: 50%;
    right: 3px;
    width: 14px;
    height: 2px;
    border-radius: 2px;
    background: #878787;
    content: "";
    transform: translateY(-50%);
  }
  .global-nav__toggle::after {
    transform: translateY(-50%) rotate(90deg);
  }
  .global-nav__toggle[aria-expanded="true"]::after {
    opacity: 0;
  }
  .global-nav__sublist {
    display: grid;
    gap: 8px;
    padding: 0 0 24px 16px;
  }
  .global-nav__sublist {
    display: flex;
    opacity: 1;
    position: relative;
    background: unset;
    box-shadow: unset;
    text-align: left;
  }
  .global-nav__sublist a {
    color: #fff;
    font-size: 24px;
    font-weight: 400;
    line-height: 1.35;
    white-space: normal;
  }
}

/* Top page */
.kv {
  height: 100vh;
}
.kv__copy {
  left: max(48px, calc((100vw - 1440px) / 2 + 92px));
  bottom: 83px;
  font-size: 36px;
}
.kv__control {
  right: max(24px, calc((100vw - 1440px) / 2 + 140px));
  bottom: 33px;
  width: min(1110px, calc(100vw - 230px));
  height: 44px;
}
.voice {
  padding: 120px 0;
}
.section-heading__en {
  font-size: 63px;
}
.section-heading__ja {
  font-size: 20px;
}
.voice-slider {
  width: calc(100% + 24px);
  margin-top: 32px;
  margin-left: -12px;
  opacity: 0;
  transition: opacity .3s linear;
}
.voice-slider.slick-initialized {
  opacity: 1;
}
.voice-slider .slick-track {
  display: flex;
}
.voice-slider .slick-slide {
  height: auto !important;
}
.voice-slider .slick-slide {
  padding: 0 12px;
}
.voice-card {
  padding: 28px;
  gap: 16px;
  height: 100%;
}
.voice-card__head {
  gap: 14px;
}
.voice-card__tags {
  max-width: 250px;
}
.voice-card__text {
  font-size: 15px;
  line-height: 1.85;
  font-weight: 500;
}
.voice-card__foot {
  padding-top: 13px;
}
.voice__button {
  margin-top: 32px;
}
.voice__button::after {
  width: 11px;
  height: 7px;
}
.voice-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: grid;
  place-items: center;
  padding: 40px 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.voice-modal.is-active {
  opacity: 1;
  visibility: visible;
}
.voice-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(165, 190, 177, 0.8);
  cursor: pointer;
}
.voice-modal__content {
  position: relative;
  z-index: 1;
  width: min(100%, 980px);
  max-height: calc(100vh - 80px);
  overflow-y: auto;
  background: #fff;
  border-radius: 4px;
  transform: translateY(20px);
  transition: transform 0.3s ease;
}
.voice-modal.is-active .voice-modal__content {
  transform: translateY(0);
}
.voice-modal__inner {
  padding: 80px 80px 40px;
}
.voice-modal__head {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  margin-bottom: 32px;
}
.voice-modal__photo {
  flex-shrink: 0;
  width: 160px;
  height: 160px;
  object-fit: cover;
  border-radius: 12px;
}
.voice-modal__info {
  flex: 1;
  min-width: 0;
}
.voice-modal__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}
.voice-modal__title {
  margin: 0;
  font-size: 24px;
  line-height: 1.5;
  font-weight: 700;
  color: var(--color-green);
}
.voice-modal__body {
  font-size: 16px;
  line-height: 2;
}
.voice-modal__body p {
  margin: 0 0 16px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
}
.voice-modal__body p + p {
  margin-top: 1.5em;
}
.voice-modal__body .voice__button {
  margin: 16px auto 0;
}
.voice-modal__close {
  position: absolute;
  top: 50px;
  right: 28px;
  z-index: 2;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #ff;
  cursor: pointer;
}
.voice-modal__close span,
.voice-modal__close span::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 40px;
  height: 4px;
  background: #2D8C5A;
  content: "";
  border-radius: 100px;
}
.voice-modal__close span {
  transform: translate(-50%, -50%) rotate(45deg);
}
.voice-modal__close span::before {
  transform: translate(-50%, -50%) rotate(90deg);
}
.voice-modal__close:hover {
  opacity: 0.75;
}

body.is-modal-open {
  overflow: hidden;
}
.service-column-bg {
  padding: 164px 0 126px;
}
.service-column-bg::before {
  top: 570px;
  left: 50%;
  transform: translateX(-23%) rotate(-45.95deg);
}
.service__inner {
  display: grid;
  grid-template-columns: 1fr 560px;
  gap: 50px;
  align-items: center;
}
.service__content {
  padding-top: 22px;
}
.service__lead {
  width: 100%;
  margin: 28px 0 48px;
  font-size: 16px;
  line-height: 2;
}
.service__visual {
  height: 636px;
}
.column {
  padding-top: 280px;
}
.section-head-row {
  margin-bottom: 32px;
}
.column-list {
  display: grid;
  grid-template-columns: 572px 1fr;
  align-items: flex-start;
  gap: 24px;
}
.column-card--large .column-card__thumb {
  /*height: 321.75px;*/
}
.column-card--large .column-card__body {
  min-height: 176px;
  padding: 33px 28px 29px;
  gap: 10px;
}
.column-card--large h3 {
  font-size: 17.7px;
  line-height: 1.63;
}
.column-list__sub {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.column-list__sub .column-card__thumb {
  /*height: 156.375px;*/
}
.column-list__sub .column-card__body {
  min-height: 156px;
  padding: 25px 20px 21px;
  gap: 10px;
}
.column-list__sub h3 {
  font-size: 14px;
  line-height: 1.6;
}
.image-block {
  height: 455px;
  border-radius: 12px;
}
.image-block__copy {
  position: absolute;
  top: 134px;
  left: 50%;
  font-size: 63px;
  transform: translateX(-42%);
}
.image-block__photo {
  border-radius: 4px;
}
.image-block__photo--left {
  top: 80px;
  left: calc((100vw - 1440px) / 2 - 25px);
  width: 435px;
  height: 641px;
}
.image-block__photo--right {
  right: calc((100vw - 1440px) / 2 + 15px);
  bottom: -304px;
  width: 369px;
  height: 1363px;
}
.news {
  padding: 187px 0 60px;
}
.top-page .news-list {
  margin-top: 24px;
}
.news-item a {
  min-height: 95px;
  padding: 24px 72px 25px 24px;
}
.top-page .news-item a {
  padding: 24px 72px 25px 0;
}
.news-item__meta {
  gap: 16px;
}
.news-item time {
  font-size: 15.5px;
}
.news-item h3 {
  margin-top: 7px;
  font-size: 18px;
  line-height: 1.65;
}
.news-item .arrow-circle {
  top: 50%;
  right: 24px;
  width: 42px;
  height: 42px;
  transform: translateY(-50%);
}
.top-page .news-item .arrow-circle {
  right: 0;
}
.pager {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}
.wp-pagenavi {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}
.wp-pagenavi .previouspostslink,
.wp-pagenavi .nextpostslink,
.wp-pagenavi .first,
.wp-pagenavi .last,
.wp-pagenavi .page,
.wp-pagenavi .current {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  padding: 0;
  box-sizing: border-box;
  border: 1px solid var(--color-green);
  border-radius: 4px;
  background-color: #fff;
  color: #000;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
}
.wp-pagenavi .first,
.wp-pagenavi .last {
  width: 72px;
}
.wp-pagenavi .current {
  background-color: var(--color-green);
  color: #fff;
}
.wp-pagenavi .page:hover {
  background-color: #e9f6ef;
}
.wp-pagenavi .extend {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 18px;
  height: 46px;
  color: #000;
  font-size: 16px;
  font-weight: 700;
}
.contact {
  padding: 0 0 78px;
}
.contact__inner {
  display: flex;
  align-items: center;
  min-height: 300px;
  padding: 97px 114px;
  justify-content: space-between;
}
.contact__heading p {
  font-size: 50px;
}
.contact__heading h2 {
  margin-top: 16px;
  font-size: 20px;
}
.contact__wrap {
  display: flex;
  gap: 32px;
  align-items: center;
}
.contact__label {
  font-size: 14px;
  line-height: 1.2;
}
.contact__number {
  margin-top: 14px;
  font-size: 40px;
}
.contact__note {
  margin-top: 12px;
  font-size: 12.4px;
  line-height: 1;
}
.contact__arrow .arrow-circle {
  width: 80px;
  height: 80px;
}
.floating-banner {
  top: 230px;
  right: 0;
}
.floating-banner a {
  width: 70px;
  min-height: 204px;
  padding: 16px 9px;
  border-radius: 8px 0 0 8px;
  font-size: 18px;
  writing-mode: vertical-rl;
  overflow: hidden;
}
.floating-banner a:after {
  content: "▶";
  display: flex;
  width: 100%;
  height: 38px;
  text-align: center;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 16px;
  position: absolute;
  bottom: 0;
  left: 0;
  background: #D4622A;
}
.site-footer {
  padding: 50px 0 20px;
}
.site-footer__inner {
  display: flex;
  justify-content: space-between;
  gap: 44px;
}
.site-footer__brand {
  flex: 0 0 180px;
}
.site-footer__address {
  gap: 2px;
  margin-top: 22px;
}
.site-footer__contact {
  margin-top: 18px;
}
.site-footer__nav {
  display: flex;
  gap: 36px;
  padding-top: 2px;
}
.site-footer__nav-group ul {
  gap: 12px;
  margin-top: 10px;
}
.site-footer__nav-groupsub {
  display: flex;
  gap: 16px;
}
.site-footer__bottom {
  margin-top: 44px;
  padding-top: 18px;
}
.site-footer__bottom ul {
  gap: 28px;
}
.site-footer__tel-icon {
  display: block;
  position: relative;
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
}
.site-footer__tel-icon::after {
  content: none;
}
.site-footer__tel-icon img,
.site-footer__sns img {
  display: block;
  width: 100%;
  height: auto;
}
.site-footer__sns img {
  width: 18px;
}
.site-footer__nav__external {
  display: flex;
  align-items: center;
  gap: 4px;
}
.site-footer__nav__external:after {
  content: "";
  width: 13px;
  height: 13px;
  background-image: url(./assets/images/common/icon_external.svg);
  background-size: 100% auto;
  background-repeat: no-repeat;
  display: block;
}

@media screen and (max-width: 767px) {
  /* Top page modal and shared mobile parts */
  .voice-modal {
    padding: 24px 16px;
  }
  .voice-modal__content {
    max-height: calc(100vh - 48px);
  }
  .voice-modal__inner {
    padding: 40px 24px 32px;
  }
  .voice-modal__head {
    display: block;
    margin-bottom: 24px;
  }
  .voice-modal__photo {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
  }
  .voice-modal__title {
    font-size: 20px;
  }
  .voice-modal__body {
    font-size: 15px;
    line-height: 1.9;
  }
  .voice-modal__close {
    top: 12px;
    right: 12px;
    width: 28px;
    height: 28px;
  }
  .voice-modal__close span,
  .voice-modal__close span::before {
    width: 28px;
  }
  .c-button--pc {
    display: none;
  }
  .c-button--sp {
    display: flex;
  }
  .c-button {
    width: 100%;
    min-width: 0;
    min-height: 54px;
    font-size: 14px;
  }
  .site-footer__address {
    margin-top: 18px;
  }
  .site-footer__contact {
    margin-top: 16px;
  }
  .top-page {
    overflow-x: hidden;
    background: #f0f0ee;
  }

  body.is-menu-open {
    overflow: hidden;
  }
  .top-page main {
    overflow: hidden;
    background: #f0f0ee;
  }
  .top-page .l-inner {
    width: min(calc(100% - 32px), 100%);
  }
.top-page .kv {
  /*--kv-image-width: 100%;*/
  /*--kv-pan-distance: 0;*/
  --kv-image-width: 116%;
  --kv-pan-distance: -16%;
  height: clamp(560px, 165.3vw, 620px);
  background: #d9d9d9;
}
.top-page .kv-slide.is-kv-active img {
  /*animation: none;*/
}
.top-page .kv-slide img {
  /*width: 100%;*/
  /*object-position: 39% center;*/
}
.top-page .kv__copy {
  right: auto;
  bottom: 100px;
  width: min(calc(100% - 32px), 100%);
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: .03em;
  line-height: 1.6;
  left: 16px;
}
  .top-page .kv__control {
    right: auto;
    bottom: 30px;
    left: 50%;
    display: flex;
    width: min(calc(100% - 32px), 100%);
    height: 20px;
    align-items: center;
    gap: 14px;
    transform: translateX(-50%);
  }
  .top-page .kv__toggle {
    width: 10px;
    height: 10px;
    border: 0;
    color: #fff;
    flex: 0 0 auto;
  }
  .top-page .kv__toggle-icon,
  .top-page .kv__toggle-icon::before {
    width: 3px;
    height: 10px;
    background: currentColor;
  }
  .top-page .kv__toggle-icon::before {
    left: 5px;
  }
  .top-page .kv__control .slick-dots {
    flex: 1 1 auto;
    width: auto;
    height: 10px;
  }
  .top-page .kv__control .slick-dots::before,
  .top-page .kv__control .slick-dots::after {
    top: 4px;
    left: 9px;
    right: 0;
    width: auto;
    height: 2px;
  }
  .top-page .kv__control li {
    width: 25%;
    height: 10px;
  }
  .top-page .kv__control .slick-dots button {
    width: 8px;
    height: 8px;
    border: 0;
    background: #fff;
    opacity: 1;
  }
  .top-page .kv__control li.slick-active button {
    width: 10px;
    height: 10px;
    background: #5ba778;
  }
  .top-page .voice {
    padding: 80px 0 80px;
    background: #f0f0ee;
  }
  .top-page .section-heading__en {
    color: #0a0a0a;
    font-size: 36px;
    font-weight: 600;
    letter-spacing: .08em;
    line-height: 1.5;
  }
  .top-page .section-heading__ja {
    margin-top: -1px;
    color: #14813e;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: .02em;
    line-height: 1.5;
  }
  .top-page .voice-slider {
    display: grid;
    gap: 16px;
    margin: 24px auto 0;
    opacity: 1;
    width: 100%;
  }
  .top-page .voice-slider__item:nth-child(n+4) {
    display: none;
  }
  .top-page .voice-card {
    min-height: auto;
    padding: 28px;
    border-radius: 2.45px;
    gap: 16px;
  }
  .top-page .voice-card__head {
    align-items: center;
    gap: 14px;
  }
  .top-page .voice-card__photo {
    width: 52px;
    height: 52px;
    border-radius: 50%;
  }
  .top-page .voice-card__tags {
    gap: 6px;
  }
  .top-page .tag--green {
    padding: 2px 10px;
    border-radius: 20px;
    font-size: 13px;
  }
  .top-page .voice-card__text {
    color: #333;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.85;
  }
  .top-page .c-button {
    width: min(100%, 272px);
    min-height: 60px;
    margin-inline: auto;
    border-color: #14813e;
    border-radius: 999px;
    color: #14813e;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: .05em;
    margin-left: auto;
    margin-right: auto;
  }
  .top-page .voice__button {
    margin-top: 32px;
  }
  .top-page .service-column-bg {
    padding: 80px 0 80px;
  }
  .top-page .service-column-bg::before {
    top: 750px;
    left: 50%;
    width: 860px;
    height: 366px;
    background: url("./assets/images/top/service_column_bg_sp.svg") center / contain no-repeat;
    transform: translateX(-50%) rotate(-58deg);
  }
  .top-page .service {
    padding: 0;
  }
  .top-page .service__inner {
    display: grid;
    gap: 24px;
    grid-template-columns: unset;
  }
  .top-page .service__lead {
    margin: 24px 0 24px;
    color: #0a0a0a;
    font-size: 16px;
    font-weight: 500;
    line-height: 2;
  }
  .top-page .service__visual {
    height: auto;
  }
  .top-page .service-slider,
  .top-page .service-slider .slick-list,
  .top-page .service-slider .slick-track,
  .top-page .service-slider .slick-slide,
  .top-page .service-slider .slick-slide > div {
    height: auto;
  }
  .top-page .service-slider img {
    width: 100%;
    height: auto;
    /*aspect-ratio: 343 / 389;*/
    border-radius: 2.45px;
    object-fit: cover;
  }
  .top-page .column {
    padding-top: 64px;
  }
  .top-page .section-head-row {
    margin-bottom: 24px;
  }
  .top-page .column-list,
  .top-page .column-list__sub {
    gap: 24px;
    grid-template-columns: unset;
  }
  .top-page .column-card {
    border-radius: 2.45px;
    border: 1px solid #E9E9E9;
  }
  .top-page .column-card__thumb,
  .top-page .column-card--large .column-card__thumb {
    height: auto;
    aspect-ratio: 343 / 193;
    border-radius: 2.45px 4px 0 0;
    object-fit: cover;
  }
  .top-page .column-card__body,
  .top-page .column-card--large .column-card__body,
  .top-page .column-list__sub .column-card__body {
    padding: 18px 16px 20px;
    gap: 9px;
  }
  .top-page .column-card h3,
  .top-page .column-card--large h3,
  .top-page .column-list__sub h3 {
    font-size: 17px;
    line-height: 1.7;
  }
  .top-page .column__button {
    margin-top: 32px;
  }
  .top-page .image-block {
    height: 420px;
    border-radius: 0;
    background: #2D8C5A;
  }
  .top-page .image-block__copy {
    top: 150px;
    width: 100%;
    color: #fff;
    font-size: 38px;
    line-height: 1.55;
    padding-left: 0;
    text-align: center;
    transform: translateX(-45%);
  }
  .top-page .image-block__photo {
    border-radius: 2.45px;
  }
  .top-page .image-block__photo--left {
    top: -10px;
    left: -10px;
    width: 810px;
    height: auto;
  }
  .top-page .image-block__photo--right {
    right: -50px;
    bottom: -12px;
    width: 780px;
    height: auto;
  }
  .news {
    padding: 64px 0 56px;
    background: #fff;
  }
  .top-page .news-list {
    margin-top: 24px;
  }
  .news-item a {
    min-height: auto;
    padding: 16px 44px 16px 16px;
  }
  .top-page .news-item a {
    padding: 16px 30px 16px 0;
  }
  .news-item__meta {
    gap: 10px;
  }
  .news-item time {
    font-size: 15px;
  }
  .news-item h3 {
    margin-top: 8px;
    padding-right: 0;
    font-size: 15px;
    line-height: 1.7;
  }
  .news-item .arrow-circle {
    top: 50%;
    right: 16px;
    width: 24px;
    height: 24px;
    transform: translateY(-50%);
  }
  .top-page .news-item .arrow-circle {
    right: 0;
  }
  .news__button {
    margin-top: 32px;
  }
  .wp-pagenavi {
    gap: 6px;
    justify-content: center;
  }
  .wp-pagenavi .previouspostslink,
  .wp-pagenavi .nextpostslink,
  .wp-pagenavi .first,
  .wp-pagenavi .last,
  .wp-pagenavi .page,
  .wp-pagenavi .current {
    width: 36px;
    height: 36px;
    padding: 0;
    border-radius: 4px;
    font-size: 13px;
  }
  .wp-pagenavi .first,
  .wp-pagenavi .last {
    width: 60px;
  }
  .wp-pagenavi .current {
  }
  .wp-pagenavi .page:hover {
  }
  .wp-pagenavi .extend {
    min-width: 18px;
    height: 36px;
    font-size: 13px;
  }
  .contact {
    padding: 0 0 60px;
    background: #fff;
  }
  .contact__inner {
    display: grid;
    width: min(calc(100% - 32px), 100%);
    min-height: 287px;
    padding: 54px 28px;
    border-radius: 2.45px;
    gap: 32px;
  }
  .contact__heading {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: fit-content;
    margin-inline: auto;
  }
  .contact__heading p {
    font-size: 36px;
    line-height: 1.5;
  }
  .contact__heading h2 {
    margin-top: 0;
    font-size: 16px;
    letter-spacing: .02em;
  }
  .contact__wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
  }
  .contact__label {
    font-size: 14px;
  }
  .contact__number {
    margin-top: 12px;
    color: #247f41;
    font-size: 32px;
    line-height: 1.12;
  }
  .contact__note {
    margin-top: 12px;
    font-size: 12.4px;
  }
  .contact__arrow {
    margin: 0;
  }
  .contact__arrow .arrow-circle {
    width: 44px;
    height: 44px;
  }
  .floating-banner {
    top: 100px;
    right: 0;
    bottom: auto;
    left: auto;
    width: auto;
    transform: unset;
  }
  .floating-banner a {
    width: 43px;
    min-height: 157px;
    padding: 8px 7px 46px;
    border-radius: 8px 0 0 8px;
    font-size: 13px;
    line-height: 1.12;
    writing-mode: vertical-rl;
    overflow: hidden;
  }
  .floating-banner a::after {
    content: "▶";
    position: absolute;
    right: 0;
    bottom: 0;
    display: grid;
    width: 100%;
    height: 38px;
    place-items: center;
    background: #d4622a;
    color: #fff;
    font-size: 14px;
    writing-mode: horizontal-tb;
  }
  .site-footer {
    padding: 60px 0 16px;
    background: #000;
  }
  .site-footer__inner {
    display: grid;
    width: min(calc(100% - 32px), 100%);
    gap: 60px;
    padding-bottom: 41px;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
  }
  .site-footer__brand {
    width: 280px;
  }
  .site-footer__logo img {
    width: 90px;
  }
  .site-footer__tel {
    margin-top: 15px;
    font-size: 20px;
    line-height: 1.62;
  }
  .site-footer__hours {
    font-size: 13px;
    line-height: 1.8;
  }
  .site-footer__sns {
    width: 40px;
    height: 40px;
    margin-top: 16px;
  }
  .site-footer__nav {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .site-footer__nav-group {
    display: grid;
    gap: 8px;
  }
  .site-footer__nav-group p,
  .site-footer__nav-heading {
    font-size: 14px;
    line-height: 1.8;
  }
  .site-footer__nav-group ul {
    gap: 5px;
    margin-top: 0;
  }
  .site-footer__nav-groupsub {
    flex-direction: column;
  }
  .site-footer__nav-group a:not(.site-footer__nav-heading a) {
    font-size: 13px;
    line-height: 1.8;
  }
  .site-footer__bottom {
    display: grid;
    width: min(calc(100% - 32px), 100%);
    margin-top: 0;
    padding: 24px 0 0;
    border-top: 0;
    gap: 24px;
  }
  .site-footer__bottom ul {
    display: grid;
    gap: 8px;
  }
  .site-footer__bottom a,
  .site-footer__bottom small {
    font-size: 12px;
    line-height: 1.8;
  }
}

/* Lower pages */
.lower-page {
  background: #f0f0ee;
}
.lower-main {
  padding-bottom: 100px;
}
.lower-inner {
  width: min(1200px, calc(100% - 96px));
  margin-inline: auto;
}
.lower-narrow {
  width: min(1000px, calc(100% - 96px));
  margin-inline: auto;
}
.page-hero {
  padding: 162px 0 0;
  margin-bottom: 64px;
}
.page-hero h1 ,
.page-hero .h1 {
  font-size: 48px;
  line-height: 1.2;
}
body.advantage .page-hero h1 ,
body.advantage .page-hero .h1 {
  font-size: 63px;
}
.page-hero p {
  font-size: 20px;
}
.page-hero.lower-hero .l-inner:has(.page-hero__nav) {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.page-hero__nav-list {
  display: flex;
  align-items: center;
  gap: 40px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.page-hero__nav-list a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 18px;
  padding-left: 42px;
  color: #158f56;
  font-size: 16px;
  line-height: 1.5;
  text-decoration: none;
  white-space: nowrap;
}
.page-hero__nav-list a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 32px;
  height: 32px;
  border: 1px solid #158f56;
  border-radius: 50%;
  box-sizing: border-box;
  transform: translateY(-50%);
}
.page-hero__nav-list a::after {
  content: "↓";
  position: absolute;
  width: 32px;
  height: 32px;
  font-size: 14px;
  top: 50%;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transform: translateY(-50%);
}
.page-hero__nav-list a:hover {
  opacity: 0.7;
}
.page-hero__nav-list a:focus-visible {
  outline: 2px solid #158f56;
  outline-offset: 3px;
}
.lower-hero {
  margin-bottom: 72px;
}
.lower-section {
  margin-top: 72px;
}
.lower-section:first-child {
  margin-top: 0;
}
.lower-section-title {
  display: grid;
  gap: 10px;
  margin-bottom: 36px;
  text-align: center;
}
.lower-section-title h2 {
  color: var(--color-black);
  font-size: 36px;
  font-weight: 700;
  letter-spacing: .08em;
  line-height: 1;
}
.lower-section-title p {
  color: var(--color-main);
  font-family: var(--font-en);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .02em;
  line-height: 1.5;
}
.lower-lead {
  color: var(--color-black);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: .05em;
  line-height: 2;
  text-align: center;
}
.lower-lead strong {
  color: var(--color-main);
  font-size: 28px;
}
.lower-card {
  border-radius: 14px;
  background: var(--color-white);
}
.lower-text {
  color: var(--color-black);
  font-size: 16px;
  font-weight: 400;
  line-height: 2;
}
.lower-text p + p {
  margin-top: 18px;
}
.company-profile {
  max-width: 800px;
  margin-inline: auto;
  overflow: hidden;
  border-radius: 4px;
  background-color: #fff;
  margin-bottom: 72px;
}
.company-profile:last-of-type {
}
.company-profile__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 34px 50px;
  box-sizing: border-box;
  background-color: var(--color-green);
  color: #fff;
}
.company-profile__title {
  margin: 0;
  color: #fff;
  font-size: 30px;
  font-weight: 400;
  line-height: 1.4;
}
.company-profile__logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 36px;
  font-weight: 700;
  line-height: 1;
}
#head-office .company-profile__logo img ,
#osaka-office .company-profile__logo img {
  width: 116px;
}
#overseas .company-profile__logo img {
  width: 211px;
}
#group-company .company-profile__logo img {
  width: 205px;
}
.company-profile__body {
  padding: 50px;
}
.company-profile__intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 200px;
  align-items: start;
  gap: 70px;
}
.company-profile__intro .company-profile__list {
  order: 1;
}
.company-profile__photo {
  order: 2;
  margin: 0;
}
.company-profile__photo img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 280 / 360;
  object-fit: cover;
}
.company-profile__list {
  margin: 0;
}
.company-profile__row {
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr);
  gap: 28px;
  margin: 0;
  padding: 0 0 30px;
}
.company-profile__row + .company-profile__row {
  padding-top: 0;
}
.company-profile__row dt,
.company-profile__row dd {
  margin: 0;
}
.company-profile__row dt {
  color: var(--color-green);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.8;
}
.company-profile__row dd {
  font-size: 16px;
  line-height: 1.9;
}
.company-profile__row a {
  color: inherit;
  text-decoration: none;
}
.company-profile__note {
  /*font-size: 14px;*/
}
.company-profile__map {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: fit-content;
  min-width: 168px;
  min-height: 44px;
  margin-top: 14px;
  padding: 7px 18px;
  border: 1px solid var(--color-green);
  border-radius: 999px;
  box-sizing: border-box;
  color: var(--color-green) !important;
  font-size: 16px;
  line-height: 1;
}
.company-profile__map img {
  width: 24px;
  height: 24px;
}
.company-profile__map:hover {
}
.company-profile__organization {
  margin: 30px 0 0;
  text-align: center;
}
.company-profile__organization img {
  display: block;
  width: 100%;
  height: auto;
  margin-inline: auto;
}
.flow-steps {
  display: flex;
  justify-content: center;
  gap: 54px;
  margin: 34px auto 98px;
}
.flow-step {
  display: grid;
  justify-items: center;
  gap: 8px;
  text-align: center;
  position: relative;
}
.flow-step:not(:last-child)::after {
  width: 40px;
  height: 4px;
  border-radius: 4px;
  background: radial-gradient(circle, #2d8c5a 2px, transparent 2px) left center / 14px 4px repeat-x;
  content: "";
  position: absolute;
  top: 116px;
  left: 100px;
}
.flow-step__badge {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 86px;
  height: 86px;
  border-radius: 50%;
  background: var(--color-white);
  color: var(--color-main);
  margin-bottom: 18px;
}
.flow-step__badge small {
  font-size: 13px;
  line-height: 1;
}
.flow-step__badge strong {
  font-size: 36px;
  font-weight: 700;
  line-height: 1;
}
.flow-step img {
  width: 54px;
  height: 54px;
  object-fit: contain;
}
.flow-step p {
  margin-top: 16px;
  font-size: 16px;
  font-weight: 500;
}
.flow-timeline {
  position: relative;
  display: grid;
  gap: 16px;
  width: min(1280px, 100%);
  margin-inline: auto;
}
.flow-item {
  position: relative;
  display: grid;
  grid-template-columns: 102px minmax(0, 1fr);
  gap: 18px;
}
.flow-item:not(:last-of-type)::before {
  position: absolute;
  top: 140px;
  bottom: 0;
  left: 40px;
  width: 2px;
  background: #BDBFC5;
  content: "";
}
.flow-item:not(:last-of-type)::after {
  position: absolute;
  bottom: 0;
  left: 36px;
  width: 10px;
  height: 10px;
  background: #BDBFC5;
  content: "";
  border-radius: 10px;
}
.flow-item:nth-child(odd):not(:last-of-type)::before {
  top: 100px;
  bottom: -90px;
}
.flow-item:nth-child(odd):not(:last-of-type)::after {
  bottom: -90px;
}
.flow-item__num {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--color-main);
  color: var(--color-white);
  font-size: 46px;
  font-weight: 500;
  line-height: 1;
  box-sizing: border-box;
  padding-bottom: 5px;
}
.flow-item__days {
  text-align: center;
  margin: 90px auto 0;
  background: #fff;
  border: 1px solid var(--color-green);
  border-radius: 4px;
  width: fit-content;
  height: fit-content;
  padding: 0 4px;
  position: relative;
  left: -9px;
}
.flow-item__card {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 60px;
  align-items: center;
  min-height: 294px;
  padding: 40px;
  border: 3px solid var(--color-main);
  border-radius: 0 18px 0 18px;
  background: var(--color-white);
}
.flow-item:nth-child(even) .flow-item__card {
  background: linear-gradient(90deg, #f0f0ee 0 58%, rgba(240, 240, 238, .84) 72%, rgba(240, 240, 238, .3) 100%);
  border-color: transparent;
  padding: 0;
  min-height: unset;
  max-width: 844px;
  margin-left: auto;
  display: flex;
}
.flow-item__card img {
  width: 320px;
  height: 214px;
  border-radius: 8px;
  object-fit: cover;
}
.flow-item:nth-child(even) .flow-item__card__img {
  order: 2;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}
.flow-item:nth-child(even) .flow-item__card__img:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: #F0F0EE;
  background: linear-gradient(90deg, rgba(240, 240, 238, .8) 0%, rgba(255, 255, 255, .1) 100%);
}
.flow-item:nth-child(even) .flow-item__card__img img {
  width: 426px;
  height: 284px;
}
.flow-item__body {
  display: grid;
  gap: 22px;
}
.flow-item:nth-child(even) .flow-item__body {
  width: 450px;
  margin-right: -98px;
  position: relative;
  z-index: 1;
}
.flow-item__body h2 {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: .05em;
  line-height: 1.2;
}
.flow-item:nth-child(even) .flow-item__body h2 {
  font-size: 24px;
}
.flow-item__body p {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
}
.faq-section .lower-section-title {
  text-align: left;
}
.faq-list {
  display: grid;
  gap: 24px;
}
.faq-item__question {
  display: grid;
  grid-template-columns: 42px 1fr 32px;
  align-items: center;
  gap: 24px;
  width: 100%;
  min-height: 88px;
  padding: 20px 28px 20px 24px;
  border: 0;
  border-radius: 9px;
  background-color: #fff;
  color: #111;
  text-align: left;
  cursor: pointer;
  appearance: none;
}
.faq-item__label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  flex-shrink: 0;
  font-size: 24px;
  line-height: 1;
}
.faq-item__label--question {
  background-color: #2D8C5A;
  color: #fff;
}
.faq-item__label--answer {
  background-color: #f0f0f0;
  color: #2D8C5A;
}
.faq-item__title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.6;
}
.faq-item__icon {
  position: relative;
  display: block;
  width: 24px;
  height: 24px;
  justify-self: end;
}
.faq-item__icon::before,
.faq-item__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 24px;
  height: 3px;
  background-color: #2D8C5A;
  transform: translate(-50%, -50%);
  transition: transform 0.25s ease;
}
.faq-item__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

/* 開いているときは縦線を横線に重ねてマイナス表示 */
.faq-item.is-open .faq-item__icon::after {
  transform: translate(-50%, -50%) rotate(0deg);
}
.faq-item__answer {
  display: none;
  margin-top: 2px;
  border-radius: 9px;
  background-color: #fff;
}
.faq-item__answer {
  display: none;
}
.faq-item__answer-inner {
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: start;
  gap: 24px;
  padding: 30px 28px 30px 24px;
}
.faq-item__text {
  margin: 0;
  padding-top: 2px;
  font-size: 16px;
  font-weight: 500;
  line-height: 2;
}
.faq-item__question:hover {
  opacity: 0.85;
}
.faq-item__question:focus-visible {
  outline: 2px solid #2D8C5A;
  outline-offset: 3px;
}
.sitemap__wrap {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 200px;
  max-width: 660px;
}
.sitemap__section + .sitemap__section {
  margin-top: 32px;
}
.sitemap__heading {
  position: relative;
  margin: 0 0 6px;
  padding-left: 16px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--color-green);
  font-weight: 500;
}
.sitemap__heading::before {
  content: "";
  position: absolute;
  top: 0.45em;
  left: 0;
  width: 12px;
  height: 12px;
  background-color: #138b45;
}
.sitemap__heading a,
.sitemap__subheading a {
  color: inherit;
  text-decoration: none;
}
.sitemap__heading a {
  color: var(--color-green);
}
.sitemap__group + .sitemap__group {
  margin-top: 4px;
}
.sitemap__subheading {
  margin: 4px 0 2px;
  color: var(--color-green);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
}
.sitemap__heading a:hover,
.sitemap__subheading a:hover {
  text-decoration: underline;
}
.sitemap__section .u-list > li {
  font-size: 14px;
}
.service-list__section {
  margin-bottom: 80px;
}
.service-list__section:last-of-type {
  margin-bottom: 0;
}
.sitemap__section .u-list > li a[target="_blank"] {
  display: flex;
  align-items: center;
  gap: 4px;
}
.sitemap__section .u-list > li a[target="_blank"]:after {
  content: "";
  width: 16px;
  height: 16px;
  background-image: url(./assets/images/common/icon_external_black.svg);
  background-size: 100% auto;
  background-repeat: no-repeat;
  display: block;
}
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 32px 8.3%;
}
.service-list-card {
  width: 278px;
  width: calc( (100% - 16.6%) / 3 );
}
.service-list-card__image {
  margin-bottom: 16px;
  border-radius: 4px;
  overflow: hidden;
}
.service-list-card__title {
  font-size: 20px;
  font-weight: 500;
  color: var(--color-green);
  position: relative;
  padding-left: 24px;
}
.service-list-card__title::before {
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1;
  color: #fff;
  background: var(--color-green);
  content: "→";
  position: absolute;
  top: .65em;
  left: 0;
}
.service-accordion {
  width: 100%;
  margin-bottom: 40px;
}
.service-accordion__button {
  display: grid;
  grid-template-columns: 1fr 60px;
  width: 100%;
  padding: 0;
  border: 0;
  border-radius: 5px;
  overflow: hidden;
  background: none;
  color: #fff;
  cursor: pointer;
  text-align: left;
  appearance: none;
}
.service-accordion__title {
  display: flex;
  align-items: center;
  min-height: 56px;
  padding: 10px 24px;
  box-sizing: border-box;
  background-color: #E87A2E;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.3;
}
.service-accordion__icon {
  position: relative;
  display: block;
  min-height: 56px;
  background-color: #D4622A;
}
.service-accordion__icon::before,
.service-accordion__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 11px;
  height: 3px;
  border-radius: 2px;
  background-color: #fff;
  transition: 0.3s ease;
}
.service-accordion__icon::before {
  left: calc(50% - 9px);
  transform: translateY(-50%) rotate(45deg);
}
.service-accordion__icon::after {
  right: calc(50% - 9px);
  transform: translateY(-50%) rotate(-45deg);
}
.service-accordion__button.is-open .service-accordion__icon::before {
  transform: translateY(-50%) rotate(-45deg);
}
.service-accordion__button.is-open .service-accordion__icon::after {
  transform: translateY(-50%) rotate(45deg);
}
.service-accordion__content {
  display: none;
  background-color: #fff;
}
.service-accordion__inner {
  padding: 29px;
  margin: 0;
}
@media screen and (min-width: 768px) {
  .service-accordion {
    width: 392px;
    transition: 0.3s ease;
  }
  .service-accordion.is-open,
  .service-accordion:has(.service-accordion__button.is-open) {
    width: 100%;
  }
}
.market-report-line-bnr {
  max-width: 700px;
  margin: 80px auto 0;
}
.voice-filter {
  max-width: 1024px;
  margin: 0 auto 64px;
}
.voice-filter__inner {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  column-gap: 58px;
  margin: 0 auto;
  padding: 24px 32px 32px;
  background-color: #fff;
  border-radius: 4px;
}
.voice-filter__series {
  min-width: 0;
}
.voice-filter__options {
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-width: 0;
}
.voice-filter__group {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}
.voice-filter__heading {
  display: flex;
  align-items: center;
  gap: 9px;
  width: fit-content;
  margin: 0 0 10px;
  padding: 0;
  color: #208e58;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
}
.voice-filter__heading-icon {
  position: relative;
  display: inline-block;
  flex: 0 0 auto;
  width: 22px;
  height: 21px;
  background-image: url(./assets/images/common/icon_series.svg);
  background-repeat: no-repeat;
  top: 3px;
}
.voice-filter__heading-icon2 {
  position: relative;
  display: inline-block;
  flex: 0 0 auto;
  width: 18px;
  height: 15px;
  background-image: url(./assets/images/common/icon_list.svg);
  background-repeat: no-repeat;
}
.voice-filter__select-wrap {
  position: relative;
}
.voice-filter__select {
  width: 100%;
  height: 42px;
  padding: 0 46px 0 20px;
  border: 2px solid #2D8C5A;
  border-radius: 999px;
  outline: none;
  background-color: #fff;
  font: inherit;
  font-size: 16px;
  cursor: pointer;
  appearance: none;
}
.voice-filter__select-wrap::after {
  position: absolute;
  top: 50%;
  right: 18px;
  width: 0;
  height: 0;
  border-top: 9px solid #111;
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
  content: "";
  pointer-events: none;
  transform: translateY(-40%);
}
.voice-filter__select:focus-visible {
  box-shadow: 0 0 0 3px rgba(43, 152, 95, 0.2);
}
.voice-filter__radio-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 28px;
}
.voice-filter__radio {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 16px;
  line-height: 1.5;
  cursor: pointer;
}
.voice-filter__radio input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}
.voice-filter__radio-icon {
  position: relative;
  display: inline-block;
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  border: 2px solid #2D8C5A;
  border-radius: 50%;
  background-color: #fff;
}
.voice-filter__radio-icon::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background-color: #2D8C5A;
  content: "";
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.5);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}
.voice-filter__radio input:checked + .voice-filter__radio-icon::after {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
.voice-filter__radio input:focus-visible + .voice-filter__radio-icon {
  box-shadow: 0 0 0 3px rgba(43, 152, 95, 0.2);
}
.voice-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 1024px;
  margin: 0 auto;
}
.voice-item {
  padding: 28px;
  background-color: #fff;
  border-radius: 4px;
}
.voice-item__inner {
}
.voice-item__head {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  margin-bottom: 16px;
}
.voice-item__photo {
  flex-shrink: 0;
  width: 160px;
  height: 160px;
  object-fit: cover;
  border-radius: 12px;
}
.voice-item__info {
  flex: 1;
  min-width: 0;
}
.voice-item__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 36px;
}
.voice-item__tags:empty {
  display: none;
}
.voice-item__title {
  margin: 0;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 500;
  color: var(--color-green);
}
.voice-item__body {
  font-size: 16px;
  line-height: 2;
}
.voice-item__body p {
  margin: 0 0 16px;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
}
.voice-item__body p + p {
  margin-top: 1.5em;
}
.voice-item__body .voice__button {
  margin: 24px auto 0;
}
.voice-item__body__img img {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  display: block;
}
.voice-list__empty {
  text-align: center;
}
.voice-item__dos {
  display: flex;
  gap: 4px;
}
.voice-item__dos-icon {
  width: 92px;
}
.contract-case {
  background-color: #f1f1ef;
}
.contract-case__inner {
  max-width: 1200px;
  margin: 0 auto;
}
.contract-filter {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(400px, 1fr);
  gap: 30px;
  margin-bottom: 24px;
  padding: 24px 32px;
  border-radius: 4px;
  background-color: #fff;
}
.contract-filter__selects {
  display: grid;
  /*grid-template-columns: repeat(3, minmax(0, 1fr));*/
  grid-template-columns: 1fr 1fr 10px 1fr;
  gap: 10px;
}
.contract-filter__selects > :nth-child(3) {
  grid-column: 4;
}
.contract-filter__field {
  min-width: 0;
}
.contract-filter__heading {
  display: flex;
  align-items: center;
  gap: 9px;
  width: fit-content;
  margin: 0 0 10px;
  padding: 0;
  color: #2D8C5A;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
}
.contract-filter__heading--pin::before {
  display: inline-block;
  width: 18px;
  height: 25px;
  background-image: url(./assets/images/common/icon_pin.svg);
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
}
.contract-filter__heading--icon {
  position: relative;
  display: inline-block;
  flex: 0 0 auto;
  width: 22px;
  height: 21px;
  background-image: url(./assets/images/common/icon_series.svg);
  background-repeat: no-repeat;
  top: 3px;
}
.contract-filter__heading--icon2 {
  position: relative;
  display: inline-block;
  flex: 0 0 auto;
  width: 18px;
  height: 15px;
  background-image: url(./assets/images/common/icon_list.svg);
  background-repeat: no-repeat;
}
.contract-filter__select-wrap {
  position: relative;
}
.contract-filter__select {
  width: 100%;
  height: 44px;
  padding: 0 42px 0 20px;
  border: 2px solid #2D8C5A;
  border-radius: 999px;
  outline: none;
  background-color: #fff;
  color: #111;
  font: inherit;
  font-size: 15px;
  cursor: pointer;
  appearance: none;
}
.contract-filter__select-wrap::after {
  position: absolute;
  top: 50%;
  right: 18px;
  width: 0;
  height: 0;
  border-top: 10px solid #111;
  border-right: 6px solid transparent;
  border-left: 6px solid transparent;
  content: "";
  pointer-events: none;
  transform: translateY(-40%);
}
.contract-filter__detail {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}
.contract-filter__checks {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.contract-filter__check {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 16px;
  cursor: pointer;
}
.contract-filter__check input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
}
.contract-filter__check-icon {
  position: relative;
  display: inline-block;
  flex: 0 0 auto;
  width: 25px;
  height: 25px;
  border: 2px solid #2D8C5A;
  border-radius: 4px;
}
.contract-filter__check-icon::after {
  position: absolute;
  top: 4px;
  left: 4px;
  width: 13px;
  height: 13px;
  border-radius: 1px;
  background-color: #2D8C5A;
  content: "";
  opacity: 0;
}
.contract-filter__check input:checked +
.contract-filter__check-icon::after {
  opacity: 1;
}
.contract-filter__select:focus-visible,
.contract-filter__check input:focus-visible +
.contract-filter__check-icon {
  box-shadow: 0 0 0 3px rgba(39, 143, 89, 0.2);
}
.contract-table-wrap {
  overflow: hidden;
}
.contract-table {
  width: 100% !important;
  border-spacing: 0;
  border-collapse: separate;
  font-size: 16px;
}
.contract-table thead th {
  height: 63px;
  padding: 0 15px;
  border: 0;
  background-color: #2D8C5A;
  color: #fff;
  font-weight: 400;
  text-align: left;
  white-space: nowrap;
  border-bottom: unset !important;
}
.contract-table thead th:first-child {
  border-radius: 4px 0 0;
}
.contract-table thead th:last-child {
  border-radius: 0 4px 0 0;
}
.contract-table tbody td {
  height: 68px;
  padding: 0 15px;
  border: 0;
  border-top: 2px solid #f0f0ee !important;
  border-bottom: unset !important;
  background-color: #fff;
  vertical-align: middle;
  white-space: nowrap;
}
.contract-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 52px;
  height: 31px;
  padding: 0 4px;
  border: 1px solid #797979;
  border-radius: 5px;
  background-color: #fff;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  margin-right: 3px;
}
.contract-tag--rental {
  border: 2px solid #FF9191;
}
.contract-tag--vacant {
  border: 2px solid #57B3DB;
}
.contract-tag--sublease {
  border: 2px solid #5BBC89;
}
.contract-tag--none {
  border: 1px solid #ccc;
  color: #ccc;
}
.contract-detail-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  min-width: 74px;
  height: 40px;
  padding: 0 12px;
  border-radius: 5px;
  background-color: #2D8C5A;
  color: #fff;
  font-size: 14px;
  text-decoration: none;
}
.contract-detail-button:hover {
  opacity: 0.8;
}
.contract-table-wrap .dt-search,
.contract-table-wrap .dt-length {
  display: none;
}
.contract-table-wrap .dt-layout-row:last-child {
  margin-top: 25px;
}
.contract-table-wrap .dt-info {
  color: #555;
  font-size: 14px;
}
.contract-table-wrap .dt-paging {
  display: flex;
  justify-content: center;
}
.contract-case .contract-case__inner .contract-table-wrap .dt-paging-button {
  min-width: 46px;
  margin: 0 3px !important;
  border: 1px solid #2D8C5A !important;
  border-radius: 4px !important;
  background: #fff !important;
  color: #000 !important;
}
div.dt-container .dt-paging .dt-paging-button:hover {
  color: #000 !important;
}
.contract-case .contract-case__inner .contract-table-wrap .dt-paging-button.current {
  background: #2D8C5A !important;
  color: #fff !important;
}
.contract-case .contract-case__inner .contract-table-wrap .dt-paging-button.current:hover {
  color: #fff !important;
}
.contract-table-wrap .dt-paging-button.disabled {
  opacity: 0.35;
}

/* DataTables標準ソートアイコン */
div.dt-container div.dt-layout-row {
  overflow: auto;
}
.contract-table thead > tr > th.dt-orderable-asc:hover,
.contract-table thead > tr > th.dt-orderable-desc:hover {
  outline: none;
}
table.dataTable>tbody>tr>th, table.dataTable>tbody>tr>td,
table.dataTable>thead>tr>th, table.dataTable>thead>tr>td {
  padding: 8px 10px;
}
table.dataTable>tbody>tr>th:nth-of-type(4),
table.dataTable>tbody>tr>td:nth-of-type(4),
table.dataTable>thead>tr>th:nth-of-type(4),
table.dataTable>thead>tr>td:nth-of-type(4) {
  white-space: normal;
}
table.dataTable>tbody>tr>th:nth-of-type(8),
table.dataTable>tbody>tr>td:nth-of-type(8),
table.dataTable>thead>tr>th:nth-of-type(8),
table.dataTable>thead>tr>td:nth-of-type(8) {
  padding-left: 0;
}
table.dataTable>tbody>tr>th:nth-of-type(9),
table.dataTable>tbody>tr>td:nth-of-type(9),
table.dataTable>thead>tr>th:nth-of-type(9),
table.dataTable>thead>tr>td:nth-of-type(9) {
  padding-left: 0;
}
table.dataTable thead>tr>th div.dt-column-header {
  text-align: left;
}
table.dataTable th.dt-type-numeric div.dt-column-header {
  flex-direction: row;
}
table.dataTable thead>tr>th.dt-orderable-asc .dt-column-order:before, table.dataTable thead>tr>th.dt-orderable-asc .dt-column-order:after, table.dataTable thead>tr>th.dt-orderable-desc .dt-column-order:before, table.dataTable thead>tr>th.dt-orderable-desc .dt-column-order:after, table.dataTable thead>tr>th.dt-ordering-asc .dt-column-order:before, table.dataTable thead>tr>th.dt-ordering-asc .dt-column-order:after, table.dataTable thead>tr>th.dt-ordering-desc .dt-column-order:before, table.dataTable thead>tr>th.dt-ordering-desc .dt-column-order:after, table.dataTable thead>tr>td.dt-orderable-asc .dt-column-order:before, table.dataTable thead>tr>td.dt-orderable-asc .dt-column-order:after, table.dataTable thead>tr>td.dt-orderable-desc .dt-column-order:before, table.dataTable thead>tr>td.dt-orderable-desc .dt-column-order:after, table.dataTable thead>tr>td.dt-ordering-asc .dt-column-order:before, table.dataTable thead>tr>td.dt-ordering-asc .dt-column-order:after, table.dataTable thead>tr>td.dt-ordering-desc .dt-column-order:before, table.dataTable thead>tr>td.dt-ordering-desc .dt-column-order:after {
  opacity: .3;
  line-height: 15px;
}
table.dataTable thead>tr>th.dt-ordering-asc .dt-column-order:before, table.dataTable thead>tr>th.dt-ordering-desc .dt-column-order:after, table.dataTable thead>tr>td.dt-ordering-asc .dt-column-order:before, table.dataTable thead>tr>td.dt-ordering-desc .dt-column-order:after {
  opacity: 1;
}
table.dataTable th.dt-type-numeric, table.dataTable th.dt-type-date, table.dataTable td.dt-type-numeric, table.dataTable td.dt-type-date {
  text-align: left;
  font-weight: 500;
}
.case-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: grid;
  place-items: center;
  padding: 40px 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.case-modal.is-active {
  opacity: 1;
  visibility: visible;
}
.case-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(165, 190, 177, 0.8);
  cursor: pointer;
}
.case-modal__content {
  position: relative;
  z-index: 1;
  width: min(100%, 980px);
  max-height: calc(100vh - 80px);
  overflow-y: auto;
  background: #fff;
  border-radius: 4px;
  transform: translateY(20px);
  transition: transform 0.3s ease;
}
.case-modal.is-active .case-modal__content {
  transform: translateY(0);
}
.case-modal__inner {
  padding: 80px 80px 40px;
}
.case-modal__head {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  margin-bottom: 32px;
}
.case-modal__photo {
  flex-shrink: 0;
  width: 160px;
  height: 160px;
  object-fit: cover;
  border-radius: 12px;
}
.case-modal__info {
  flex: 1;
  min-width: 0;
}
.case-modal__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}
.case-modal__title {
  margin: 0;
  font-size: 24px;
  line-height: 1.5;
  font-weight: 700;
}
.case-modal__body {
  font-size: 16px;
  line-height: 2;
}
.case-modal__body p {
  margin: 0 0 16px;
  font-size: 15px;
}
.case-modal__body p + p {
  margin-top: 1.5em;
}
.case-modal__body .case__button {
  margin: 16px auto 0;
}
.case-modal__close {
  position: absolute;
  top: 50px;
  right: 28px;
  z-index: 2;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #ff;
  cursor: pointer;
}
.case-modal__close span,
.case-modal__close span::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 40px;
  height: 4px;
  background: #2D8C5A;
  content: "";
  border-radius: 100px;
}
.case-modal__close span {
  transform: translate(-50%, -50%) rotate(45deg);
}
.case-modal__close span::before {
  transform: translate(-50%, -50%) rotate(90deg);
}
.case-modal__close:hover {
  opacity: 0.75;
}
.case-modal-inner {
  --case-green: #2f9361;
  --case-light-green: #E5F4EC;
  --case-border: #dbe7e1;
  --case-text: #20232c;

  width: 100%;
  padding: 52px 60px 54px;
  color: var(--case-text);
  box-sizing: border-box;
}
.case-modal-inner *,
.case-modal-inner *::before,
.case-modal-inner *::after {
  box-sizing: border-box;
}
.case-modal-inner img {
  display: block;
  max-width: 100%;
  height: auto;
}

/* 上部 */
.case-modal-profile {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 28px;
}
.case-modal-profile__user {
  display: flex;
  align-items: center;
  gap: 24px;
  min-width: 0;
}
.case-modal-profile__user-image {
  flex: 0 0 140px;
  width: 140px;
}
.case-modal-profile__user-text {
  display: flex;
  flex-wrap: wrap;
  gap: 0 8px;
  margin: 0;
  color: #000;
  font-size: 25px;
  font-weight: 700;
  line-height: 1.5;
}
.case-modal-profile__badges {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0;
  flex-shrink: 0;
}
.case-modal-profile__badges img {
  width: 145px;
}

/* 詳細情報とステータス */
.case-modal-data {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  align-items: stretch;
  gap: 28px;
  margin-bottom: 30px;
}

/* 詳細情報 */
.case-modal-data__list {
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--case-green);
  border-radius: 13px;
}
.case-modal-data__row {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  min-height: 72px;
}
.case-modal-data__row + .case-modal-data__row {
  border-top: 1px solid var(--case-border);
}
.case-modal-data__title,
.case-modal-data__text {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 12px 20px;
}
.case-modal-data__title {
  gap: 14px;
  color: var(--case-green);
  font-size: 18px;
  font-weight: 700;
  white-space: nowrap;
}
.case-modal-data__title img {
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  object-fit: contain;
}
.case-modal-data__text {
  color: var(--case-text);
  font-size: 18px;
  line-height: 1.6;
}

/* ステータス */
.case-modal-data__status-list {
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.case-modal-data__status-item {
  display: flex;
  align-items: center;
  gap: 20px;
  min-height: 65px;
  padding: 10px 20px;
  color: var(--case-green);
  background-color: var(--case-light-green);
  border-radius: 12px;
  font-size: 18px;
  font-weight: 700;
}
.case-modal-data__status-item img {
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  object-fit: contain;
}

/* CTA */
.case-modal-cta {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60px;
  padding: 12px 76px;
  color: #fff;
  background-color: var(--case-green);
  border-radius: 7px;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.case-modal-cta__arrow {
  position: absolute;
  top: 50%;
  right: 18px;
  display: grid;
  width: 40px;
  height: 40px;
  color: var(--case-green);
  background-color: #fff;
  border-radius: 50%;
  place-items: center;
  font-size: 24px;
  font-weight: 400;
  line-height: 1;
  transform: translateY(-50%);
  transition: transform 0.3s ease;
}

@media (hover: hover) {
  .case-modal-cta:hover {
    opacity: 0.85;
  }
  .case-modal-cta:hover .case-modal-cta__arrow {
    transform: translate(3px, -50%);
  }
}

@media screen and (max-width: 767px) {
  /* Lower pages */
  .lower-inner,
  .lower-narrow {
    width: min(calc(100% - 40px), 100%);
  }

  /* Page hero */
  .page-hero {
    text-align: center;
    padding: 110px 0 0;
    margin-bottom: 28px;
  }
  .page-hero h1 ,
  .page-hero .h1 {
    font-size: 35px;
    line-height: 1.35;
  }
  body.advantage .page-hero h1 ,
  body.advantage .page-hero .h1 {
    font-size: 35px;
  }
  .page-hero p {
    margin-top: 8px;
    color: var(--color-main);
    font-family: var(--font-en);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .046em;
    line-height: 1.4;
  }
  .page-hero.lower-hero .l-inner:has(.page-hero__nav) {
    display: block;
    text-align: center;
  }
  .page-hero__nav {
    margin-top: 28px;
  }
  .page-hero__nav-list {
    justify-content: center;
    gap: 16px;
  }
  .page-hero__nav-list a {
    min-height: 14px;
    padding-left: 22px;
    font-size: 14px;
  }
  .page-hero__nav-list a::before {
    width: 18px;
    height: 18px;
  }
  .page-hero__nav-list a::after {
    width: 18px;
    height: 18px;
    font-size: 10px;
  }
  .lower-section {
    margin-top: 64px;
  }
  .lower-section:first-child {
    margin-top: 0;
  }
  .lower-section-title {
    display: grid;
    gap: 6px;
    margin-bottom: 20px;
    text-align: center;
  }
  .lower-section-title h2 {
    font-size: 26px;
    font-weight: 700;
    line-height: 34px;
  }
  .lower-section-title p {
    color: var(--color-main);
    font-family: var(--font-en);
    font-size: 12px;
    line-height: 18px;
  }
  .lower-lead {
    font-size: 18px;
    font-weight: 700;
    line-height: 2;
    text-align: center;
  }
  .lower-lead strong {
    color: var(--color-main);
    font-size: 22px;
  }
  .lower-text {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.9;
  }
  .lower-text p + p {
    margin-top: 16px;
  }
  .company-profile {
    width: 100%;
    margin-bottom: 40px;
  }
  .company-profile__head {
    min-height: 66px;
    padding: 21px 18px;
  }
  .company-profile__title {
    font-size: 18px;
  }
  .company-profile__logo {
    gap: 4px;
  }
  #head-office .company-profile__logo img ,
  #osaka-office .company-profile__logo img {
    width: 82px;
  }
  #overseas .company-profile__logo img {
    width: 118px;
  }
  #group-company .company-profile__logo img {
    width: 116px;
  }
  .company-profile__body {
    padding: 18px 16px;
  }
  .company-profile__intro {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  .company-profile__photo {
    order: 1;
    width: 64%;
    max-width: 200px;
    margin: 0 auto 16px;
  }
  .company-profile__intro .company-profile__list {
    order: 2;
    width: 100%;
  }
  .company-profile__row {
    grid-template-columns: 86px minmax(0, 1fr);
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid #ddd;
  }
  .company-profile__row + .company-profile__row {
    padding: 14px 0;
  }
  .company-profile__intro
  .company-profile__row:first-child {
    padding-top: 0;
  }
  .company-profile__row dt {
    font-size: 12px;
    line-height: 1.6;
    overflow-wrap: anywhere;
  }
  .company-profile__row dd {
    font-size: 12px;
    line-height: 1.7;
    overflow-wrap: anywhere;
  }
  .company-profile__note {
    /*font-size: 10px;*/
  }
  .company-profile__map {
    min-width: 128px;
    min-height: 34px;
    margin-top: 8px;
    padding: 5px 12px;
    font-size: 13px;
  }
  .company-profile__map img {
    width: 24px;
    height: 24px;
  }
  .company-profile__organization {
    margin-top: 18px;
  }
  .company-profile__organization img {
    width: 100%;
  }


  .flow-steps {
    gap: 0;
    margin: 34px auto 60px;
    max-width: 400px;
  }
  .flow-step {
    gap: 8px;
    width: 25%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .flow-step:not(:last-child)::after {
    display: none;
  }
  .flow-step__badge {
    width: 60px;
    height: 60px;
    margin-bottom: 18px;
  }
  .flow-step__badge small {
    font-size: 11px;
  }
  .flow-step__badge strong {
    font-size: 24px;
  }
  .flow-step img {
    width: 40px;
    height: 40px;
  }
  .flow-step p {
    margin-top: 10px;
    font-size: 13px;
  }
  .flow-timeline {
    gap: 16px;
  }
  .flow-item {
    grid-template-columns: 50px minmax(0, 1fr);
    gap: 0;
  }
  .flow-item:not(:last-of-type)::before {
    top: 140px;
    left: 20px;
  }
  .flow-item:not(:last-of-type)::after {
    left: 16px;
    width: 10px;
    height: 10px;
    border-radius: 10px;
  }
  .flow-item:nth-child(odd):not(:last-of-type)::before {
    top: 50px;
    bottom: -90px;
  }
  .flow-item:nth-child(odd):not(:last-of-type)::after {
    bottom: -90px;
  }
  .flow-item__num {
    width: 40px;
    height: 40px;
    font-size: 20px;
    padding-bottom: 0;
  }
  .flow-item__days {
    margin-top: 90px;
    font-size: 13px;
    line-height: 1.2;
    height: 38px;
    width: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .flow-item__card {
    display: block;
    min-height: 294px;
    padding: 20px 16px;
    border: 3px solid var(--color-main);
    border-radius: 0 18px 0 18px;
  }
  .flow-item:nth-child(even) .flow-item__card {
    max-width: 100%;
    display: block;
    padding: 0 16px;
  }
  .flow-item__card img {
    width: 100%;
    height: auto;
    border-radius: 4px;
  }
  .flow-item:nth-child(even) .flow-item__card__img {
    width: 100%;
  }
  .flow-item:nth-child(even) .flow-item__card__img::before {
    display: none;
  }
  .flow-item:nth-child(even) .flow-item__card__img img {
    width: 100%;
    height: auto;
  }
  .flow-item__body {
    gap: 12px;
  }
  .flow-item:nth-child(even) .flow-item__body {
    width: 100%;
    margin-right: 0;
  }
  .flow-item__body h2 {
    font-size: 20px;
    line-height: 1.2;
    text-align: center;
    margin-top: 24px;
  }
  .flow-item:nth-child(even) .flow-item__body h2 {
    font-size: 20px;
  }
  .flow-item__body p {
    font-size: 16px;
  }
  .faq-section .lower-section-title {
    text-align: center;
  }
  .faq-list {
    gap: 16px;
  }
  .faq-item__question {
    grid-template-columns: 36px 1fr 24px;
    gap: 14px;
    min-height: 74px;
    padding: 16px;
  }
  .faq-item__label {
    width: 36px;
    height: 36px;
    font-size: 20px;
  }
  .faq-item__title {
    font-size: 16px;
    line-height: 1.6;
  }
  .faq-item__icon,
  .faq-item__icon::before,
  .faq-item__icon::after {
    width: 20px;
  }
  .faq-item__answer-inner {
    grid-template-columns: 36px 1fr;
    gap: 14px;
    padding: 20px 16px;
  }
  .faq-item__text {
    font-size: 14px;
    line-height: 1.8;
  }
  .sitemap__wrap {
    display: block;
    max-width: none;
  }
  .sitemap__column + .sitemap__column {
    margin-top: 32px;
  }
  .sitemap__section + .sitemap__section {
    margin-top: 28px;
  }
  .sitemap__heading {
    font-size: 16px;
  }
  .sitemap__subheading {
    font-size: 14px;
  }
  .service-list__section {
    margin-bottom: 48px;
  }
  .service-list__section:last-of-type {
    margin-bottom: 0;
  }
  .service-list {
    gap: 24px 16px;
  }
  .service-list-card {
    width: calc((100% - 16px) / 2 );
  }
  .service-list-card__image {
    margin-bottom: 8px;
  }
  .service-list-card__title {
    font-size: 15px;
    padding-left: 20px;
  }
  .service-list-card__title::before {
    width: 15px;
    height: 15px;
    font-size: 10px;
    top: .65em;
    left: 0;
  }
  .service-accordion__button {
    grid-template-columns: 1fr 48px;
  }
  .service-accordion__title {
    min-height: 48px;
    padding: 10px 24px;
    font-size: 20px;
  }
  .service-accordion__icon {
    min-height: 48px;
  }
  .service-accordion__inner {
    padding: 20px 16px;
  }
  .market-report-line-bnr {
    margin: 64px auto 0;
  }
  .voice-filter {
    margin-bottom: 32px;
  }
  .voice-filter__inner {
    display: block;
    padding: 20px;
  }
  .voice-filter__heading {
    margin: 0 0 10px;
    font-size: 12px;
    gap: 4px;
  }
  .voice-filter__heading-icon {
    width: 18px;
    height: 18px;
    background-size: 100% auto;
    top: 2px;
  }
  .voice-filter__heading-icon2 {
    width: 16px;
    height: 14px;
    background-size: 100% auto;
  }
  .voice-filter__select {
    width: 100%;
    height: 38px;
    padding: 0 46px 0 16px;
    border: 1px solid #2D8C5A;
    font-size: 12px;
  }
  .voice-filter__radio-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px 28px;
  }
  .voice-filter__radio {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    line-height: 1.5;
    cursor: pointer;
  }
  .voice-filter__radio input {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
  }
  .voice-filter__radio-icon {
    position: relative;
    display: inline-block;
    flex: 0 0 auto;
    width: 22px;
    height: 22px;
    border: 2px solid #2D8C5A;
    border-radius: 50%;
    background-color: #fff;
  }
  .voice-filter__radio-icon::after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background-color: #2D8C5A;
    content: "";
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.5);
    transition:
      opacity 0.2s ease,
      transform 0.2s ease;
  }
  .voice-filter__radio input:checked + .voice-filter__radio-icon::after {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
  .voice-filter__radio input:focus-visible + .voice-filter__radio-icon {
    box-shadow: 0 0 0 3px rgba(43, 152, 95, 0.2);
  }
  .voice-filter__series {
    margin-bottom: 16px;
  }
  .voice-filter__options {
    gap: 22px;
  }
  .voice-filter__radio-list {
    gap: 8px 12px;
  }
  .voice-filter__radio {
    align-items: center;
  }
  .voice-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .voice-item {
    padding: 20px;
  }
  .voice-item__content {
    max-height: calc(100vh - 48px);
  }
  .voice-item__inner {
  }
  .voice-item__head {
    display: block;
    margin-bottom: 14px;
  }
  .voice-item__photo {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
  }
  .voice-item__title {
    font-size: 18px;
    font-weight: 200;
  }
  .voice-item__tags {
    margin-bottom: 12px;
  }
  .voice-item__body {
    font-size: 15px;
    line-height: 1.9;
  }
  .voice-item__body p {
    font-size: 14px;
    line-height: 1.5;
    font-weight: 200;
  }
  .voice-item__dos {
    display: none;
    gap: 4px;
    margin-top: 16px;
  }
  .voice-item__dos-icon {
    width: 60px;
  }
  .voice-list__empty {
    font-size: 14px;
  }
  .contract-case {
  }
  .contract-filter {
    display: block;
    margin-bottom: 32px;
    padding: 20px 16px;
    border-radius: 4px;
  }
  .contract-filter__selects {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 16px;
  }
  .contract-filter__field:nth-child(3) {
    grid-column: 1 / -1;
  }
  .contract-filter__heading {
    margin-bottom: 6px;
    font-size: 12px;
    gap: 4px;
  }
  .contract-filter__heading--pin::before {
    width: 14px;
    height: 20px;
    background-size: 100% auto;
  }
  .contract-filter__heading--icon {
    width: 18px;
    height: 18px;
    top: 2px;
    background-size: 100% auto;
  }
  .contract-filter__heading--icon2 {
    width: 16px;
    height: 14px;
    background-size: 100% auto;
  }
  .contract-filter__select {
    height: 39px;
    padding-left: 16px;
    font-size: 13px;
    border-width: 1px;
  }
  .contract-filter__detail {
    margin-top: 14px;
  }
  .contract-filter__checks {
    gap: 8px 12px;
    display: flex;
    flex-wrap: wrap;
  }
  .contract-filter__check {
    gap: 7px;
    font-size: 12px;
  }
  .contract-filter__check-icon {
    width: 20px;
    height: 20px;
  }
  .contract-filter__check-icon::after {
    top: 3px;
    left: 3px;
    width: 10px;
    height: 10px;
  }
  div.dt-container div.dt-layout-row {
    margin-top: 0;
  }

  /*
   * DataTablesのtable要素は維持したまま、
   * tbodyと行をカード状にする
   */
  table.dataTable>tbody>tr>th, table.dataTable>tbody>tr>td,
  table.dataTable>thead>tr>th, table.dataTable>thead>tr>td {
    padding: 0;
  }
  .contract-table,
  .contract-table tbody,
  .contract-table tr,
  .contract-table td {
    display: block;
    width: 100% !important;
  }
  .contract-table thead {
    display: none;
  }
  .contract-table tbody tr {
    display: grid;
    grid-template-columns: 74px minmax(0, 1fr) 75px;
    column-gap: 0;
    margin-bottom: 20px;
    padding: 14px 17px 13px;
    border-radius: 4px;
    background-color: #fff !important;
  }
  .contract-table tbody td {
    height: auto;
    padding: 0;
    border: 0;
    background: transparent;
    white-space: normal;
    border-top: unset !important;
  }

  /* 成約年月 */
  .contract-table tbody td:nth-child(1) {
    grid-column: 1;
    grid-row: 1 / span 2;
    font-size: 13px;
    font-weight: 700;
  }
  .contract-table tbody td:nth-child(1)::before {
    display: block;
    color: #2D8C5A;
    font-size: 10px;
    font-weight: 700;
    content: "成約年月";
  }

  /* 都道府県・市区町村 */
  .contract-table tbody td:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
    font-size: 13px;
    font-weight: 700;
    padding: 0 8px;
  }
  .contract-table tbody td:nth-child(2) .u-sp {
    display: inline !important;
  }
  .contract-table tbody td:nth-child(3) {
    display: none;
  }

  /* シリーズ名 */
  .contract-table tbody td:nth-child(4) {
    grid-column: 2;
    grid-row: 2;
    color: #606060;
    font-size: 10px;
    padding: 0 8px;
  }
  .contract-table tbody td:nth-child(4) .u-sp {
    display: inline !important;
  }

  /* 築年・平米数 */
  .contract-table tbody td:nth-child(5),
  .contract-table tbody td:nth-child(6) {
    display: none;
  }

  /* 金額 */
  .contract-table tbody td:nth-child(7) {
    grid-column: 3;
    grid-row: 1 / span 2;
    font-size: 13px;
    font-weight: 700;
    text-align: right;
  }
  .contract-table tbody td:nth-child(7)::before {
    display: block;
    color: #2D8C5A;
    font-size: 10px;
    content: "金額";
  }

  /* 区切り線 */
  .contract-table tbody td:nth-child(8) {
    grid-column: 1 / 3;
    grid-row: 3;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid #DCDED9 !important;
  }
  .contract-table tbody td:nth-child(9) {
    grid-column: 3;
    grid-row: 3;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid #DCDED9 !important;
  }
  .contract-table tbody td:nth-child(10) {
    grid-column: 3;
    grid-row: 3;
    margin-top: 15px;
    padding-top: 14px;
    border-top: 1px solid #ddd;
    text-align: right;
  }
  .contract-tag {
    min-width: 46px;
    height: 30px;
    font-size: 11px;
  }
  .contract-detail-button {
    min-width: 75px;
    height: 33px;
    font-size: 12px;
  }
  .contract-table-wrap .dt-layout-row:last-child {
    display: block;
  }
  .contract-table-wrap .dt-info {
    margin-bottom: 12px;
    text-align: center;
  }
  .dt-empty {
    grid-column: 1 / 4 !important;
  }
  .dt-empty::before {
    display: none !important;
  }
  .case-modal-inner {
    padding: 40px 24px 32px;
  }
  .case-modal__close {
    top: 12px;
    right: 12px;
    width: 28px;
    height: 28px;
  }
  .case-modal__close span,
  .case-modal__close span::before {
    width: 28px;
    height: 4px;
  }
  .case-modal-profile {
    display: block;
    margin-bottom: 10px;
  }
  .case-modal-profile__user {
    gap: 16px;
    margin-bottom: 12px;
  }
  .case-modal-profile__user-image {
    flex-basis: 70px;
    width: 70px;
  }
  .case-modal-profile__user-text {
    display: block;
    font-size: 16px;
    line-height: 1.5;
  }
  .case-modal-profile__user-text span {
    display: block;
  }
  .case-modal-profile__badges {
    justify-content: center;
    gap: 0;
  }
  .case-modal-profile__badges img {
    width: min(38vw, 104px);
  }
  .case-modal-data {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 24px;
  }
  .case-modal-data__list {
    border-radius: 4px;
  }
  .case-modal-data__row {
    grid-template-columns: 112px minmax(0, 1fr);
    min-height: 50px;
  }
  .case-modal-data__title img {
    flex: 0 0 24px;
    width: 24px;
    height: 24px;
  }
  .case-modal-data__title,
  .case-modal-data__text {
    padding: 12px;
  }
  .case-modal-data__title {
    gap: 13px;
    font-size: 12px;
  }
  .case-modal-data__text {
    padding-left: 0;
    font-size: 12px;
  }
  .case-modal-data__status-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .case-modal-data__status-item {
    min-height: 42px;
    gap: 25px;
    padding: 9px 24px;
    font-size: 12px;
    border-radius: 4px;
  }
  .case-modal-data__status-item img {
    flex: 0 0 24px;
    width: 24px;
    height: 24px;
  }
  .case-modal-cta {
    min-height: 44px;
    padding: 10px 44px 10px 20px;
    font-size: 13px;
    border-radius: 5px;
  }
  .case-modal-cta__arrow {
    right: 8px;
    width: 30px;
    height: 30px;
    font-size: 16px;
  }
}

/* Article detail */
.page--news-detail {
  background: #f0f0ee;
  overflow: hidden;
}
.article-hero {
  padding: 178px 0 0;
}
.article-content {
}
.article-content__inner {
  width: min(1200px, calc(100% - 96px));
}
.article-content h1 {
  color: var(--color-main);
  font-size: 36px;
  font-weight: 700;
  letter-spacing: .06em;
  line-height: 1.45;
  text-align: center;
}
.article-body {
  margin-top: 22px;
}
.article-body p {
  line-height: 1.8;
}
.article-body a:not(.c-button) {
  color: #2965B6;
  text-decoration: underline;
}
.article-body section {
  margin-top: 58px;
}
.article-body img.alignright { display: block; margin: 0 0 0 auto; }
.article-body img.alignleft { display: block; margin: 0 auto 0 0; }
.article-body img.aligncenter { display: block; margin: 0 auto; }
.article-body h2 {
  margin-bottom: 2px;
  font-size: 16px;
  letter-spacing: .02em;
  font-weight: bold;
}
.article-content__button {
  margin-top: 82px;
}

@media screen and (max-width: 767px) {
  /* Article detail */
  .page--news-detail {
    background: #efefed;
    overflow: hidden;
  }
  .article-content {
    padding: 26px 0 120px;
  }
  .article-content__inner {
    width: calc(100% - 40px);
  }
  .article-content h1 {
    color: var(--color-main);
    font-size: 27px;
    font-weight: 700;
    letter-spacing: .04em;
    line-height: 1.45;
    text-align: center;
  }
  .article-body {
    margin-top: 24px;
  }
  .article-body p {
    line-height: 1.85;
  }
  .article-body section {
    margin-top: 34px;
  }
  .article-body h2 {
    margin-bottom: 4px;
    font-size: 17px;
  }
  .article-content__button {
    margin-top: 48px;
  }
  .article-content__button .c-button {
    min-width: min(320px, 100%);
  }
}

/* Contact and form pages */
.contact-page {
  /*background: #efefed;*/
  overflow-x: hidden;
}
.contact-page__body {
  padding: 0 0 100px;
}
.contact-page__inner {
  width: min(1200px, calc(100% - 96px));
}
.contact-page__heading {
  margin-bottom: 60px;
}
.contact-page__heading p {
  text-transform: lowercase;
}
.contact-page__section {
  margin-inline: auto;
  text-align: center;
  width: 600px;
}
.contact-page__section h2 {
  color: var(--color-black);
  font-size: 36px;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: .03em;
}
.contact-page__lead {
  color: var(--color-black);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.9;
  margin-top: 18px;
}
.contact-page__tel-card {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 40px;
  border: 2px solid #0b8d42;
  border-radius: 4px;
  background: var(--color-white);
  color: var(--color-black);
  gap: 18px;
  padding: 40px 20px;
}
.contact-page__tel-content {
  display: grid;
  gap: 0;
  text-align: center;
}
.contact-page__tel-number {
  font-size: 40px;
  font-weight: 700;
  letter-spacing: .01em;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 24px;
}
.contact-page__tel-icon {
  position: relative;
  display: block;
  width: 70px;
  height: 40px;
  border-top: 0;
}
.contact-page__tel-hours {
  color: var(--color-black);
  font-size: 15px;
  line-height: 1.3;
  margin-bottom: 8px;
}
.contact-page__tel-holiday {
  color: var(--color-green);
  font-size: 15px;
  line-height: 1.2;
}
.contact-page__section--web {
  margin-top: 72px;
}
.contact-page__lead--sub {
  margin-top: 15px;
}
.contact-page__corp-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 320px;
  min-height: 58px;
  margin-top: 22px;
  border: 1px solid #e8792f;
  border-radius: 999px;
  color: #e8792f;
  font-size: 15px;
  font-weight: 700;
  gap: 30px;
  line-height: 1.2;
  background: #fff;
  position: relative;
}
.contact-page__corp-link:after {
  position: absolute;
  top: 50%;
  right: 24px;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background: currentColor;
  clip-path: unset;
  mask: url("data:image/svg+xml,%3Csvg width='17' height='16' viewBox='0 0 17 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12.6823 8.94591H1.0416C0.7465 8.94591 0.4991 8.84601 0.2995 8.64641C0.0998005 8.44671 0 8.19931 0 7.90421C0 7.60911 0.0998005 7.36171 0.2995 7.16201C0.4991 6.96241 0.7465 6.86251 1.0416 6.86251H12.6823L7.5781 1.75841C7.3698 1.55001 7.2699 1.30701 7.2786 1.02921C7.2873 0.751412 7.3958 0.508411 7.6041 0.300011C7.8125 0.109111 8.0555 0.00921171 8.3333 0.000511712C8.6111 -0.00808829 8.8541 0.0917112 9.0625 0.300011L15.9375 7.17501C16.0416 7.27921 16.1154 7.39201 16.1588 7.51361C16.2022 7.63511 16.2239 7.76531 16.2239 7.90421C16.2239 8.04311 16.2022 8.17331 16.1588 8.29481C16.1154 8.41631 16.0416 8.52921 15.9375 8.63341L9.0625 15.5084C8.8715 15.6993 8.6328 15.7948 8.3463 15.7948C8.0599 15.7948 7.8125 15.6993 7.6041 15.5084C7.3958 15.3 7.2916 15.0526 7.2916 14.7662C7.2916 14.4797 7.3958 14.2323 7.6041 14.024L12.6823 8.94591Z' fill='black'/%3E%3C/svg%3E") no-repeat center / contain;
  -webkit-mask: url("data:image/svg+xml,%3Csvg width='17' height='16' viewBox='0 0 17 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12.6823 8.94591H1.0416C0.7465 8.94591 0.4991 8.84601 0.2995 8.64641C0.0998005 8.44671 0 8.19931 0 7.90421C0 7.60911 0.0998005 7.36171 0.2995 7.16201C0.4991 6.96241 0.7465 6.86251 1.0416 6.86251H12.6823L7.5781 1.75841C7.3698 1.55001 7.2699 1.30701 7.2786 1.02921C7.2873 0.751412 7.3958 0.508411 7.6041 0.300011C7.8125 0.109111 8.0555 0.00921171 8.3333 0.000511712C8.6111 -0.00808829 8.8541 0.0917112 9.0625 0.300011L15.9375 7.17501C16.0416 7.27921 16.1154 7.39201 16.1588 7.51361C16.2022 7.63511 16.2239 7.76531 16.2239 7.90421C16.2239 8.04311 16.2022 8.17331 16.1588 8.29481C16.1154 8.41631 16.0416 8.52921 15.9375 8.63341L9.0625 15.5084C8.8715 15.6993 8.6328 15.7948 8.3463 15.7948C8.0599 15.7948 7.8125 15.6993 7.6041 15.5084C7.3958 15.3 7.2916 15.0526 7.2916 14.7662C7.2916 14.4797 7.3958 14.2323 7.6041 14.024L12.6823 8.94591Z' fill='black'/%3E%3C/svg%3E") no-repeat center / contain;
  content: "";
}
.contact-page__form-card {
  width: 800px;
  margin: 50px auto 0;
  padding: 32px 64px 48px;
  border-radius: 4px;
  background: var(--color-white);
  box-shadow: 0 8px 40px -12px rgba(31, 107, 71, .08);
}
.contact-page__form-card iframe {
  display: block;
  width: 100%;
}
.contact-page__policy {
  display: inline-flex;
  align-items: center;
  margin: 120px auto 0;
  color: rgba(0, 0, 0, .62);
  font-size: 14px;
  font-weight: 400;
  gap: 10px;
  line-height: 1.4;
  width: 100%;
  max-width: 800px;
  justify-content: flex-end;
}
.contact-page--thanks .contact-page__body {
  min-height: auto;
  padding-bottom: 176px;
}
.contact-thanks__message {
  width: min(680px, 100%);
  margin-inline: auto;
  color: var(--color-black);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.9;
  text-align: center;
}
.contact-thanks__message p + p {
  margin-top: 36px;
}
.contact-thanks__title {
  font-size: 20px;
  font-weight: 700;
  line-height: 2;
}
.contact-thanks__tel {
  margin-top: 56px;
}
.contact-thanks__tel .contact-page__tel-card {
  margin-top: 0;
}
.form-page--dm .contact-page__heading p {
  text-transform: none;
}
.form-page__intro {
  width: min(760px, 100%);
  margin: 0 auto 54px;
  color: var(--color-black);
  font-size: 16px;
  font-weight: 500;
  line-height: 2;
  text-align: center;
}
.form-page__intro p + p {
  margin-top: 28px;
}
.form-page__section {
  width: 600px;
  margin-inline: auto;
  text-align: center;
}
.form-page__section h2 {
  color: var(--color-black);
  font-size: 36px;
  font-weight: 700;
  letter-spacing: .18em;
  line-height: 1.45;
}
.form-page__section .contact-page__lead {
  margin-top: 16px;
}
.form-page .contact-page__form-card {
  margin-top: 42px;
  overflow: hidden;
}
.form-page__tel {
  margin: 46px auto 76px;
}
.form-page__related {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 36px;
  width: min(800px, 100%);
  margin: 72px auto 0;
}
.form-page__related a {
  position: relative;
  display: flex;
  padding: 36px 36px 32px;
  border-radius: 4px;
  background: var(--color-green);
  color: var(--color-white);
  flex-direction: column;
  box-shadow: none;
}
.form-page__related span {
  color: var(--color-white);
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .34em;
  line-height: 1.4;
}
.form-page__related strong {
  margin-top: 4px;
  color: var(--color-white);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.35;
}
.form-page__related small {
  margin-top: 28px;
  display: flex;
  align-items: center;
  color: var(--color-white);
  font-family: var(--font-en);
  font-size: 12px;
  letter-spacing: .28em;
  line-height: 1;
  gap: 24px;
  justify-content: flex-end;
}
.form-page__related small::after {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 2px solid var(--color-white);
  border-radius: 50%;
  font-family: var(--font-en);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1;
  content: "→";
}
.thanks-page__more {
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin: 34px auto 0;
  color: var(--color-black);
  font-size: 17px;
  font-weight: 700;
  gap: 10px;
  line-height: 1.5;
}

@media screen and (max-width: 767px) {
  /* Contact and form pages */
  .contact-page {
    /*background: #efefed;*/
    overflow-x: hidden;
  }
  .contact-page__body {
    position: relative;
  }
  .contact-page__inner {
    width: calc(100% - 40px);
  }
  .contact-page__heading {
    margin-bottom: 44px;
  }
  .contact-page__heading p {
    font-weight: 700;
    text-transform: lowercase;
  }
  .contact-page__section {
    width: 100%;
    text-align: center;
  }
  .form-page__section {
    width: 100%;
  }
  .contact-page__section h2 {
    color: var(--color-black);
    font-size: 23px;
    font-weight: 700;
    line-height: 1.45;
  }
  .contact-page__lead {
    color: var(--color-black);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.9;
    width: min(100%, 100%);
    max-width: 100%;
    margin: 16px auto 0;
    overflow-wrap: anywhere;
  }
  .contact-page__tel-card {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 118px;
    margin-top: 28px;
    padding: 20px 16px;
    border: 1px solid #0b8d42;
    border-radius: 4px;
    background: var(--color-white);
    color: var(--color-black);
    gap: 13px;
  }
  .contact-page__tel-icon {
    width: 40px;
    height: auto;
  }
  .contact-page__tel-content {
    display: grid;
    gap: 7px;
    text-align: center;
  }
  .contact-page__tel-number {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: .01em;
    line-height: 1;
    gap: 6px;
    margin: 0 0 6px;
  }
  .contact-page__tel-hours {
    color: var(--color-black);
    font-size: 14px;
    margin: 0;
    font-weight: 700;
    line-height: 1.3;
  }
  .contact-page__tel-holiday {
    color: var(--color-green);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
  }
  .contact-page__section--web {
    margin-top: 54px;
  }
  .contact-page__lead--sub {
    margin-top: 14px;
  }
  .contact-page__corp-link {
    font-size: 14px;
  }
  .contact-page__corp-link span {
    line-height: 1;
  }
  .form-page .contact-page__form-card {
    width: 100%;
    /*height: 1200px;*/
    margin: 32px auto 0;
    /*padding: 20px 16px;*/
    padding: 0;
    border-radius: 4px;
    background: var(--color-white);
    box-shadow: 0 18px 44px rgba(0, 0, 0, .04);
    overflow: hidden;
  }
  .contact-page__form-card iframe {
    display: block;
    width: 100%;
    height: 1200px;
    transform-origin: left top;
  }
  .contact-page__policy {
    margin: 40px 0 0 auto;
    font-size: 12px;
    text-align: right;
  }
  .form-page__intro {
    text-align: left;
    margin-bottom: 32px;
  }
  .contact-page--thanks .contact-page__body {
    padding-bottom: 80px;
  }
  .contact-thanks__message p + p {
    font-size: 14px;
  }
  .contact-thanks__title {
    font-size: 16px;
  }
  .form-page__intro p + p {
    font-size: 14px;
    margin-top: 20px;
  }
  .form-page__tel {
    margin: 32px auto 40px;
  }
  .form-page__related {
    margin-top: 32px;
    flex-direction: column;
    display: flex;
    gap: 20px;
  }
  .form-page__related a {
    padding: 24px 16px;
  }
  .form-page__related span {
    font-size: 10px;
  }
  .form-page__related strong {
    font-size: 18px;
  }
  .form-page__related small {
    margin-top: 14px;
    font-size: 10px;
    gap: 16px;
  }
  .form-page__related small::after {
    width: 32px;
    height: 32px;
    font-size: 14px;
  }
}

/* Philosophy page */
.philosophy-page {
  position: relative;
  overflow: hidden;
  background: #f0f0ee;
  color: var(--color-black);
}
.philosophy-page__bg {
  position: absolute;
  z-index: 0;
  top: 214px;
  left: 47%;
  width: 1480px;
  height: 1066px;
  background: url("./assets/images/philosophy/bg.png") center top / 1480px auto no-repeat;
  pointer-events: none;
  transform: translateX(-50%);
}
.philosophy-page > section {
  position: relative;
  z-index: 1;
}
.philosophy-hero {
  padding: 178px 0 0;
}
.philosophy-hero p {
  text-transform: lowercase;
}
.philosophy-intro__inner {
  display: grid;
  gap: 24px;
}
.philosophy-panel {
  display: grid;
  grid-template-columns: 270px 1fr;
  width: min(1000px, 100%);
  margin-inline: auto;
  overflow: hidden;
  border-radius: 4px;
  background: var(--color-white);
  max-width: 100%;
}
.philosophy-panel--concept {
  min-height: 191px;
}
.philosophy-panel--principles {
  min-height: 453px;
}
.philosophy-panel__label {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 17px;
  background: #2d8c5a;
  color: var(--color-white);
  text-align: center;
}
.philosophy-panel__label img {
  width: 41px;
  height: 41px;
  object-fit: contain;
}
.philosophy-panel__label h2 {
  color: var(--color-white);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: .145em;
  line-height: 1;
}
.philosophy-panel__body {
  display: grid;
  place-items: center;
  padding: 42px 64px;
}
.philosophy-catch {
  color: #2d8c5a;
  font-family: var(--font-mincho);
  font-size: 30px;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}
.philosophy-principles {
  display: grid;
  gap: 28px;
  width: min(600px, 100%);
}
.philosophy-principles li {
  display: grid;
  grid-template-columns: 80px 1fr;
  align-items: center;
  gap: 24px;
}
.philosophy-principles li > span {
  display: grid;
  width: 80px;
  height: 80px;
  place-items: center;
  border-radius: 50%;
  background: #2d8c5a;
  color: var(--color-white);
  font-family: var(--font-en);
  font-size: 40px;
  font-weight: 300;
  line-height: 1;
}
.philosophy-principles p {
  color: var(--color-black);
  font-size: 18px;
  line-height: 1.58333;
  letter-spacing: .05em;
}
.philosophy-principles p span {
  color: var(--color-green);
  font-weight: bold;
  border-bottom: 1px solid var(--color-green);
}
.philosophy-principles p small {
  font-size: 14px;
}
.philosophy-vision {
  padding-top: 180px;
}
.philosophy-section-title {
  display: grid;
  justify-items: center;
  gap: 10px;
  text-align: center;
}
.philosophy-section-title h2 {
  color: var(--color-black);
  font-size: 36px;
  font-weight: 700;
  letter-spacing: .08em;
  line-height: 1;
}
.philosophy-section-title p {
  color: #2d8c5a;
  font-family: var(--font-en);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .02em;
  line-height: 1.5;
}
.philosophy-card {
  position: relative;
  width: min(1000px, 100%);
  margin-inline: auto;
  border-radius: 4px;
  background: var(--color-white);
  max-width: 100%;
}
.philosophy-card--vision {
  margin-top: 70px;
  padding: 117px 0 110px;
}
.philosophy-card--vision h3,
.philosophy-card--mission h2 {
  position: absolute;
  top: -35px;
  left: 50%;
  display: grid;
  width: min(500px, calc(100% - 40px));
  min-height: 70px;
  place-items: center;
  border-radius: 4px;
  background: #2d8c5a;
  color: var(--color-white);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: .145em;
  line-height: 1.4;
  text-align: center;
  transform: translateX(-50%);
}
.philosophy-vision__map {
  width: min(548px, calc(100% - 40px));
  margin-inline: auto;
}
.philosophy-company-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 260px));
  justify-content: center;
  gap: clamp(18px, 3vw, 40px);
  margin-top: 74px;
  padding-inline: 48px;
}
.philosophy-company {
  display: grid;
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  align-content: center;
  justify-items: center;
  border-radius: 50%;
  background: #f5f5f2;
  text-align: center;
}
.philosophy-company img {
  width: min(218px, 82%);
  mix-blend-mode: darken;
}
.philosophy-company p {
  margin-top: 7px;
  color: var(--color-black);
  font-size: 12px;
  font-weight: 400;
  line-height: 2;
}
.philosophy-text {
  width: min(600px, calc(100% - 40px));
  margin-inline: auto;
  color: var(--color-black);
  font-size: 16px;
  font-weight: 400;
  line-height: 2;
}
.philosophy-text p + p {
  margin-top: 32px;
}
.philosophy-card--vision .philosophy-text {
  margin-top: 64px;
}
.philosophy-mission {
  padding-top: 107px;
}
.philosophy-card--mission {
  min-height: 694px;
  padding: 103px 0 94px;
}
.philosophy-card__lead {
  color: #2d8c5a;
  font-family: var(--font-mincho);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.34;
  text-align: center;
}
.philosophy-card--mission .philosophy-text {
  margin-top: 31px;
}
.philosophy-logo-section {
  padding: 125px 0;
}
.philosophy-logo-section__inner {
  display: grid;
  grid-template-columns: 385px 144px 350px;
  grid-template-rows: auto auto;
  width: min(960px, 100%);
  align-items: start;
  justify-content: center;
  column-gap: 40px;
  row-gap: 0;
}
.philosophy-section-title--logo {
  grid-column: 1;
  grid-row: 1;
  justify-items: center;
  text-align: left;
}
.philosophy-logo-section__symbol {
  grid-column: 1;
  grid-row: 2;
  display: grid;
  justify-content: center;
}
.philosophy-logo-section__symbol img {
  width: 182px;
}
.philosophy-logo-section__line {
  grid-column: 2;
  grid-row: 1 / 3;
  width: 1px;
  height: 420px;
  margin-inline: auto;
  background: #2d8c5a;
  transform: rotate(14deg);
  transform-origin: center;
  margin-top: -50px;
}
.philosophy-logo-section__text {
  grid-column: 3;
  grid-row: 1 / 3;
  align-self: start;
}
.philosophy-logo-section__text h3 {
  display: grid;
  width: min(350px, 100%);
  min-height: 56px;
  place-items: center;
  border-radius: 4px;
  background: #2d8c5a;
  color: var(--color-white);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .18em;
  line-height: 1;
}
.philosophy-logo-section__text p {
  width: min(359px, 100%);
  margin-top: 92px;
  color: var(--color-black);
  font-size: 16px;
  font-weight: 400;
  line-height: 2;
}
.philosophy-greeting .philosophy-section-title {
  margin-bottom: 62px;
}
.greeting-card {
  position: relative;
  width: min(800px, 100%);
  margin-inline: auto;
  padding: 0 100px 105px;
  border-radius: 4px;
  background: var(--color-white);
  margin-top: 220px;
  max-width: 100%;
}
.greeting-card + .greeting-card {
  margin-top: 240px;
}
.greeting-card__visual {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 350px) minmax(0, 250px);
  width: min(600px, 100%);
  height: 300px;
  transform: translateY(-149px);
}
.greeting-card__visual > img {
  width: 100%;
  height: 300px;
  border-radius: 4px 0 0 4px;
  object-fit: cover;
}
.greeting-card__profile {
  display: grid;
  align-content: center;
  padding: 16px 28px;
  border-radius: 0 4px 4px 0;
  background: #2d8c5a;
  color: var(--color-white);
}
.greeting-card__profile__lead {
  color: var(--color-white);
  font-size: 12px;
  letter-spacing: .02em;
  line-height: 2;
  border-bottom: 1px solid white;
  width: fit-content;
}
.greeting-card__profile__text {
  font-size: 10px;
  line-height: 2;
}
.greeting-card__profile__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #fff;
  color: var(--color-green);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.02em;
  border-radius: 50px;
  margin-top: 20px;
  min-height: 36px;
}
.greeting-card__profile h3 {
  margin-top: 12px;
  margin-bottom: 2px;
  color: var(--color-white);
  font-size: 12px;
  letter-spacing: .06em;
  line-height: 1.5;
  font-weight: normal;
}
.greeting-card__profile dl {
  display: grid;
  gap: 4px;
  margin-top: 4px;
}
.greeting-card__profile div {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 0px;
}
.greeting-card__profile dt,
.greeting-card__profile dd {
  color: var(--color-white);
  font-size: 11px;
  font-weight: 400;
  line-height: 1.65;
}
.greeting-card__body {
  margin-top: -104px;
}
.greeting-card__body > h3 {
  color: #2d8c5a;
  font-family: var(--font-mincho);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.34;
  text-align: center;
}
.greeting-card__body .philosophy-text {
  margin-top: 28px;
}
.greeting-card__signature {
  display: grid;
  justify-items: end;
  margin-top: 43px;
  text-align: right;
}
.greeting-card__signature p {
  color: var(--color-black);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.9;
}
.greeting-card__signature p span {
  font-size: 16px;
  display: block;
  margin-top: 6px;
}
.greeting-card__signature img {
  width: 106px;
  margin-top: 26px;
  margin-right: 20px;
}

@media screen and (min-width: 768px) and (max-width: 1100px) {
  .philosophy-page .l-inner {
    width: min(1000px, calc(100% - 40px));
  }
  .philosophy-panel {
    grid-template-columns: 220px 1fr;
  }
  .philosophy-panel__body {
    padding-inline: 40px;
  }
  .philosophy-logo-section__inner {
    grid-template-columns: minmax(240px, 1fr) 96px minmax(260px, 350px);
    column-gap: 28px;
  }
  .philosophy-logo-section__line {
    height: 380px;
  }
  .greeting-card {
    padding-inline: clamp(40px, 8vw, 100px);
  }
}

@media screen and (min-width: 768px) and (max-width: 900px) {
  .philosophy-panel {
    grid-template-columns: 180px 1fr;
  }
  .philosophy-catch {
    font-size: 26px;
  }
  .philosophy-principles li {
    grid-template-columns: 64px 1fr;
  }
  .philosophy-principles li > span {
    width: 64px;
    height: 64px;
    font-size: 32px;
  }
  .philosophy-principles p {
    font-size: 16px;
  }
  .philosophy-company-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    padding-inline: 28px;
  }
  .philosophy-logo-section__inner {
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: auto;
    row-gap: 34px;
  }
  .philosophy-section-title--logo,
  .philosophy-logo-section__symbol,
  .philosophy-logo-section__text {
    grid-column: 1;
    grid-row: auto;
    justify-self: center;
  }
  .philosophy-logo-section__line {
    display: none;
  }
  .philosophy-logo-section__text {
    width: min(350px, 100%);
  }
  .philosophy-logo-section__text p {
    margin-top: 32px;
  }
}
@media screen and (max-width: 767px) {
  .philosophy-page__bg {
    top: 600px;
    width: 460px;
    height: 341px;
    background: url("./assets/images/philosophy/bg.png") center top / 100% auto no-repeat;
  }
  .philosophy-panel {
    display: block;
    padding: 20px;
    border: 1px solid #D9DDD8;
    border-radius: 4px;
  }
  .philosophy-panel__label {
    padding: 14px 10px 16px;
    gap: 8px;
    border-radius: 4px;
  }
  .philosophy-panel__label h2 {
    font-size: 16px;
  }
  .philosophy-panel__body {
    padding: 20px 0 10px;
  }
  .philosophy-catch {
    font-size: 20px;
  }
  .philosophy-principles li {
    grid-template-columns: 70px 1fr;
    gap: 16px;
  }
  .philosophy-principles li > span {
    width: 70px;
    height: 70px;
  }
  .philosophy-principles p {
    font-size: 14px;
  }
  .philosophy-principles p small {
    font-feature-settings: 'palt';
  }
  .philosophy-section-title h2 {
    font-size: 26px;
  }
  .philosophy-section-title p {
    font-size: 12px;
  }
  .philosophy-vision {
    padding-top: 32px;
  }
  .philosophy-card--vision {
    margin-top: 130px;
    border: 1px solid #D9DDD8;
    padding: 24px 0;
  }
  .philosophy-card--vision h3,
  .philosophy-card--mission h2 {
    top: unset;
    bottom: calc(100% + 20px);
    width: 100%;
    font-size: 20px;
    padding: 20px 0;
  }
  .philosophy-company-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 18px;
  }
  .philosophy-company {
    max-width: 218px;
  }
  .philosophy-company p {
    font-size: 10px;
  }
  .philosophy-card--vision .philosophy-text {
    margin-top: 24px;
    font-size: 14px;
  }
  .philosophy-text p + p {
    margin-top: 24px;
  }
  .philosophy-mission {
    padding-top: 124px;
  }
  .philosophy-card--mission {
    padding: 24px 0;
    min-height: 0;
    border: 1px solid #D9DDD8;
  }
  .philosophy-card__lead {
    font-size: 20px;
    line-height: 1.6;
  }
  .philosophy-card--mission .philosophy-text {
    margin-top: 20px;
  }
  .philosophy-text p {
    font-size: 14px;
  }
  .philosophy-logo-section {
    padding-top: 32px;
    padding-bottom: 60px;
  }
  .philosophy-logo-section__inner {
    display: block;
  }
  .philosophy-logo-section__line {
    display: none;
  }
  .philosophy-logo-section__symbol {
    margin: 24px 0 32px;
  }
  .philosophy-logo-section__symbol img {
    width: 130px;
  }
  .philosophy-logo-section__text {
    width: calc(100% - 40px);
    margin: 0 auto;
  }
  .philosophy-logo-section__text h3 {
    width: 100%;
  }
  .philosophy-logo-section__text p {
    width: 100%;
    margin-top: 18px;
    padding: 0 20px;
    font-size: 14px;
  }
  .philosophy-greeting {
    padding-bottom: 80px;
  }
  .greeting-card {
    padding: 0;
    background: unset;
    margin-top: 130px;
  }
  .greeting-card + .greeting-card {
    margin-top: 130px;
  }
  .greeting-card__visual {
    width: 100%;
    display: flex;
    flex-direction: column;
    margin: 0;
    height: auto;
    transform: translateY(-104px);
  }
  .greeting-card__visual > img {
    height: 170px;
    border-radius: 0;
  }
  .greeting-card__profile {
    border-radius: 0;
    padding: 18px 16px;
  }
  .greeting-card__profile__btn {
    margin-top: 14px;
  }
  .greeting-card__body {
    background: #fff;
    padding: 24px 0;
    border: 1px solid #D9DDD8;
  }
  .greeting-card__body > h3 {
    font-size: 18px;
    line-height: 1.6;
  }
  .greeting-card__signature {
    padding: 0 24px;
  }
  .greeting-card__signature img {
    margin-right: 0;
  }
  .greeting-card__body .philosophy-text {
    margin-top: 20px;
  }
}

.advantage-intro {
  display: flex;
  align-items: center;
  gap: 40px;
  margin: 0 auto 160px;
  justify-content: space-between;
}
.advantage-intro > div {
  width: 500px;
}
.advantage-intro > img {
  width: 607px;
  border-radius: 4px;
  overflow: hidden;
}
.advantage-intro h2 {
  font-size: 32px;
  margin-bottom: 40px;
  font-weight: bold;
}
.advantage-intro p {
  font-size: 16px;
  line-height: 2;
}
.advantage-system-wrap {
  padding: 100px 0;
  background: #fff;
}
.advantage-system-wrap + .lower-inner {
  padding-top: 142px;
}
.advantage-system {
  /*margin-bottom: 200px;*/
}
.advantage-system-title {
  text-align: center;
  margin-bottom: 40px;
}
.advantage-system-title p {
  font-size: 20px;
}
.advantage-system-title h2 {
  font-size: 36px;
  font-weight: bold;
}
.advantage-system-flow {
  display: flex;
  flex-wrap: wrap;
  max-width: 836px;
  margin: 0 auto;
}
.advantage-system-flow img {
  width: 100%;
}
.advantage-system-flow01 {
  width: 21.65075%;
}
.advantage-system-flow02 {
  width: 51.79425%;
}
.advantage-system-flow03 {
  width: 26.555%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.advantage-system-flow04 {
  max-width: 620px;
  margin: 24px auto 0;
}
.advantage-system-flow05 {
  max-width: 620px;
  margin: 8px auto 0;
}
.strength-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.strength-card {
  background-color: #fff;
  border-radius: 4px;
  padding: 40px 50px;
  display: flex;
  gap: 20px 50px;
  align-items: center;
  position: relative;
  overflow: hidden;
  flex-wrap: wrap;
}
.strength-card::after {
  content: "";
  display: block;
  position: absolute;
  top: 30px;
  right: 50px;
  background-size: 100% auto;
  background-repeat: no-repeat;
}
.strength-card:nth-of-type(1)::after {
  background-image: url(./assets/images/advantage/icon_strength01.svg);
  width: 131px;
  height: 139px;
  top: 20px;
  right: 580px;
}
@media screen and (max-width: 1130px) {
  .strength-card:nth-of-type(1)::after {
    display: none;
  }
}
.strength-card:nth-of-type(2)::after {
  background-image: url(./assets/images/advantage/icon_strength02.svg);
  width: 131px;
  height: 109px;
  top: 50%;
  transform: translateY(-50%);
}
.strength-card:nth-of-type(3)::after {
  background-image: url(./assets/images/advantage/icon_strength03.svg);
  width: 172px;
  height: 119px;
  top: 50%;
  transform: translateY(-50%);
}
.strength-card:nth-of-type(4)::after {
  background-image: url(./assets/images/advantage/icon_strength04.svg);
  width: 107px;
  height: 124px;
  top: 50%;
  transform: translateY(-50%);
}
.strength-card:nth-of-type(5)::after {
  background-image: url(./assets/images/advantage/icon_strength05.svg);
  width: 119px;
  height: 112px;
  top: 33px;
}
.strength-card:nth-of-type(1) {
  flex-wrap: nowrap;
}
.strength-card:nth-of-type(1) .strength-card-content {
  width: 550px;
}
.strength-card h3 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
  display: flex;
  gap: 16px;
  align-items: center;
}
.strength-card h3 span {
  font-size: 34px;
  color: var(--color-green);
  font-family: "Roboto", sans-serif;
}
.strength-card-image {
  border-radius: 4px;
  overflow: hidden;
  max-width: 500px;
}
.strength-suport {
  width: 100%;
  display: flex;
  gap: 22px;
}
.strength-suport-wrap {
  width: calc( (100% / 2) - 11px);
  background: #F3F8F4;
  border-radius: 4px;
}
.strength-suport-wrap:nth-of-type(2) {
  background: #E6ECF2;
}
.strength-suport-wrap-head {
  display: flex;
  align-items: center;
  padding: 16px 20px;
  color: #fff;
  background: var(--color-green);
  border-radius: 4px 4px 0 0;
}
.strength-suport-wrap:nth-of-type(2) .strength-suport-wrap-head {
  background: #2D5088;
}
.strength-suport-wrap-head-lead {
  font-size: 20px;
  padding-right: 12px;
}
.strength-suport-wrap-head-desc {
  font-size: 12px;
  line-height: 1.3;
  border-left: 1px solid #fff;
  padding-left: 12px;
}
.strength-suport-wrap-head-logo {
  margin-left: auto;
  width: auto;
  height: 24px;
}
.strength-suport-wrap-head-logo img {
  width: auto;
  height: 24px;
}
.strength-suport-wrap-body {
  padding: 20px 30px;
  display: flex;
  gap: 12px;
  justify-content: space-between;
}
@media screen and (max-width: 1200px) {
  .strength-suport-wrap-head {
    flex-wrap: wrap;
  }
  .strength-suport-wrap-head-logo {
    width: 100%;
    margin-top: 8px;
  }
  .strength-suport-wrap-head-logo img {
    margin-left: auto;
  }
}
.strength-suport-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 235px;
}
.strength-suport-item {
  display: flex;
  align-items: center;
  gap: 16px;
}
.strength-suport-item:not(:last-of-type) {
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid #fff;
}
.strength-suport-item-img {
  width: 42px;
}
.strength-suport-item-title {
  font-size: 14px;
  font-weight: bold;
}
.strength-suport-item-desc {
  font-size: 10px;
}
.advantage-system-flow01,
.advantage-system-flow02,
.advantage-system-flow03,
.advantage-system-flow04,
.advantage-system-flow05 {
  opacity: 0;
  transition: opacity 1.5s ease, transform 1.5s ease;
}
.advantage-system-flow01.is-show,
.advantage-system-flow02.is-show,
.advantage-system-flow03.is-show,
.advantage-system-flow04.is-show,
.advantage-system-flow05.is-show {
  opacity: 1;
}
.advantage-system-flow03 img:nth-of-type(3).is-blink {
  animation: advantageBlink 2s ease-in-out infinite;
}

@keyframes advantageBlink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.15;
  }
}
@media screen and (max-width: 767px) {
  .advantage-intro {
    flex-direction: column;
    align-items: center;
    gap: 32px;
    margin: 0 auto 64px;
    justify-content: space-between;
  }
  .advantage-intro > div {
    width: 100%;
  }
  .advantage-intro > img {
    width: 100%;
  }
  .advantage-intro h2 {
    font-size: 24px;
    margin-bottom: 20px;
  }
  .advantage-intro p {
    font-size: 13px;
  }
  .advantage-system-wrap {
    padding: 64px 0;
    background: #fff;
  }
  .advantage-system-wrap + .lower-inner {
    padding-top: 64px;
  }
  .advantage-system {
    /*margin-bottom: 64px;*/
  }
  .advantage-system-title {
    margin-bottom: 20px;
  }
  .advantage-system-title p {
    font-size: 14px;
  }
  .advantage-system-title h2 {
    font-size: 26px;
  }
  .advantage-system-flow {
    display: flex;
    flex-wrap: wrap;
    max-width: 836px;
  }
  .advantage-system-flow01 {
    width: 100%;
  }
  .advantage-system-flow02 {
    width: 100%;
  }
  .advantage-system-flow03 {
    width: 100%;
    flex-wrap: wrap;
    gap: 6px 2%;
    display: flex;
    flex-direction: row;
    justify-content: center;
  }
  .advantage-system-flow03 img {
    width: 31%;
  }
  .advantage-system-flow03 img:nth-of-type(1) {
    order: 4;
  }
  .advantage-system-flow03 img:nth-of-type(2) {
    order: 1;
  }
  .advantage-system-flow03 img:nth-of-type(3) {
    order: 2;
  }
  .advantage-system-flow03 img:nth-of-type(4) {
    order: 3;
  }
  .advantage-system-flow03 img:nth-of-type(5) {
    order: 5;
  }
  .advantage-system-flow04 {
    max-width: 620px;
    margin: 24px auto 0;
  }
  .advantage-system-flow05 {
    max-width: 620px;
    margin: 8px auto 0;
  }
  .strength-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .strength-card {
    padding: 20px 16px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
  }
  .strength-card::after {
    top: 20px;
    right: 20px;
  }
  .strength-card:nth-of-type(1)::after {
    width: 80px;
    height: 89px;
    top: 20px;
    right: 20px;
    display: block;
  }
  .strength-card:nth-of-type(2)::after {
    width: 80px;
    height: 67px;
    top: 20px;
    right: 20px;
    transform: unset;
  }
  .strength-card:nth-of-type(3)::after {
    width: 100px;
    height: 70px;
    top: 20px;
    right: 20px;
    transform: unset;
  }
  .strength-card:nth-of-type(4)::after {
    width: 80px;
    height: 92px;
    top: 20px;
    right: 20px;
    transform: unset;
  }
  .strength-card:nth-of-type(5)::after {
    width: 80px;
    height: 76px;
    top: 20px;
    right: 20px;
    transform: unset;
  }
  .strength-card:nth-of-type(1) .strength-card-content {
    width: 100%;
  }
  .strength-card h3 {
    font-size: 18px;
    margin-bottom: 6px;
    display: flex;
    gap: 10px;
    align-items: center;
  }
  .strength-card h3 span {
    font-size: 26px;
  }
  .strength-card p {
    font-size: 14px;
  }
  .strength-card-image {
    border-radius: 4px;
    max-width: 500px;
  }
  .strength-suport {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .strength-suport-wrap {
    width: 100%;
    border-radius: 4px;
  }
  .strength-suport-wrap:nth-of-type(2) {
  }
  .strength-suport-wrap-head {
    display: flex;
    align-items: center;
    padding: 16px 20px;
  }
  .strength-suport-wrap-head-lead {
    font-size: 20px;
    padding-right: 12px;
  }
  .strength-suport-wrap-head-desc {
    font-size: 12px;
    line-height: 1.3;
  }
  .strength-suport-wrap-head-logo {
    margin-left: auto;
    width: auto;
    height: 24px;
  }
  .strength-suport-wrap-head-logo img {
    width: auto;
    height: 24px;
  }
  .strength-suport-wrap-body {
    padding: 20px 16px;
    flex-direction: column;
    gap: 16px;
    justify-content: flex-start;
  }
  .strength-suport-list {
    width: 100%;
    padding-bottom: 10px;
    border-bottom: 1px solid #fff;
  }
  .strength-suport-item {
    display: flex;
    align-items: center;
    gap: 16px;
  }
  .strength-suport-item-img {
    width: 42px;
  }
  .strength-suport-item-title {
    font-size: 14px;
  }
  .strength-card .strength-suport-item-desc {
    font-size: 10px;
  }
}

body.page-numbers {
  background-image: url(./assets/images/numbers/img01.png);
  background-size: 1300px;
  background-position: center top 60px;
  background-repeat: no-repeat;
}
body.page-numbers .lower-hero {
  margin-bottom: 158px;
}
.numbers-list {
  display: flex;
  flex-direction: row-reverse;
  gap: 20px;
  min-width: 1200px;
  margin-bottom: 150px;
}
.numbers-list-left {
  width: 460px;
  display: flex;
  flex-direction: column;
  gap: 26px;
}
.numbers-item {
  border-radius: 4px;
  background: #fff;
  box-shadow: 0 4px 4px rgba(0,0,0,.1);
  height: 100%;
  position: relative;
}
.numbers-item01 {
  width: 720px;
  min-height: 750px;
  padding: 50px;
  background-image: url(./assets/images/numbers/img02.png);
  background-position: center bottom;
  background-size: cover;
  background-repeat: no-repeat;
}
.numbers-item02 {
  padding: 50px 50px 43px 50px;
  background-image: url(./assets/images/numbers/img03.png);
  background-position: center right;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.numbers-item03 {
  padding: 27px 25px 23px 25px;
  background-image: url(./assets/images/numbers/img04.png);
  background-position: center right;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.numbers-item01 .numbers-item-head {
  width: 260px;
}
.numbers-item02 .numbers-item-head {
  width: 210px;
}
.numbers-item03 .numbers-item-head {
  width: 210px;
  text-align: center;
}
.numbers-item-lead {
  background: var(--color-green);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  border-radius: 999px;
  height: 36px;
  width: 100%;
  margin-bottom: 10px;
}
.numbers-item-title {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 10px;
}
.numbers-item-text {
  font-size: 14px;
}
.numbers-item01-img {
  position: absolute;
  top: 114px;
  left: 116px;
  width: 430px;
}
.numbers-item01-west-line {
  position: absolute;
  top: 313px;
  left: 198px;
  width: 118px;
}
.numbers-item01-east-line {
  position: absolute;
  top: 398px;
  left: 444px;
  width: 67px;
}
.numbers-item01-area-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: bold;
}
.numbers-item01-area-chart {
  width: 50px;
}
.num-text ,
.js-num {
  font-family: "Zen Old Mincho", serif;
  font-weight: 600;
  line-height: 1;
}
.numbers-item01-area-num {
  font-size: 40px;
  color: #F98E0D;
}
.numbers-item01-area-east .numbers-item01-area-num {
  color: #2697ED;
}
.numbers-item01-area-num span {
  font-size: 100px;
}
.numbers-item01-area-text {
  font-size: 14px;
}
.numbers-item01-area-west {
  position: absolute;
  top: 230px;
  left: 50px;
}
.numbers-item01-area-east {
  position: absolute;
  top: 332px;
  left: 515px;
}
.numbers-item02 .numbers-item-title {
  margin-bottom: 0;
}
.numbers-item02-num {
  font-size: 24px;
}
.numbers-item02-num span {
  font-size: 100px;
  color: var(--color-green);
}
.numbers-item03-list {
  display: flex;
  flex-direction: column;
  width: 254px;
}
.numbers-item03-item {
  display: flex;
  flex-direction: column;
  border-top: 1px solid #ccc;
  padding: 6px 0;
}
.numbers-item03-item-title {
  display: flex;
  align-items: center;
  font-size: 24px;
  font-weight: bold;
  padding-left: 42px;
}
.numbers-item03-item-title span {
  font-size: 12px;
  margin-left: 10px;
  font-weight: normal;
}
.numbers-item03-item-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.numbers-item03-item-wrap-chart {
  width: 50px;
  height: 50px;
}
.numbers-item03-item-wrap-num {
  color: var(--color-green);
  font-size: 30px;
}
.numbers-item03-item-wrap-num span {
  font-size: 64px;
}
.numbers-item03-item-wrap-num span.decimal {
  font-size: 39px;
}

.numbers-list2 {
  min-width: 1200px;
  display: flex;
  gap: 26px;
}
.numbers-list-right {
  width: 460px;
  display: flex;
  flex-direction: column;
  gap: 26px;
}
.numbers-item04 {
  padding: 45px 50px;
  width: 720px;
  height: auto;
}
.numbers-item04-title {
  font-size: 32px;
  font-weight: bold;
  position: relative;
  padding-bottom: 7px;
  width: fit-content;
}
.numbers-item04-title:after {
  content: "";
  background: var(--color-green);
  border-radius: 100px;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 5px;
  width: 100%;
}
.numbers-item04-img {
  position: absolute;
  top: 161px;
  left: 60px;
  width: 432px;
}
.numbers-item04-item {
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 10px;
  box-shadow: 0 4px 4px rgba(0,0,0,.1 );
  width: fit-content;
  padding: 16px 14px 9px;
  position: absolute;
}
.numbers-item04-item-title {
  color: #fff;
  font-size: 14px;
  border-radius: 5px;
  padding: 0 6px;
  font-weight: bold;
  position: absolute;
  top: -11px;
  left: -10px;
}
.numbers-item04-item:nth-of-type(1) .numbers-item04-item-title { background: #57B3DB; }
.numbers-item04-item:nth-of-type(2) .numbers-item04-item-title { background: #42AFAB; }
.numbers-item04-item:nth-of-type(3) .numbers-item04-item-title { background: #F98E0D; }
.numbers-item04-item:nth-of-type(4) .numbers-item04-item-title { background: #DBDB3D; }
.numbers-item04-item:nth-of-type(5) .numbers-item04-item-title { background: #F2A745; }
.numbers-item04-item:nth-of-type(6) .numbers-item04-item-title { background: #E6504E; }
.numbers-item04-item:nth-of-type(7) .numbers-item04-item-title { background: #FF7089; }
.numbers-item04-item:nth-of-type(8) .numbers-item04-item-title { background: #FF0303; }
.numbers-item04-item:nth-of-type(1) {
  top: 296px;
  left: 463px;
  color: #57B3DB;
}
.numbers-item04-item:nth-of-type(2) {
  top: 410px;
  left: 463px;
  color: #42AFAB;
}
.numbers-item04-item:nth-of-type(3) {
  top: 524px;
  left: 393px;
  color: #F98E0D;
}
.numbers-item04-item:nth-of-type(4) {
  top: 168px;
  left: 63px;
  color: #DBDB3D;
}
.numbers-item04-item:nth-of-type(5) {
  top: 691px;
  left: 282px;
  color: #F2A745;
}
.numbers-item04-item:nth-of-type(6) {
  top: 282px;
  left: 63px;
  color: #E6504E;
}
.numbers-item04-item:nth-of-type(7) {
  top: 691px;
  left: 63px;
  color: #FF7089;
}
.numbers-item04-item:nth-of-type(8) {
  top: 62px;
  left: 369px;
  color: #FF0303;
}
.numbers-item04-item-wrap-chart {
  width: 50px;
  height: 50px;
}
.numbers-item04-item-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}
.numbers-item04-item-wrap-num {
  font-size: 32px;
  position: relative;
  top: -4px;
}
.numbers-item04-item-wrap-num span {
  font-size: 64px;
}
.numbers-item04-item-wrap-num span.decimal {
  font-size: 50px;
}
.numbers-item04-item:nth-of-type(3) .numbers-item04-item-wrap-num span:not(.decimal) {
  font-size: 80px;
}
.numbers-item04-item:nth-of-type(3) .numbers-item04-item-wrap-chart {
  width: 64px;
  height: 64px;
}
.numbers-map-china {
  width: 74px;
}
.numbers-icon-home {
  position: absolute;
  bottom: 60px;
  right: 54px;
  width: 128px;
}
.numbers-item05 {
  padding: 25px;
}
.numbers-item06 {
  padding: 25px 25px 36px;
}
.numbers-item07 {
  padding: 25px;
}
.numbers-item05-title ,
.numbers-item06-title ,
.numbers-item07-title {
  font-size: 24px;
  font-weight: bold;
  position: relative;
  padding-bottom: 7px;
  width: fit-content;
  margin: 0 auto;
}
.numbers-item05-title:after ,
.numbers-item06-title:after ,
.numbers-item07-title:after {
  content: "";
  background: var(--color-green);
  border-radius: 100px;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 5px;
  width: 100%;
}
.numbers-item05-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 16px;
  gap: 26px;
}
.numbers-item05-wrap-num {
  color: var(--color-green);
  font-size: 40px;
}
.numbers-item05-wrap-num span {
  font-size: 100px;
}
.numbers-item05-wrap-num-new {
  color: #fff;
  font-weight: bold;
  font-size: 24px;
  padding: 16px 20px;
  border-radius: 999px;
  background: var(--color-green);
}
.numbers-item05-wrap-num-new span {
  font-family: var(--font-ja);
}
.numbers-item06-chart {
  position: absolute;
  width: 100px;
  height: 100px;
  top: 118px;
  left: 50%;
  transform: translateX(-50%);
}
.numbers-item06-wrap {
  display: flex;
  justify-content: space-between;
  margin-top: -40px;
  padding: 0 20px;
}
.numbers-item06-wrap-item {
  width: 100px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  text-align: center;
}
.numbers-item06-wrap-item > img {
  width: 55px;
  display: block;
  margin-bottom: 16px;
}
.numbers-item06-wrap-item-text {
  font-weight: bold;
  font-size: 14px;
}
.numbers-item06-wrap-item-num {
  font-size: 32px;
}
.numbers-item06-wrap-item-num span {
  font-size: 64px;
}
.numbers-item06-wrap-item:nth-of-type(1) .numbers-item06-wrap-item-num {
  color: #4C79BF;
}
.numbers-item06-wrap-item:nth-of-type(2) .numbers-item06-wrap-item-num {
  color: #EA8EA1;
}
.numbers-item07-chart {
  position: absolute;
  width: 100px;
  height: 100px;
  top: 118px;
  left: 50%;
  transform: translateX(-50%);
}
.numbers-item07-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px 100px;
}
.numbers-item07-wrap-item {
  width: 140px;
  display: flex;
  text-align: center;
  flex-direction: column;
  align-items: center;
}
.numbers-item07-wrap-item:nth-of-type(1) {order: 2;}
.numbers-item07-wrap-item:nth-of-type(2) {order: 4;}
.numbers-item07-wrap-item:nth-of-type(3) {order: 3;}
.numbers-item07-wrap-item:nth-of-type(4) {order: 1;}
.numbers-item07-wrap-item-text {
  font-size: 14px;
  font-weight: bold;
}
.numbers-item07-wrap-item-num {
  font-size: 24px;
  line-height: 1;
}
.numbers-item07-wrap-item-num span {
  font-size: 50px;
}
.numbers-item07-wrap-item-num span.decimal {
  font-size: 32px;
}
.numbers-item07-wrap-item:nth-of-type(1) .numbers-item07-wrap-item-num {color: #57ADF8;}
.numbers-item07-wrap-item:nth-of-type(2) .numbers-item07-wrap-item-num {color: #B1DF65;}
.numbers-item07-wrap-item:nth-of-type(3) .numbers-item07-wrap-item-num {color: #FCA696;}
.numbers-item07-wrap-item:nth-of-type(4) .numbers-item07-wrap-item-num {color: #FECB4C;}
.numbers-item07-position {
  width: 200px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  border-radius: 999px;
  background: var(--color-green);
  margin: 12px auto 0;
}
.numbers-item07-position span {
  font-family: var(--font-ja);
}
@media screen and (max-width: 767px) {
  body.page-numbers {
    background-image: url(./assets/images/numbers/img01_sp.png);
    background-size: 390px auto;
    background-position: right top 110px;
    background-repeat: no-repeat;
  }
  body.page-numbers .lower-hero {
    margin-bottom: 190px;
  }
  .numbers-list {
    flex-direction: column;
    gap: 20px;
    min-width: 100%;
    margin-bottom: 48px;
    overflow: hidden;
  }
  .numbers-list-left {
    width: 100%;
    gap: 20px;
  }
  .numbers-item01 {
    width: 100%;
    min-height: unset;
    padding: 30px 20px 36vw;
    background-image: url(./assets/images/numbers/img02_sp.png);
  }
  .numbers-item02 {
    padding: calc(36vw + 20px) 20px 24px;
    background-image: url(./assets/images/numbers/img03_sp.png);
    background-position: center top;
    background-size: cover;
  }
  .numbers-item03 {
    padding: calc(36vw + 20px) 20px 24px;
    background-image: url(./assets/images/numbers/img04_sp.png);
    background-position: center top;
  }
  .numbers-item01 .numbers-item-head {
    width: 260px;
    margin: 0 auto;
  }
  .numbers-item02 .numbers-item-head {
    width: 260px;
    margin: 0 auto;
  }
  .numbers-item03 .numbers-item-head {
    width: 260px;
    margin: 0 auto;
  }
  .numbers-item-lead {
    font-size: 14px;
    height: 34px;
    margin-bottom: 6px;
  }
  .numbers-item-title {
    font-size: 20px;
    text-align: center;
    margin-bottom: 5px;
  }
  .numbers-item-text {
    font-size: 12px;
    text-align: center;
  }
  .numbers-item01-img {
    position: relative;
    top: unset;
    left: unset;
    width: 200px;
    margin: 14px auto;
  }
  .numbers-item01-west-line {
    display: none;
  }
  .numbers-item01-east-line {
    display: none;
  }
  .numbers-item01-area {
    display: flex;
    justify-content: center;
    gap: 20px;
  }
  .numbers-item01-area-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: bold;
  }
  .numbers-item01-area-chart {
    width: 30px;
    height: 30px;
  }
  .numbers-item01-area-num {
    font-size: 40px;
  }
  .numbers-item01-area-num span {
    font-size: 80px;
  }
  .numbers-item01-area-text {
    font-size: 12px;
    margin-top: 6px;
  }
  .numbers-item01-area-west {
    position: relative;
    top: unset;
    left: unset;
    width: 130px;
  }
  .numbers-item01-area-east {
    position: relative;
    top: unset;
    left: unset;
    width: 130px;
  }
  .numbers-item02 .numbers-item-title {
    margin-bottom: 0;
  }
  .numbers-item02-num {
    font-size: 18px;
    text-align: center;
  }
  .numbers-item02-num span {
    font-size: 72px;
  }
  .numbers-item03-list {
    width: 260px;
    margin: 0 auto;
  }
  .numbers-item03-item {
    padding: 10px 0;
  }
  .numbers-item03-item:last-of-type {
    padding-bottom: 0;
  }
  .numbers-item03-item-title {
    font-size: 20px;
    padding-left: 0;
    justify-content: center;
  }
  .numbers-list2 {
    flex-direction: column;
    min-width: unset;
    gap: 20px;
    overflow: hidden;
  }
  .numbers-list-right {
    width: 100%;
    gap: 20px;
  }
  .numbers-item04 {
    padding: 20px;
    width: 100%;
    height: auto;
  }
  .numbers-item04-title {
    font-size: 20px;
    margin: 0 auto 20px;
  }
  .numbers-item04-img {
    position: relative;
    top: unset;
    left: unset;
    width: 200px;
    margin: 0 auto 32px;
  }
  .numbers-item04-list {
    display: flex;
    flex-wrap: wrap;
    gap: 24px 10px;
    max-width: 300px;
    margin: 0 auto;
  }
  .numbers-item04-item {
    width: calc((100% / 2) - 5px);
    padding: 16px 10px 12px;
    position: relative;
    top: unset !important;
    left: unset !important;
    box-shadow: unset;
  }
  .numbers-item04-item-title {
    font-size: 13px;
    position: relative;
    top: unset;
    left: unset;
    margin: -28px auto 6px;
    width: fit-content;
    min-width: 50px;
    text-align: center;
  }
  .numbers-item04-item-wrap-chart {
    width: 30px;
    height: 30px;
  }
  .numbers-item04-item-wrap {
    gap: 2px;
  }
  .numbers-item04-item-wrap-num {
    font-size: 20px;
    position: relative;
    top: -4px;
    width: calc(100% - 2px - 30px);
    text-align: center;
  }
  .numbers-item04-item-wrap-num span {
    font-size: 40px;
  }
  .numbers-item04-item-wrap-num span.decimal {
    font-size: 30px;
  }
  .numbers-item04-item:nth-of-type(3) .numbers-item04-item-wrap-num span:not(.decimal) {
    font-size: 40px;
  }
  .numbers-item04-item:nth-of-type(3) .numbers-item04-item-wrap-chart {
    width: 30px;
    height: 30px;
  }
  .numbers-map-china {
    width: 74px;
  }
  .numbers-icon-home {
    position: absolute;
    bottom: 60px;
    right: 54px;
    width: 128px;
  }
  .numbers-item05 ,
  .numbers-item06 ,
  .numbers-item07 {
    padding: 24px 20px;
  }
  .numbers-item05-title ,
  .numbers-item06-title ,
  .numbers-item07-title {
    font-size: 20px;
  }
  .numbers-item05-wrap {
    gap: 8px;
  }
  .numbers-item05-wrap-num span {
    font-size: 60px;
  }
  .numbers-item05-wrap-num-new {
    font-size: 18px;
    padding: 11px 20px;
  }
  .numbers-item06-chart {
    position: relative;
    top: unset;
    margin-top: 20px;
  }
  .numbers-item06-wrap {
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    padding: 0;
  }
  .numbers-item06-wrap-item {
    width: 100px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
  }
  .numbers-item06-wrap-item > img {
    height: 65px;
  }
  .numbers-item07-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
  }
  .numbers-item07-chart {
    position: relative;
    top: unset;
    left: unset;
    transform: unset;
  }
  .numbers-item07-wrap {
    justify-content: flex-start;
    gap: 4px 100px;
    margin-left: -25px;
    width: 185px;
  }
  .numbers-item07-wrap-item {
    width: 185px;
    display: flex;
    text-align: unset;
    flex-direction: row;
    align-items: center;
    gap: 10px;
  }
  .numbers-item07-wrap-item:nth-of-type(1) {order: 1;}
  .numbers-item07-wrap-item:nth-of-type(2) {order: 2;}
  .numbers-item07-wrap-item:nth-of-type(3) {order: 3;}
  .numbers-item07-wrap-item:nth-of-type(4) {order: 4;}
  .numbers-item07-wrap-item-text {
    font-size: 14px;
    width: 5em;
    text-align: right;
  }
  .numbers-item07-wrap-item-num {
    font-size: 24px;
    line-height: 1;
  }
  .numbers-item07-wrap-item-num span {
    font-size: 50px;
  }
  .numbers-item07-wrap-item-num span.decimal {
    font-size: 32px;
  }
  .numbers-item07-wrap-item:nth-of-type(1) .numbers-item07-wrap-item-num {color: #57ADF8;}
  .numbers-item07-wrap-item:nth-of-type(2) .numbers-item07-wrap-item-num {color: #B1DF65;}
  .numbers-item07-wrap-item:nth-of-type(3) .numbers-item07-wrap-item-num {color: #FCA696;}
  .numbers-item07-wrap-item:nth-of-type(4) .numbers-item07-wrap-item-num {color: #FECB4C;}
  .numbers-item07-position {
    margin: 20px auto 0;
  }
}

.contract-filter__detail {
  min-width: 0;
  /*margin: 0;*/
  padding: 0;
  border: 0;
}

.contract-filter__detail-inner {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
}

.contract-filter-dropdown {
  position: relative;
  min-width: 0;
}

.contract-filter-dropdown__button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 37px;
  padding: 8px 8px;
  border: 2px solid #2D8C5A;
  border-radius: 100px;
  background: #fff;
  font-size: 15px;
  font: inherit;
  font-weight: 500;
  line-height: 1.4;
  cursor: pointer;
  transition:
    background-color 0.2s ease,
    color 0.2s ease;
}

/* 「すべて」以外が選択されている状態 */
.contract-filter-dropdown__button.is-active {
  background: #2D8C5A;
  color: #fff;
}

/* 開いているボタン */
 .contract-filter-dropdown__button.is-active {
  background: #2D8C5A;
  color: #fff;
}

.contract-filter-dropdown__menu {
  position: absolute;
  z-index: 20;
  top: calc(100% + 3px);
  left: 0;
  min-width: 110px;
  padding: 8px 10px;
  border-radius: 4px;
  background: #fff;
  box-shadow:
    0 4px 14px rgba(0, 0, 0, 0.12);
  width: 100%;
}

.contract-filter-dropdown__menu[hidden] {
  display: none;
}

.contract-filter-radio {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 2px;
  font-size: 14px;
  line-height: 1.4;
  white-space: nowrap;
  cursor: pointer;
}

.contract-filter-radio input {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.contract-filter-radio__icon {
  position: relative;
  display: block;
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  border: 2px solid #2D8C5A;
  border-radius: 50%;
  background: #fff;
}

.contract-filter-radio input:checked + .contract-filter-radio__icon::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #2D8C5A;
  content: "";
  transform: translate(-50%, -50%);
}

.contract-filter-radio input:focus-visible + .contract-filter-radio__icon {
  outline: 2px solid #2D8C5A;
  outline-offset: 2px;
}

.contract-filter__clear-wrap {
  display: flex;
  justify-content: flex-end;
  margin-top: 15px;
}

.contract-filter__clear {
  padding: 0;
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  color: #2D8C5A;
  font: inherit;
  font-size: 16px;
  line-height: 1.4;
  cursor: pointer;
}

.contract-filter__clear:hover {
  border-bottom-color: transparent;
}

@media (max-width: 767px) {
  .contract-filter-dropdown__button {
    border-width: 1px;
    font-size: 13px;
    padding: 0;
    font-feature-settings: 'palt';
  }

  .contract-filter__detail-inner {
    /*grid-template-columns: 1fr;*/
  }

  .contract-filter__clear {
    font-size: 14px;
  }

  .contract-filter-radio {
    gap: 4px;
    padding: 4px 2px;
    font-size: 13px;
  }

  .contract-filter-radio__icon {
    width: 18px;
    height: 18px;
  }

  .contract-filter-radio input:checked + .contract-filter-radio__icon::before {
    width: 9px;
    height: 9px;
  }
}

div.dt-processing {
  top: 0;
  left: 0;
  display: flex !important;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background: rgba(255,255,255,.8);
  margin: 0;
  width: 100%;
  height: 100%;
  border-radius: 4px;
}
div.dt-processing>div:last-child>div {
  background: #2D8C5A;
}
div.dt-processing[style*="display: none"] {
  display: none !important;
}

body.assessment {
  padding-top: 70px;
  background-image: url(./assets/images/lower/assessment_bg.png?3);
  background-position: right top;
  background-size: 1440px auto;
  background-repeat: no-repeat;
}
@media screen and (min-width: 768px) and (max-width: 1440px) {
  body.assessment {
    background-image: url(./assets/images/lower/assessment_bg.png?3);
    background-position: center top;
    background-size: 1440px auto;
  }
}
@media (min-width: 768px) {
  body.assessment .form-page .contact-page__form-card {
    background-position: center top;
    margin-top: 50px;
  }
}
@media (max-width: 767px) {
  body.assessment {
    padding-top: 50px;
    background-image: url(./assets/images/lower/assessment_bg_sp.png?3);
    background-position: top -20px right;
    background-size: auto 230px;
  }
  body.assessment .contact-page__lead {
    display: flex;
    justify-content: center;
    text-align: left;
  }
}

html.is-form-open .service-accordion {
  width: 100% !important;
}
html.is-form-open .service-accordion__button {
  pointer-events: none;
  background-color: #E87A2E;
}
html.is-form-open .service-accordion__icon {
  background-color: #E87A2E;
}
html.is-form-open .service-accordion__icon:before ,
html.is-form-open .service-accordion__icon:after {
  display: none;
}
html.is-form-open .service-accordion__content.form-page {
  display: block !important;
}

.sl-wrapper {
  z-index: 4000 !important;
}
.sl-overlay {
  background: rgba(165, 190, 177, 0.8) !important;
  opacity: 1 !important;
  z-index: 3000 !important;
}
.div_rmark-rap {
  display: flex;
  gap: 40px;
  margin-bottom: 40px;
}
.dl_rmark {
  width: calc((100% - 40px) / 2);
}
.dl_rmark dt {
  font-size: 18px;
  font-weight: bold;
  color: var(--color-green);
  margin-bottom: 8px;
}
.dl_rmark dd {
  display: flex;
  gap: 16px;
}
@media screen and (max-width: 767px) {
  .div_rmark-rap {
    gap: 24px;
    margin-bottom: 24px;
  }
  .dl_rmark {
    width: calc((100% - 24px) / 2);
  }
  .dl_rmark dt {
    font-size: 16px;
  }
  .dl_rmark dd {
    flex-direction: column;
    font-size: 1vpx;
  }
}

.copyright {
  background: #000;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .6);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: .05em;
  padding: 18px 0;
  font-family: var(--font-en);
}
@media screen and (max-width: 767px) {
  .copyright {
    font-size: 10px;
  }
}