@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

ul {
  list-style-type: none;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol,
div {
  margin: 0;
  padding: 0;
}

html {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 10px;
  color: #404547;
  scroll-behavior: smooth;
}

body.has-banner-bg .header__wrapper {
  background-color: transparent;
}
body.has-banner-bg .header.is-toggled {
  background-color: #fff;
}
body.has-banner-bg .header.is-toggled .header__wrapper {
  background-color: #fff;
}
body.has-banner-bg .header.is-toggled .header__drawer-toggle span {
  background-color: #404547;
}
body.has-banner-bg .header.is-toggled .header__logo {
  -webkit-filter: unset;
  filter: unset;
}
body.has-banner-bg .header.is-toggled .header__link span {
  padding-bottom: 1px;
  background: -webkit-gradient(
      linear,
      left top,
      right top,
      from(#404547),
      to(#404547)
    )
    no-repeat 0% 100%/0% 1px;
  background: linear-gradient(to right, #404547 0%, #404547 100%) no-repeat 0%
    100%/0% 1px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  color: #404547;
}
@media screen and (max-width: 1024px) {
  body.has-banner-bg .header.is-toggled .header__link span {
    padding-bottom: 0 !important;
    background: none !important;
    -webkit-transition: none !important;
    transition: none !important;
  }
}
body.has-banner-bg .header.is-toggled .header__link:hover span {
  background-size: 100% 1px;
}
@media screen and (max-width: 1024px) {
  body.has-banner-bg .header.is-toggled .header__link:hover span {
    background-size: unset;
  }
}
body.has-banner-bg .header__link span {
  color: #fff;
  background: -webkit-gradient(
      linear,
      left top,
      right top,
      from(#fff),
      to(#fff)
    )
    no-repeat 0% 100%/0% 1px;
  background: linear-gradient(to right, #fff 0%, #fff 100%) no-repeat 0% 100%/0%
    1px;
}
@media screen and (max-width: 1024px) {
  body.has-banner-bg .header__link span {
    padding-bottom: 0 !important;
    background: none !important;
    -webkit-transition: none !important;
    transition: none !important;
  }
}
body.has-banner-bg .header__link:hover span {
  background-size: 100% 1px;
}
@media screen and (max-width: 1024px) {
  body.has-banner-bg .header__link:hover span {
    background-size: unset;
  }
}
body.has-banner-bg .header__drawer-toggle span {
  background-color: #fff;
}
body.has-banner-bg .header__logo {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}
body.has-banner-bg main {
  padding-top: 0;
}
body.has-banner-bg .breadcrumbs {
  padding-block: 13.5px;
  background-color: #f8f8f8;
}

main {
  padding-top: 100px;
}
@media screen and (max-width: 1600px) {
  main {
    padding-top: 65px;
  }
}
@media screen and (max-width: 1200px) {
  main {
    padding-top: 60px;
  }
}

.container {
  padding: 0 16%;
  margin: 0 auto;
  max-width: calc(1200px + 32%);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
@media screen and (max-width: 1200px) {
  .container {
    max-width: 100%;
    padding: 0 10%;
  }
}
@media screen and (max-width: 767px) {
  .container {
    padding: 0 5%;
  }
}

.image {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}
.image--100 {
  height: 100%;
}
.image--auto {
  width: auto;
}
.image--contain {
  -o-object-fit: contain;
  object-fit: contain;
}

.button {
  border: 1px solid transparent;
  border-radius: 40px;
  margin-inline: auto;
  padding-inline: 60px;
  position: relative;
  width: 100%;
  max-width: 380px;
  height: 70px;
  font-weight: 700;
  font-size: 1.8rem;
  letter-spacing: 0.03em;
  line-height: 1.7777777778em;
  color: #fff;
  text-align: center;
  background: #007453;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .button {
    padding-inline: 50px;
    max-width: 295px;
    height: 64px;
    font-size: 14px;
    line-height: 2.2857142857em;
  }
}
.button__arrow {
  border-radius: 50%;
  margin: auto;
  position: absolute;
  inset: 0 20px 0 auto;
  width: 35px;
  height: 35px;
  background: #fff;
  -webkit-transition: inherit;
  transition: inherit;
}
@media screen and (max-width: 767px) {
  .button__arrow {
    right: 15px;
    width: 34px;
    height: 34px;
  }
}
.button__arrow::after {
  content: '';
  margin: auto;
  position: absolute;
  inset: 0;
  width: 14px;
  aspect-ratio: 1;
  background: #007453;
  -webkit-mask: url('../public/img/icons/arrow.svg') no-repeat center/contain;
  mask: url('../public/img/icons/arrow.svg') no-repeat center/contain;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.button__arrow--tr {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.button:hover {
  border-color: #007453;
  color: #007453;
  background: #fff;
}
.button:hover .button__arrow {
  background: #007453;
}
.button:hover .button__arrow::after {
  background: #fff;
}
.button--orange {
  background: #d97b00;
}
.button--orange .button__arrow::after {
  background: #d97b00;
}
.button--orange:hover {
  border-color: #d97b00;
  color: #d97b00;
}
.button--orange:hover .button__arrow {
  background: #d97b00;
}
.button--black {
  background: #404547;
}
.button--black:hover {
  border-color: #404547;
  color: #404547;
  background: #fff;
}
.button--black:hover .button__arrow {
  background: #404547;
}
.button--black:hover .button__arrow::after {
  background: #fff;
}
.button--blue {
  background-color: #5e9cd4;
}
.button--blue .button__arrow::after {
  background: #5e9cd4;
}
.button--blue:hover {
  color: #5e9cd4;
  background: #fff;
  border-color: #5e9cd4;
}
.button--blue:hover .button__arrow {
  background: #5e9cd4;
}
.button--blue:hover .button__arrow::after {
  background: #fff;
}
.button--brown {
  background-color: #8b795e;
}
.button--brown .button__arrow::after {
  background: #8b795e;
}
.button--brown:hover {
  color: #8b795e;
  background: #fff;
  border-color: #8b795e;
}
.button--brown:hover .button__arrow {
  background: #8b795e;
}
.button--brown:hover .button__arrow::after {
  background: #fff;
}

.bubble {
  --bubble-color: #007453;
  border: 3px solid var(--bubble-color);
  border-radius: 30px;
  margin-inline: auto;
  padding: 15px;
  position: relative;
  width: 100%;
  max-width: 428px;
  font-weight: 700;
  font-size: 1.8rem;
  color: #404547;
  letter-spacing: 0.03em;
  text-align: center;
  background: #fff;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .bubble {
    padding: 9.5px;
    max-width: 280px;
    font-size: 15px;
  }
}
.bubble::before,
.bubble::after {
  content: '';
  position: absolute;
  margin: auto;
  left: 0;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  -webkit-transform: scaleY(-1);
  transform: scaleY(-1);
}
.bubble::after {
  border-width: 0 7.5px 8px;
  border-color: transparent transparent #fff transparent;
  bottom: -7px;
}
@media screen and (max-width: 767px) {
  .bubble::after {
    border-width: 0 10.5px 11px;
    bottom: -10px;
  }
}
.bubble::before {
  border-width: 0 9px 9px;
  border-color: transparent transparent var(--bubble-color) transparent;
  bottom: -10.5px;
}
@media screen and (max-width: 767px) {
  .bubble::before {
    border-width: 0 12px 12px;
    bottom: -14px;
  }
}
.bubble__text-color {
  color: var(--bubble-color);
}
.bubble--brown {
  --bubble-color: #c5a45c;
}
.bubble--blue {
  --bubble-color: #5e9cd4;
}

.content-heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  margin-bottom: 60px;
  padding-bottom: 30px;
  border-bottom: 1px solid #cfcfcf;
}
@media screen and (max-width: 767px) {
  .content-heading {
    margin-bottom: 30px;
    padding-bottom: 20px;
  }
}
.content-heading--clear {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.content-heading--blue .content-heading__en,
.content-heading--blue .content-heading__jp {
  color: #5e9cd4;
}
.content-heading--brown .content-heading__en,
.content-heading--brown .content-heading__jp {
  color: #8b795e;
}
.content-heading__en {
  font-family: 'Roboto', sans-serif;
  color: #007453;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 2em;
  letter-spacing: 0.01em;
}
@media screen and (max-width: 767px) {
  .content-heading__en {
    font-size: 14px;
  }
}
.content-heading__jp {
  margin-top: 16px;
  color: #007453;
  font-size: 4.2rem;
  line-height: 0.7619047619em;
  letter-spacing: 0.01em;
}
@media screen and (max-width: 767px) {
  .content-heading__jp {
    margin-top: 10px;
    font-size: 30px;
  }
}

.header {
  position: fixed;
  z-index: 999;
  top: 0;
  width: 100%;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
.header.scrolled .header__wrapper {
  background-color: #fff;
}
.header.scrolled .header__drawer-toggle span {
  background-color: #404547;
}
.header.scrolled .header__logo {
  -webkit-filter: unset;
  filter: unset;
}
.header.scrolled .header__link span {
  padding-bottom: 1px;
  background: -webkit-gradient(
      linear,
      left top,
      right top,
      from(#404547),
      to(#404547)
    )
    no-repeat 0% 100%/0% 1px;
  background: linear-gradient(to right, #404547 0%, #404547 100%) no-repeat 0%
    100%/0% 1px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  color: #404547;
}
@media screen and (max-width: 1024px) {
  .header.scrolled .header__link span {
    padding-bottom: 0 !important;
    background: none !important;
    -webkit-transition: none !important;
    transition: none !important;
  }
}
.header.scrolled .header__link:hover span {
  background-size: 100% 1px;
}
@media screen and (max-width: 1024px) {
  .header.scrolled .header__link:hover span {
    background-size: unset;
  }
}
.header__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: 100px;
  padding: 0 30px;
  background-color: #fff;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 1600px) {
  .header__wrapper {
    height: 65px;
  }
}
@media screen and (max-width: 767px) {
  .header__wrapper {
    height: 60px;
    padding: 0 5%;
  }
}
.header__wrapper.has-banner-bg {
  background-color: transparent;
}
.header__logo {
  max-width: 262px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 1600px) {
  .header__logo {
    max-width: 170px;
  }
}
@media screen and (max-width: 767px) {
  .header__logo {
    max-width: 150px;
  }
}
.header__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 55px;
  margin-left: auto;
}
@media screen and (max-width: 1600px) {
  .header__menu {
    gap: 40px;
  }
}
@media screen and (max-width: 1200px) {
  .header__menu {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10px;
    margin-left: 0;
  }
}
.header__menu-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.header__link {
  position: relative;
  font-size: 2rem;
  font-weight: 500;
  line-height: 2em;
  letter-spacing: 0.01em;
}
@media screen and (max-width: 1600px) {
  .header__link {
    font-size: 1.4rem;
  }
}
.header__link span {
  padding-bottom: 1px;
  background: -webkit-gradient(
      linear,
      left top,
      right top,
      from(#404547),
      to(#404547)
    )
    no-repeat 0% 100%/0% 1px;
  background: linear-gradient(to right, #404547 0%, #404547 100%) no-repeat 0%
    100%/0% 1px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 1024px) {
  .header__link span {
    padding-bottom: 0 !important;
    background: none !important;
    -webkit-transition: none !important;
    transition: none !important;
  }
}
.header__link:hover span {
  background-size: 100% 1px;
}
@media screen and (max-width: 1024px) {
  .header__link:hover span {
    background-size: unset;
  }
}
.header__link--sub {
  font-size: 1.8rem;
  line-height: 1.7777777778em;
}
@media screen and (max-width: 1600px) {
  .header__link--sub {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .header__link--sub {
    font-size: 12px;
  }
}
.header__drawer {
  position: absolute;
  z-index: -1;
  top: 100px;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10%;
  width: 100%;
  height: 0;
  overflow-y: auto;
  padding: 30px 10%;
  background-color: #0f4737;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 1600px) {
  .header__drawer {
    top: 65px;
    padding: 30px 5%;
  }
}
@media screen and (max-width: 1366px) {
  .header__drawer {
    gap: 5%;
  }
}
@media screen and (max-width: 1024px) {
  .header__drawer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 30px;
  }
}
@media screen and (max-width: 767px) {
  .header__drawer {
    top: 60px;
    padding: 25px 5%;
  }
}
.header__drawer.is-toggled {
  z-index: 1;
  opacity: 1;
  visibility: visible;
  -webkit-transition: height 0.3s ease, opacity 0.5s ease 0.1s;
  transition: height 0.3s ease, opacity 0.5s ease 0.1s;
}
.header__drawer-logo {
  width: 40%;
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}
@media screen and (max-width: 1200px) {
  .header__drawer-logo {
    width: 35%;
  }
}
@media screen and (max-width: 1024px) {
  .header__drawer-logo {
    width: 50%;
  }
}
@media screen and (max-width: 767px) {
  .header__drawer-logo {
    width: 75%;
  }
}
.header__drawer-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 60%;
  padding: 70px;
  background-color: #fff;
  border-radius: 10px;
}
@media screen and (max-width: 1600px) {
  .header__drawer-content {
    padding: 40px;
  }
}
@media screen and (max-width: 1200px) {
  .header__drawer-content {
    width: 65%;
    padding: 40px 30px;
  }
}
@media screen and (max-width: 1024px) {
  .header__drawer-content {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .header__drawer-content {
    padding: 20px 20px 30px;
  }
}
.header__drawer-heading {
  margin-bottom: 30px;
}
@media screen and (max-width: 1024px) {
  .header__drawer-heading {
    margin-bottom: 20px;
  }
}
.header__drawer-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  .header__drawer-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10px;
  }
}
@media screen and (max-width: 767px) {
  .header__drawer-list {
    gap: unset;
  }
}
.header__drawer-col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 25px;
}
@media screen and (max-width: 1024px) {
  .header__drawer-col {
    gap: unset;
  }
}
@media screen and (max-width: 1024px) {
  .header__drawer-col--icon {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    gap: 20px 8px;
  }
}
@media screen and (max-width: 1024px) {
  .header__drawer-col--icon {
    padding-bottom: 20px;
    border-bottom: 1px solid #cfcfcf;
  }
}
@media screen and (max-width: 767px) {
  .header__drawer-col--icon {
    gap: 8px;
  }
}
.header__drawer-col--sub {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 10px;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .header__drawer-col--sub {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    height: 0;
    padding-top: 0;
    opacity: 0;
    visibility: hidden;
  }
}
@media screen and (max-width: 1024px) {
  .header__drawer-col--sub.is-toggled {
    height: -webkit-max-content;
    height: -moz-max-content;
    height: max-content;
    padding-top: 20px;
    opacity: 1;
    visibility: visible;
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
  }
}
@media screen and (max-width: 1024px) {
  .header__toggle-icon::before {
    content: '';
    position: absolute;
    top: 28px;
    right: 5px;
    width: 14px;
    height: 3px;
    background: #007453;
    border-radius: 3px;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
  }
}
@media screen and (max-width: 1024px) {
  .header__toggle-icon::after {
    content: '';
    position: absolute;
    top: 28px;
    right: 5px;
    width: 14px;
    height: 3px;
    background: #007453;
    border-radius: 3px;
  }
}
@media screen and (max-width: 1024px) {
  .header__toggle-icon.is-toggled::before {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    -webkit-transform: initial;
    transform: initial;
  }
}
.header__drawer-item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 1024px) {
  .header__drawer-item {
    gap: unset;
  }
}
@media screen and (max-width: 1024px) {
  .header__drawer-item:not(.header__drawer-item--icon):not(
      .header__drawer-item--sub
    ) {
    width: 100%;
    padding: 20px 0;
    border-bottom: 1px solid #cfcfcf;
  }
}
@media screen and (max-width: 1024px) {
  .header__drawer-item::after {
    content: '';
    position: absolute;
    top: 20px;
    right: 5px;
    width: 14px;
    height: 14px;
    background: url('../public/img/icons/arrow.svg') no-repeat center/contain;
  }
}
@media screen and (max-width: 1024px) {
  .header__drawer-item:not(.header__drawer-item--toggle):hover::after {
    -webkit-transform: translateX(5px);
    transform: translateX(5px);
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
  }
}
.header__drawer-item--icon {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media screen and (max-width: 1200px) {
  .header__drawer-item--icon {
    gap: 10px;
  }
}
@media screen and (max-width: 1024px) {
  .header__drawer-item--icon {
    gap: 10px;
    width: calc(50% - 4px);
  }
}
@media screen and (max-width: 1024px) {
  .header__drawer-item--icon::after {
    content: none;
  }
}
.header__drawer-item--icon:hover {
  opacity: 0.8;
}
.header__drawer-item--icon:hover .header__drawer-item-image img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
@media screen and (max-width: 1024px) {
  .header__drawer-item--toggle::after {
    display: none;
  }
}
@media screen and (max-width: 1024px) {
  .header__drawer-item--sub {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 3px;
  }
}
@media screen and (max-width: 1024px) {
  .header__drawer-item--sub::after {
    position: relative;
    top: unset;
    right: unset;
    width: 12px;
    height: 12px;
    margin-top: 2px;
    background: url('../public/img/icons/caret-gray.svg') no-repeat
      center/contain;
  }
}
.header__drawer-item-image {
  width: 80px;
  height: 80px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  border-radius: 5px;
  overflow: hidden;
}
@media screen and (max-width: 1200px) {
  .header__drawer-item-image {
    width: 55px;
    height: 55px;
  }
}
.header__drawer-item-image img {
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
}
.header__drawer-item-text {
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.3333333333em;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 1600px) {
  .header__drawer-item-text {
    font-size: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .header__drawer-item-text {
    font-size: 14px;
  }
}
.header__drawer-toggle {
  position: relative;
  width: 45px;
  height: 30px;
  margin-left: 75px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  cursor: pointer;
}
@media screen and (max-width: 1600px) {
  .header__drawer-toggle {
    width: 40px;
    height: auto;
    aspect-ratio: 45/30;
  }
}
@media screen and (max-width: 767px) {
  .header__drawer-toggle {
    width: 28px;
    height: 20px;
  }
}
.header__drawer-toggle span {
  position: absolute;
  top: 0;
  display: block;
  width: 45px;
  height: 2px;
  background-color: #404547;
  border-radius: 2px;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
}
@media screen and (max-width: 1600px) {
  .header__drawer-toggle span {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .header__drawer-toggle span {
    width: 28px;
  }
}
.header__drawer-toggle span:nth-of-type(2) {
  top: 15px;
}
@media screen and (max-width: 1600px) {
  .header__drawer-toggle span:nth-of-type(2) {
    top: 12px;
  }
}
@media screen and (max-width: 767px) {
  .header__drawer-toggle span:nth-of-type(2) {
    top: 10px;
  }
}
.header__drawer-toggle span:last-of-type {
  top: 30px;
}
@media screen and (max-width: 1600px) {
  .header__drawer-toggle span:last-of-type {
    top: 25px;
  }
}
@media screen and (max-width: 767px) {
  .header__drawer-toggle span:last-of-type {
    top: 20px;
  }
}
.header__drawer-toggle.is-toggled span {
  top: 15px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
@media screen and (max-width: 767px) {
  .header__drawer-toggle.is-toggled span {
    top: 10px;
  }
}
.header__drawer-toggle.is-toggled span:nth-of-type(2) {
  opacity: 0;
  -webkit-transform: translateX(20px);
  transform: translateX(20px);
}
.header__drawer-toggle.is-toggled span:last-of-type {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.header__drawer-btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  margin-top: 40px;
}
@media screen and (max-width: 1024px) {
  .header__drawer-btns {
    margin-top: 20px;
  }
}
.header__drawer-btn {
  width: 50%;
  max-width: 100%;
}
@media screen and (max-width: 767px) {
  .header__drawer-btn {
    height: 42px;
    padding-inline: 10px;
  }
}
@media screen and (max-width: 1024px) {
  .header__drawer-btn span.button__arrow {
    display: none;
  }
}

.footer {
  font-weight: 500;
  background: #0f4737;
}
.footer--mizuboro {
  background: #0c3f65;
}
.footer--mizuboro .footer__cta-button {
  background: #ecf7ff;
  color: #5e9cd4;
  border: transparent;
}
.footer--mizuboro .footer__cta-button:hover {
  color: #fff;
  background: #5e9cd4;
}
.footer--mizuboro .footer__cta-button:hover .footer__cta-arrow {
  background: #fff;
}
.footer--mizuboro .footer__cta-button:hover .footer__cta-arrow::after {
  background: #5e9cd4;
}
.footer--mizuboro .footer__cta-arrow {
  background-color: #5e9cd4;
}
.footer--mizuboro .footer__cta-bubble {
  border-color: #5e9cd4;
}
.footer--mizuboro .footer__cta-bubble::before {
  border-color: transparent transparent #5e9cd4 transparent;
}
.footer--mizuboro .bubble__text-color {
  color: #5e9cd4;
}
.footer--rental {
  background: #3b2f1d;
}
.footer--rental .footer__cta-button {
  background: #fff8f1;
  color: #8b795e;
  border: transparent;
}
.footer--rental .footer__cta-button:hover {
  color: #fff;
  background: #8b795e;
}
.footer--rental .footer__cta-button:hover .footer__cta-arrow {
  background: #fff;
}
.footer--rental .footer__cta-button:hover .footer__cta-arrow::after {
  background: #8b795e;
}
.footer--rental .footer__cta-arrow {
  background-color: #8b795e;
}
.footer--rental .footer__cta-bubble {
  border-color: #8b795e;
}
.footer--rental .footer__cta-bubble::before {
  border-color: transparent transparent #8b795e transparent;
}
.footer--rental .bubble__text-color {
  color: #8b795e;
}
.footer__content {
  color: #fff;
  padding: 0 16%;
  margin: 0 auto;
  max-width: calc(1200px + 32%);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
@media screen and (max-width: 1200px) {
  .footer__content {
    max-width: 100%;
    padding: 0 10%;
  }
}
@media screen and (max-width: 767px) {
  .footer__content {
    padding: 0 5%;
  }
}
.footer__content {
  padding-top: 110px;
}
.footer__cta {
  position: relative;
}
.footer__cta-bubble {
  position: absolute;
  letter-spacing: 0.05em;
  inset: -30px 0 auto;
}
@media screen and (max-width: 767px) {
  .footer__cta-bubble {
    top: -34px;
  }
}
.footer__cta-button {
  border-radius: 80px;
  height: 160px;
  max-width: 600px;
  font-size: 3.5rem;
  letter-spacing: 0.05em;
  color: #007453;
  background: #f2e2be;
}
@media screen and (max-width: 767px) {
  .footer__cta-button {
    height: 100px;
    max-width: 335px;
    font-size: 24px;
  }
}
.footer__cta-button:hover {
  color: #f2e2be;
  background: #007453;
}
.footer__cta-button:hover .footer__cta-arrow {
  background: #f2e2be;
}
.footer__cta-button:hover .footer__cta-arrow::after {
  background: #007453;
}
.footer__cta-arrow {
  width: 60px;
  height: 60px;
  background: #007453;
}
@media screen and (max-width: 767px) {
  .footer__cta-arrow {
    width: 40px;
    height: 40px;
  }
}
.footer__cta-arrow::after {
  width: 22px;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .footer__cta-arrow::after {
    width: 18px;
  }
}
.footer__main,
.footer__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.footer__main {
  padding-block: 64px 58px;
  gap: 30px;
}
@media screen and (max-width: 1200px) {
  .footer__main {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
@media screen and (max-width: 767px) {
  .footer__main {
    padding-block: 48px 38px;
    gap: 50px;
  }
}
.footer__info {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.footer__name {
  font: 400 3rem 'Roboto', sans-serif;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 767px) {
  .footer__name {
    font-size: 24px;
  }
}
.footer__company {
  margin-block: 35px 12px;
  display: block;
  font-size: 2rem;
  letter-spacing: 0.05em;
  line-height: 1.6em;
}
@media screen and (max-width: 767px) {
  .footer__company {
    margin-block: 16px 10px;
    font-size: 18px;
    line-height: 1.7777777778em;
  }
}
.footer__addr {
  font-size: 1.6rem;
  line-height: 2em;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .footer__addr {
    font-size: 14px;
  }
}
.footer__nav {
  width: 61.667%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 26px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media screen and (max-width: 1200px) {
  .footer__nav {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  }
}
@media screen and (max-width: 767px) {
  .footer__nav {
    grid-template-columns: repeat(auto-fit, minmax(155px, 1fr));
    gap: 30px 0;
  }
}
.footer__link {
  display: block;
  font-size: 2rem;
  letter-spacing: 0.05em;
  line-height: 1.6em;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 767px) {
  .footer__link {
    font-size: 18px;
    line-height: 1.7777777778em;
  }
}
.footer__link:not(:first-child) {
  margin-top: 26px;
}
@media screen and (max-width: 767px) {
  .footer__link:not(:first-child) {
    margin-top: 30px;
  }
}
.footer__link--sub {
  font-size: 1.6rem;
  line-height: 2em;
}
@media screen and (max-width: 767px) {
  .footer__link--sub {
    font-size: 14px;
  }
}
.footer__link--sub:not(:first-child) {
  margin-top: 8px;
}
@media screen and (max-width: 767px) {
  .footer__link--sub:not(:first-child) {
    margin-top: 12px;
  }
}
@media screen and (max-width: 767px) {
  .footer__link--title + .footer__link--sub {
    margin-top: 16px;
  }
}
.footer__link:hover {
  opacity: 0.7;
}
.footer__bottom {
  padding-bottom: 80px;
}
@media screen and (max-width: 1080px) {
  .footer__bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
@media screen and (max-width: 767px) {
  .footer__bottom {
    padding-bottom: 72px;
    gap: 36px;
  }
}
@media screen and (max-width: 1080px) {
  .footer__copyright {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
}
.footer__copyright,
.footer__policy-link {
  font-size: 1.4rem;
  line-height: 2.2857142857em;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 1080px) {
  .footer__copyright,
  .footer__policy-link {
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  .footer__copyright,
  .footer__policy-link {
    font-size: 12px;
    line-height: 2.6666666667em;
  }
}
.footer__policy {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  gap: 40px;
}
@media screen and (max-width: 1080px) {
  .footer__policy {
    margin-block: 48px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 24px;
  }
}
@media screen and (max-width: 767px) {
  .footer__policy {
    margin: 0;
    gap: 12px;
  }
}
.footer__policy-link {
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.footer__policy-link:hover {
  opacity: 0.7;
}

.footer-contact {
  position: relative;
  padding-block: 80px;
}
@media screen and (max-width: 767px) {
  .footer-contact {
    padding-block: 72px;
  }
}
.footer-contact__bg {
  position: absolute;
  inset: 0;
}
.footer-contact__bg::before,
.footer-contact__bg::after {
  content: '';
  position: absolute;
  inset: 0;
}
.footer-contact__bg::after {
  opacity: 0.6;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(#95a0bf),
    to(transparent)
  );
  background: linear-gradient(to bottom, #95a0bf, transparent);
}
.footer-contact__bg::before {
  background-color: #d1d1d1;
  mix-blend-mode: multiply;
  isolation: isolate;
}
.footer-contact__content-wrap {
  padding: 0 16%;
  margin: 0 auto;
  max-width: calc(1200px + 32%);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
@media screen and (max-width: 1200px) {
  .footer-contact__content-wrap {
    max-width: 100%;
    padding: 0 10%;
  }
}
@media screen and (max-width: 767px) {
  .footer-contact__content-wrap {
    padding: 0 5%;
  }
}
.footer-contact__content {
  border-radius: 10px;
  position: relative;
  margin: auto;
  padding: 40px;
  background: #fff;
  z-index: 1;
  max-width: 880px;
}
@media screen and (max-width: 1024px) {
  .footer-contact__content {
    max-width: 530px;
  }
}
@media screen and (max-width: 767px) {
  .footer-contact__content {
    padding: 32px 10px;
    max-width: 335px;
  }
}
.footer-contact__button {
  font-size: 2rem;
  line-height: 1.6em;
}
@media screen and (max-width: 767px) {
  .footer-contact__button {
    padding-inline: 30px;
    font-size: 14px;
    max-width: 262px;
  }
}
@media screen and (max-width: 767px) {
  .footer-contact__button-arrow {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
}
.footer-contact__tgl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #d97b00;
  gap: 8px;
  font-size: 2rem;
  letter-spacing: 0.03em;
  font-weight: 700;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .footer-contact__tgl {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
@media screen and (max-width: 767px) {
  .footer-contact__tgl {
    gap: 14px;
    font-size: 14px;
    line-height: 1.7142857143em;
  }
}
.footer-contact__tgl::before,
.footer-contact__tgl::after {
  content: '';
  width: 20px;
  height: 2px;
  position: relative;
  top: 16px;
  background: #d97b00;
  -webkit-transform: rotate(47deg);
  transform: rotate(47deg);
}
@media screen and (max-width: 1024px) {
  .footer-contact__tgl::before,
  .footer-contact__tgl::after {
    top: auto;
  }
}
@media screen and (max-width: 767px) {
  .footer-contact__tgl::before,
  .footer-contact__tgl::after {
    border-radius: 1px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
  }
}
.footer-contact__tgl::after {
  -webkit-transform: scaleX(-1) rotate(47deg);
  transform: scaleX(-1) rotate(47deg);
}
.footer-contact__main {
  margin: 16px auto 24px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 767px) {
  .footer-contact__main {
    margin-block: 10px 20px;
  }
}
.footer-contact__title {
  font-size: 4.2rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 767px) {
  .footer-contact__title {
    font-size: 32px;
    line-height: 1.65em;
  }
}
.footer-contact__icon {
  display: inline-block;
  margin-right: 16px;
  margin-bottom: -10px;
  width: 54px;
}
@media screen and (max-width: 1024px) {
  .footer-contact__icon {
    margin-left: 40px;
  }
}
@media screen and (max-width: 767px) {
  .footer-contact__icon {
    margin-right: 12px;
    margin-bottom: -5px;
    width: 39px;
  }
}

.fab {
  position: fixed;
  z-index: 997;
  right: 30px;
  bottom: 30px;
  opacity: 0;
  visibility: hidden;
  -webkit-animation: fab-fadein 0.6s forwards 0.3s;
  animation: fab-fadein 0.6s forwards 0.3s;
  -webkit-transition: opacity 0.3s ease, visibility 0.3s ease;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
@media screen and (max-width: 767px) {
  .fab {
    left: 0;
    right: unset;
    bottom: 0;
    width: 100%;
    padding: 15px 5%;
    background-color: #f2e2be;
    -webkit-animation: none;
    animation: none;
    opacity: 1;
    visibility: visible;
  }
}
.fab:hover {
  color: #fff;
}
.fab:hover .fab__content {
  background: #d97b00;
}
.fab:hover .fab__icon::after {
  background: #fff;
}
@media screen and (max-width: 767px) {
  .fab.hidden {
    opacity: 0;
    visibility: hidden;
  }
}
.fab__content {
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
  width: 164px;
  height: 164px;
  aspect-ratio: 1/1;
  background-color: #f2e2be;
  border-radius: 50%;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .fab__content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
    width: auto;
    height: auto;
    aspect-ratio: unset;
    padding: 10px 0;
    background-color: #d97b00;
    border-radius: 5px;
  }
}
.fab__content::before {
  content: '';
  position: absolute;
  top: -10px;
  left: -10px;
  width: 58px;
  height: 65px;
  background: url('../public/img/icons/fab-mail-bubble.svg') no-repeat
    center/contain;
}
@media screen and (max-width: 767px) {
  .fab__content::before {
    content: none;
  }
}
.fab__label {
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .fab__label {
    color: #fff;
    font-size: 14px;
  }
}
.fab__icon {
  position: relative;
  width: 16px;
  height: 16px;
}
@media screen and (max-width: 767px) {
  .fab__icon {
    width: 18px;
    height: 18px;
    margin-top: 1px;
  }
}
.fab__icon::after {
  content: '';
  margin: auto;
  position: absolute;
  inset: 0;
  aspect-ratio: 1;
  background: #d97b00;
  -webkit-mask: url('../public/img/icons/arrow.svg') no-repeat center/contain;
  mask: url('../public/img/icons/arrow.svg') no-repeat center/contain;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
@media screen and (max-width: 767px) {
  .fab__icon::after {
    content: none;
  }
}

.filter-group__subgroup + .filter-group__subgroup {
  margin-top: 32px;
}
@media screen and (max-width: 767px) {
  .filter-group__subgroup + .filter-group__subgroup {
    margin-top: 20px;
  }
}
.filter-group__subgroup:first-child {
  border-top: 1px solid #cfcfcf;
  padding-top: 40px;
}
.filter-group__subgroup:last-child {
  border-bottom: 1px solid #cfcfcf;
  padding-bottom: 70px;
}
.filter-group__fieldset {
  border: none;
}
.filter-group__legend {
  margin-bottom: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 16px;
}
@media screen and (max-width: 767px) {
  .filter-group__legend {
    margin-bottom: 12px;
    gap: 8px;
  }
}
.filter-group__icon {
  height: 24px;
}
@media screen and (max-width: 767px) {
  .filter-group__icon {
    height: 20px;
  }
}
.filter-group__title {
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 767px) {
  .filter-group__title {
    font-size: 18px;
  }
}
.filter-group__search-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(225px, 1fr));
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .filter-group__search-list {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 13px;
  }
}
.filter-group__location-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 13px;
}
.filter-group__tag-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 20px 16px;
}
@media screen and (max-width: 767px) {
  .filter-group__tag-list {
    gap: 13px;
  }
}
.filter-group__link-btn,
.filter-group__tag-display {
  border-radius: 5px;
  font-weight: 500;
  background: #f8f8f8;
}
.filter-group__link-btn {
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  height: 100px;
  padding: 12px;
  font-size: 1.8rem;
  text-align: center;
  letter-spacing: 0.03em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .filter-group__link-btn {
    padding: 8px;
    font-size: 14px;
    height: 60px;
  }
}
.filter-group__link-btn:hover {
  color: #fff;
  background: #007453;
}
.filter-group__link-btn.active {
  color: #fff;
  background: #007453;
}
.filter-group__link-btn--fill {
  grid-column: 1/-1;
}
.filter-group__link-btn--img {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  text-align: left;
}
.filter-group__link-btn--small {
  height: 60px;
}
@media screen and (max-width: 767px) {
  .filter-group__link-btn--small {
    height: 40px;
  }
}
.filter-group__link-btn--uppercase {
  text-transform: uppercase;
}
.filter-group__link-btn-img {
  border-radius: 5px;
  margin-right: 20px;
  width: 76px;
  aspect-ratio: 1;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .filter-group__link-btn-img {
    border-radius: 3px;
    margin-right: 10px;
    height: 100%;
    width: auto;
  }
}
.filter-group__tag-input {
  display: none;
}
.filter-group__tag-input:checked + .filter-group__tag-display {
  background: #f2f9f6;
}
.filter-group__tag-input:checked + .filter-group__tag-display::before {
  border-color: #007453;
  background: #007453 url('../public/img/icons/check.svg') no-repeat center/12px
    auto;
}
@media screen and (max-width: 767px) {
  .filter-group__tag-input:checked + .filter-group__tag-display::before {
    background-size: 9px;
  }
}
.filter-group__tag-display {
  padding: 8px 16px 8px 12px;
  font-size: 1.6rem;
  letter-spacing: 0.03em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
@media screen and (max-width: 767px) {
  .filter-group__tag-display {
    padding: 5px 12px 5px 8px;
    font-size: 13px;
  }
}
.filter-group__tag-display::before {
  content: '';
  border-radius: 2px;
  border: 1px solid #cfcfcf;
  display: block;
  width: 20px;
  height: auto;
  aspect-ratio: 1;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .filter-group__tag-display::before {
    width: 14px;
  }
}
.filter-group__tag-link {
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.filter-group__tag-link::before {
  content: none;
}
.filter-group__tag-link:hover {
  color: #fff;
  background: #007453;
}
.filter-group__form {
  position: relative;
}
.filter-group__button {
  position: absolute;
  inset: auto 0 -32px 0;
  max-width: 300px;
  height: 55px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
}

.reco + .reco {
  margin-top: 64px;
}
@media screen and (max-width: 767px) {
  .reco + .reco {
    margin-top: 32px;
  }
}
.reco__container {
  padding-block: 64px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .reco__container {
    padding-block: 20px;
  }
}
.reco__container::after {
  content: '';
  border-radius: 10px;
  position: absolute;
  inset: 0 auto 0 50%;
  width: 116%;
  height: 100%;
  background: #f2f9f6;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .reco__container::after {
    width: 108%;
  }
}
.reco__heading {
  margin-bottom: 56px;
}
@media screen and (max-width: 767px) {
  .reco__heading {
    margin-bottom: 30px;
  }
}
.reco__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
@media screen and (max-width: 1024px) {
  .reco__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
.reco__list--case {
  gap: 26px;
}
@media screen and (max-width: 767px) {
  .reco__list--case {
    gap: 16px;
  }
}
.reco__list--product {
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .reco__list--product {
    gap: 24px;
  }
}
.reco__case-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.reco__case-card:hover {
  opacity: 0.9;
}
.reco__case-card:hover .reco__case-card-thumbnail img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
.reco__case-card-thumbnail {
  overflow: hidden;
  aspect-ratio: 280/185;
}
.reco__case-card-thumbnail img {
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
}
.reco__case-card-content {
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .reco__case-card-content {
    margin-top: 12px;
  }
}
.reco__case-card-title {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-overflow: ellipsis;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
@media screen and (max-width: 767px) {
  .reco__case-card-title {
    font-size: 14px;
    -webkit-line-clamp: 2;
  }
}

.banner {
  padding-block: 78px 64px;
}
@media screen and (max-width: 767px) {
  .banner {
    padding-block: 58px 44px;
  }
}
.banner--with-bg {
  position: relative;
  height: 600px;
  padding-block: 0;
}
@media screen and (max-width: 767px) {
  .banner--with-bg {
    height: 300px;
  }
}
.banner__bg {
  height: 100%;
}
.banner__bg--mizuboro::before {
  content: '';
  position: absolute;
  inset: 0;
  width: 46.93%;
  background-image: url('../public/img/mizuboro/banner-overlay.png');
  background-size: cover;
  opacity: 0.8;
}
.banner__bg--mizuboro::after {
  content: '';
  position: absolute;
  inset: 0;
  mix-blend-mode: multiply;
  background-image: linear-gradient(119deg, #2e7ad4 0%, #fff 100%);
}
.banner__bg--rental::after {
  content: '';
  position: absolute;
  inset: 0;
  mix-blend-mode: multiply;
  background-image: linear-gradient(119deg, #8b795e 0%, #fff 100%);
}
.banner__mizuboro-content-wrapper {
  display: grid;
  place-items: center;
  height: 100%;
}
.banner__mizuboro-content-title {
  text-align: center;
  color: #fff;
  font-size: 6.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1em;
}
@media screen and (max-width: 980px) {
  .banner__mizuboro-content-title {
    font-size: 4.2rem;
  }
}
@media screen and (max-width: 767px) {
  .banner__mizuboro-content-title {
    font-size: 3.4rem;
  }
}
.banner__mizuboro-first-line {
  display: block;
  margin-bottom: 35px;
}
@media screen and (max-width: 767px) {
  .banner__mizuboro-first-line {
    margin-bottom: 17.5px;
  }
}
.banner__mizuboro-boxed-text {
  display: inline-block;
  margin-right: 25px;
  width: 145px;
  height: 145px;
}
@media screen and (max-width: 980px) {
  .banner__mizuboro-boxed-text {
    width: 116px;
    height: 116px;
  }
}
@media screen and (max-width: 767px) {
  .banner__mizuboro-boxed-text {
    width: 72.5px;
    height: 72.5px;
  }
}
.banner__mizuboro-boxed-text svg {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.banner__mizuboro-number {
  font-size: 18.2rem;
}
@media screen and (max-width: 980px) {
  .banner__mizuboro-number {
    font-size: 14.6rem;
  }
}
@media screen and (max-width: 767px) {
  .banner__mizuboro-number {
    font-size: 9.1rem;
  }
}
.banner__mizuboro-degrees {
  font-size: 7.3rem;
}
@media screen and (max-width: 980px) {
  .banner__mizuboro-degrees {
    font-size: 5.8rem;
  }
}
@media screen and (max-width: 767px) {
  .banner__mizuboro-degrees {
    font-size: 3.65rem;
  }
}
.banner__mizuboro-large-text {
  font-size: 9.7rem;
}
@media screen and (max-width: 980px) {
  .banner__mizuboro-large-text {
    font-size: 7.8rem;
  }
}
@media screen and (max-width: 767px) {
  .banner__mizuboro-large-text {
    font-size: 4.85rem;
  }
}
.banner__mizuboro-ctr {
  position: absolute;
  inset: 0;
  z-index: 1;
  margin: 0 auto;
}
.banner__rental-ctr {
  position: absolute;
  inset: 0;
  z-index: 1;
  margin: 0 auto;
}
.banner__rental-content-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100%;
}
.banner__rental-bubble {
  position: relative;
  background-color: #fff;
  border-radius: 39px;
  padding: 19px 49.5px;
  font-size: 3.2rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1em;
}
@media screen and (max-width: 980px) {
  .banner__rental-bubble {
    padding: 15px 37px;
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 767px) {
  .banner__rental-bubble {
    padding: 9.5px 24.75px;
    font-size: 1.6rem;
  }
}
.banner__rental-bubble::after {
  content: '';
  position: absolute;
  inset: 100% 0 auto;
  margin: auto;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 17px solid #fff;
}
.banner__rental-main-text {
  margin-top: 27px;
  font-size: 6.8rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: #fff;
}
@media screen and (max-width: 980px) {
  .banner__rental-main-text {
    font-size: 5.4rem;
  }
}
@media screen and (max-width: 767px) {
  .banner__rental-main-text {
    text-align: center;
    font-size: 3.4rem;
  }
}
.banner__title {
  color: #007453;
}
.banner__title-en {
  font: 700 2rem 'Roboto', sans-serif;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 767px) {
  .banner__title-en {
    font-size: 18px;
  }
}
.banner__title-jp {
  font-size: 5rem;
  letter-spacing: 0.03em;
  margin-top: 8px;
}
@media screen and (max-width: 767px) {
  .banner__title-jp {
    font-size: 40px;
  }
}

.breadcrumbs {
  padding-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .breadcrumbs {
    padding-bottom: 40px;
  }
}
.breadcrumbs--pt {
  padding-top: 80px;
}
@media screen and (max-width: 767px) {
  .breadcrumbs--pt {
    padding-top: 40px;
  }
}
.breadcrumbs__ctr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 16px;
}
@media screen and (max-width: 767px) {
  .breadcrumbs__ctr {
    gap: 8px;
  }
}
.breadcrumbs__link {
  font-size: 1.6rem;
  font-weight: 500;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 767px) {
  .breadcrumbs__link {
    font-size: 14px;
  }
}
.breadcrumbs__link:not(:last-child) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 16px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .breadcrumbs__link:not(:last-child) {
    gap: 8px;
  }
}
.breadcrumbs__link:not(:last-child)::after {
  content: '';
  width: 14px;
  height: 12.24px;
  background: url('../public/img/icons/caret-gray.svg') no-repeat center/100%
    100%;
  display: block;
}
@media screen and (max-width: 767px) {
  .breadcrumbs__link:not(:last-child)::after {
    width: 12px;
    height: 10px;
  }
}
.breadcrumbs__link:hover {
  opacity: 0.7;
}
.breadcrumbs__title {
  font-size: 1.6rem;
  font-weight: 500;
  max-width: 100%;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  overflow: hidden;
  color: #404547;
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .breadcrumbs__title {
    font-size: 14px;
  }
}

.pagination__archive {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  margin: 90px 0;
}

.top__mv {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-left: 100px;
}
@media screen and (max-width: 767px) {
  .top__mv {
    padding-left: 40px;
  }
}
.top__mv-content {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: calc(100vh - 100px);
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .top__mv-content {
    height: calc(100svh - 60px);
  }
}
.top__mv-bg {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-bottom-left-radius: 100px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .top__mv-bg {
    border-bottom-left-radius: 60px;
  }
}
.top__mv-heading {
  margin-top: auto;
  padding-left: 100px;
  padding-bottom: 50px;
  font-family: 'Roboto', sans-serif;
  color: #fff;
  font-size: 8rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .top__mv-heading {
    padding-left: 50px;
    padding-bottom: 50px;
    font-size: 40px;
  }
}
.top__mv-scroll {
  position: absolute;
  left: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  height: calc(100% - 1px);
  margin-top: auto;
}
@media screen and (max-width: 767px) {
  .top__mv-scroll {
    left: 10px;
  }
}
.top__mv-scroll span {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  place-items: center;
  gap: 10px;
  height: 200px;
  margin-top: auto;
  font-family: 'Roboto', sans-serif;
  font-size: 1.4rem;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}
@media screen and (max-width: 767px) {
  .top__mv-scroll span {
    margin-top: unset;
  }
}
.top__mv-scroll span::after {
  content: '';
  position: relative;
  width: 1px;
  height: 150px;
  background-color: #000;
  -webkit-animation: scroll-line-grow 1.2s forwards infinite;
  animation: scroll-line-grow 1.2s forwards infinite;
}
.top__intro {
  width: 100%;
  max-width: 1000px;
  margin: 80px auto;
  padding: 40px 80px;
  background-color: #f2f9f6;
  border-radius: 10px;
}
@media screen and (max-width: 1200px) {
  .top__intro {
    width: 80%;
    padding: 40px;
  }
}
@media screen and (max-width: 767px) {
  .top__intro {
    width: 90%;
    padding: 20px;
    margin: 70px auto;
  }
}
.top__intro-text {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 2.2222222222em;
}
@media screen and (max-width: 1200px) {
  .top__intro-text {
    font-size: 1.6rem;
  }
}
.top__intro-text span.highlight {
  margin: 0 3px;
  padding: 3px 6px;
  background-color: #007453;
  color: #fff;
}
.top__pickup {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.top__pickup::before {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 92%;
  height: 50%;
  background-color: #f2f9f6;
  border-radius: 10px;
}
@media screen and (max-width: 1200px) {
  .top__pickup::before {
    width: 95%;
  }
}
@media screen and (max-width: 767px) {
  .top__pickup::before {
    width: 100%;
  }
}
.top__pickup-container {
  padding: 0 12%;
  margin: 0 auto;
  max-width: calc(1400px + 24%);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
@media screen and (max-width: 1200px) {
  .top__pickup-container {
    max-width: 100%;
    padding: 0 10%;
  }
}
@media screen and (max-width: 767px) {
  .top__pickup-container {
    padding: 0 5%;
  }
}
.top__pickup-content-outer {
  position: relative;
  width: 100%;
  padding: 0 12%;
  margin: 0 auto;
  max-width: calc(1400px + 24%);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
@media screen and (max-width: 1200px) {
  .top__pickup-content-outer {
    max-width: 100%;
    padding: 0 10%;
  }
}
@media screen and (max-width: 767px) {
  .top__pickup-content-outer {
    padding: 0 5%;
  }
}
.top__pickup-content-inner {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
.top__pickup-splide {
  position: unset;
}
.top__pickup-track {
  height: 646px;
}
@media screen and (min-width: 767px) and (max-width: 1200px) {
  .top__pickup-track {
    height: 680px;
  }
}
@media screen and (max-width: 590px) {
  .top__pickup-track {
    height: 545px;
  }
}
.top__pickup-slide-list {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-bottom: 60px !important;
}
@media screen and (max-width: 1200px) {
  .top__pickup-slide-list {
    padding-top: 70px !important;
  }
}
.top__pickup-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 360px !important;
  height: 100%;
  max-height: 400px;
  background-color: #fff;
  -webkit-box-shadow: 0 8px 14px rgba(84, 120, 77, 0.1);
  box-shadow: 0 8px 14px rgba(84, 120, 77, 0.1);
  cursor: pointer;
  -webkit-transition: max-height 0.5s ease, -webkit-box-shadow 0.5s ease;
  transition: max-height 0.5s ease, -webkit-box-shadow 0.5s ease;
  transition: box-shadow 0.5s ease, max-height 0.5s ease;
  transition: box-shadow 0.5s ease, max-height 0.5s ease,
    -webkit-box-shadow 0.5s ease;
}
@media screen and (max-width: 767px) {
  .top__pickup-slide {
    max-height: 293px;
  }
}
@media screen and (max-width: 590px) {
  .top__pickup-slide {
    width: 300px !important;
  }
}
@media screen and (max-width: 420px) {
  .top__pickup-slide {
    width: 230px !important;
  }
}
.top__pickup-slide:hover {
  -webkit-box-shadow: 0 8px 14px rgba(84, 120, 77, 0.3);
  box-shadow: 0 8px 14px rgba(84, 120, 77, 0.3);
}
.top__pickup-slide.is-animating:not(.splide__slide--clone) {
  width: 480px !important;
  max-height: 100%;
}
@media screen and (max-width: 590px) {
  .top__pickup-slide.is-animating:not(.splide__slide--clone) {
    width: 380px !important;
  }
}
@media screen and (max-width: 420px) {
  .top__pickup-slide.is-animating:not(.splide__slide--clone) {
    width: 290px !important;
  }
}
.top__pickup-slide.is-animating:not(.splide__slide--clone)
  .top__pickup-article-title {
  font-size: 2.8rem;
  line-height: 1.5em;
}
@media screen and (max-width: 1200px) {
  .top__pickup-slide.is-animating:not(.splide__slide--clone)
    .top__pickup-article-title {
    font-size: 2.4rem;
  }
}
.top__pickup-slide.is-animating:not(.splide__slide--clone)
  .top__pickup-article-text {
  display: -webkit-box;
}
.top__pickup-slide.is-animating:not(.splide__slide--clone)
  .top__pickup-article-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .top__pickup-slide.is-animating:not(.splide__slide--clone)
    .top__pickup-thumbnail {
    height: 175px;
  }
}
.top__pickup-arrow-wrap {
  position: absolute;
  z-index: 99;
  top: 0;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  padding: 0 12%;
  margin: 0 auto;
  max-width: calc(1400px + 24%);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
@media screen and (max-width: 1200px) {
  .top__pickup-arrow-wrap {
    max-width: 100%;
    padding: 0 10%;
  }
}
@media screen and (max-width: 767px) {
  .top__pickup-arrow-wrap {
    padding: 0 5%;
  }
}
.top__pickup-arrows {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  margin-left: 30px;
}
.top__pickup-arrow {
  position: relative;
  z-index: 1;
  top: unset;
  left: unset;
  right: unset;
  bottom: unset;
  -webkit-transform: none;
  transform: none;
  width: 55px;
  height: 55px;
  background: #007453;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 1200px) {
  .top__pickup-arrow {
    width: 40px;
    height: 40px;
  }
}
.top__pickup-arrow::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  width: 20px;
  height: 20px;
  background: url('../public/img/icons/arrow.svg') no-repeat center/contain;
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}
.top__pickup-arrow:disabled {
  background: #99c7ba;
}
.top__pickup-arrow svg {
  display: none;
}
.top__pickup-arrow--prev::before {
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
}
.top__pickup-counter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
}
.top__pickup-counter span.slash {
  display: block;
  width: 1px;
  height: 24px;
  background-color: #007453;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.top__pickup-ctr-num {
  font-family: 'Roboto', sans-serif;
  color: #007453;
  font-size: 2.4rem;
  font-weight: 500;
}
@media screen and (max-width: 1200px) {
  .top__pickup-ctr-num {
    font-size: 2rem;
  }
}
.top__pickup-thumbnail {
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .top__pickup-thumbnail {
    height: 140px;
  }
}
.top__pickup-thumbnail::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 50px 50px 0 0;
  border-color: #fff transparent transparent;
}
.top__pickup-thumbnail-ctr {
  position: absolute;
  top: 1px;
  left: 3px;
  font-family: 'Roboto', sans-serif;
  color: #007453;
  font-size: 1.6rem;
  font-weight: 500;
}
@media screen and (max-width: 1200px) {
  .top__pickup-thumbnail-ctr {
    font-size: 1.4rem;
  }
}
.top__pickup-article-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  gap: 8px;
  width: 100%;
  min-height: 180px;
  padding: 30px;
}
@media screen and (max-width: 767px) {
  .top__pickup-article-content {
    gap: 5px;
    padding: 20px;
    min-height: unset;
  }
}
.top__pickup-article-tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 5px;
}
.top__pickup-article-tag {
  padding: 3px 12px;
  background-color: #f2f9f6;
  border: 1px solid #007453;
  border-radius: 14px;
  color: #007453;
  font-size: 1.4rem;
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .top__pickup-article-tag {
    font-size: 12px;
  }
}
.top__pickup-article-title {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  font-size: 2rem;
  line-height: 2em;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
}
@media screen and (max-width: 1200px) {
  .top__pickup-article-title {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 767px) {
  .top__pickup-article-title {
    -webkit-line-clamp: 1;
  }
}
.top__pickup-article-text {
  display: none;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2em;
  text-overflow: ellipsis;
  overflow: hidden;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
@media screen and (max-width: 1200px) {
  .top__pickup-article-text {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 767px) {
  .top__pickup-article-text {
    font-size: 12px;
    -webkit-line-clamp: 4;
  }
}
.top__pickup-article-link {
  margin-top: auto;
  position: relative;
  display: none;
  gap: 10px;
  margin-left: auto;
  color: #007453;
  font-size: 1.4rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .top__pickup-article-link {
    font-size: 12px;
  }
}
.top__pickup-article-link::after {
  content: '';
  position: relative;
  display: inline-block;
  -ms-flex-item-align: center;
  align-self: center;
  width: 14px;
  height: 14px;
  background: url('../public/img/icons/arrow.svg') no-repeat center/contain;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
}
.top__pickup-article-link:hover::after {
  -webkit-transform: translateX(5px);
  transform: translateX(5px);
}
.top__strength {
  padding: 80px 0;
}
@media screen and (max-width: 767px) {
  .top__strength {
    padding: 70px 0;
  }
}
.top__strength-container {
  padding: 0 12%;
  margin: 0 auto;
  max-width: calc(1400px + 24%);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
@media screen and (max-width: 1200px) {
  .top__strength-container {
    max-width: 100%;
    padding: 0 10%;
  }
}
@media screen and (max-width: 767px) {
  .top__strength-container {
    padding: 0 5%;
  }
}
.top__strength-first-content {
  padding: 0 12%;
  margin: 0 auto;
  max-width: calc(1400px + 24%);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
@media screen and (max-width: 1200px) {
  .top__strength-first-content {
    max-width: 100%;
    padding: 0 10%;
  }
}
@media screen and (max-width: 767px) {
  .top__strength-first-content {
    padding: 0 5%;
  }
}
@media screen and (max-width: 1200px) {
  .top__strength-first-content {
    max-width: 100%;
    padding: 0 10%;
  }
}
@media screen and (max-width: 1024px) {
  .top__strength-first-content {
    max-width: 100%;
    padding: 0;
  }
}
.top__strength-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 50px;
}
.top__strength-item-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 70px;
  padding-left: 80px;
}
@media screen and (max-width: 1024px) {
  .top__strength-item-row {
    padding: 0 5%;
  }
}
@media screen and (max-width: 767px) {
  .top__strength-item-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 50px;
  }
}
.top__strength-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 30px;
  width: 50%;
}
@media screen and (max-width: 767px) {
  .top__strength-item {
    width: 100%;
  }
}
.top__strength-item--full {
  position: relative;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  gap: unset;
  width: 100%;
  margin-bottom: 40px;
  padding-bottom: 80px;
}
@media screen and (max-width: 1024px) {
  .top__strength-item--full {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    place-items: center;
    margin-bottom: 0;
    padding-bottom: 40px;
  }
}
.top__strength-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #fff;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .top__strength-content {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    text-align: left;
  }
}
.top__strength-content--full {
  position: absolute;
  right: -40px;
  bottom: 0;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  width: 50%;
  margin-left: -40px;
  padding: 40px;
  text-align: left;
}
@media screen and (max-width: 1200px) {
  .top__strength-content--full {
    padding: 30px;
  }
}
@media screen and (max-width: 1024px) {
  .top__strength-content--full {
    position: relative;
    right: unset;
    bottom: unset;
    width: 80%;
    margin-top: -60px;
    margin-left: 0;
  }
}
@media screen and (max-width: 767px) {
  .top__strength-content--full {
    width: 90%;
    margin-top: -35px;
    padding: 20px 5%;
  }
}
.top__strength-ctr {
  margin-bottom: 20px;
  padding: 4px 20px;
  background-color: #eedcb3;
  font-family: 'Roboto', sans-serif;
  font-size: 2rem;
  text-transform: uppercase;
}
@media screen and (max-width: 1200px) {
  .top__strength-ctr {
    font-size: 1.8rem;
  }
}
.top__strength-heading {
  font-size: 3.2rem;
  line-height: 1.75em;
}
@media screen and (max-width: 1200px) {
  .top__strength-heading {
    font-size: 2.4rem;
  }
}
.top__strength-text {
  font-size: 1.6rem;
  line-height: 2em;
  font-weight: 500;
}
@media screen and (max-width: 1200px) {
  .top__strength-text {
    font-size: 1.4rem;
  }
}
.top__strength-image {
  width: 100%;
}
.top__strength-image--full {
  width: 65%;
}
@media screen and (max-width: 1200px) {
  .top__strength-image--full {
    width: 70%;
  }
}
@media screen and (max-width: 1024px) {
  .top__strength-image--full {
    width: 100%;
  }
}
.top__strength-banner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 40px;
  width: 100%;
  margin-top: 30px;
  padding: 23.14px 20px;
  border: 1px solid #cfcfcf;
}
@media screen and (max-width: 767px) {
  .top__strength-banner {
    gap: 20px;
    margin-top: 20px;
    padding: 10px;
  }
}
.top__strength-banner-logo {
  position: relative;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 110px;
  padding-right: 20px;
  border-right: 1px solid #cfcfcf;
}
@media screen and (max-width: 767px) {
  .top__strength-banner-logo {
    width: 90px;
    padding-right: 10px;
  }
}
.top__strength-banner-text {
  position: relative;
}
.top__strength-banner-title {
  font-size: 2rem;
  line-height: 2em;
}
@media screen and (max-width: 767px) {
  .top__strength-banner-title {
    font-size: 15px;
  }
}
.top__strength-banner-link {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  color: #007453;
  font-size: 1.4rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .top__strength-banner-link {
    font-size: 12px;
  }
}
.top__strength-banner-link::after {
  content: '';
  position: relative;
  display: inline-block;
  -ms-flex-item-align: center;
  align-self: center;
  width: 14px;
  height: 14px;
  background: url('../public/img/icons/arrow.svg') no-repeat center/contain;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
}
.top__strength-banner-link:hover::after {
  -webkit-transform: translateX(5px);
  transform: translateX(5px);
}
.top__case {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.top__case::before {
  content: '';
  position: absolute;
  z-index: -1;
  bottom: 0;
  right: 0;
  width: 92%;
  height: 100%;
  background-color: #f2f9f6;
  border-radius: 10px;
}
@media screen and (max-width: 1200px) {
  .top__case::before {
    width: 95%;
  }
}
@media screen and (max-width: 767px) {
  .top__case::before {
    width: 100%;
  }
}
.top__case-container {
  padding: 80px 12%;
  margin: 0 auto;
  max-width: calc(1400px + 24%);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
@media screen and (max-width: 1200px) {
  .top__case-container {
    max-width: 100%;
    padding: 0 10%;
  }
}
@media screen and (max-width: 767px) {
  .top__case-container {
    padding: 0 5%;
  }
}
@media screen and (max-width: 1200px) {
  .top__case-container {
    padding: 60px 10%;
  }
}
.top__case-content-outer {
  position: relative;
  width: 100%;
  padding: 0 16%;
  margin: 0 auto;
  max-width: calc(1200px + 32%);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
@media screen and (max-width: 1200px) {
  .top__case-content-outer {
    max-width: 100%;
    padding: 0 10%;
  }
}
@media screen and (max-width: 767px) {
  .top__case-content-outer {
    padding: 0 5%;
  }
}
.top__case-content-outer {
  padding: 0;
}
.top__case-content-inner {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
.top__case-splide {
  position: unset;
}
.top__case-slide-list {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-top: 100px !important;
}
@media screen and (max-width: 767px) {
  .top__case-slide-list {
    padding-top: 70px !important;
  }
}
.top__case-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 320px;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 767px) {
  .top__case-slide {
    height: 206px;
  }
}
.top__case-slide:hover {
  opacity: 0.9;
}
.top__case-slide:hover .top__case-thumbnail img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
.top__case-arrow-wrap {
  padding: 0;
}
.top__case-thumbnail {
  overflow: hidden;
  height: 100%;
}
.top__case-thumbnail img {
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
}
.top__case-article-content {
  margin-top: 20px;
}
.top__case-article-title {
  font-size: 2.4rem;
}
@media screen and (max-width: 767px) {
  .top__case-article-title {
    font-size: 20px;
  }
}
.top__case-btn {
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .top__case-btn {
    margin-top: 40px;
  }
}
.top__products {
  padding-bottom: 80px;
}
.top__product-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .top__product-list {
    gap: 30px 24px;
  }
}
.top__product-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: calc(25% - 30px);
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
}
@media screen and (max-width: 1200px) {
  .top__product-item {
    width: calc(33% - 25px);
  }
}
@media screen and (max-width: 767px) {
  .top__product-item {
    width: calc(50% - 12px);
  }
}
.top__product-item:hover {
  opacity: 0.9;
}
.top__product-item:hover .top__product-image img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
.top__product-item:hover .top__product-name,
.top__product-item:hover .top__product-price {
  color: #007453;
}
.top__product-cat {
  margin-bottom: 10px;
  padding-left: 10px;
  border-left: 6px solid #007453;
  font-family: 'Roboto', sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .top__product-cat {
    padding-left: 6px;
    border-left-width: 3px;
    font-size: 12px;
  }
}
.top__product-name {
  margin-top: 20px;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 2em;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 767px) {
  .top__product-name {
    margin-top: 10px;
    line-height: 1.75em;
  }
}
.top__product-price {
  margin-top: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  gap: 5px;
  font-family: 'Roboto', sans-serif;
  font-size: 3.2rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 767px) {
  .top__product-price {
    font-size: 20px;
  }
}
.top__product-price span.unit {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  .top__product-price span.unit {
    font-size: 14px;
  }
}
.top__product-image {
  aspect-ratio: 1/1;
  overflow: hidden;
}
.top__product-image img {
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
}

.top__linkcard {
  --top-card-color: #f2e2be;
  position: relative;
  display: block;
  text-align: center;
}
.top__linkcard:hover .top__linkcard-bg::before {
  opacity: 0.5;
}
.top__linkcard:hover .top__linkcard-img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
.top__linkcard--brown {
  --top-card-color: #c5a45c;
}
.top__linkcard--blue {
  --top-card-color: #5e9cd4;
}
.top__linkcard-bg {
  position: absolute;
  inset: 0;
}
.top__linkcard-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: -webkit-gradient(
    linear,
    left top,
    right bottom,
    from(#2e2e2e),
    to(rgba(46, 46, 46, 0.3))
  );
  background: linear-gradient(to bottom right, #2e2e2e, rgba(46, 46, 46, 0.3));
  mix-blend-mode: multiply;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.top__linkcard-img {
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.top__linkcard-content {
  position: relative;
  z-index: 1;
}
.top__linkcard-text {
  margin-block: 32px 22px;
  font-size: 4.2rem !important;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: #fff !important;
}
@media screen and (max-width: 767px) {
  .top__linkcard-text {
    margin-block: 20px 12px;
    font-size: 24px;
    line-height: 1.375em;
  }
}
.top__linkcard-en {
  font: 700 1.6rem 'Roboto', sans-serif !important;
  letter-spacing: 0.03em;
  color: var(--top-card-color) !important;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .top__linkcard-en {
    font-size: 14px;
    line-height: 2em;
  }
}
.top__linkcard-arrow {
  margin: 10px auto 0;
  position: relative;
  width: 50px;
  height: 50px;
  inset: unset;
  background: var(--top-card-color);
}
@media screen and (max-width: 767px) {
  .top__linkcard-arrow {
    margin-top: 6px;
    width: 40px;
    height: 40px;
  }
}
.top__linkcard-arrow::after {
  width: 20px;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .top__linkcard-arrow::after {
    width: 16px;
  }
}
.top__showroom {
  margin-block: 113px 80px;
}
@media screen and (max-width: 767px) {
  .top__showroom {
    margin: 95px auto 72px;
    padding-bottom: 25px;
    max-width: 375px;
  }
}
.top__showroom-bg {
  border-radius: 10px;
}
.top__showroom-bg::before {
  background: radial-gradient(#9e9e9e, #6b6b6b);
}
@media screen and (max-width: 767px) {
  .top__showroom-bg::before {
    background: radial-gradient(#dfdfdf, #686868);
  }
}
.top__showroom-content {
  top: -30px;
}
@media screen and (max-width: 767px) {
  .top__showroom-content {
    top: -24px;
  }
}
@media screen and (max-width: 767px) {
  .top__showroom-text {
    margin-top: 24px;
    line-height: 1.6666666667em;
  }
}
.top__showroom-arrow::after {
  background: #404547;
}
.top__learn {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media screen and (max-width: 767px) {
  .top__learn {
    grid-template-columns: 1fr;
  }
}
.top__learn-link {
  padding: 102px 40px 77px;
}
@media screen and (max-width: 767px) {
  .top__learn-link {
    padding: 25px;
  }
}
.top__learn-link-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 60%;
  background: -webkit-gradient(
    linear,
    left top,
    right bottom,
    from(var(--top-card-color)),
    color-stop(50%, transparent)
  );
  background: linear-gradient(
    to bottom right,
    var(--top-card-color),
    transparent 50%
  );
}
.top__flow {
  margin-block: 80px 184px;
}
@media screen and (max-width: 767px) {
  .top__flow {
    margin-block: 72px 140px;
  }
}
.top__flow-list {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 75px;
  list-style-type: none;
}
@media screen and (max-width: 1024px) {
  .top__flow-list {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 767px) {
  .top__flow-list {
    margin-top: 32px;
    padding-right: 14px;
    gap: 24px 20px;
  }
}
.top__flow-item {
  position: relative;
  padding: 40px 20px;
  -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.15);
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.15);
  background: -webkit-gradient(
    linear,
    left top,
    right bottom,
    from(#fff),
    to(#f8f8f8)
  );
  background: linear-gradient(to bottom right, #fff, #f8f8f8);
}
@media screen and (max-width: 767px) {
  .top__flow-item {
    padding: 16px 4px;
  }
}
.top__flow-item:not(:last-child)::after {
  content: '';
  margin: auto;
  position: absolute;
  inset: 0 -48px 0 auto;
  width: 30px;
  height: 30px;
  background: url('../public/img/icons/caret.svg') no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .top__flow-item:not(:last-child)::after {
    right: -14px;
    width: 10px;
    height: 10px;
  }
}
@media screen and (min-width: 768px) {
  .top__flow-item:nth-of-type(3)::after {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .top__flow-item:nth-of-type(even)::after {
    display: none;
  }
}
.top__flow-item-num {
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 4rem;
  font-family: 'Roboto', sans-serif;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .top__flow-item-num {
    top: 8px;
    left: 10px;
    font-size: 14px;
  }
}
.top__flow-item-icon {
  border-radius: 50%;
  margin: 0 auto 30px;
  width: 100px;
  height: 100px;
  background: #007453;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .top__flow-item-icon {
    margin-bottom: 8px;
    width: 32px;
    height: 32px;
  }
}
@media screen and (max-width: 767px) {
  .top__flow-item-img {
    width: 59.4%;
  }
}
.top__flow-item-text {
  font-size: 1.8rem;
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.03em;
  line-height: 1.7777777778em;
}
@media screen and (max-width: 767px) {
  .top__flow-item-text {
    font-size: 14px;
    line-height: 1.75em;
  }
}
@media screen and (max-width: 767px) {
  .top__flow-item-text--sp-small {
    font-size: 12px;
  }
}
.top__flow-item-bubble {
  border-radius: 40px;
  padding: 9px;
  position: absolute;
  left: 0;
  top: calc(100% + 22px);
  width: 100%;
  background: #eedcb3;
}
@media screen and (max-width: 767px) {
  .top__flow-item-bubble {
    padding: 6px;
    top: calc(100% + 16px);
    line-height: 1.75em;
  }
}
.top__flow-item-bubble::before {
  content: '';
  position: absolute;
  margin: auto;
  inset: auto 0 100%;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 7px 12px;
  border-color: transparent transparent #eedcb3 transparent;
}
@media screen and (max-width: 767px) {
  .top__flow-item-bubble::before {
    border-width: 0 4.5px 8px;
  }
}
.top__qna {
  border-radius: 5px;
  padding-block: 80px;
  background: #f8f8f8;
}
@media screen and (max-width: 767px) {
  .top__qna {
    padding-block: 72px;
  }
}
.top__qna-list {
  margin-block: 56px;
}
@media screen and (max-width: 767px) {
  .top__qna-list {
    margin-block: 32px 40px;
  }
}
.top__qna-acc {
  border-radius: 10px;
  padding: 20px 24px 24px;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .top__qna-acc {
    padding: 10px 12px 12px;
  }
}
.top__qna-acc.active .top__qna-acc-icon {
  opacity: 0.4;
}
.top__qna-acc.active .top__qna-acc-icon::before {
  -webkit-transform: translateY(-50%) rotate(-90deg);
  transform: translateY(-50%) rotate(-90deg);
  opacity: 0;
}
.top__qna-acc.active .top__qna-acc-icon::after {
  -webkit-transform: translateY(-50%) rotate(0);
  transform: translateY(-50%) rotate(0);
}
.top__qna-acc.active .top__qna-acc-body {
  grid-template-rows: 1fr;
}
.top__qna-acc:not(:last-child) {
  margin-bottom: 20px;
}
.top__qna-acc-body {
  display: grid;
  grid-template-rows: 0fr;
  -webkit-transition: grid-template-rows 0.5s;
  transition: grid-template-rows 0.5s;
  transition: grid-template-rows 0.5s, -ms-grid-rows 0.5s;
}
.top__qna-acc-head,
.top__qna-acc-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
}
@media screen and (max-width: 767px) {
  .top__qna-acc-head,
  .top__qna-acc-content {
    gap: 10px;
  }
}
.top__qna-acc-content {
  border-radius: 5px;
  margin-top: 24px;
  padding: 15px 16px;
  background: #f2f9f6;
}
@media screen and (max-width: 767px) {
  .top__qna-acc-content {
    margin-top: 16px;
    padding: 7px 12px;
  }
}
.top__qna-acc-head {
  cursor: pointer;
}
.top__qna-acc-letter {
  font-size: 3rem;
  font-family: 'Roboto', sans-serif;
  line-height: 1.3333333333em;
}
@media screen and (max-width: 767px) {
  .top__qna-acc-letter {
    font-size: 24px;
    line-height: 1.3333333333em;
  }
}
.top__qna-acc-icon {
  border-radius: 50%;
  margin-top: 6px;
  margin-left: auto;
  position: relative;
  width: 34px;
  height: 34px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  background: #007453;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 767px) {
  .top__qna-acc-icon {
    margin-top: 4px;
    width: 24px;
    height: 24px;
  }
}
.top__qna-acc-icon::before,
.top__qna-acc-icon::after {
  content: '';
  position: absolute;
  margin: auto;
  inset: 3px 1px 0 0;
  width: 13px;
  height: 2px;
  border-radius: 2px;
  background: #fff;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.top__qna-acc-icon::before {
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.top__qna-acc-icon::after {
  -webkit-transform: translateY(-50%) rotate(90deg);
  transform: translateY(-50%) rotate(90deg);
}
.top__qna-acc-question {
  font-size: 2.4rem;
  letter-spacing: 0.03em;
  line-height: 1.75em;
}
@media screen and (max-width: 767px) {
  .top__qna-acc-question {
    font-size: 18px;
    line-height: 1.75em;
  }
}
.top__qna-acc-answer {
  padding-top: 2px;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2em;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 767px) {
  .top__qna-acc-answer {
    font-size: 14px;
  }
}
.top__news {
  padding-block: 80px;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .top__news {
    padding-block: 72px;
  }
}
.top__news-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 32px;
}
@media screen and (max-width: 900px) {
  .top__news-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.top__news-head {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
@media screen and (max-width: 900px) {
  .top__news-head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
.top__news-title {
  font-size: 3.6rem;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 767px) {
  .top__news-title {
    font-size: 26px;
  }
}
.top__news-to-list {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 1.6rem;
  letter-spacing: 0.03em;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 900px) {
  .top__news-to-list {
    margin-top: 0;
  }
}
@media screen and (max-width: 767px) {
  .top__news-to-list {
    font-size: 14px;
  }
}
.top__news-to-list:hover {
  color: #007453;
}
.top__news-to-list:hover .top__news-to-list-arrow {
  -webkit-transform: translateX(10px);
  transform: translateX(10px);
}
.top__news-to-list-arrow {
  border-radius: 50%;
  position: relative;
  width: 36px;
  height: 36px;
  background: #007453;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .top__news-to-list-arrow {
    width: 24px;
    height: 24px;
  }
}
.top__news-to-list-arrow::after {
  content: '';
  margin: auto;
  position: absolute;
  inset: 0;
  width: 16px;
  aspect-ratio: 1;
  background: #fff;
  -webkit-mask: url('../public/img/icons/arrow.svg') no-repeat center/contain;
  mask: url('../public/img/icons/arrow.svg') no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .top__news-to-list-arrow::after {
    width: 10px;
  }
}
.top__news-list {
  width: 76.25%;
}
@media screen and (max-width: 900px) {
  .top__news-list {
    width: 100%;
  }
}
.top__news-item {
  border-bottom: 1px solid #cfcfcf;
}
.top__news-item:first-child {
  border-top: 1px solid #cfcfcf;
}
.top__news-link {
  padding-block: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 3.5%;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 767px) {
  .top__news-link {
    padding-right: 45px;
    position: relative;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 12px;
  }
}
.top__news-link::after {
  content: '';
  margin: auto 10px auto auto;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 12px;
  aspect-ratio: 1;
  background: url('../public/img/icons/arrow.svg') no-repeat center/contain;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 767px) {
  .top__news-link::after {
    margin: auto;
    position: absolute;
    inset: 0 8px 0 auto;
    width: 16px;
  }
}
.top__news-link:hover {
  opacity: 0.7;
}
.top__news-link:hover::after {
  -webkit-transform: translateX(10px);
  transform: translateX(10px);
}
.top__news-link-date,
.top__news-link-cat {
  font-size: 1.4rem;
  letter-spacing: 0.03em;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.top__news-link-cat {
  border: 1px solid #007453;
  border-radius: 14px;
  padding: 3px;
  display: block;
  width: 110px;
  color: #007453;
  text-align: center;
  background: #f2f9f6;
}
@media screen and (max-width: 767px) {
  .top__news-link-cat {
    font-size: 12px;
  }
}
.top__news-link-title {
  max-width: 600px;
  font-size: 1.6rem;
  letter-spacing: 0.03em;
  text-overflow: ellipsis;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
@media screen and (max-width: 767px) {
  .top__news-link-title {
    max-width: unset;
    width: 100%;
    font-size: 14px;
    -webkit-line-clamp: 2;
  }
}
.top__column {
  padding-block: 80px;
  background: #f2f9f6;
}
@media screen and (max-width: 767px) {
  .top__column {
    padding-block: 72px;
  }
}
.top__column-list {
  margin-block: 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px 7.667%;
  font-weight: 500;
}
@media screen and (min-width: 1024px) and (max-width: 1200px) {
  .top__column-list {
    -webkit-column-gap: 3%;
    -moz-column-gap: 3%;
    column-gap: 3%;
  }
}
@media screen and (max-width: 767px) {
  .top__column-list {
    margin-block: 32px 40px;
    gap: 48px 15px;
  }
}
@media screen and (max-width: 767px) {
  .top__column-item:nth-child(even) {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
}
.top__column-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 4.33%;
}
@media screen and (max-width: 1024px) {
  .top__column-link {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 18px;
  }
}
.top__column-link:hover .top__column-link-img {
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}
.top__column-link:hover .top__column-link-info {
  -webkit-transform: translateX(6px);
  transform: translateX(6px);
}
.top__column-link:hover .top__column-link-date {
  color: #404547;
}
.top__column-link-info {
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.top__column-link-date {
  font-size: 1.4rem;
  letter-spacing: 0.03em;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 767px) {
  .top__column-link-date {
    font-size: 12px;
  }
}
.top__column-link-title {
  margin-top: 8px;
  font-size: 1.8rem;
  letter-spacing: 0.03em;
  line-height: 2em;
  text-overflow: ellipsis;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
@media screen and (max-width: 767px) {
  .top__column-link-title {
    font-size: 14px;
    -webkit-line-clamp: 4;
  }
}
.top__column-link-thumb {
  border-radius: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 50.5%;
  height: 180px;
  overflow: hidden;
}
@media screen and (max-width: 1024px) {
  .top__column-link-thumb {
    aspect-ratio: 160/104;
    width: 100%;
    height: auto;
  }
}
.top__column-link-img {
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

.contact {
  padding-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .contact {
    padding-bottom: 40px;
  }
}
.contact__wrapper {
  display: grid;
  grid-template-columns: 21.676% 1fr;
}
@media screen and (max-width: 980px) {
  .contact__wrapper {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}
@media screen and (max-width: 767px) {
  .contact__wrapper {
    gap: 30px;
  }
}
.contact__progress {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 24px;
}
@media screen and (max-width: 980px) {
  .contact__progress {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
@media screen and (max-width: 767px) {
  .contact__progress {
    gap: 12px;
  }
}
.contact__progress-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 27px;
}
@media screen and (max-width: 767px) {
  .contact__progress-item {
    gap: 17px;
  }
}
.contact__progress-item.active .contact__progress-icon {
  background-color: #007453;
  border: none;
}
.contact__progress-item.active .contact__progress-icon::after {
  content: '';
  width: 12.38px;
  height: 12.38px;
  background: url('../public/img/contact/check-w.svg') no-repeat center/contain;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .contact__progress-item.active .contact__progress-icon::after {
    width: 10px;
    height: 10px;
  }
}
.contact__progress-item.active .contact__progress-text {
  color: #007453;
}
.contact__progress-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid #c5c5c5;
  background-color: #f8f8f8;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  position: relative;
}
@media screen and (max-width: 767px) {
  .contact__progress-icon {
    width: 18px;
    height: 18px;
  }
}
.contact__progress-text {
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: #cfcfcf;
}
@media screen and (max-width: 767px) {
  .contact__progress-text {
    font-size: 14px;
  }
}
.contact__text {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2em;
  margin-bottom: 64px;
}
@media screen and (max-width: 767px) {
  .contact__text {
    font-size: 14px;
    margin-bottom: 32px;
  }
}
.contact__text--complete {
  text-align: center;
  margin-bottom: 0;
}
.contact__item {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 55px;
}
@media screen and (max-width: 980px) {
  .contact__item {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
@media screen and (max-width: 767px) {
  .contact__item {
    gap: 15px;
  }
}
.contact__item--col {
  grid-template-columns: 1fr;
  gap: 24px;
}
@media screen and (max-width: 767px) {
  .contact__item--col {
    gap: 12px;
  }
}
.contact__item.required .contact__form-label::before {
  content: '必須';
  background-color: #d97b00;
}
.contact__item:first-child {
  margin-bottom: 40px !important;
}
@media screen and (max-width: 767px) {
  .contact__item:first-child {
    margin-bottom: 20px !important;
  }
}
.contact__item:not(:last-child) {
  margin-bottom: 32px;
}
@media screen and (max-width: 767px) {
  .contact__item:not(:last-child) {
    margin-bottom: 16px;
  }
}
.contact__radio-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 20px 60px;
}
@media screen and (max-width: 767px) {
  .contact__radio-wrap {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px 30px;
  }
}
.contact__form-label {
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 16px;
}
@media screen and (max-width: 767px) {
  .contact__form-label {
    font-size: 16px;
    gap: 8px;
  }
}
.contact__form-label::before {
  content: '任意';
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: #fff;
  background-color: #cfcfcf;
  padding: 2px 9px;
  display: block;
}
@media screen and (max-width: 767px) {
  .contact__form-label::before {
    font-size: 14px;
  }
}
.contact__form-label--textarea {
  -ms-flex-item-align: start;
  align-self: flex-start;
}
.contact__form-input {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 767px) {
  .contact__form-input {
    font-size: 16px;
  }
}
.contact__form-input input[type='text'],
.contact__form-input input[type='number'],
.contact__form-input input[type='email'],
.contact__form-input input[type='date'],
.contact__form-input input[type='tel'],
.contact__form-input select,
.contact__form-input textarea {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  width: 100%;
  height: 60px;
  border-radius: 5px;
  outline: none;
  padding: 17px 20px;
  border: 1px solid #c5c5c5;
}
@media screen and (max-width: 767px) {
  .contact__form-input input[type='text'],
  .contact__form-input input[type='number'],
  .contact__form-input input[type='email'],
  .contact__form-input input[type='date'],
  .contact__form-input input[type='tel'],
  .contact__form-input select,
  .contact__form-input textarea {
    font-size: 16px;
    padding: 12px 15px;
    height: 50px;
  }
}
.contact__form-input ::-webkit-input-placeholder {
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 2.2222222222em;
  color: #cfcfcf;
  vertical-align: middle;
}
.contact__form-input ::-moz-placeholder {
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 2.2222222222em;
  color: #cfcfcf;
  vertical-align: middle;
}
.contact__form-input :-ms-input-placeholder {
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 2.2222222222em;
  color: #cfcfcf;
  vertical-align: middle;
}
.contact__form-input ::-ms-input-placeholder {
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 2.2222222222em;
  color: #cfcfcf;
  vertical-align: middle;
}
.contact__form-input ::placeholder {
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 2.2222222222em;
  color: #cfcfcf;
  vertical-align: middle;
}
@media screen and (max-width: 767px) {
  .contact__form-input ::-webkit-input-placeholder {
    font-size: 16px;
  }
  .contact__form-input ::-moz-placeholder {
    font-size: 16px;
  }
  .contact__form-input :-ms-input-placeholder {
    font-size: 16px;
  }
  .contact__form-input ::-ms-input-placeholder {
    font-size: 16px;
  }
  .contact__form-input ::placeholder {
    font-size: 16px;
  }
}
.contact__form-input select:required:invalid {
  color: #cfcfcf;
}
.contact__form-input textarea {
  height: 280px;
  resize: none;
}
@media screen and (max-width: 767px) {
  .contact__form-input textarea {
    height: 180px;
  }
}
.contact__form-input label input[type='radio'] {
  display: none;
}
.contact__form-input label span {
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  gap: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .contact__form-input label span {
    font-size: 16px;
    gap: 6px;
  }
}
.contact__form-input label input[type='radio'] + span::before {
  content: '';
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #c5c5c5;
  background-color: #fff;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .contact__form-input label input[type='radio'] + span::before {
    width: 25px;
    height: 25px;
  }
}
.contact__form-input label input[type='radio'] + span::after {
  content: '';
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #1a1a1a;
  display: block;
  position: absolute;
  top: 50%;
  left: 11px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 767px) {
  .contact__form-input label input[type='radio'] + span::after {
    width: 15px;
    height: 15px;
    left: 6px;
  }
}
.contact__form-input label input[type='radio']:not(:checked) + span::after {
  opacity: 0;
}
.contact__form-input label input[type='radio']:checked + span::after {
  opacity: 1;
}
.contact__form-input--date {
  position: relative;
}
.contact__form-input--date::after {
  content: '';
  width: 20px;
  height: 20px;
  background: url('../public/img/contact/calendar.svg') no-repeat center/contain;
  position: absolute;
  top: 50%;
  right: 20px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .contact__form-input--date::after {
    width: 15px;
    height: 15px;
    right: 15px;
  }
}
.contact__form-input--date input {
  cursor: default;
  padding: 20px 40px 20px 20px !important;
}
@media screen and (max-width: 767px) {
  .contact__form-input--date input {
    padding: 12px 15px !important;
  }
}
.contact__form-input--agree {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.contact__form-item-field {
  padding: 20px 18px 18px 24px;
  border-radius: 5px;
  background-color: #f8f8f8;
}
@media screen and (max-width: 767px) {
  .contact__form-item-field {
    padding: 15px;
  }
}
.contact__form-checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 24px;
}
.contact__form-checkbox label {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-weight: 500;
}
.contact__form-checkbox input[type='checkbox'] {
  position: relative;
  margin-right: 16px;
  width: 32px;
  height: 32px;
  border-radius: 5px;
  border: 1px solid #c5c5c5;
  background-color: #fff;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 767px) {
  .contact__form-checkbox input[type='checkbox'] {
    width: 25px;
    height: 25px;
  }
}
.contact__form-checkbox input[type='checkbox']::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 20px;
  aspect-ratio: 20/15;
  background: url('../public/img/contact/checked-icon.svg') no-repeat
    center/100% 100%;
  opacity: 0;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 767px) {
  .contact__form-checkbox input[type='checkbox']::after {
    width: 15px;
    aspect-ratio: 15/10;
  }
}
.contact__form-checkbox input[type='checkbox']:checked::after {
  opacity: 1;
}
.contact__form-agreement {
  width: 100%;
  height: 300px;
  overflow-y: auto;
  padding: 20px;
  background-color: #fff;
  border: 1px solid #c5c5c5;
  border-radius: 5px;
}
@media screen and (max-width: 767px) {
  .contact__form-agreement {
    padding: 10px;
    height: 200px;
  }
}
.contact__form-agreement::-webkit-scrollbar {
  width: 20px;
  border-left: 1px solid #c5c5c5;
}
@media screen and (max-width: 767px) {
  .contact__form-agreement::-webkit-scrollbar {
    width: 15px;
  }
}
.contact__form-agreement::-webkit-scrollbar-thumb {
  background-color: #c5c5c5;
  border-top-right-radius: 5px;
}
.contact__form-agreement::-webkit-scrollbar-track {
  background: transparent;
}
.contact__form-agreement-text {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2em;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .contact__form-agreement-text {
    font-size: 14px;
  }
}
.contact__btn-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  margin-top: 54px;
}
@media screen and (max-width: 980px) {
  .contact__btn-group {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
@media screen and (max-width: 767px) {
  .contact__btn-group {
    gap: 15px;
    margin-top: 27px;
  }
}
.contact__complete-title {
  font-size: 3.2rem;
  letter-spacing: 0.01em;
  margin-bottom: 30px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .contact__complete-title {
    font-size: 22px;
    margin-bottom: 15px;
  }
}
.contact__btn {
  cursor: pointer;
}
.contact__btn--back {
  background-color: #cfcfcf;
}
.contact__btn--back .button__arrow {
  inset: 0 auto 0 20px;
}
.contact__btn--back .button__arrow::after {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.product__sec {
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .product__sec {
    margin-top: 40px;
  }
}
.product__sec-title {
  margin-bottom: 24px;
  font-size: 2.4rem;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .product__sec-title {
    font-size: 20px;
  }
}
.product__bg {
  background: #f8f8f8;
}
.product__border {
  border-bottom: 1px solid #cfcfcf;
}
.product__table-wrap {
  padding-bottom: 12px;
  overflow-x: auto;
}
.product__table {
  border-collapse: collapse;
  width: 100%;
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  font-weight: 500;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .product__table {
    min-width: 700px;
    font-size: 14px;
  }
}
.product__table--header-left tbody td:first-child {
  background: #f2f9f6;
}
.product__table--area td:first-child {
  width: 180px;
  text-align: center;
}
.product__table--area td:nth-child(2) {
  width: 760px;
  text-align: center;
}
.product__table--area td:last-child {
  width: 260px;
}
.product__table th,
.product__table td {
  padding: 9px 30px;
}
@media screen and (max-width: 767px) {
  .product__table th,
  .product__table td {
    padding-inline: 20px;
  }
}
.product__table th {
  border: 1px solid #cfcfcf;
}
.product__table th:first-child,
.product__table th:last-child {
  width: 300px;
}
@media screen and (max-width: 767px) {
  .product__table th:first-child,
  .product__table th:last-child {
    width: 24%;
  }
}
.product__table th:nth-child(2) {
  width: 600px;
}
.product__table thead th {
  background: #f2f9f6;
}
.product__table tbody:first-child {
  border-top: 1px solid #cfcfcf;
}
.product__table tbody th {
  font-weight: 500;
}
.product__table tr:last-child td {
  border-bottom-style: solid;
}
.product__table td {
  line-height: 2em;
  border-right: 1px solid #cfcfcf;
  border-bottom: 1px dashed #cfcfcf;
}
.product__table td:first-child {
  border-left: 1px solid #cfcfcf;
}
.product__table td:last-child {
  text-align: center;
}
.product__table td.bg-orange {
  background: #f2e2be;
}
.product__table td.text-orange {
  color: #d97b00;
}
.product__table-note {
  margin-bottom: calc(-2em - 12px);
  color: #929292;
  text-align: right;
}
.product__note {
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.03rem;
  line-height: 2em;
}
@media screen and (max-width: 767px) {
  .product__note {
    font-size: 14px;
  }
}

.product-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
}
.product-card:hover {
  opacity: 0.9;
}
.product-card:hover .product-card__image img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
.product-card:hover .product-card__name,
.product-card:hover .product-card__price {
  color: #007453;
}
.product-card__cat {
  margin-bottom: 16px;
  padding-left: 10px;
  border-left: 6px solid #007453;
  font-family: 'Roboto', sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  line-height: 0.95em;
  text-transform: uppercase;
  display: block;
}
@media screen and (max-width: 767px) {
  .product-card__cat {
    padding-left: 6px;
    border-left-width: 3px;
    font-size: 14px;
  }
}
.product-card__name {
  margin-top: 20px;
  margin-bottom: 16px;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.75em;
  letter-spacing: 0.05em;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 767px) {
  .product-card__name {
    margin-top: 10px;
    font-size: 15px;
  }
}
.product-card__name--small {
  margin-bottom: 8px;
  font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
  .product-card__name--small {
    font-size: 12px;
  }
}
.product-card__price {
  margin-top: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  gap: 5px;
  font-family: 'Roboto', sans-serif;
  font-size: 3.2rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .product-card__price {
    font-size: 20px;
  }
}
.product-card__price span.unit {
  font: 500 2rem 'Noto Sans JP', sans-serif;
}
@media screen and (max-width: 767px) {
  .product-card__price span.unit {
    font-size: 14px;
  }
}
.product-card__image {
  aspect-ratio: 1/1;
  overflow: hidden;
  background: #cfcfcf;
}
.product-card__image img {
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
}

.product-list__stock-link {
  border-radius: 10px;
  margin: 90px auto 0;
  padding: 27px;
  display: block;
  width: 100%;
  max-width: 450px;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-align: center;
  -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.15);
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.15);
  -webkit-transition: 0.15s ease;
  transition: 0.15s ease;
}
@media screen and (max-width: 767px) {
  .product-list__stock-link {
    margin-top: 60px;
    font-size: 14px;
    max-width: 300px;
  }
}
.product-list__stock-link:hover {
  -webkit-box-shadow: 0 0 0 rgba(0, 0, 0, 0.15);
  box-shadow: 0 0 0 rgba(0, 0, 0, 0.15);
  background: rgba(0, 0, 0, 0.04);
}
.product-list__results {
  margin-top: 90px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 56px 60px;
}
@media screen and (max-width: 1024px) {
  .product-list__results {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}
@media screen and (max-width: 767px) {
  .product-list__results {
    margin-top: 30px;
  }
}
.product-list__stock {
  padding-block: 80px;
}
@media screen and (max-width: 767px) {
  .product-list__stock {
    padding-block: 40px;
  }
}
.product-list__pagination-archive {
  margin-block: 80px;
}
@media screen and (max-width: 767px) {
  .product-list__pagination-archive {
    margin-block: 40px;
  }
}
.product-list__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
  padding: 80px 0;
  font-size: 1.6rem;
}
.product-list__links h3 {
  margin-bottom: 0;
}
.product-list__links p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 20px 40px;
}
.product-list__links p:not(:empty) {
  margin-bottom: 20px;
}
.product-list__links a {
  color: #00f;
  -webkit-text-decoration: underline 1px solid;
  text-decoration: underline 1px solid;
}

.product-detail__fade {
  position: absolute;
  top: 0;
  width: 75px;
  height: 100%;
  opacity: 0;
  z-index: 3;
  pointer-events: none;
  -webkit-transition: 0.15s ease-in-out;
  transition: 0.15s ease-in-out;
}
.product-detail__fade--left {
  background: -webkit-gradient(
    linear,
    right top,
    left top,
    from(transparent),
    to(#fff)
  );
  background: linear-gradient(to left, transparent, #fff);
  left: 0;
}
.product-detail__fade--right {
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(transparent),
    to(#fff)
  );
  background: linear-gradient(to right, transparent, #fff);
  right: 0;
}
.product-detail__fade.show {
  opacity: 1;
}
.product-detail__tab-arrow {
  padding: 12px;
  position: absolute;
  right: 0;
  top: 0;
  margin: auto;
  width: 60%;
  height: 100%;
  background: url('../public/img/icons/caret-gray.svg') no-repeat 10px
    center/20px 18px #fff;
  pointer-events: auto;
  border: none;
  cursor: pointer;
}
.product-detail__tab-arrow--left {
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
  left: 0;
  right: auto;
}
.product-detail__tab-arrow:active {
  background-color: #9e9e9e;
  opacity: 0.6;
}
.product-detail__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 40px;
}
@media screen and (max-width: 1024px) {
  .product-detail__info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 0;
  }
}
.product-detail__info-col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
@media screen and (max-width: 1024px) {
  .product-detail__info-col {
    display: contents;
    width: 100%;
  }
}
@media screen and (min-width: 1024px) {
  .product-detail__info-col:first-child {
    width: 47.5%;
    min-width: 400px;
  }
}
@media screen and (min-width: 1024px) {
  .product-detail__info-col:nth-child(2) {
    width: 44.2%;
  }
}
.product-detail__info-main {
  padding-bottom: 40px;
}
@media screen and (max-width: 1024px) {
  .product-detail__info-main {
    padding-top: 40px;
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
}
@media screen and (max-width: 767px) {
  .product-detail__info-main {
    padding-block: 20px;
  }
}
.product-detail__info-list-wrap {
  padding-block: 40px;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .product-detail__info-list-wrap {
    padding-block: 20px;
  }
}
@media screen and (max-width: 1024px) {
  .product-detail__info-list-wrap--main {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }
}
@media screen and (max-width: 1024px) {
  .product-detail__info-list-wrap--sub {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
  }
}
.product-detail__info-sec-price {
  padding-bottom: 40px;
}
.product-detail__info-sec-list {
  padding-block: 40px;
}
.product-detail__info-sec-desc {
  padding-block: 40px;
}
.product-detail__gallery-main {
  position: relative;
}
.product-detail__gallery-main-slide {
  aspect-ratio: 57/40;
}
.product-detail__gallery-main-slide--bg {
  background: #cfcfcf;
}
.product-detail__modal-close,
.product-detail__gallery-main-zoom {
  position: absolute;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.8);
  cursor: pointer;
  border: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.product-detail__gallery-main-zoom {
  top: 12px;
  right: 12px;
  z-index: 1;
}
.product-detail__gallery-nav {
  position: relative;
  margin-top: 20px;
  aspect-ratio: 570/75;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 767px) {
  .product-detail__gallery-nav {
    margin-top: 14px;
  }
}
.product-detail__gallery-nav-track {
  height: 100%;
}
.product-detail__gallery-nav-slide {
  border: none !important;
  opacity: 0.9;
  width: 18.42% !important;
}
.product-detail__gallery-nav-slide.is-active {
  opacity: 1;
}
.product-detail__modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 999999;
}
.product-detail__modal.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.product-detail__modal-container {
  position: relative;
}
.product-detail__modal-image-wrap {
  width: 80vw;
  max-height: 70vh;
  overflow-y: auto;
}
@media screen and (max-width: 767px) {
  .product-detail__modal-image {
    min-width: 600px;
  }
}
.product-detail__modal-close {
  top: -50px;
  right: -50px;
}
@media screen and (max-width: 767px) {
  .product-detail__modal-close {
    right: -25px;
  }
}
.product-detail__modal-close-icon {
  width: 20px;
}
.product-detail__title {
  padding-bottom: 12px;
  margin-top: -8px;
  font-size: 4.2rem;
  letter-spacing: 0.03em;
  line-height: 1.7619047619em;
}
@media screen and (max-width: 767px) {
  .product-detail__title {
    font-size: 26px;
  }
}
.product-detail__price {
  padding-block: 40px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 24px;
}
@media screen and (max-width: 767px) {
  .product-detail__price {
    padding-top: 20px;
  }
}
.product-detail__price-label {
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .product-detail__price-label {
    font-size: 16px;
  }
}
.product-detail__price-value {
  font: 700 4.2rem 'Roboto', sans-serif;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 767px) {
  .product-detail__price-value {
    font-size: 26px;
  }
}
.product-detail__price-value .unit {
  font: 500 2.4rem 'Noto Sans JP', sans-serif;
}
@media screen and (max-width: 767px) {
  .product-detail__price-value .unit {
    font-size: 20px;
  }
}
.product-detail__info-list-label {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 767px) {
  .product-detail__info-list-label {
    font-size: 18px;
  }
}
.product-detail__info-list-detail {
  margin-top: 16px;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 2em;
}
@media screen and (max-width: 767px) {
  .product-detail__info-list-detail {
    margin-top: 10px;
    font-size: 14px;
  }
}
.product-detail__info-list-detail:not(:last-child) {
  margin-bottom: 28px;
}
@media screen and (max-width: 767px) {
  .product-detail__info-list-detail:not(:last-child) {
    margin-bottom: 20px;
  }
}
.product-detail__info-button {
  margin-inline: unset;
  max-width: 300px;
  height: 55px;
}
.product-detail__tab-nav-wrap {
  position: relative;
}
.product-detail__tab-nav-overflow {
  overflow: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.product-detail__tab-nav-overflow::-webkit-scrollbar {
  display: none;
}
.product-detail__tab-nav-list {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  min-width: 100%;
}
.product-detail__tab-nav-list::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #cfcfcf;
  z-index: 2;
}
.product-detail__tab-nav {
  padding: 20px 46px 15px;
  font-size: 1.6rem;
  font-weight: 500;
  font-family: inherit;
  letter-spacing: 0.03em;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  border: 1px solid transparent;
  border-bottom: none;
  background: #f8f8f8;
  color: #cfcfcf;
  cursor: pointer;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .product-detail__tab-nav {
    padding: 14px 28px 10px;
    font-size: 14px;
  }
}
.product-detail__tab-nav.active {
  border-color: #cfcfcf;
  color: #404547;
  background: #fff;
  z-index: 3;
}
.product-detail__tab-panel-list {
  padding-top: 34px;
}
@media screen and (max-width: 767px) {
  .product-detail__tab-panel-list {
    padding-top: 24px;
  }
}
.product-detail__tab-panel {
  display: none;
}
.product-detail__tab-panel.active {
  display: block;
}
.product-detail__set-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (max-width: 980px) {
  .product-detail__set-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
.product-detail__set-item {
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 24px;
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  border-bottom: 1px solid #cfcfcf;
}
@media screen and (max-width: 767px) {
  .product-detail__set-item {
    padding: 10px;
    font-size: 12px;
    gap: 12px;
  }
}
@media screen and (min-width: 981px) {
  .product-detail__set-item:not(:nth-child(3n)) {
    border-right: 1px solid #cfcfcf;
  }
}
@media screen and (max-width: 980px) {
  .product-detail__set-item:not(:nth-child(2n)) {
    border-right: 1px solid #cfcfcf;
  }
}
@media screen and (min-width: 981px) {
  .product-detail__set-item:nth-last-child(-n + 3):nth-child(3n + 1),
  .product-detail__set-item:nth-last-child(-n + 2):nth-child(3n + 2),
  .product-detail__set-item:last-child:nth-child(3n) {
    border-bottom: none;
  }
}
@media screen and (max-width: 980px) {
  .product-detail__set-item:nth-last-child(-n + 2):nth-child(2n + 1),
  .product-detail__set-item:last-child:nth-child(2n) {
    border-bottom: none;
  }
}
.product-detail__set-item-img {
  border-radius: 50%;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  aspect-ratio: 1;
  width: 80px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .product-detail__set-item-img {
    width: 40px;
  }
}
.product-detail__fac {
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 2em;
}
@media screen and (max-width: 767px) {
  .product-detail__fac {
    font-size: 14px;
  }
}
.product-detail__fac-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media screen and (max-width: 1024px) {
  .product-detail__fac-body {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
.product-detail__fac-image {
  margin-left: auto;
  width: 90%;
  max-width: 500px;
  height: 100%;
}
@media screen and (max-width: 1024px) {
  .product-detail__fac-image {
    width: 100%;
    max-width: unset;
  }
}
.product-detail__fac-list-item {
  border-bottom: 1px solid #cfcfcf;
  padding-block: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .product-detail__fac-list-item {
    padding-block: 12px;
  }
}
.product-detail__fac-list-item:first-child {
  border-top: 1px solid #cfcfcf;
}
.product-detail__fac-list-label {
  padding-right: 20px;
  width: 38.333%;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .product-detail__fac-list-label {
    width: 45%;
  }
}
.product-detail__fac-note {
  margin-top: 20px;
}
.product-detail__vid-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
@media screen and (max-width: 980px) {
  .product-detail__vid-list {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 767px) {
  .product-detail__vid-list {
    gap: 20px;
  }
}
.product-detail__vid-list--1 {
  grid-template-columns: 1fr;
}
.product-detail__vid-list iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 64/36;
}
.product-detail__vid {
  width: 100%;
}
.product-detail__material-bnr {
  padding-block: 116px 36px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .product-detail__material-bnr {
    padding-block: 56px 20px;
  }
}
.product-detail__material-bnr-bg {
  position: absolute;
  inset: 0;
}
.product-detail__material-bnr-text {
  position: relative;
  font-size: 4.2rem;
  font-weight: 700;
  line-height: 2em;
  letter-spacing: 0.03em;
  z-index: 1;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .product-detail__material-bnr-text {
    font-size: 24px;
  }
}
.product-detail__material-body {
  border-radius: 0 0 5px 5px;
  padding-block: 64px 80px;
  background: #f8f8f8;
}
@media screen and (max-width: 767px) {
  .product-detail__material-body {
    padding-block: 30px 40px;
  }
}
.product-detail__material-list {
  margin-bottom: 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
@media screen and (max-width: 1024px) {
  .product-detail__material-list {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 767px) {
  .product-detail__material-list {
    margin-bottom: 30px;
    gap: 24px;
  }
}
.product-detail__material-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 48px;
  font-weight: 500;
}
@media screen and (max-width: 1024px) {
  .product-detail__material-item {
    gap: 20px;
  }
}
.product-detail__material-item-img {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 34.7%;
  aspect-ratio: 1;
  height: 100%;
}
@media screen and (max-width: 1024px) {
  .product-detail__material-item-img {
    width: 25%;
  }
}
@media screen and (max-width: 767px) {
  .product-detail__material-item-img {
    width: 30%;
    max-width: 130px;
  }
}
@media screen and (max-width: 1024px) {
  .product-detail__material-item-info {
    padding-block: 10px;
  }
}
.product-detail__material-item-name {
  margin-bottom: 24px;
  font-size: 3.2rem;
  font-weight: 500;
  line-height: 1.25em;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 767px) {
  .product-detail__material-item-name {
    margin-bottom: 14px;
    font-size: 20px;
  }
}
.product-detail__material-item-desc {
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 2em;
}
@media screen and (max-width: 767px) {
  .product-detail__material-item-desc {
    font-size: 12px;
  }
}
.product-detail__flow-list {
  margin-top: 0;
  margin-bottom: 56px;
}
@media screen and (max-width: 767px) {
  .product-detail__flow-list {
    margin-bottom: 30px;
  }
}
.product-detail__flow-item {
  border: 1px solid #cfcfcf;
  background: #fff;
  -webkit-box-shadow: none;
  box-shadow: none;
}
@media screen and (min-width: 767px) {
  .product-detail__flow-item {
    padding: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    min-height: 250px;
  }
}
@media screen and (min-width: 767px) {
  .product-detail__flow-item-num {
    font-size: 2.4rem;
  }
}
@media screen and (min-width: 767px) {
  .product-detail__flow-item-icon {
    margin-bottom: 10px;
    width: 80px;
    height: 80px;
  }
}
@media screen and (min-width: 767px) {
  .product-detail__flow-item-img {
    width: 56%;
  }
}
.product-detail__flow-item-bubble {
  margin: 16px auto 0;
  position: static;
  padding: 4px 15px;
  max-width: 260px;
}
@media screen and (min-width: 767px) {
  .product-detail__flow-item-bubble {
    font-size: 1.6rem;
    line-height: 2em;
  }
}
@media screen and (max-width: 767px) {
  .product-detail__flow-item-bubble {
    padding-inline: 8px;
    max-width: 200px;
  }
}
.product-detail__flow-item-bubble::before {
  content: none;
}
.product-detail__search-list {
  margin-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .product-detail__search-list {
    margin-bottom: 40px;
  }
}
.product-detail__button {
  margin-top: 80px;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .product-detail__button {
    margin-top: 40px;
  }
}

.company {
  padding-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .company {
    padding-bottom: 40px;
  }
}
.company__banner {
  width: 100%;
  padding-block: 125px;
  background: url('../public/img/top/mv-pc.jpg') no-repeat center/cover;
  position: relative;
}
@media screen and (max-width: 767px) {
  .company__banner {
    background-position: center;
    padding-block: 62.5px;
  }
}
.company__banner::after {
  content: '';
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle,
    rgb(209, 229, 218) 0%,
    rgb(66, 101, 80) 100%
  );
  mix-blend-mode: multiply;
  position: absolute;
  inset: 0;
}
.company__banner-info {
  position: relative;
  z-index: 1;
}
.company__banner-title {
  font-size: 4.2rem;
  letter-spacing: 0.08em;
  line-height: 1.75em;
  color: #fff;
  margin-bottom: 32px;
}
@media screen and (max-width: 767px) {
  .company__banner-title {
    font-size: 32px;
    margin-bottom: 16px;
  }
}
.company__banner-text {
  max-width: 680px;
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 2em;
  color: #fff !important;
}
@media screen and (max-width: 767px) {
  .company__banner-text {
    font-size: 16px;
  }
}
.company__banner-text:not(:last-child) {
  margin-bottom: 32px;
}
@media screen and (max-width: 767px) {
  .company__banner-text:not(:last-child) {
    margin-bottom: 16px;
  }
}
.company__banner-text:last-child {
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .company__banner-text:last-child {
    margin-top: 20px;
  }
}
.company__info {
  padding-top: 80px;
}
@media screen and (max-width: 767px) {
  .company__info {
    padding-top: 40px;
  }
}
.company__info-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 5%;
}
@media screen and (max-width: 980px) {
  .company__info-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 80px;
  }
}
@media screen and (max-width: 767px) {
  .company__info-wrap {
    gap: 50px;
  }
}
.company__info-map {
  max-width: 470px;
  width: 100%;
  height: 430px;
}
@media screen and (max-width: 980px) {
  .company__info-map {
    max-width: 100%;
    height: 330px;
  }
}
.company__info-content {
  max-width: 630px;
  width: 100%;
}
@media screen and (max-width: 980px) {
  .company__info-content {
    max-width: 100%;
  }
}
.company__row {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 2em;
  letter-spacing: 0.03em;
  padding-block: 18.2px;
  display: grid;
  grid-template-columns: 168px 1fr;
  gap: 48px;
}
@media screen and (max-width: 767px) {
  .company__row {
    grid-template-columns: 78px 1fr;
    font-size: 15px;
    padding-block: 12px;
    gap: 30px;
  }
}
.company__row--history {
  padding-block: 0;
  grid-template-columns: 62px 1fr;
}
.company__row--history:not(:last-child) {
  margin-bottom: 15px;
}
.company__link {
  white-space: nowrap;
  color: #007453;
  text-decoration: underline;
}
@media screen and (max-width: 767px) {
  .company__link {
    white-space: normal;
  }
}
.company__link-icon {
  position: relative;
  top: 3px;
  display: inline-block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  margin-left: 10px;
  background-color: #007453;
}
.company__link-icon::after {
  content: '';
  position: absolute;
  inset: 0;
  margin: auto;
  display: block;
  width: 6px;
  height: 6px;
  background: url('../public/img/icons/external-arrow.svg') no-repeat
    center/contain;
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}
.company__history {
  margin-top: 80px;
  padding-inline: 2%;
}
@media screen and (max-width: 767px) {
  .company__history {
    margin-top: 64px;
  }
}
.company__history-header {
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .company__history-header {
    margin-bottom: 40px;
  }
}
.company__history-wrap {
  max-width: 1400px;
  margin: auto;
  padding-block: 54px;
  background-color: #f2f9f6;
  border-radius: 10px;
}
.company__history-container {
  max-width: 1200px;
  width: 85.71%;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .company__history-container {
    width: 100%;
    padding-inline: 3%;
  }
}

.showroom__contact-text {
  margin-block: 98px 32px !important;
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 2em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .showroom__contact-text {
    margin-block: 35px 16px;
    font-size: 18px;
  }
}
.showroom__results {
  margin-block: 72px 80px;
}
@media screen and (max-width: 767px) {
  .showroom__results {
    margin-block: 35px 40px;
  }
}
.showroom__item {
  border: 1px solid #cfcfcf;
  border-radius: 10px;
  padding: 40px;
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.79%;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  .showroom__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
@media screen and (max-width: 767px) {
  .showroom__item {
    padding: 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
  }
}
.showroom__item:not(:last-child) {
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .showroom__item:not(:last-child) {
    margin-bottom: 24px;
  }
}
.showroom__fade {
  position: absolute;
  left: 0;
  width: 100%;
  height: 150px;
  opacity: 0;
  z-index: 1;
  pointer-events: none;
  -webkit-transition: 0.15s ease-in-out;
  transition: 0.15s ease-in-out;
}
@media screen and (max-width: 767px) {
  .showroom__fade {
    height: 60px;
  }
}
.showroom__fade--start {
  background: -webkit-gradient(
    linear,
    left bottom,
    left top,
    from(transparent),
    to(#fff)
  );
  background: linear-gradient(to top, transparent, #fff);
  top: 0;
}
.showroom__fade--end {
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(transparent),
    to(#fff)
  );
  background: linear-gradient(to bottom, transparent, #fff);
  bottom: 0;
}
.showroom__fade.show {
  opacity: 1;
}
.showroom__gallery {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4%;
  width: 43.84%;
  min-width: 490px;
  height: 400px;
}
@media screen and (max-width: 1440px) {
  .showroom__gallery {
    min-width: 392px;
    height: 320px;
  }
}
@media screen and (max-width: 1024px) {
  .showroom__gallery {
    height: 100%;
    width: 100%;
    min-width: unset;
  }
}
@media screen and (max-width: 767px) {
  .showroom__gallery {
    gap: 12px;
  }
}
.showroom__gallery-main {
  height: 100%;
  aspect-ratio: 1/1;
}
.showroom__gallery-main-track {
  height: 100%;
}
.showroom__gallery-nav {
  width: 70px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
@media screen and (max-width: 1440px) {
  .showroom__gallery-nav {
    width: 56px;
  }
}
@media screen and (max-width: 767px) {
  .showroom__gallery-nav {
    width: 40px;
  }
}
@media screen and (max-width: 320px) {
  .showroom__gallery-nav {
    width: 32px;
  }
}
.showroom__gallery-nav-slide {
  border: none !important;
  opacity: 0.9;
}
.showroom__gallery-nav-slide.is-active {
  opacity: 1;
}
.showroom__item-info {
  width: 52.67%;
}
@media screen and (max-width: 1024px) {
  .showroom__item-info {
    width: 100%;
  }
}
.showroom__item-name {
  font-size: 3.2rem;
  letter-spacing: 0.03em;
  line-height: 1.75em;
}
@media screen and (max-width: 1440px) {
  .showroom__item-name {
    font-size: 2.6rem;
  }
}
@media screen and (max-width: 767px) {
  .showroom__item-name {
    font-size: 20px;
  }
}
.showroom__item-desc {
  font-size: 2rem;
  letter-spacing: 0.03em;
  line-height: 2em;
}
@media screen and (max-width: 767px) {
  .showroom__item-desc {
    font-size: 16px;
  }
}
.showroom__item-checklist {
  border-radius: 10px;
  margin-block: 24px;
  padding: 18px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 24px;
  background: #f8f8f8;
}
@media screen and (max-width: 1440px) {
  .showroom__item-checklist {
    margin-block: 19px;
    padding: 14px 16px;
    gap: 19px;
  }
}
@media screen and (max-width: 767px) {
  .showroom__item-checklist {
    margin-block: 14px;
    padding: 12px;
    gap: 12px;
  }
}
@media screen and (max-width: 590px) {
  .showroom__item-checklist {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.showroom__item-checkbox {
  font-size: 1.4rem;
  letter-spacing: 0.03em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .showroom__item-checkbox {
    font-size: 12px;
  }
}
.showroom__item-checkbox::before {
  content: '';
  border-radius: 2px;
  border: 1px solid #007453;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  display: block;
  width: 20px;
  height: 20px;
  aspect-ratio: 1;
  background: #007453 url('../public/img/icons/check.svg') no-repeat center/12px
    auto;
}
@media screen and (max-width: 767px) {
  .showroom__item-checkbox::before {
    width: 14px;
    height: 14px;
    background-size: 9px;
  }
}
.showroom__map {
  border-radius: 10px;
  position: relative;
  width: 100%;
  height: 193px;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .showroom__map {
    height: 150px;
  }
}
.showroom__map .default-card {
  display: none;
}
.showroom__map iframe {
  position: absolute;
  bottom: 0;
  height: 100%;
  width: calc(100vw + 600px);
  pointer-events: none;
}
.showroom__map-link {
  border: 1px solid #007453;
  border-radius: 20px;
  padding: 8px 18px;
  position: absolute;
  left: 12px;
  bottom: 12px;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: #007453;
  background: #fff;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 767px) {
  .showroom__map-link {
    font-size: 14px;
  }
}
.showroom__map-link:hover {
  color: #fff;
  background: #007453;
}
.showroom__pagination-archive {
  margin-block: 80px;
}
@media screen and (max-width: 767px) {
  .showroom__pagination-archive {
    margin-block: 40px;
  }
}

.case__archive-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 60px 45px;
  margin-top: 90px;
}
@media screen and (max-width: 767px) {
  .case__archive-list {
    gap: 60px 15px;
  }
}
.case__archive-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
  width: calc(33.33% - 30px);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 767px) {
  .case__archive-item {
    width: calc(50% - 15px);
  }
}
.case__archive-item:hover {
  opacity: 0.9;
}
.case__archive-item:hover .case__archive-thumbnail img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
.case__archive-item:hover .case__archive-btn::after {
  -webkit-transform: translateX(5px);
  transform: translateX(5px);
}
.case__archive-thumbnail {
  overflow: hidden;
}
.case__archive-thumbnail img {
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
}
.case__archive-title {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 2em;
  letter-spacing: 0.03em;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .case__archive-title {
    font-size: 18px;
  }
}
.case__archive-tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 10px;
}
.case__archive-tag {
  padding: 5px 10px;
  background-color: #f8f8f8;
  border-radius: 5px;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 767px) {
  .case__archive-tag {
    font-size: 12px;
  }
}
.case__archive-btn {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  margin-top: 10px;
  color: #007453;
  font-size: 1.4rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .case__archive-btn {
    font-size: 12px;
  }
}
.case__archive-btn::after {
  content: '';
  position: relative;
  display: inline-block;
  -ms-flex-item-align: center;
  align-self: center;
  width: 14px;
  height: 14px;
  background: url('../public/img/icons/arrow.svg') no-repeat center/contain;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
}
.case__tag-links {
  margin: 60px auto;
}

.case-detail__title {
  margin-bottom: 40px;
}
.case-detail__heading {
  font-size: 2.1rem;
  font-weight: 500;
  line-height: 2em;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 767px) {
  .case-detail__heading {
    font-size: 18px;
  }
}
.case-detail__p {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 2em;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 767px) {
  .case-detail__p {
    font-size: 14px;
  }
}
.case-detail__splide-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  height: 500px;
  margin-bottom: 40px;
  overflow: hidden;
}
@media screen and (max-width: 1024px) {
  .case-detail__splide-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
    height: auto;
  }
}
.case-detail__main-splide {
  width: 75%;
}
@media screen and (max-width: 1024px) {
  .case-detail__main-splide {
    width: 100%;
  }
}
.case-detail__main-track {
  height: 100%;
}
.case-detail__main-image {
  height: 100%;
}
.case-detail__nav-wrap {
  position: relative;
  width: 25%;
  overflow-y: auto;
}
@media screen and (max-width: 1024px) {
  .case-detail__nav-wrap {
    width: 100%;
    overflow: hidden;
  }
}
.case-detail__nav-wrap::after {
  content: '';
  position: sticky;
  left: 0;
  bottom: 0;
  display: block;
  width: 100%;
  height: 20%;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(rgba(0, 0, 0, 0)),
    to(white)
  );
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, white 100%);
}
.case-detail__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 10px;
  padding-right: 10px;
}
@media screen and (max-width: 1024px) {
  .case-detail__nav {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    padding-right: 0;
    padding-bottom: 5px;
    overflow-x: auto;
  }
}
.case-detail__nav-image {
  width: calc(50% - 5px);
  cursor: pointer;
}
@media screen and (max-width: 1024px) {
  .case-detail__nav-image {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 80px;
  }
}
.case-detail__points {
  margin-bottom: 60px;
  padding-bottom: 40px;
  border-bottom: 1px solid #cfcfcf;
}
.case-detail__info-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 60px;
  margin-bottom: 60px;
}
@media screen and (max-width: 1024px) {
  .case-detail__info-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10px;
  }
}
.case-detail__info-heading {
  margin-bottom: 20px;
}
.case-detail__info-col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
  width: 50%;
}
@media screen and (max-width: 1024px) {
  .case-detail__info-col {
    gap: 10px;
    width: 100% !important;
  }
}
.case-detail__info-col--narrow {
  width: 20%;
}
@media screen and (max-width: 1024px) {
  .case-detail__info-col--mtop {
    margin-top: 20px;
  }
}
.case-detail__info-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}
.case-detail__info-label {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 60px;
}
.case-detail__info-table {
  width: 100%;
}
.case-detail__table {
  display: table;
  border-collapse: collapse;
  width: 100%;
  border: 1px solid #cfcfcf;
}
.case-detail__table tr:not(:last-of-type) {
  border-bottom: 2px solid #cfcfcf;
}
.case-detail__table th,
.case-detail__table td {
  width: 50%;
  padding: 10px;
  font-weight: 500;
  line-height: 2em;
  letter-spacing: 0.03em;
  text-align: center;
}
.case-detail__table th:first-of-type,
.case-detail__table td:first-of-type {
  border-right: 2px solid #cfcfcf;
}
.case-detail__table th {
  background-color: #f2f9f6;
  font-size: 1.5rem;
}
@media screen and (max-width: 767px) {
  .case-detail__table th {
    font-size: 14px;
  }
}
.case-detail__table td {
  font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
  .case-detail__table td {
    font-size: 12px;
  }
}
.case-detail__info-map {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}
.case-detail__info-map-embed iframe {
  width: 100% !important;
  height: 250px !important;
}
.case-detail__author {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 30px;
  margin-bottom: 80px;
  padding: 30px;
  border: 3px solid #cfcfcf;
}
@media screen and (max-width: 767px) {
  .case-detail__author {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.case-detail__author-image {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 20%;
}
@media screen and (max-width: 1024px) {
  .case-detail__author-image {
    width: 30%;
  }
}
@media screen and (max-width: 767px) {
  .case-detail__author-image {
    width: 50%;
  }
}
.case-detail__reco {
  margin-bottom: 60px;
}
.case-detail__reco-btn {
  margin-top: 60px;
}

.news__filter-subgroup {
  padding-top: unset !important;
  border: none !important;
}
.news__archive-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 45px;
  width: 100%;
}
@media screen and (max-width: 1200px) {
  .news__archive-list {
    gap: 30px;
  }
}
.news__archive-item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: calc(33.33% - 30px);
  -webkit-box-shadow: 0 8px 24px rgba(84, 120, 77, 0.1);
  box-shadow: 0 8px 24px rgba(84, 120, 77, 0.1);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 1024px) {
  .news__archive-item {
    width: calc(50% - 15px);
  }
}
@media screen and (max-width: 490px) {
  .news__archive-item {
    width: 100%;
  }
}
.news__archive-item:hover {
  opacity: 0.9;
}
.news__archive-item:hover .news__archive-thumbnail img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
.news__archive-item:hover .news__archive-btn::after {
  -webkit-transform: translateX(5px);
  transform: translateX(5px);
}
.news__archive-thumbnail {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  overflow: hidden;
}
.news__archive-thumbnail img {
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
}
.news__archive-textwrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 20px;
  background-color: #fff;
}
.news__archive-tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 10px;
}
.news__archive-tag {
  min-width: 110px;
  height: 28px;
  padding: 5px 10px;
  background-color: #f2f9f6;
  border: 1px solid #007453;
  border-radius: 12px;
  color: #007453;
  font-size: 1.4rem;
  font-weight: 500;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .news__archive-tag {
    min-width: 80px;
    font-size: 12px;
  }
}
.news__archive-date {
  margin-right: 10px;
  font-size: 1.6rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .news__archive-date {
    font-size: 14px;
  }
}
.news__archive-title {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  margin: 10px 0 40px;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.75em;
  -webkit-line-clamp: 2;
  line-clamp: 1;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .news__archive-title {
    font-size: 18px;
  }
}
.news__archive-btn {
  position: absolute;
  right: 20px;
  bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  margin-top: auto;
  margin-left: auto;
  color: #007453;
  font-size: 1.4rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .news__archive-btn {
    font-size: 12px;
  }
}
.news__archive-btn::after {
  content: '';
  position: relative;
  display: inline-block;
  -ms-flex-item-align: center;
  align-self: center;
  width: 14px;
  height: 14px;
  background: url('../public/img/icons/arrow.svg') no-repeat center/contain;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
}

.news-detail {
  padding-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .news-detail {
    padding-bottom: 60px;
  }
}
.news-detail__block {
  margin-bottom: 30px;
}
.news-detail__block--image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
}
@media screen and (max-width: 767px) {
  .news-detail__block--image {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 20px;
  }
}
.news-detail__title {
  margin-bottom: 32px;
}
.news-detail__title-jp {
  line-height: 1.5em;
  margin-bottom: 32px;
}
.news-detail__heading {
  font-size: 2.1rem;
  font-weight: 500;
  line-height: 2em;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 767px) {
  .news-detail__heading {
    font-size: 18px;
  }
}
.news-detail__p {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 2em;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 767px) {
  .news-detail__p {
    font-size: 14px;
  }
}
.news-detail__image {
  width: 100%;
}

.faq__anchor {
  margin-block: 24px 80px;
}
@media screen and (max-width: 767px) {
  .faq__anchor {
    margin-bottom: 40px;
  }
}
.faq__anchor-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(0, 285px));
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .faq__anchor-list {
    gap: 10px;
    grid-template-columns: 100%;
  }
}
.faq__anchor-link {
  width: 100%;
  height: 60px;
  background: #f8f8f8;
  border-radius: 5px;
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .faq__anchor-link {
    font-size: 16px;
  }
}
.faq__anchor-link:hover {
  background: #007453;
  color: #fff;
}
.faq__section {
  margin-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .faq__section {
    margin-bottom: 40px;
  }
}
.faq__block {
  scroll-margin-top: 140px;
}
@media screen and (max-width: 767px) {
  .faq__block {
    scroll-margin-top: 100px;
  }
}
.faq__block:last-child {
  margin-bottom: 0;
}
.faq__title {
  font-size: 3.2rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 767px) {
  .faq__title {
    font-size: 24px;
  }
}
.faq .top__qna-list {
  margin-block: 32px 56px;
}
@media screen and (max-width: 767px) {
  .faq .top__qna-list {
    margin-block: 24px 48px;
  }
}
.faq .top__qna-acc {
  border: 1px solid #cfcfcf;
}
.faq__link {
  position: relative;
  color: #007453;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.faq__link::after {
  content: '';
  background: url('../public/img/icons/external-link.svg') no-repeat
    center/contain;
  width: 14px;
  height: 14px;
  display: inline-block;
  margin-left: 7px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.faq__link:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.faq__link:hover::after {
  -webkit-transform: translateX(4px);
  transform: translateX(4px);
}

.column__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 6.58%;
}
@media screen and (max-width: 767px) {
  .column__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 0;
  }
}
.column__main {
  width: 65%;
}
@media screen and (max-width: 767px) {
  .column__main {
    width: 100%;
  }
}
.column__aside {
  width: 28.25%;
}
@media screen and (max-width: 767px) {
  .column__aside {
    width: 100%;
  }
}
.column__archive-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 55px 45px;
  width: 100%;
  margin-top: 115px;
}
@media screen and (max-width: 1200px) {
  .column__archive-list {
    gap: 30px;
  }
}
.column__archive-item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: calc(50% - 23px);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 490px) {
  .column__archive-item {
    width: 100%;
  }
}
.column__archive-item:hover {
  opacity: 0.9;
}
.column__archive-item:hover .column__archive-thumbnail img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
.column__archive-thumbnail {
  width: 100%;
  aspect-ratio: 368/200;
  overflow: hidden;
}
.column__archive-thumbnail img {
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
}
.column__archive-date {
  margin-top: 20px;
  font-size: 1.6rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .column__archive-date {
    font-size: 14px;
  }
}
.column__archive-title {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  margin: 12px 0;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.75em;
  letter-spacing: 0.03em;
  -webkit-line-clamp: 2;
  line-clamp: 1;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .column__archive-title {
    font-size: 18px;
  }
}
.column__archive-tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 10px;
}
.column__archive-tag {
  padding: 6px 11px;
  background-color: #f8f8f8;
  border-radius: 5px;
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 767px) {
  .column__archive-tag {
    font-size: 12px;
  }
}
.column__archive-pagination {
  margin-block: 80px;
}
@media screen and (max-width: 767px) {
  .column__archive-pagination {
    margin: 50px 0 80px;
  }
}
.column__related {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 50px;
}
.column__related-label {
  font-size: 2rem;
  font-weight: 700;
}
.column__related-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 24px;
}
.column__related-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 24px;
  width: 100%;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.column__related-item:hover {
  opacity: 0.9;
}
.column__related-item:hover .column__related-thumbnail img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
.column__related-thumbnail {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 100px;
  height: 100px;
  border-radius: 5px;
  overflow: hidden;
}
.column__related-thumbnail img {
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
}
.column__related-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
  font-size: 1.6rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .column__related-info {
    font-size: 14px;
  }
}
.column__related-title {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 1;
  line-height: 2em;
  overflow: hidden;
}
.column__accordion {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.column__acc-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  border-top: 1px solid #cfcfcf;
  font-weight: 500;
}
.column__acc-item:last-of-type {
  border-bottom: 1px solid #cfcfcf;
}
.column__acc-year {
  position: relative;
  padding: 18px;
  font-size: 1.6rem;
  cursor: pointer;
}
.column__acc-year a {
  margin-left: -5px;
  padding: 5px;
}
.column__acc-year::before,
.column__acc-year::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 20px;
  width: 13px;
  height: 2px;
  background-color: #007453;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.column__acc-year::before {
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.column__acc-year::after {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(-50%) rotate(90deg);
  transform: translateY(-50%) rotate(90deg);
}
.column__acc-year.open {
  background-color: #f2f9f6;
  border-bottom: 2px dotted #cfcfcf;
  color: #007453;
}
.column__acc-year.open::after {
  opacity: 0;
  visibility: hidden;
}
.column__acc-sub {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.column__acc-sub.open {
  height: auto;
  opacity: 1;
  visibility: visible;
}
.column__acc-month {
  position: relative;
  padding: 19px;
  border-bottom: 2px dotted #cfcfcf;
  font-size: 1.4rem;
}
.column__acc-month:last-of-type {
  border-bottom: none;
}
.column__acc-month::before {
  content: '';
  position: absolute;
  top: 50%;
  right: 20px;
  width: 14px;
  height: 14px;
  background: url('../public/img/icons/caret-green2.svg') no-repeat
    center/contain;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.column__acc-month:hover::before {
  -webkit-transform: translate(-5px, -50%);
  transform: translate(-5px, -50%);
}

.column-detail {
  padding-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .column-detail {
    padding-bottom: 60px;
  }
}
.column-detail__block {
  margin-bottom: 30px;
}
.column-detail__block--image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
}
@media screen and (max-width: 767px) {
  .column-detail__block--image {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 20px;
  }
}
.column-detail__title {
  margin-bottom: 60px;
}
.column-detail__title-jp {
  line-height: 1.5em;
}
.column-detail__heading {
  font-size: 2.1rem;
  font-weight: 500;
  line-height: 2em;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 767px) {
  .column-detail__heading {
    font-size: 18px;
  }
}
.column-detail__p {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 2em;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 767px) {
  .column-detail__p {
    font-size: 14px;
  }
}
.column-detail__image {
  width: 100%;
}

.strengths__row {
  counter-reset: str-item;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 40px 5.67%;
  margin-bottom: 70px;
}
@media screen and (max-width: 767px) {
  .strengths__row {
    margin-bottom: 35px;
  }
}
.strengths__item {
  counter-increment: str-item;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 6.25%;
  width: 46.67%;
}
@media screen and (max-width: 767px) {
  .strengths__item {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 100%;
  }
}
.strengths__thumbnail {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 39.21%;
}
@media screen and (max-width: 1440px) {
  .strengths__thumbnail {
    width: 31.37%;
  }
}
@media screen and (max-width: 767px) {
  .strengths__thumbnail {
    margin-bottom: 16px;
    margin-inline: auto;
    width: 85%;
  }
}
.strengths__thumbnail img {
  display: block;
}
.strengths__item-content {
  letter-spacing: 0.03em;
  font-weight: 500;
}
.strengths__item-title {
  margin-bottom: 20px;
  font-size: 2.4rem;
  line-height: 1.7916666667em;
}
@media screen and (max-width: 1440px) {
  .strengths__item-title {
    font-size: 2rem;
  }
}
.strengths__item-title::before {
  content: counter(str-item, decimal-leading-zero);
  display: block;
  margin-bottom: 10px;
  font-family: 'Roboto', sans-serif;
  color: #007453;
  line-height: 1em;
}
.strengths__item-text {
  font-size: 1.6rem;
  line-height: 2em;
}
@media screen and (max-width: 767px) {
  .strengths__item-text {
    font-size: 15px;
  }
}
.strengths__results {
  padding-bottom: 73px;
}
@media screen and (max-width: 767px) {
  .strengths__results {
    padding-bottom: 36.5px;
  }
}
.strengths__results-heading {
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .strengths__results-heading {
    margin-bottom: 25px;
  }
}
.strengths__results-heading .content-heading__en,
.strengths__results-heading .content-heading__jp {
  letter-spacing: 0.03em;
}
.strengths__aftercare {
  counter-reset: aftercare-item;
  background-color: #f2f9f6;
  padding-block: 143px 80px;
  margin-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .strengths__aftercare {
    padding-block: 71.5px 40px;
    margin-bottom: 40px;
  }
}
.strengths__aftercare-heading {
  position: relative;
  margin-bottom: 50px;
  text-align: center;
  color: #007453;
  font-size: 4.2rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.75em;
}
@media screen and (max-width: 1440px) {
  .strengths__aftercare-heading {
    font-size: 3.4rem;
  }
}
@media screen and (max-width: 767px) {
  .strengths__aftercare-heading {
    font-size: 2.1rem;
  }
}
.strengths__aftercare-heading::before {
  content: '';
  position: absolute;
  bottom: calc(100% + 20px);
  right: 0;
  left: 0;
  margin: auto;
  display: block;
  width: 60px;
  height: 15px;
  background-image: url('../public/img/strengths/aftercare-header-decor.svg');
  background-size: contain;
  background-repeat: no-repeat;
}
@media screen and (max-width: 767px) {
  .strengths__aftercare-heading::before {
    bottom: calc(100% + 10px);
    width: 30px;
    height: 7.5px;
  }
}
.strengths__aftercare-item {
  counter-increment: aftercare-item;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 6.67%;
}
@media screen and (max-width: 767px) {
  .strengths__aftercare-item {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.strengths__aftercare-item:not(:last-child) {
  margin-bottom: 64px;
}
@media screen and (max-width: 767px) {
  .strengths__aftercare-item:not(:last-child) {
    margin-bottom: 32px;
  }
}
@media screen and (max-width: 767px) {
  .strengths__aftercare-item:not(:has(.number))
    .strengths__aftercare-item-title {
    margin-top: 20px;
  }
}
.strengths__aftercare-thumbnail {
  position: relative;
  width: 44.33%;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .strengths__aftercare-thumbnail {
    width: 100%;
    margin-bottom: 16px;
  }
}
.strengths__aftercare-thumbnail img {
  display: block;
}
.strengths__aftercare-thumbnail::before {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 80px 80px 0 0;
  border-color: #f2f9f6 transparent transparent;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .strengths__aftercare-thumbnail::before {
    border-width: 40px 40px 0 0;
  }
}
.strengths__aftercare-thumbnail::after {
  content: counter(aftercare-item, decimal-leading-zero);
  position: absolute;
  inset: 5px auto auto 0;
  font-size: 2.4rem;
  font-weight: 500;
  font-family: 'Roboto', sans-serif;
  color: #007453;
  letter-spacing: 0.03em;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .strengths__aftercare-thumbnail::after {
    font-size: 1.2rem;
  }
}
.strengths__aftercare-overlay {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
    200deg,
    rgba(180, 243, 162, 0) 30%,
    #007453 100%
  );
  opacity: 0.5;
}
.strengths__aftercare-item-title {
  margin-bottom: 18px;
  font-size: 3.2rem;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 1440px) {
  .strengths__aftercare-item-title {
    font-size: 2.6rem;
  }
}
@media screen and (max-width: 767px) {
  .strengths__aftercare-item-title {
    margin-bottom: 9px;
    font-size: 2rem;
  }
}
.strengths__aftercare-item-title .number {
  font-size: 4.2rem;
}
@media screen and (max-width: 1440px) {
  .strengths__aftercare-item-title .number {
    font-size: 3.4rem;
  }
}
@media screen and (max-width: 767px) {
  .strengths__aftercare-item-title .number {
    font-size: 3rem;
  }
}
.strengths__aftercare-item-title .number::before {
  bottom: 82.19%;
}
@media screen and (max-width: 1440px) {
  .strengths__aftercare-item-title .number::before {
    bottom: 83%;
  }
}
.strengths__aftercare-item-title span {
  position: relative;
}
.strengths__aftercare-item-title span::before {
  content: '';
  position: absolute;
  inset: auto 0 100%;
  margin: auto;
  width: 6px;
  height: 6px;
  background-color: #007453;
  border-radius: 50%;
}
@media screen and (max-width: 767px) {
  .strengths__aftercare-item-title span::before {
    bottom: calc(100% + 4px);
  }
}
.strengths__aftercare-item-text {
  font-size: 1.8rem;
  line-height: 2em;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 1440px) {
  .strengths__aftercare-item-text {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .strengths__aftercare-item-text {
    font-size: 15px;
  }
}
.strengths__commitment {
  margin-bottom: 64px;
}
@media screen and (max-width: 767px) {
  .strengths__commitment {
    margin-bottom: 32px;
  }
}
.strengths__box {
  position: relative;
  isolation: isolate;
}
.strengths__box-bg {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 94.79%;
  border-radius: 10px;
  overflow: hidden;
  z-index: -1;
}
.strengths__box-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  margin: auto;
  background-color: rgba(26, 26, 26, 0.48);
  backdrop-filter: blur(10px) brightness(0.9);
  border-radius: 10px;
  z-index: 2;
}
.strengths__box-content-wrapper {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-block: 102px 86px;
  color: #fff;
  letter-spacing: 0.03em;
  z-index: 3;
}
@media screen and (max-width: 767px) {
  .strengths__box-content-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    padding-block: 51px 43px;
    padding-inline: 10%;
  }
}
.strengths__box-content {
  position: relative;
  width: 53%;
}
@media screen and (max-width: 767px) {
  .strengths__box-content {
    width: 100%;
  }
}
.strengths__box-title {
  margin-bottom: 45px;
  font-size: 4.2rem;
  font-weight: 500;
  line-height: 1.75em;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 1440px) {
  .strengths__box-title {
    margin-bottom: 36px;
    font-size: 3.2rem;
  }
}
@media screen and (max-width: 767px) {
  .strengths__box-title {
    margin-bottom: 22.5px;
    font-size: 2.4rem;
  }
}
.strengths__box-text {
  margin-bottom: 30px;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2em;
  letter-spacing: 0.03em;
  color: #fff !important;
}
@media screen and (max-width: 767px) {
  .strengths__box-text {
    margin-bottom: 15px;
    font-size: 15px;
  }
}
.strengths__box-footer {
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.03em;
}
.strengths__box-image {
  position: relative;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  max-width: 470px;
  width: 39.17%;
}
@media screen and (max-width: 767px) {
  .strengths__box-image {
    width: 100%;
  }
}
.strengths__footer-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 2.5%;
  padding-block: 80px;
}
@media screen and (max-width: 767px) {
  .strengths__footer-row {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.strengths__footer-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
  width: 31.67%;
  background-color: #f2f9f6;
  border-radius: 5px;
  padding: 12px;
  overflow: hidden;
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 1440px) {
  .strengths__footer-item {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .strengths__footer-item {
    width: 100%;
    margin-bottom: 16px;
    font-size: 15px;
  }
}
.strengths__footer-item:hover {
  opacity: 0.7;
}
.strengths__footer-thumbnail {
  max-width: 120px;
}
@media screen and (max-width: 1440px) {
  .strengths__footer-thumbnail {
    max-width: 96px;
  }
}

.privacy-policy {
  padding-bottom: 80px;
}
.privacy-policy__item:not(:last-child) {
  margin-bottom: 32px;
}
@media screen and (max-width: 767px) {
  .privacy-policy__item:not(:last-child) {
    margin-bottom: 16px;
  }
}
.privacy-policy__item-title {
  margin-bottom: 12px;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}
.privacy-policy__item-content {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2em;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 767px) {
  .privacy-policy__item-content {
    font-size: 15px;
  }
}
.privacy-policy li {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2em;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 767px) {
  .privacy-policy li {
    font-size: 15px;
  }
}
.privacy-policy ul {
  list-style-type: disc;
  padding-left: 15px;
}
.privacy-policy ol {
  list-style-type: none;
  counter-reset: privacy-policy-item;
}
.privacy-policy ol li {
  counter-increment: privacy-policy-item;
  position: relative;
  padding-left: 32px;
}
.privacy-policy ol li::before {
  content: '(' counter(privacy-policy-item) ')';
  position: absolute;
  left: 0;
  top: 0;
}
.privacy-policy a {
  color: #007453;
  text-decoration: underline;
}

.sitemap {
  padding-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .sitemap {
    padding-bottom: 40px;
  }
}
.sitemap__nav {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 26px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media screen and (max-width: 1200px) {
  .sitemap__nav {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  }
}
@media screen and (max-width: 767px) {
  .sitemap__nav {
    grid-template-columns: repeat(auto-fit, minmax(155px, 1fr));
    gap: 30px 0;
  }
}
@media screen and (max-width: 500px) {
  .sitemap__nav {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 490px) {
  .sitemap__nav br {
    display: none;
  }
}
.sitemap__nav-col {
  -ms-flex-preferred-size: 30%;
  flex-basis: 30%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.sitemap__link {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  font-size: 2rem;
  letter-spacing: 0.05em;
  line-height: 1.6em;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 1200px) {
  .sitemap__link {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 767px) {
  .sitemap__link {
    line-height: 1.7777777778em;
  }
}
.sitemap__link::before {
  content: '■ ';
  color: #007453;
  font-size: 1.6rem;
}
.sitemap__link:not(:first-child) {
  margin-top: 26px;
}
@media screen and (max-width: 767px) {
  .sitemap__link:not(:first-child) {
    margin-top: 30px;
  }
}
.sitemap__link--sub {
  margin-left: 16px;
  font-size: 1.6rem;
  line-height: 2em;
}
@media screen and (max-width: 767px) {
  .sitemap__link--sub {
    font-size: 14px;
  }
}
.sitemap__link--sub:not(:first-child) {
  margin-top: 8px;
}
@media screen and (max-width: 767px) {
  .sitemap__link--sub:not(:first-child) {
    margin-top: 12px;
  }
}
.sitemap__link--sub::before {
  content: 'ー ';
}
@media screen and (max-width: 767px) {
  .sitemap__link--title + .sitemap__link--sub {
    margin-top: 16px;
  }
}
.sitemap__link:hover {
  opacity: 0.7;
}

.transaction {
  padding-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .transaction {
    padding-bottom: 40px;
  }
}
.transaction .company__info-content {
  max-width: initial;
  width: 100%;
}
.transaction .company__row {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0;
  border-bottom: 1px solid #d1d1d1;
  grid-template-columns: 25% 1fr;
}
@media screen and (max-width: 767px) {
  .transaction .company__row {
    grid-template-columns: 30% 1fr;
  }
}
.transaction .company__info-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
  background-color: rgba(197, 197, 197, 0.5);
  padding-inline: 20px;
}
.transaction .company__info-desc {
  padding-block: 18px;
}

.trouble {
  position: relative;
  background-color: #fff;
  padding-block: 48px 184px;
  isolation: isolate;
}
@media screen and (max-width: 980px) {
  .trouble {
    padding-block: 56px 240px;
  }
}
@media screen and (max-width: 767px) {
  .trouble {
    padding-bottom: 0;
  }
}
.trouble--rental {
  background-color: #7e7d7a;
}
.trouble--rental .trouble__header {
  color: #fff;
}
.trouble--rental .trouble__en {
  color: #fff;
}
.trouble--rental .trouble__balloon {
  background-image: url('../public/img/rental/bubble-shape-1.svg');
}
.trouble--rental .trouble__balloon--w-259 {
  background-image: url('../public/img/rental/bubble-shape-2.svg');
}
.trouble--rental .trouble__balloon--w-230 {
  padding-top: 78px;
  background-image: url('../public/img/rental/bubble-shape-3.svg');
}
@media screen and (max-width: 1366px) {
  .trouble--rental .trouble__balloon--w-230 {
    padding-top: 62px;
  }
}
@media screen and (max-width: 767px) {
  .trouble--rental .trouble__balloon--w-230 {
    padding-top: 39px;
  }
}
.trouble--rental .trouble__balloon:last-of-type {
  padding-top: 44px;
}
@media screen and (max-width: 1366px) {
  .trouble--rental .trouble__balloon:last-of-type {
    padding-top: 35px;
  }
}
@media screen and (max-width: 767px) {
  .trouble--rental .trouble__balloon:last-of-type {
    padding-top: 22px;
  }
}
.trouble__header {
  text-align: center;
  margin-bottom: 42px;
}
@media screen and (max-width: 980px) {
  .trouble__header {
    margin-bottom: 52px;
  }
}
@media screen and (max-width: 767px) {
  .trouble__header {
    margin-bottom: 30px;
  }
}
.trouble__en {
  display: block;
  margin-bottom: 18px;
  font-size: 1.6rem;
  font-weight: 700;
  font-family: 'Roboto', sans-serif;
  letter-spacing: 0.03em;
  color: #5e9cd4;
}
@media screen and (max-width: 767px) {
  .trouble__en {
    margin-bottom: 5px;
  }
}
.trouble__ja {
  font-size: 3.2rem;
  line-height: 1em;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 767px) {
  .trouble__ja {
    font-size: 2.4rem;
  }
}
.trouble__diagram-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .trouble__diagram-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);
    place-items: center;
    max-width: 420px;
    margin: -40px auto 0;
  }
}
.trouble__balloon {
  position: relative;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  display: grid;
  padding-top: 46px;
  width: 285px;
  height: 202px;
  background-image: url('../public/img/mizuboro/bubble-shape-1.svg');
  background-size: contain;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1366px) {
  .trouble__balloon {
    width: 228px;
    height: 161px;
    padding-top: 37px;
  }
}
@media screen and (max-width: 767px) {
  .trouble__balloon {
    width: 182px;
    height: 129px;
    padding-top: 30px;
  }
}
@media screen and (max-width: 485px) {
  .trouble__balloon {
    width: 142.5px;
    height: 101px;
    padding-top: 23px;
  }
}
@media screen and (max-width: 374px) {
  .trouble__balloon {
    width: 132.5px;
    height: 91px;
  }
}
.trouble__balloon .sm {
  font-size: 1.6rem;
  line-height: 2em;
}
@media screen and (max-width: 1366px) {
  .trouble__balloon .sm {
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 767px) {
  .trouble__balloon .sm {
    font-size: 1.1rem;
  }
}
@media screen and (max-width: 485px) {
  .trouble__balloon .sm {
    font-size: 0.8rem;
  }
}
.trouble__balloon p {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.6em;
  text-align: center;
}
@media screen and (max-width: 1366px) {
  .trouble__balloon p {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .trouble__balloon p {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 485px) {
  .trouble__balloon p {
    font-size: 1rem;
  }
}
.trouble__balloon--w-259 {
  width: 259px;
  height: 204px;
  background-image: url('../public/img/mizuboro/bubble-shape-2.svg');
}
@media screen and (max-width: 1366px) {
  .trouble__balloon--w-259 {
    width: 207px;
    height: 163px;
  }
}
@media screen and (max-width: 767px) {
  .trouble__balloon--w-259 {
    width: 166px;
    height: 130px;
  }
}
@media screen and (max-width: 485px) {
  .trouble__balloon--w-259 {
    width: 129.5px;
    height: 102px;
  }
}
@media screen and (max-width: 374px) {
  .trouble__balloon--w-259 {
    width: 119.5px;
    height: 92px;
  }
}
.trouble__balloon--w-230 {
  padding-top: 68px;
  width: 230px;
  height: 256px;
  background-image: url('../public/img/mizuboro/bubble-shape-3.svg');
}
@media screen and (max-width: 1366px) {
  .trouble__balloon--w-230 {
    padding-top: 54px;
    width: 184px;
    height: 205px;
  }
}
@media screen and (max-width: 767px) {
  .trouble__balloon--w-230 {
    width: 150px;
    height: 164px;
    padding-top: 43px;
  }
}
@media screen and (max-width: 485px) {
  .trouble__balloon--w-230 {
    padding-top: 34px;
    width: 115px;
    height: 128px;
  }
}
@media screen and (max-width: 374px) {
  .trouble__balloon--w-230 {
    width: 105px;
    height: 118px;
  }
}
.trouble__balloon:first-of-type {
  margin-right: -60px;
  margin-top: -57px;
}
@media screen and (max-width: 980px) {
  .trouble__balloon:first-of-type {
    margin-right: -130px;
  }
}
@media screen and (max-width: 767px) {
  .trouble__balloon:first-of-type {
    top: 50px;
    left: 10px;
    margin-right: 0;
    margin-top: 0;
  }
}
.trouble__balloon:nth-of-type(2) {
  margin-bottom: -225px;
}
@media screen and (max-width: 980px) {
  .trouble__balloon:nth-of-type(2) {
    margin-bottom: -300px;
    margin-right: -50px;
  }
}
@media screen and (max-width: 767px) {
  .trouble__balloon:nth-of-type(2) {
    bottom: 70px;
    left: 15px;
    grid-column: 1/2;
    grid-row: 3/4;
    margin-bottom: 0;
    margin-right: 0;
  }
}
.trouble__balloon:nth-of-type(4) {
  margin-right: -25px;
  margin-bottom: -215px;
}
@media screen and (max-width: 980px) {
  .trouble__balloon:nth-of-type(4) {
    margin-left: -50px;
    margin-right: -118px;
    margin-bottom: -300px;
  }
}
@media screen and (max-width: 767px) {
  .trouble__balloon:nth-of-type(4) {
    bottom: 70px;
    right: 14px;
    grid-column: 3/4;
    grid-row: 3/4;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 0;
  }
}
.trouble__balloon:last-of-type {
  margin-top: -57px;
  padding-top: 68px;
}
@media screen and (max-width: 1366px) {
  .trouble__balloon:last-of-type {
    padding-top: 54px;
  }
}
@media screen and (max-width: 767px) {
  .trouble__balloon:last-of-type {
    top: 50px;
    right: 20px;
    grid-column: 3/4;
    grid-row: 1/2;
    margin-top: 0;
    padding-top: 34px;
  }
}
.trouble__character-wrapper {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 215px;
  height: 200px;
  margin-left: -15px;
  margin-right: -10px;
}
@media screen and (max-width: 1366px) {
  .trouble__character-wrapper {
    width: 172px;
    height: 160px;
  }
}
@media screen and (max-width: 767px) {
  .trouble__character-wrapper {
    grid-row: 2/3;
    grid-column: 2/3;
    width: 138px;
    height: 128px;
    margin-left: 0;
    margin-right: 0;
  }
}
@media screen and (max-width: 485px) {
  .trouble__character-wrapper {
    width: 107.5px;
    height: 100px;
  }
}

.efficacy {
  position: relative;
  padding-block: 170px 110px;
  isolation: isolate;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .efficacy {
    margin-top: -35px;
    padding-block: 85px 55px;
  }
}
.efficacy::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../public/img/mizuboro/efficacy-section-bg.png');
  background-size: cover;
  background-position: bottom;
  pointer-events: none;
  z-index: -1;
}
.efficacy::after {
  content: '';
  position: absolute;
  top: -48px;
  right: 0;
  left: 0;
  margin: auto;
  display: block;
  max-width: 1000px;
  width: 52.08%;
  min-width: 711px;
  height: 174px;
  background-image: url('../public/img/mizuboro/trouble-arrow.svg');
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .efficacy::after {
    top: -24px;
    width: 100%;
    min-width: auto;
  }
}
.efficacy__content {
  padding: 0 12%;
  margin: 0 auto;
  max-width: calc(1400px + 24%);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
@media screen and (max-width: 1200px) {
  .efficacy__content {
    max-width: 100%;
    padding-inline: 10%;
  }
}
.efficacy__header {
  position: relative;
  margin-bottom: 50px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .efficacy__header {
    margin-bottom: 25px;
  }
}
.efficacy__en {
  font-size: 13rem;
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1em;
  color: rgba(255, 255, 255, 0.3);
}
@media screen and (max-width: 767px) {
  .efficacy__en {
    font-size: 65px;
  }
}
@media screen and (max-width: 374px) {
  .efficacy__en {
    font-size: 50px;
  }
}
.efficacy__ja {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 4.2rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .efficacy__ja {
    font-size: 21px;
  }
}
.efficacy__items {
  margin-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .efficacy__items {
    margin-bottom: 40px;
  }
}
.efficacy__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 72px;
}
@media screen and (max-width: 767px) {
  .efficacy__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
  }
}
.efficacy__row:nth-of-type(even) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
@media screen and (max-width: 767px) {
  .efficacy__row:nth-of-type(even) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.efficacy__row:not(:last-of-type) {
  margin-bottom: 40px;
}
.efficacy__image {
  max-width: 670px;
  height: 360px;
}
@media screen and (max-width: 767px) {
  .efficacy__image {
    height: auto;
  }
}
.efficacy__content-wrapper {
  -ms-flex-preferred-size: 458px;
  flex-basis: 458px;
}
@media screen and (max-width: 767px) {
  .efficacy__content-wrapper {
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
  }
}
.efficacy__point-label {
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: rgba(255, 255, 255, 0.5);
}
@media screen and (max-width: 767px) {
  .efficacy__point-label {
    font-size: 18px;
  }
}
.efficacy__title {
  font-size: 4rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.75em;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .efficacy__title {
    line-height: 1.4em;
    font-size: 30px;
  }
}
.efficacy__item-content {
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 2em;
  color: #fff !important;
}
@media screen and (max-width: 767px) {
  .efficacy__item-content {
    font-size: 16px;
  }
}
.efficacy__specs {
  padding-block: 54px 64px;
  background-color: #fff;
  border-radius: 10px;
}
@media screen and (max-width: 767px) {
  .efficacy__specs {
    padding-block: 27px 32px;
  }
}
.efficacy__specs-content {
  max-width: 1200px;
  width: 85.71%;
  margin: auto;
}
@media screen and (max-width: 1440px) {
  .efficacy__specs-content {
    width: 88%;
  }
}
.efficacy__specs-heading {
  margin-bottom: 55px;
}
@media screen and (max-width: 767px) {
  .efficacy__specs-heading {
    margin-bottom: 27.5px;
  }
}
.efficacy__spec-layout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 8.33%;
}
@media screen and (max-width: 980px) {
  .efficacy__spec-layout {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    gap: 20px;
  }
}
.efficacy__spec-content {
  width: 522px;
}
@media screen and (max-width: 980px) {
  .efficacy__spec-content {
    width: 100%;
  }
}
.efficacy__table-heading {
  margin-bottom: 20px;
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 767px) {
  .efficacy__table-heading {
    margin-bottom: 10px;
    font-size: 20px;
  }
}
.efficacy__table-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 70px;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  border-bottom: 1px solid #cfcfcf;
  padding-block: 19.5px;
}
@media screen and (max-width: 767px) {
  .efficacy__table-row {
    padding-block: 9.75px;
    gap: 35px;
    font-size: 15px;
  }
}
.efficacy__table-row:first-of-type {
  border-top: 1px solid #cfcfcf;
}
.efficacy__label {
  -ms-flex-preferred-size: 198px;
  flex-basis: 198px;
}
@media screen and (max-width: 767px) {
  .efficacy__label {
    -ms-flex-preferred-size: 108px;
    flex-basis: 108px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
  }
}
.efficacy__spec-diagram {
  position: relative;
  max-width: 578px;
}
@media screen and (max-width: 980px) {
  .efficacy__spec-diagram {
    max-width: 100%;
  }
}
.efficacy__diagram-label {
  position: absolute;
  top: 27px;
  left: 16px;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 767px) {
  .efficacy__diagram-label {
    top: 13.5px;
    left: 8px;
    font-size: 15px;
  }
}
.efficacy__footnotes {
  margin-top: 7px;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 2em;
}
@media screen and (max-width: 767px) {
  .efficacy__footnotes {
    font-size: 15px;
  }
}

.graph {
  padding-block: 90px 80px;
  background-image: url('../public/img/mizuboro/graph-bg.png');
  background-size: cover;
  background-repeat: no-repeat;
  margin-bottom: 56px;
}
@media screen and (max-width: 767px) {
  .graph {
    padding-block: 45px 40px;
    margin-bottom: 28px;
  }
}
@media screen and (max-width: 767px) {
  .graph .container {
    padding-inline: 10%;
  }
}
.graph__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 45px;
}
@media screen and (max-width: 980px) {
  .graph__header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-bottom: 32px;
  }
}
@media screen and (max-width: 767px) {
  .graph__header {
    gap: 12px;
    margin-bottom: 22.5px;
  }
}
.graph__pill-text {
  background-color: #5e9cd4;
  padding: 8px 31.5px 10px;
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.3333333333em;
  color: #fff;
  border-radius: 25px;
}
@media screen and (max-width: 1440px) {
  .graph__pill-text {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    font-size: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .graph__pill-text {
    padding: 10px 31.5px 8px;
    font-size: 16px;
  }
}
.graph__heading {
  font-size: 4.2rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 1440px) {
  .graph__heading {
    font-size: 3.3rem;
  }
}
@media screen and (max-width: 767px) {
  .graph__heading {
    text-align: center;
    font-size: 24px;
    line-height: 1.95em;
  }
}
.graph__heading span {
  position: relative;
}
.graph__heading span::before {
  content: '';
  position: absolute;
  inset: auto 0 100%;
  margin: auto;
  width: 8px;
  height: 8px;
  background-color: #5e9cd4;
  border-radius: 50%;
}
@media screen and (max-width: 767px) {
  .graph__heading span::before {
    bottom: 95%;
  }
}
.graph__layout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  gap: 72px;
}
@media screen and (max-width: 980px) {
  .graph__layout {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
  }
}
.graph__chart-wrapper {
  position: relative;
  display: grid;
  place-items: center;
  border: 1px solid #cfcfcf;
  background-color: #fff;
}
.graph__chart-wrapper img {
  display: block;
  width: 87.96%;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .graph__chart-wrapper img {
    width: 95.46%;
  }
}
.graph__chart-label {
  position: absolute;
  right: 12px;
  bottom: 12px;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 767px) {
  .graph__chart-label {
    position: relative;
    right: 6px;
    margin-left: auto;
    text-align: end;
  }
}
.graph__chart-item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .graph__chart-item {
    gap: 10px;
  }
}
.graph__chart-item::before {
  content: '';
  position: relative;
  top: 10px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  display: block;
  width: 24px;
  height: 18px;
  background-image: url('../public/img/icons/check-blue.svg');
  background-size: contain;
  background-repeat: no-repeat;
}
@media screen and (max-width: 767px) {
  .graph__chart-item::before {
    width: 12px;
    height: 9px;
  }
}
.graph__chart-item:not(:last-of-type) {
  margin-bottom: 15px;
}
@media screen and (max-width: 767px) {
  .graph__chart-item:not(:last-of-type) {
    margin-bottom: 7.5px;
  }
}
.graph__chart-item-header {
  display: block;
  margin-bottom: 6px;
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 767px) {
  .graph__chart-item-header {
    font-size: 20px;
  }
}
.graph__chart-item-text {
  display: block;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 2em;
}
@media screen and (max-width: 767px) {
  .graph__chart-item-text {
    font-size: 15px;
  }
}
.graph__chart-characters {
  margin-top: -15px;
}

.items {
  padding: 0 12%;
  margin: 0 auto;
  max-width: calc(1400px + 24%);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin-bottom: 80px;
}
@media screen and (max-width: 1200px) {
  .items {
    max-width: 100%;
    padding-inline: 10%;
  }
}
@media screen and (max-width: 767px) {
  .items {
    margin-bottom: 40px;
  }
}
.items__wrapper {
  background-color: #f1f7fc;
  border-radius: 10px;
  padding-block: 54px 64px;
}
@media screen and (max-width: 767px) {
  .items__wrapper {
    padding-block: 27px 32px;
  }
}
.items__content {
  max-width: 1200px;
  width: 85.71%;
  margin: auto;
}
.items__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 4.83%;
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .items__list {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 32px;
    margin-bottom: 30px;
  }
}
.items__card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  max-width: 360px;
  width: 30%;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 767px) {
  .items__card {
    max-width: initial;
    width: 100%;
  }
}
.items__card:hover {
  opacity: 0.7;
}
.items__card-tag {
  display: block;
  margin-bottom: 18px;
  border-left: 6px solid #5e9cd4;
  text-transform: uppercase;
  font-size: 1.6rem;
  font-family: 'Roboto', sans-serif;
  letter-spacing: 0.03em;
  color: #5e9cd4;
  padding-left: 9px;
}
@media screen and (max-width: 767px) {
  .items__card-tag {
    border-left-width: 3px;
    font-size: 15px;
  }
}
.items__card-image {
  width: 360px;
  aspect-ratio: 1/1;
  margin-bottom: 13px;
}
@media screen and (max-width: 767px) {
  .items__card-image {
    width: 100%;
  }
}
.items__card-name {
  display: block;
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media screen and (max-width: 1440px) {
  .items__card-name {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .items__card-name {
    font-size: 16px;
  }
}
.items__card-price {
  display: block;
  margin-top: auto;
  font-size: 4.2rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 1440px) {
  .items__card-price {
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 767px) {
  .items__card-price {
    font-size: 28px;
  }
}
.items__card-price span {
  font-size: 2.4rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  margin-left: 3px;
}
@media screen and (max-width: 1440px) {
  .items__card-price span {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 767px) {
  .items__card-price span {
    font-size: 22px;
  }
}

.case-section {
  margin-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .case-section {
    margin-bottom: 40px;
  }
}
.case-section::before {
  width: 86.46%;
}
@media screen and (max-width: 1660px) {
  .case-section::before {
    width: 87.96%;
  }
}
@media screen and (max-width: 1080px) {
  .case-section::before {
    width: 89.96%;
  }
}
@media screen and (max-width: 767px) {
  .case-section::before {
    width: 100%;
  }
}
.case-section__container {
  padding: 80px 16%;
  margin: 0 auto;
  max-width: calc(1200px + 32%);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
@media screen and (max-width: 1200px) {
  .case-section__container {
    max-width: 100%;
    padding-block: 60px;
  }
}
@media screen and (max-width: 767px) {
  .case-section__container {
    padding-inline: 10%;
  }
}
.case-section .top__case-slide {
  height: auto;
}
.case-section .top__case-thumbnail {
  height: 320px;
}
.case-section.blue::before {
  background-color: #f1f7fc;
}
.case-section.blue .top__pickup-arrow {
  background-color: #5e9cd4;
}
.case-section.blue .top__pickup-ctr-num {
  color: #5e9cd4;
}
.case-section.blue .slash {
  background-color: #5e9cd4;
}
.case-section.brown::before {
  background-color: #fff8f1;
}
.case-section.brown .top__pickup-arrow {
  background-color: #8b795e;
}
.case-section.brown .top__pickup-ctr-num {
  color: #8b795e;
}
.case-section.brown .slash {
  background-color: #8b795e;
}

.faq-section {
  background-color: #f8f8f8;
  border-radius: 5px;
  padding-block: 80px;
}
@media screen and (max-width: 767px) {
  .faq-section {
    padding-block: 40px;
  }
}
.faq-section.blue .top__qna-acc-icon {
  background-color: #5e9cd4;
}
.faq-section.blue .top__qna-acc-content {
  background-color: #ecf7ff;
}
.faq-section.blue .top__qna-acc-letter.color-green {
  color: #5e9cd4;
}
.faq-section.brown .top__qna-acc-icon {
  background-color: #8b795e;
}
.faq-section.brown .top__qna-acc-content {
  background-color: #fff8f1;
}
.faq-section.brown .top__qna-acc-letter.color-green {
  color: #8b795e;
}

.full-list {
  padding-block: 80px;
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 1440px) {
  .full-list {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .full-list {
    padding-block: 40px;
    font-size: 15px;
  }
}
.full-list__header {
  display: block;
  padding-block: 37px;
  background-color: #f8f8f8;
  border-radius: 5px;
  margin-bottom: 20px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .full-list__header {
    padding-block: 18.5px;
  }
}
.full-list__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-item-align: center;
  align-self: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .full-list__row {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 20px;
  }
}
.full-list__item {
  -ms-flex-preferred-size: 23.75%;
  flex-basis: 23.75%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
  padding: 12px;
  border-radius: 5px;
  background-color: #f8f8f8;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 767px) {
  .full-list__item {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
  }
}
.full-list__item:hover {
  opacity: 0.7;
}
.full-list__thumbnail {
  width: 76px;
  height: 76px;
  border-radius: 5px;
  overflow: hidden;
}
@media screen and (max-width: 1660px) {
  .full-list__thumbnail {
    width: 68px;
    height: 68px;
  }
}
@media screen and (max-width: 767px) {
  .full-list__thumbnail {
    width: 38px;
    height: 38px;
  }
}
.full-list__name {
  font-size: 1.8rem;
}
@media screen and (max-width: 1660px) {
  .full-list__name {
    font-size: 1.6rem;
  }
}

.reco-section {
  position: relative;
  background-color: #fff8f1;
  padding-block: 155px 80px;
  isolation: isolate;
}
@media screen and (max-width: 767px) {
  .reco-section {
    padding-block: 77.5px 40px;
  }
}
.reco-section::after {
  content: '';
  position: absolute;
  top: -48px;
  right: 0;
  left: 0;
  margin: auto;
  display: block;
  max-width: 1000px;
  width: 52.08%;
  min-width: 711px;
  height: 174px;
  background-image: url('../public/img/rental/trouble-arrow.svg');
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .reco-section::after {
    top: -24px;
    width: 100%;
    min-width: auto;
  }
}
.reco-section__heading {
  font-size: 4.2rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.7738095238em;
  text-align: center;
  color: #8b795e;
}
@media screen and (max-width: 767px) {
  .reco-section__heading {
    font-size: 2.1rem;
  }
}
.reco-section__subheading {
  margin-top: 10px;
  font-size: 3.2rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-align: center;
  color: #404547;
}
@media screen and (max-width: 767px) {
  .reco-section__subheading {
    font-size: 1.6rem;
  }
}
.reco-section__subheading span {
  position: relative;
  font-size: 4.2rem;
}
@media screen and (max-width: 767px) {
  .reco-section__subheading span {
    font-size: 2.1rem;
  }
}
.reco-section__subheading span::before {
  content: '';
  position: absolute;
  inset: auto 0 100% 4px;
  margin: auto;
  display: block;
  width: 15px;
  height: 5px;
  background-image: url('../public/img/rental/number-before.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
@media screen and (max-width: 767px) {
  .reco-section__subheading span::before {
    inset: auto 0 100%;
  }
}
.reco-section__heading-en {
  display: block;
  margin-bottom: 5px;
  font-size: 1.6rem;
  font-weight: 700;
  font-family: 'Roboto', sans-serif;
  line-height: 1em;
}
.reco-section__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2.86%;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 0 12%;
  margin-block: 42px 54px;
  margin-inline: auto;
  max-width: calc(1400px + 24%);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
@media screen and (max-width: 1200px) {
  .reco-section__row {
    max-width: 100%;
    padding-inline: 10%;
  }
}
@media screen and (max-width: 980px) {
  .reco-section__row {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    row-gap: 24px;
  }
}
@media screen and (max-width: 767px) {
  .reco-section__row {
    margin-block: 21px 27px;
  }
}
.reco-section__card {
  width: 22.86%;
}
@media screen and (max-width: 980px) {
  .reco-section__card {
    width: 45%;
  }
}
.reco-section__thumbnail {
  position: relative;
  margin-bottom: 20px;
}
@media screen and (max-width: 980px) {
  .reco-section__thumbnail {
    margin-bottom: 10px;
  }
}
.reco-section__thumbnail::before {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 80px 80px 0 0;
  border-color: #fff8f1 transparent transparent;
}
@media screen and (max-width: 767px) {
  .reco-section__thumbnail::before {
    border-width: 40px 40px 0 0;
  }
}
.reco-section__thumbnail::after {
  content: '0' attr(data-content);
  position: absolute;
  inset: 14px auto auto 0;
  font-size: 2.4rem;
  font-weight: 500;
  font-family: 'Roboto', sans-serif;
  color: #8b855e;
}
@media screen and (max-width: 767px) {
  .reco-section__thumbnail::after {
    inset: 7px auto auto 0;
    font-size: 1.2rem;
  }
}
.reco-section__text {
  font-size: 2.4rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 1.75em;
  color: #404547;
  text-align: center;
}
@media screen and (max-width: 1660px) {
  .reco-section__text {
    font-size: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .reco-section__text {
    font-size: 1.2rem;
  }
}
.reco-section__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5.82%;
  margin-top: 25px;
  border-radius: 10px;
  border: 1px solid #a1927b;
  padding: 48px 5.33%;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 767px) {
  .reco-section__link {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 24px 2.665%;
  }
}
.reco-section__link:hover {
  opacity: 0.7;
}
.reco-section__link:hover .reco-section__link-indicator {
  -webkit-transform: translateX(10px);
  transform: translateX(10px);
}
.reco-section__link-thumbnail {
  width: 39.91%;
  border-radius: 5px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .reco-section__link-thumbnail {
    width: 100%;
    margin-bottom: 16px;
  }
}
.reco-section__content-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.reco-section__link-title {
  margin-bottom: 23px;
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.75em;
  -webkit-font-feature-settings: 'palt';
  font-feature-settings: 'palt';
}
@media screen and (max-width: 1660px) {
  .reco-section__link-title {
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 767px) {
  .reco-section__link-title {
    font-size: 20px;
  }
}
.reco-section__link-text {
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 2em;
  -webkit-font-feature-settings: 'palt';
  font-feature-settings: 'palt';
}
@media screen and (max-width: 767px) {
  .reco-section__link-text {
    font-size: 15px;
  }
}
.reco-section__link-indicator {
  margin-top: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
  font-size: 1.4rem;
  font-weight: 500;
  color: #8b795e;
  letter-spacing: 0.03em;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 767px) {
  .reco-section__link-indicator {
    margin-top: 25px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
.reco-section__link-indicator::after {
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  background-image: url('../public/img/icons/arrow-brown.svg');
  background-repeat: no-repeat;
  background-size: contain;
}

.what {
  padding-block: 89px 0;
}
@media screen and (max-width: 767px) {
  .what {
    padding-block: 44.5px 0;
  }
}
.what__heading {
  text-align: center;
  font-weight: 700;
  color: #8b795e;
  margin-bottom: 49px;
}
@media screen and (max-width: 767px) {
  .what__heading {
    margin-bottom: 24.5px;
  }
}
.what__heading-en {
  display: block;
  font-size: 2.4rem;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 767px) {
  .what__heading-en {
    font-size: 12px;
  }
}
.what__heading-ja {
  font-size: 4.2rem;
}
@media screen and (max-width: 767px) {
  .what__heading-ja {
    font-size: 2.1rem;
  }
}
.what__grid-wrapper {
  position: relative;
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .what__grid-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
}
.what__grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .what__grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
}
.what__grid-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 24px;
  background-color: #fff8f1;
  border-radius: 10px;
  padding: 20px 3.39%;
}
@media screen and (max-width: 767px) {
  .what__grid-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.what__grid-item:nth-of-type(even) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  text-align: end;
}
@media screen and (max-width: 767px) {
  .what__grid-item:nth-of-type(even) {
    text-align: start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.what__grid-item-image {
  border-radius: 5px;
  overflow: hidden;
}
@media screen and (max-width: 1440px) {
  .what__grid-item-image {
    width: 136px;
    height: 136px;
  }
}
.what__grid-item-image img {
  display: block;
}
.what__grid-item-label {
  display: block;
  margin-bottom: 10px;
  font-family: 'Roboto', sans-serif;
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: #8b795e;
}
.what__grid-item-text-content {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.8em;
}
@media screen and (max-width: 1440px) {
  .what__grid-item-text-content {
    font-size: 1.6rem;
  }
}
.what__grid-badge {
  position: absolute;
  inset: 0;
  margin: auto;
  display: grid;
  place-items: center;
  width: 260px;
  height: 260px;
  pointer-events: none;
  border-radius: 50%;
  background-color: #fff;
  -webkit-box-shadow: 0 8px 24px rgba(84, 120, 77, 0.1);
  box-shadow: 0 8px 24px rgba(84, 120, 77, 0.1);
}
@media screen and (max-width: 1440px) {
  .what__grid-badge {
    width: 208px;
    height: 208px;
  }
}
@media screen and (max-width: 980px) {
  .what__grid-badge {
    width: 164px;
    height: 164px;
  }
}
@media screen and (max-width: 767px) {
  .what__grid-badge {
    position: relative;
    margin-bottom: 32px;
  }
}
.what__grid-badge img {
  width: 69.62%;
  margin: auto;
}

.further {
  margin-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .further {
    margin-bottom: 40px;
  }
}
.further__header {
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .further__header {
    margin-bottom: 32px;
  }
}
.further__boxed-text {
  display: block;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin: 0 auto 7px;
  padding: 9px 41.5px;
  background-color: #8b795e;
  border: 1px solid #707070;
  color: #fff;
  text-align: center;
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .further__boxed-text {
    font-size: 1.8rem;
    padding: 9px 21.5px;
  }
}
.further__ja {
  font-size: 4.2rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.7738095238em;
  text-align: center;
  color: #8b795e;
}
@media screen and (max-width: 767px) {
  .further__ja {
    font-size: 21px;
  }
}
.further .top__strength-item-row {
  padding-left: 0;
}
.further .top__strength-ctr {
  background-color: #8b795e;
  color: #fff;
}
.further .top__strength-banner {
  border-radius: 5px;
}
.further .top__strength-banner-link {
  color: #8b795e;
}
.further .top__strength-banner-link::after {
  background-image: url('../public/img/icons/arrow-brown.svg');
}

.case-sub-section {
  padding-block: 80px;
}
.case-sub-section__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5.33%;
}
@media screen and (max-width: 980px) {
  .case-sub-section__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    gap: 20px;
  }
}
.case-sub-section__text {
  width: 58.83%;
  padding-top: 30px;
}
@media screen and (max-width: 980px) {
  .case-sub-section__text {
    width: 100%;
    padding-top: 0;
  }
}
.case-sub-section__title {
  margin-bottom: 26px;
  font-size: 3.2rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 767px) {
  .case-sub-section__title {
    font-size: 2.4rem;
  }
}
.case-sub-section__title span {
  position: relative;
}
.case-sub-section__title span::before {
  content: '';
  position: absolute;
  inset: auto 0 100%;
  margin: auto;
  width: 6px;
  height: 6px;
  background-color: #8b795e;
  border-radius: 50%;
}
@media screen and (max-width: 767px) {
  .case-sub-section__title span::before {
    bottom: 95%;
  }
}
.case-sub-section__sub-title {
  margin-bottom: 23px;
  font-size: 2.4rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 1.75em;
}
@media screen and (max-width: 767px) {
  .case-sub-section__sub-title {
    font-size: 2rem;
  }
}
.case-sub-section__text-content {
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 2em;
}
@media screen and (max-width: 767px) {
  .case-sub-section__text-content {
    font-size: 1.6rem;
  }
}
.case-sub-section__image {
  width: 35.83%;
}
@media screen and (max-width: 980px) {
  .case-sub-section__image {
    width: 100%;
    margin-bottom: 32px;
  }
}
.case-sub-section__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 2.5%;
  margin-top: 65px;
}
@media screen and (max-width: 767px) {
  .case-sub-section__row {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 16px;
  }
}
.case-sub-section__item {
  width: 31.62%;
  border-radius: 10px;
  overflow: hidden;
  background-color: #fff;
  -webkit-box-shadow: 0 8px 24px rgba(84, 120, 77, 0.1);
  box-shadow: 0 8px 24px rgba(84, 120, 77, 0.1);
}
@media screen and (max-width: 767px) {
  .case-sub-section__item {
    width: 100%;
  }
}
.case-sub-section__item--dark .case-sub-section__header {
  background-color: #8b795e;
}
.case-sub-section__item--dark .case-sub-section__header::after {
  border-top-color: #8b795e;
}
.case-sub-section__item--dark .case-sub-section__amount {
  color: #8b795e;
}
.case-sub-section__item--darker .case-sub-section__header {
  background-color: #614e31;
}
.case-sub-section__item--darker .case-sub-section__header::after {
  border-top-color: #614e31;
}
.case-sub-section__item--darker .case-sub-section__amount {
  color: #614e31;
}
.case-sub-section__header {
  position: relative;
  display: block;
  background-color: #b5a182;
  padding-block: 10px 14px;
  color: #fff;
  font-size: 3.2rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-align: center;
}
@media screen and (max-width: 980px) {
  .case-sub-section__header {
    font-size: 2.4rem;
  }
}
.case-sub-section__header::after {
  content: '';
  position: absolute;
  inset: 100% 0 auto;
  margin: auto;
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-top: 12px solid #b5a182;
}
.case-sub-section__card-content {
  padding: 24px 6.58%;
}
.case-sub-section__amount {
  margin-bottom: 19px;
  font-size: 4.2rem;
  font-family: 'Roboto', sans-serif;
  font-weight: 900;
  letter-spacing: 0.03em;
  text-align: center;
  color: #b5a182;
}
@media screen and (max-width: 980px) {
  .case-sub-section__amount {
    font-size: 3rem;
  }
}
.case-sub-section__amount .currency {
  font-size: 3.2rem;
}
@media screen and (max-width: 980px) {
  .case-sub-section__amount .currency {
    font-size: 2.4rem;
  }
}
.case-sub-section__card-character {
  width: 39.39%;
  margin: 0 auto 25px;
}
.case-sub-section__item-text {
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 2em;
}

.overflow {
  overflow: hidden;
}

.pc {
  display: block;
}
@media screen and (max-width: 767px) {
  .pc {
    display: none;
  }
}

.pc-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .pc-flex {
    display: none;
  }
}

.pc-mxw-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 1200px) {
  .pc-mxw-flex {
    display: none;
  }
}

.pc-tab-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 1024px) {
  .pc-tab-flex {
    display: none;
  }
}

.tab {
  display: none;
}
@media screen and (max-width: 1024px) {
  .tab {
    display: block;
  }
}

.tab-flex {
  display: none;
}
@media screen and (max-width: 1024px) {
  .tab-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.mxw-sp-flex {
  display: none;
}
@media screen and (max-width: 1200px) {
  .mxw-sp-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .sp {
    display: block;
  }
}

.sp-flex {
  display: none;
}
@media screen and (max-width: 767px) {
  .sp-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.color-text {
  color: #404547;
}

.color-green {
  color: #007453;
}

.nowrap {
  white-space: nowrap;
}

.bold {
  font-weight: 700;
}

.wp-pagenavi {
  position: relative;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  max-width: 80%;
  margin: 0 auto;
  padding: 0 12%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media screen and (max-width: 1024px) {
  .wp-pagenavi {
    width: 100%;
    max-width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .wp-pagenavi {
    padding: 0 15%;
  }
}
.wp-pagenavi .page,
.wp-pagenavi .current,
.wp-pagenavi .ellipsis {
  position: relative;
  width: 40px;
  height: 40px;
  padding: 10px;
  font-size: 1.8rem;
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .wp-pagenavi .page,
  .wp-pagenavi .current,
  .wp-pagenavi .ellipsis {
    width: 30px;
    height: 30px;
    font-size: 14px;
  }
}
.wp-pagenavi .page::after {
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.wp-pagenavi .page:hover::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 12px;
  height: 3px;
  background-color: #007453;
}
.wp-pagenavi .current {
  position: relative;
  color: #007453;
}
.wp-pagenavi .current::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 12px;
  height: 3px;
  background-color: #007453;
}
.wp-pagenavi .previouspostslink,
.wp-pagenavi .nextpostslink {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  gap: 10px;
  color: #007453;
  font-size: 1.8rem;
  letter-spacing: 0.05em;
  font-weight: 500;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .wp-pagenavi .previouspostslink,
  .wp-pagenavi .nextpostslink {
    gap: 5px;
    font-size: 14px;
  }
}
.wp-pagenavi .previouspostslink::before,
.wp-pagenavi .nextpostslink::before {
  content: '';
  position: relative;
  z-index: -1;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid transparent;
  background-color: #007453;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 767px) {
  .wp-pagenavi .previouspostslink::before,
  .wp-pagenavi .nextpostslink::before {
    width: 20px;
    height: 20px;
  }
}
.wp-pagenavi .previouspostslink::after,
.wp-pagenavi .nextpostslink::after {
  content: '';
  position: absolute;
  width: 15px;
  height: 15px;
  background-color: #fff;
  -webkit-mask: url('../public/img/icons/arrow.svg') no-repeat center/contain;
  mask: url('../public/img/icons/arrow.svg') no-repeat center/contain;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 767px) {
  .wp-pagenavi .previouspostslink::after,
  .wp-pagenavi .nextpostslink::after {
    width: 10px;
    height: 10px;
  }
}
.wp-pagenavi .previouspostslink:hover::before,
.wp-pagenavi .nextpostslink:hover::before {
  background-color: #fff;
  border-color: #007453;
}
.wp-pagenavi .previouspostslink:hover::after,
.wp-pagenavi .nextpostslink:hover::after {
  background-color: #007453;
}
.wp-pagenavi .previouspostslink {
  left: 0;
}
.wp-pagenavi .previouspostslink::after {
  left: 8px;
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
}
@media screen and (max-width: 767px) {
  .wp-pagenavi .previouspostslink::after {
    left: 6px;
  }
}
.wp-pagenavi .nextpostslink {
  right: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.wp-pagenavi .nextpostslink::after {
  right: 8px;
}
@media screen and (max-width: 767px) {
  .wp-pagenavi .nextpostslink::after {
    right: 6px;
  }
}

.wpcf7-form-confirm .contact__item.contact__item--col {
  grid-template-columns: 200px 1fr;
  gap: 55px;
  margin-bottom: 32px !important;
}
@media screen and (max-width: 980px) {
  .wpcf7-form-confirm .contact__item.contact__item--col {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 767px) {
  .wpcf7-form-confirm .contact__item.contact__item--col {
    margin-bottom: 16px !important;
  }
}
.wpcf7-form-confirm .contact__form-input.contact__form-input--date::after {
  display: none;
}
@media screen and (max-width: 980px) {
  .wpcf7-form-confirm .contact__item {
    gap: 25px !important;
  }
}
@media screen and (max-width: 767px) {
  .wpcf7-form-confirm .contact__item {
    gap: 15px !important;
  }
}
.wpcf7-form-confirm .contact__form-input {
  line-height: 2.2222222222em;
}
.wpcf7-form-confirm
  .contact__form-input.contact__form-input--textarea
  .contact__form-textbox-text {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  word-break: break-all;
}
@media screen and (max-width: 767px) {
  .wpcf7-form-confirm
    .contact__form-input.contact__form-input--textarea
    .contact__form-textbox-text {
    font-size: 16px;
  }
}
.wpcf7-form-confirm .contact__btn-group {
  margin-top: 100px !important;
}
@media screen and (max-width: 767px) {
  .wpcf7-form-confirm .contact__btn-group {
    margin-top: 60px !important;
  }
}
.wpcf7-form-confirm .wpcf7-form-control.wpcf7-select option:first-child {
  color: #cfcfcf;
}

.wpcf7-form .wpcf7-not-valid-tip {
  font-size: 12px !important;
}
.wpcf7-form .wpcf7-list-item {
  margin: 0 !important;
}
.wpcf7-form .wpcf7-form-control.wpcf7-select option:first-child {
  color: #cfcfcf;
}
.wpcf7-form .choices[data-type*='select-one']::after {
  width: 20px;
  height: 11.44px;
  background: url('../public/img/contact/caret-down.svg') no-repeat center/100%
    100%;
  border: 0;
  margin-top: 0;
  top: 50%;
  right: 20px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .wpcf7-form .choices[data-type*='select-one']::after {
    width: 15px;
  }
}
.wpcf7-form .choices__inner {
  width: 100%;
  height: 60px;
  border-radius: 5px;
  outline: none;
  padding: 17px 20px;
  border: 1px solid #c5c5c5;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .wpcf7-form .choices__inner {
    height: 50px;
    padding: 12px 15px;
  }
}
.wpcf7-form .choices__list.choices__list--single {
  font-size: 1.8rem;
  line-height: 1.7em;
  font-weight: 500;
  padding: 0;
}
@media screen and (max-width: 767px) {
  .wpcf7-form .choices__list.choices__list--single {
    font-size: 16px;
  }
}
.wpcf7-form .choices__list.choices__list--single .choices__placeholder {
  opacity: 1;
  color: #cfcfcf;
  vertical-align: middle;
}
.wpcf7-form .wpcf7-form-control.wpcf7-radio {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 20px 60px;
}
@media screen and (max-width: 767px) {
  .wpcf7-form .wpcf7-form-control.wpcf7-radio {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px 30px;
  }
}

.datepicker-dropdown {
  width: 200px !important;
  height: 200px !important;
  font-size: 12px;
  border-radius: 5px;
  background: #fff;
  color: #007453;
  border: 1px solid #007453;
  padding: 0 !important;
}

.datepicker .datepicker-header {
  background: #007453;
  color: #fff;
  font-size: 12px;
  padding: 5px;
  border-radius: 5px 5px 0 0;
}

.datepicker .prev-btn,
.datepicker .next-btn {
  font-size: 10px;
  padding: 2px;
}

.datepicker-controls {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 3px;
}
.datepicker-controls .button {
  height: auto;
}

.datepicker-view {
  width: 100%;
}

.datepicker .days-of-week {
  background: #f2f9f6;
  color: #007453;
  font-size: 11px;
}

.datepicker .datepicker-cell {
  width: 24px;
  height: 24px;
  line-height: 24px;
  color: #007453;
  border-radius: 3px;
}

.datepicker .datepicker-cell:hover {
  background: #007453;
  color: #fff;
}

.datepicker .datepicker-cell.selected {
  background: #007453 !important;
  color: #fff !important;
}

.datepicker .datepicker-cell.today {
  border: 1px solid #007453;
}

.datepicker-cell.day.disabled {
  color: #cfcfcf;
}

@-webkit-keyframes scroll-line-grow {
  from {
    height: 0;
  }
  to {
    height: 150px;
  }
}

@keyframes scroll-line-grow {
  from {
    height: 0;
  }
  to {
    height: 150px;
  }
}
@-webkit-keyframes fab-fadein {
  0% {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes fab-fadein {
  0% {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
/*# sourceMappingURL=main.css.map */
