@charset "UTF-8";
/* color
***************************************************************/
/* font
***************************************************************/
/********************************

Page：common.scss

********************************/
html {
  scroll-behavior: smooth;
  scroll-padding: 80px;
}

body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

main {
  position: relative;
}

a {
  text-decoration: none;
}

a:visited {
  text-decoration: none;
}

a:active {
  text-decoration: none;
}

li {
  list-style: none;
}

img {
  max-width: 100%;
  width: 100%;
  vertical-align: bottom;
  -o-object-fit: cover;
     object-fit: cover;
}

.sp-block {
  display: none;
}
@media (width < 576px) {
  .sp-block {
    display: block;
  }
}

.md-block {
  display: none;
}
@media (width < 893px) {
  .md-block {
    display: block;
  }
}

.lg-block {
  display: none;
}
@media (width < 1261px) {
  .lg-block {
    display: block;
  }
}

.sp-none {
  display: block;
}
@media (width < 576px) {
  .sp-none {
    display: none;
  }
}

.md-none {
  display: block;
}
@media (width < 893px) {
  .md-none {
    display: none;
  }
}

.lg-none {
  display: block;
}
@media (width < 1261px) {
  .lg-none {
    display: none;
  }
}

.keep-all {
  word-break: keep-all;
}

.highlight {
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(80%, #FFF367), to(transparent));
  background-image: linear-gradient(transparent 60%, #FFF367 80%, transparent 100%);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

.white-space-nowrap {
  white-space: nowrap;
}

.inner {
  max-width: 68.625rem;
  margin: 0 auto;
}

/*

Common：top-page.scss

***************************************/
.top-lv2-heading-border {
  display: inline-block;
  margin-top: 1.375rem;
  height: 0.75rem;
  background-color: #0E4E16;
}
@media (width < 893px) {
  .top-lv2-heading-border {
    height: 0.3125rem;
    margin-top: 0.75625rem;
  }
}

.top-lv2-heading-span {
  display: block;
  color: #0E4E16;
  font-size: 2.75rem;
  letter-spacing: 0.08em;
  line-height: 1.4545454545;
  margin-top: 1.1875rem;
}
@media (width < 893px) {
  .top-lv2-heading-span {
    font-size: 2rem;
    line-height: 1.4375;
    margin-top: 1.0625rem;
  }
}

.top-lv2-heading-02 {
  color: #0E4E16;
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 2.875rem;
  position: relative;
  text-align: center;
}
@media (width < 893px) {
  .top-lv2-heading-02 {
    font-size: 1.75rem;
    line-height: 1.5;
  }
}
.top-lv2-heading-02::before {
  content: "";
  position: absolute;
  bottom: -1.78125rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 5.75rem;
  height: 2px;
  background-color: #0E4E16;
}
@media (width < 893px) {
  .top-lv2-heading-02::before {
    bottom: -0.90625rem;
  }
}

/*************************************

Page：parts.scss

***************************************/
/*

Parts: arrow

***************************************/
.arrow-wrap {
  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;
  border-radius: 50%;
  border: 1px solid #0E4E16;
  width: 1.8125rem;
  height: 1.8125rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  overflow: hidden;
}

.arrow {
  position: relative;
  display: inline-block;
  width: 1.181875rem;
  height: 2px;
  border-radius: 9999px;
  background-color: #0E4E16;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (width < 893px) {
  .arrow {
    width: 0.8125rem;
  }
}
.arrow::before, .arrow::after {
  content: "";
  position: absolute;
  top: calc(50% - 1px);
  right: 0;
  width: 10px;
  height: 2px;
  border-radius: 9999px;
  background-color: inherit;
  -webkit-transform-origin: calc(100% - 1px) 50%;
  transform-origin: calc(100% - 1px) 50%;
}
@media (width < 893px) {
  .arrow::before, .arrow::after {
    width: 0.5rem;
    -webkit-transform-origin: calc(100% - 0.5px) 50%;
            transform-origin: calc(100% - 0.5px) 50%;
  }
}
.arrow::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.arrow::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.arrow-bottom {
  position: relative;
  display: inline-block;
  width: 2px;
  height: 0.74375rem;
  border-radius: 9999px;
  background-color: #0E4E16;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.arrow-bottom::before, .arrow-bottom::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: calc(50% - 1px);
  width: 2px;
  height: 0.625rem;
  border-radius: 9999px;
  background-color: inherit;
  -webkit-transform-origin: 50% calc(100% - 1px);
          transform-origin: 50% calc(100% - 1px);
}
.arrow-bottom::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.arrow-bottom::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

@-webkit-keyframes moveBottomReturn {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
  25% {
    -webkit-transform: translateY(120%);
            transform: translateY(120%);
    opacity: 0;
  }
  50% {
    -webkit-transform: translateY(-120%);
            transform: translateY(-120%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}

@keyframes moveBottomReturn {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
  25% {
    -webkit-transform: translateY(120%);
            transform: translateY(120%);
    opacity: 0;
  }
  50% {
    -webkit-transform: translateY(-120%);
            transform: translateY(-120%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
@-webkit-keyframes moveRightReturn {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
  25% {
    -webkit-transform: translateX(120%);
            transform: translateX(120%);
    opacity: 0;
  }
  50% {
    -webkit-transform: translateX(-120%);
            transform: translateX(-120%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}
@keyframes moveRightReturn {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
  25% {
    -webkit-transform: translateX(120%);
            transform: translateX(120%);
    opacity: 0;
  }
  50% {
    -webkit-transform: translateX(-120%);
            transform: translateX(-120%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}
/*

Parts: triangle

***************************************/
.triangle {
  display: inline-block;
  width: 0.641875rem;
  height: 1.1375rem;
  background: #0E4E16;
  clip-path: polygon(100% 0, 0 50%, 100% 100%);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

/*

Parts: accent-triangle

***************************************/
.accent-triangle {
  position: absolute;
  right: 0;
  bottom: 0;
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 90px 900px;
  border-color: transparent transparent #3A663D transparent;
}
@media (width < 893px) {
  .accent-triangle {
    border-width: 0 0 17.37vw 100vw;
  }
}

/*

Parts: cut-section

***************************************/
.cut-section {
  --cut-height: 8.59375rem;
}
@media (width < 893px) {
  .cut-section {
    --cut-height: 5.5rem;
  }
}
.cut-section {
  position: relative;
  padding-top: var(--cut-height);
  clip-path: polygon(0 0, 100% var(--cut-height), 100% 100%, 0 100%);
  margin-top: calc(var(--cut-height) * -1);
  z-index: 1;
}

/*

Parts: side-nav

***************************************/
.side-nav {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: #3A663D;
}
.side-nav.color-white {
  color: #fff;
}
.side-nav__scroll, .side-nav__copyright {
  position: fixed;
  z-index: 100;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  font-size: 0.8125rem;
  line-height: 1.4615384615;
  letter-spacing: 0.12em;
  color: inherit;
}
.side-nav__scroll {
  right: 2.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-transform: uppercase;
  bottom: 4.0625rem;
}
@media (width < 893px) {
  .side-nav__scroll {
    right: 0.4375rem;
  }
}
.side-nav__scroll-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.side-nav__scroll-text::after {
  content: "";
  width: 1px;
  height: 72px;
  background-color: currentColor;
  -webkit-animation: scroll-line 1.75s cubic-bezier(0.36, 1, 0.36, 1) infinite;
          animation: scroll-line 1.75s cubic-bezier(0.36, 1, 0.36, 1) infinite;
  -webkit-transform-origin: top;
          transform-origin: top;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.side-nav__scroll-text.is-active {
  display: none;
}
.side-nav__copyright {
  bottom: 4.375rem;
  left: 3.0625rem;
  text-orientation: sideways;
}
@media (width < 893px) {
  .side-nav__copyright {
    left: 0.5rem;
  }
}
.side-nav__copyright.is-active {
  color: #3A663D;
}
@media (width < 893px) {
  .side-nav__copyright.is-active {
    display: none;
  }
}

@-webkit-keyframes scroll-line {
  0% {
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
    -webkit-transform-origin: top;
            transform-origin: top;
  }
  50% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
    -webkit-transform-origin: top;
            transform-origin: top;
  }
  50.1% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
    -webkit-transform-origin: bottom;
            transform-origin: bottom;
  }
  99.9% {
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
    -webkit-transform-origin: bottom;
            transform-origin: bottom;
  }
  100% {
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
    -webkit-transform-origin: top;
            transform-origin: top;
  }
}

@keyframes scroll-line {
  0% {
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
    -webkit-transform-origin: top;
            transform-origin: top;
  }
  50% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
    -webkit-transform-origin: top;
            transform-origin: top;
  }
  50.1% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
    -webkit-transform-origin: bottom;
            transform-origin: bottom;
  }
  99.9% {
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
    -webkit-transform-origin: bottom;
            transform-origin: bottom;
  }
  100% {
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
    -webkit-transform-origin: top;
            transform-origin: top;
  }
}
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 2.0625rem 2.8125rem 2.0625rem 3.6875rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (width < 893px) {
  .header {
    padding: 1.5rem 1.4375rem;
  }
}
.header__logo-link, .header__nav-link, .header__hamburger-btn__line, .header__hamburger-btn__text {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.header__inner {
  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;
}
.header__logo {
  margin-top: -10px;
}
.header__logo-link {
  display: block;
  color: #fff;
  font-size: 2rem;
  line-height: 1.4583333333;
  letter-spacing: 0.01em;
  font-weight: 500;
}
.header__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.header__nav-link {
  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: 0.55rem;
  color: #fff;
  background-color: rgba(255, 255, 255, 0.5);
  border: 1px solid #fff;
  border-radius: 1.375rem;
  width: 12.5rem;
  height: 2.75rem;
  margin-left: 0.75rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  margin-top: -5px;
}
@media (width < 893px) {
  .header__nav-link {
    display: none;
  }
}
.header__nav-link:hover {
  opacity: 0.7;
}
.header__nav-link:first-of-type {
  margin-left: 0;
}
.header__nav-link:nth-of-type(1) {
  gap: 0.3875rem;
}
.header__nav-link:nth-of-type(1) .header__nav-icon {
  display: block;
  margin-top: 3px;
}
.header__nav-link:nth-of-type(2) {
  gap: 0.55rem;
}
.header__nav-tel {
  font-size: 1.25rem;
  letter-spacing: 0.04em;
  line-height: 1.45;
}
.header__nav-contact {
  font-size: 1.125rem;
  letter-spacing: 0.04em;
  line-height: 1.4444444444;
}
.header.is-active {
  background-color: rgba(239, 231, 222, 0.75);
}
.header.is-active .header__logo-link {
  color: #3A663D;
}
.header.is-active .header__nav-link {
  color: #fff;
}
.header.is-active .header__nav-link:nth-of-type(1) {
  background-color: #0E4E16;
  border-color: #0E4E16;
}
.header.is-active .header__nav-link:nth-of-type(2) {
  background-color: #FCC23F;
  border-color: #FCC23F;
}
.header.is-active .hamburger-btn__line,
.header.is-active .hamburger-btn__line::before,
.header.is-active .hamburger-btn__line::after {
  background-color: #0E4E16;
}
.header.is-active .hamburger-btn__text {
  color: #0E4E16;
}

/*

hamburger-btn

***************************************/
.hamburger-btn {
  display: block;
  position: relative;
  margin-left: 1.90625rem;
  width: 2.058125rem;
  height: 3.28125rem;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
  margin-top: 5px;
}

.hamburger-btn__line {
  display: block;
  background-color: #fff;
  position: absolute;
  top: 0.625rem;
  left: 0;
  -webkit-transition: inherit;
  transition: inherit;
  width: 100%;
  height: 2px;
}
.hamburger-btn__line::before {
  content: "";
  display: block;
  background-color: inherit;
  position: absolute;
  top: -0.8125rem;
  width: inherit;
  height: inherit;
  -webkit-transition: inherit;
  transition: inherit;
}
.hamburger-btn__line::after {
  content: "";
  display: block;
  background-color: inherit;
  position: absolute;
  top: 0.8125rem;
  width: inherit;
  height: inherit;
  -webkit-transition: inherit;
  transition: inherit;
}

.hamburger-btn__text {
  color: #fff;
  font-size: 0.875rem;
  line-height: 1.4285714286;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.hamburger-btn__text.is-active {
  color: #0E4E16;
}

.header__logo-link.is-active {
  color: #0E4E16;
}

.header__nav-link.is-active {
  display: none;
}

/*

hamburger-btn [aria-expanded="true"]

********************************/
.hamburger-btn[aria-expanded=true] {
  margin-top: 6.5px;
  margin-right: 6.5px;
}
.hamburger-btn[aria-expanded=true] .hamburger-btn__line {
  background-color: transparent;
  width: 2.125rem;
}
.hamburger-btn[aria-expanded=true] .hamburger-btn__line::before {
  top: 0;
  right: 0;
  -webkit-transform: rotate(-48deg);
          transform: rotate(-48deg);
  background-color: #0E4E16;
}
.hamburger-btn[aria-expanded=true] .hamburger-btn__line::after {
  top: 0;
  right: 0;
  -webkit-transform: rotate(48deg);
          transform: rotate(48deg);
  background-color: #0E4E16;
}

/*

Section：global-menu

***************************************/
.body.is-drawerActive {
  overflow: hidden;
}
.body.is-drawerActive .global-menu {
  visibility: visible;
  opacity: 1;
}
.body.is-drawerActive .global-menu__nav-item {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.global-menu {
  display: block;
  background-color: #EEE7DE;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99;
  overflow-y: auto;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  padding: 7.25rem 0 6.79375rem;
}
@media (width < 576px) {
  .global-menu {
    padding-bottom: 1.28125rem;
  }
}

.global-menu__inner {
  max-width: 67.846%;
  margin: 0 auto;
}

.global-menu__col2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 4.5rem;
  margin: 5.75rem auto 0;
}
@media (width < 893px) {
  .global-menu__col2 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 3.1875rem;
  }
}
@media (width < 576px) {
  .global-menu__col2 {
    margin-top: 1.125rem;
  }
}

.global-menu__nav {
  margin-top: 4px;
  width: 12.875rem;
}
@media (width < 893px) {
  .global-menu__nav {
    width: 100%;
  }
}

.global-menu__nav-item {
  font-size: 1.375rem;
  letter-spacing: 0.04em;
  line-height: 1.4545454545;
  margin-top: 2.875rem;
  text-align: center;
}
@media (width < 576px) {
  .global-menu__nav-item {
    font-size: 1.5rem;
    line-height: 1.25;
    margin-top: 2.5625rem;
  }
}
.global-menu__nav-item:first-of-type {
  margin-top: 0;
}
.global-menu__nav-item:nth-of-type(4) {
  margin-left: 1.375rem;
}

.global-menu__nav-link {
  color: #0E4E16;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.global-menu__nav-link:hover {
  opacity: 0.7;
}

.global-menu__logo-link {
  display: block;
  max-width: 9.828125rem;
  height: auto;
  margin: 0 auto;
}
@media (width < 893px) {
  .global-menu__logo-link {
    margin-top: 4.875rem;
  }
}
@media (width < 576px) {
  .global-menu__logo-link {
    max-width: 7.7725rem;
  }
}
.global-menu__logo-link img {
  aspect-ratio: 157.25/146.47;
}
@media (width < 576px) {
  .global-menu__logo-link img {
    aspect-ratio: 124.36/115.83;
  }
}

.global-menu__logo-svg {
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}

.global-menu__info-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (width < 893px) {
  .global-menu__info-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}

.global-menu__info-text {
  font-size: 0.875rem;
  letter-spacing: 0.08em;
  line-height: 1.7142857143;
  color: #0E4E16;
  text-align: center;
  margin-top: 1rem;
}
@media (width < 576px) {
  .global-menu__info-text {
    margin-top: 0;
  }
}
.global-menu__info-text a {
  color: #0E4E16;
  text-decoration: none;
}

.global-menu__info-tel-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.3875rem;
  margin-top: 0.5rem;
  margin-left: -0.3125rem;
}
@media (width < 576px) {
  .global-menu__info-tel-wrap {
    margin-left: 0;
  }
}

.global-menu__info-tel-icon {
  width: 0.61125rem;
  height: 0.8748125rem;
}
@media (width < 576px) {
  .global-menu__info-tel-icon {
    width: 0.7525rem;
    height: 1.076875rem;
  }
}

.global-menu__info-tel-text {
  color: #0E4E16;
  font-size: 1.625rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.4230769231;
}
@media (width < 576px) {
  .global-menu__info-tel-text {
    font-size: 1.9375rem;
    line-height: 1.4516129032;
  }
}
.global-menu__info-tel-text a {
  color: #0E4E16;
  text-decoration: none;
}

.global-menu__contact-link {
  border-radius: 1.6875rem;
  border: 1px solid #FCC23F;
  background-color: #FCC23F;
  margin-top: 1rem;
  margin-left: 0.3125rem;
  width: 12.5rem;
  height: 3.3125rem;
}
@media (width < 893px) {
  .global-menu__contact-link {
    display: none;
  }
}
.global-menu__contact-link:first-of-type {
  margin-left: auto;
}
.global-menu__contact-link--md {
  display: none;
}
@media (width < 893px) {
  .global-menu__contact-link--md {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0.1875rem auto 0;
  }
}

.global-menu__copyright {
  display: none;
}
@media (width < 893px) {
  .global-menu__copyright {
    display: block;
    font-size: 0.875rem;
    letter-spacing: 0.06em;
    line-height: 1.4285714286;
    text-align: center;
    margin-top: 1.375rem;
    color: #0E4E16;
  }
}

.global-menu__nav-list-sub-wrapper {
  margin-top: 0.625rem;
}

.global-menu__nav-list-sub {
  margin-top: 0.9375rem;
}

.global-menu__nav-list-sub-item {
  font-size: 1.125rem;
  letter-spacing: 0.04em;
  line-height: 1.4230769231;
  margin-top: 0.625rem;
  margin-left: 1.6rem;
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s ease;
}
.global-menu__nav-list-sub-item:first-of-type {
  margin-top: 0;
}

.global-menu__nav-list-sub-link {
  display: block;
  color: #0E4E16;
  padding-left: 1.5125rem;
  position: relative;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.global-menu__nav-list-sub-link:hover {
  opacity: 0.7;
}
.global-menu__nav-list-sub-link::before {
  content: "";
  display: block;
  background-color: #0E4E16;
  width: 1.1375rem;
  height: 1px;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.header__nav-menu-child {
  position: absolute;
  top: 80%;
  left: 0;
  padding: 1.25rem 1.875rem;
  z-index: 11;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  background-color: rgba(255, 255, 255, 0.75);
  border-radius: 0.625rem;
  -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  cursor: default;
  min-width: 15.625rem;
}

.header__item:hover .header__nav-menu-child {
  opacity: 1;
  visibility: visible;
}

.header__child-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.625rem 1.25rem;
}

.header__child-link {
  padding-left: 1rem;
  position: relative;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.header__child-link:hover {
  opacity: 0.7;
}
.header__child-link::before {
  content: "";
  display: block;
  background-color: #60CCA8;
  width: 10px;
  height: 1px;
  position: absolute;
  top: 50%;
}

/*************************************

Page：footer.scss

***************************************/
.footer {
  background-color: #FDFAF6;
}

.footer__inner {
  padding: 6.375rem 0 5.85rem;
}
@media (width < 893px) {
  .footer__inner {
    padding: 4.5625rem 0 3.28125rem;
    max-width: 85.2417302799%;
    margin: 0 auto;
  }
}

.footer__lv2-heading {
  line-height: 1.46875;
}
@media (width < 893px) {
  .footer__lv2-heading {
    font-size: 1.25rem;
    line-height: 1.6;
  }
}
@media (width < 893px) {
  .footer__lv2-heading::before {
    bottom: -1.96875rem;
  }
}

.footer__text {
  font-size: 1.125rem;
  letter-spacing: 0.01em;
  line-height: 2;
  margin-top: 5rem;
  text-align: center;
}
@media (width < 893px) {
  .footer__text {
    margin-top: 4.25rem;
    text-align: left;
  }
}

.footer__cta-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1.76cqi;
  max-width: 54.125rem;
  margin: 3.125rem auto 8.63125rem;
}
@media (width < 893px) {
  .footer__cta-list {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 3.125rem auto 3.25625rem;
  }
}

.footer__cta-item {
  max-width: 26.3125rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (width < 893px) {
  .footer__cta-item {
    max-width: 100%;
  }
}

.footer__cta-link {
  display: block;
  color: #fff;
  text-align: center;
  height: 100%;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.footer__cta-link:hover {
  opacity: 0.7;
}
.footer__cta-link--tel {
  background-color: #3A663D;
  border: 1px solid #3A663D;
  padding: 1.375rem 2.35625rem 1.375rem;
}
@media (width < 893px) {
  .footer__cta-link--tel {
    opacity: 1;
    cursor: default;
    pointer-events: none;
    padding: 1.375rem 0.5rem 1.375rem;
  }
}
.footer__cta-link--contact {
  display: grid;
  grid-template-columns: 1fr auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #FCC23F;
  border: 1px solid #FCC23F;
  padding: 1.625rem 2.35625rem 1.25rem;
}

.footer__cta-main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.19375rem;
}

.footer__cta-number {
  font-size: 1.625rem;
  letter-spacing: 0.08em;
  line-height: 1.4230769231;
}

.footer__cta-info {
  font-size: 0.8125rem;
  letter-spacing: 0.08em;
  line-height: 1.4615384615;
}

.footer__cta-text {
  font-size: 1.375rem;
  letter-spacing: 0.08em;
  line-height: 1.4545454545;
}

.footer__cta-text-sub {
  display: block;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.4615384615;
  margin-top: 3px;
  text-transform: uppercase;
}

.footer__cta-arrow {
  background-color: #fff;
  margin-top: -5px;
  width: 0;
}

.footer__logo-link {
  display: block;
}

.footer__logo-svg {
  display: block;
  margin: 0 auto;
}
.footer__logo-svg:nth-of-type(1) {
  -webkit-transform: translateX(9px);
          transform: translateX(9px);
  width: 6.0631875rem;
  height: auto;
}
@media (width < 893px) {
  .footer__logo-svg:nth-of-type(1) {
    width: 5.58375rem;
  }
}
.footer__logo-svg:nth-of-type(2) {
  margin-top: 0.6875rem;
  width: 10.4236875rem;
  height: auto;
}
@media (width < 893px) {
  .footer__logo-svg:nth-of-type(2) {
    width: 9.6rem;
  }
}
.footer__logo-svg:nth-of-type(3) {
  margin-top: 0.63125rem;
  width: 7.98rem;
  height: auto;
}
@media (width < 893px) {
  .footer__logo-svg:nth-of-type(3) {
    width: 7.349375rem;
  }
}
.footer__logo-svg:nth-of-type(4) {
  margin-top: 0.40625rem;
  width: 4.9095rem;
  height: auto;
}
@media (width < 893px) {
  .footer__logo-svg:nth-of-type(4) {
    width: 4.52125rem;
  }
}

@media (width < 893px) {
  .footer__nav {
    display: none;
  }
}

.footer__nav-list {
  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;
  margin-top: 2.1875rem;
}

.footer__nav-item {
  border-right: 1px solid #3A663D;
}
.footer__nav-item:first-of-type {
  border-left: 1px solid #3A663D;
}

.footer__nav-link {
  display: block;
  color: #3A663D;
  font-size: 1rem;
  letter-spacing: 0.08em;
  line-height: 1.5;
  padding: 0 1.1875rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.footer__nav-link:hover {
  opacity: 0.7;
}

.footer__company {
  color: #3A663D;
  font-size: 1.625rem;
  letter-spacing: 0.08em;
  line-height: 1.4230769231;
  margin-top: 1.8125rem;
  text-align: center;
}
@media (width < 893px) {
  .footer__company {
    margin-top: 2.64375rem;
    margin-left: -12px;
  }
}

.footer__info {
  color: #3A663D;
  font-size: 0.875rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  line-height: 1.4285714286;
  margin-top: 0.6875rem;
  text-align: center;
}
@media (width < 893px) {
  .footer__info {
    margin-top: 1.25rem;
    margin-left: -12px;
    line-height: 1.8571428571;
  }
}
.footer__info a {
  text-decoration: none;
}

/*************************************

Layout: layout.scss

***************************************/
/*

Layout: l-header

***************************************/
.l-header {
  padding-top: 1.75rem;
}
.l-header .header__nav-link {
  border-radius: 1.6875rem;
  height: 3.3125rem;
}

/*

Layout: l-mv

***************************************/
.l-mv {
  background-color: #EFE7DE;
  padding-top: 7.5rem;
}
@media (width < 1261px) {
  .l-mv {
    padding-top: 7.5rem;
  }
}
@media (width < 893px) {
  .l-mv {
    padding-top: 6.59375rem;
  }
}

/*

Layout: l-lv1-heading

***************************************/
.l-lv1-heading {
  color: #0E4E16;
  font-size: 2.5rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.45;
  position: relative;
  text-align: center;
  z-index: 1;
}
@media (width < 893px) {
  .l-lv1-heading {
    font-size: 2.375rem;
    line-height: 1.4473684211;
  }
}
.l-lv1-heading::before {
  content: "";
  position: absolute;
  bottom: -5rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 2px;
  height: 2.875rem;
  background-color: #0E4E16;
}
@media (width < 893px) {
  .l-lv1-heading::before {
    bottom: -5.75rem;
  }
}
.l-lv1-heading__svg {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: -1;
}
@media (width < 893px) {
  .l-lv1-heading__svg {
    top: 5%;
  }
}

/*************************************

Page：top-page.scss

***************************************/
/*

top-mv

***************************************/
.top-mv {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100vh;
  overflow: hidden;
  clip-path: inset(0);
  -webkit-clip-path: inset(0);
}

.top-mv__inner {
  height: 100vh;
  position: relative;
}

.top-mv__parallax-img {
  height: 100vh;
  width: 100%;
  position: relative;
  overflow: hidden;
}
.top-mv__parallax-img::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: url("../img/layout/top-page/mv.webp") center/cover no-repeat;
  z-index: -1;
  will-change: transform;
}
@media (width < 576px) {
  .top-mv__parallax-img::before {
    background-size: cover;
    background-position: center;
  }
}

.top-mv__parallax-content {
  position: absolute;
  top: 0;
  left: 0;
  color: #FFF;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.2)), color-stop(25%, rgba(0, 0, 0, 0.2)), to(rgba(0, 0, 0, 0.75)));
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 25%, rgba(0, 0, 0, 0.75) 100%);
  font-size: 5rem;
  padding: 0 9.7364568082%;
  width: 100%;
}
@media (width < 893px) {
  .top-mv__parallax-content {
    padding: 0 12.4681933842%;
  }
}

.top-mv__lv2-heading {
  padding: 17.625rem 0;
}
@media (width < 893px) {
  .top-mv__lv2-heading {
    padding: 21.3125rem 0 12.85625rem;
  }
}

.top-mv__lv2-heading-svg {
  display: block;
  margin: 0 auto;
}
.top-mv__lv2-heading-svg--icon {
  width: 7.945rem;
  -webkit-transform: translateX(13px);
          transform: translateX(13px);
}
@media (width < 893px) {
  .top-mv__lv2-heading-svg--icon {
    width: 6.64625rem;
    -webkit-transform: translateX(9.5px);
            transform: translateX(9.5px);
  }
}
.top-mv__lv2-heading-svg--keyness {
  margin-top: 0.75625rem;
  width: 13.6589375rem;
}
@media (width < 893px) {
  .top-mv__lv2-heading-svg--keyness {
    margin-top: 0.63125rem;
    width: 11.42625rem;
  }
}
.top-mv__lv2-heading-svg--demolition {
  margin-top: 0.88125rem;
  width: 10.45675rem;
}
@media (width < 893px) {
  .top-mv__lv2-heading-svg--demolition {
    margin-top: 0.7375rem;
    width: 8.7475rem;
  }
}
.top-mv__lv2-heading-svg--reform {
  margin-top: 0.49375rem;
  width: 6.4333125rem;
}
@media (width < 893px) {
  .top-mv__lv2-heading-svg--reform {
    margin-top: 0.4125rem;
    width: 5.381875rem;
  }
}

.top-mv__lv3-heading {
  padding-top: 35.29375rem;
}
@media (width < 893px) {
  .top-mv__lv3-heading {
    padding-top: 20.16875rem;
  }
}

.top-mv__lv3-heading-svg {
  display: block;
  margin-top: 2.94375rem;
}
@media (width < 893px) {
  .top-mv__lv3-heading-svg {
    margin-top: 1.49375rem;
  }
}
.top-mv__lv3-heading-svg:first-of-type {
  margin-top: 0;
}
.top-mv__lv3-heading-svg--end {
  width: 31.6034375rem;
}
@media (width < 893px) {
  .top-mv__lv3-heading-svg--end {
    width: 16.035rem;
  }
}
.top-mv__lv3-heading-svg--beginning {
  width: 35.906875rem;
}
@media (width < 893px) {
  .top-mv__lv3-heading-svg--beginning {
    width: 18.21875rem;
  }
}

.top-mv__text {
  padding-bottom: 16.79375rem;
  margin-top: 5.06875rem;
}
@media (width < 893px) {
  .top-mv__text {
    padding-bottom: 24.2625rem;
    margin-top: 2.575rem;
  }
}

.top-mv__text-svg {
  display: block;
}
.top-mv__text-svg--demolition {
  width: 22.0481875rem;
}
@media (width < 893px) {
  .top-mv__text-svg--demolition {
    width: 14.558125rem;
  }
}
.top-mv__text-svg--sincerity {
  margin-top: 2.21875rem;
  width: 16.163rem;
}
@media (width < 893px) {
  .top-mv__text-svg--sincerity {
    margin-top: 1.46875rem;
    width: 10.6725rem;
  }
}
.top-mv__text-svg--construction {
  margin-top: 2.25rem;
  width: 11.7205625rem;
}
@media (width < 893px) {
  .top-mv__text-svg--construction {
    margin-top: 1.4875rem;
    width: 7.73875rem;
  }
}
.top-mv__text-svg--trust {
  margin-top: 2.34375rem;
  width: 11.995625rem;
}
@media (width < 893px) {
  .top-mv__text-svg--trust {
    margin-top: 1.54375rem;
    width: 7.920625rem;
  }
}

.top-mv__lv3-heading-svg path {
  opacity: 0;
  -webkit-transition: all 0.75s ease-out;
  transition: all 0.75s ease-out;
}
.top-mv__lv3-heading-svg.is-active path {
  opacity: 1;
}

.top-mv__lv3-heading-svg.is-active path:nth-child(1) {
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
}

.top-mv__lv3-heading-svg.is-active path:nth-child(2) {
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}

.top-mv__lv3-heading-svg.is-active path:nth-child(3) {
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}

.top-mv__lv3-heading-svg.is-active path:nth-child(4) {
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}

.top-mv__lv3-heading-svg.is-active path:nth-child(5) {
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}

.top-mv__lv3-heading-svg.is-active path:nth-child(6) {
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}

.top-mv__lv3-heading-svg.is-active path:nth-child(7) {
  -webkit-transition-delay: 0.7s;
          transition-delay: 0.7s;
}

.top-mv__lv3-heading-svg.is-active path:nth-child(8) {
  -webkit-transition-delay: 0.8s;
          transition-delay: 0.8s;
}

.top-mv__lv3-heading-svg.is-active path:nth-child(9) {
  -webkit-transition-delay: 0.9s;
          transition-delay: 0.9s;
}

.top-mv__lv3-heading-svg.is-active path:nth-child(10) {
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
}

.top-mv__lv3-heading-svg.is-active path:nth-child(11) {
  -webkit-transition-delay: 1.1s;
          transition-delay: 1.1s;
}

.top-mv__lv3-heading-svg.is-active path:nth-child(12) {
  -webkit-transition-delay: 1.2s;
          transition-delay: 1.2s;
}

.top-mv__lv3-heading-svg.is-active path:nth-child(13) {
  -webkit-transition-delay: 1.3s;
          transition-delay: 1.3s;
}

.top-mv__lv3-heading-svg.is-active path:nth-child(14) {
  -webkit-transition-delay: 1.4s;
          transition-delay: 1.4s;
}

.top-mv__lv3-heading-svg.is-active path:nth-child(15) {
  -webkit-transition-delay: 1.5s;
          transition-delay: 1.5s;
}

.top-mv__lv3-heading-svg.is-active path:nth-child(16) {
  -webkit-transition-delay: 1.6s;
          transition-delay: 1.6s;
}

.top-mv__lv3-heading-svg.is-active path:nth-child(17) {
  -webkit-transition-delay: 1.7s;
          transition-delay: 1.7s;
}

.top-mv__lv3-heading-svg.is-active path:nth-child(18) {
  -webkit-transition-delay: 1.8s;
          transition-delay: 1.8s;
}

.top-mv__lv3-heading-svg.is-active path:nth-child(19) {
  -webkit-transition-delay: 1.9s;
          transition-delay: 1.9s;
}

.top-mv__lv3-heading-svg.is-active path:nth-child(20) {
  -webkit-transition-delay: 2s;
          transition-delay: 2s;
}

.js-fade-up {
  opacity: 0;
  -webkit-transition: all 1.2s ease-out;
  transition: all 1.2s ease-out;
  will-change: opacity;
}
.js-fade-up.is-active {
  opacity: 1;
}

/*

top-company

***************************************/
:root {
  --gap: 5.5cqi;
}
@media (width < 893px) {
  :root {
    --gap: 2.0625rem;
  }
}

.top-company {
  position: relative;
  z-index: 1;
  background-color: #E7DFD0;
  overflow: hidden;
}
.top-company::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/layout/top-page/company-bg.webp");
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  opacity: 0.3;
  z-index: -1;
}

.top-company__inner {
  padding-bottom: 18.8125rem;
}
@media (width < 893px) {
  .top-company__inner {
    padding-bottom: 9.625rem;
    max-width: 84.7328244275%;
    margin: 0 auto;
  }
}

.top-company__media {
  display: grid;
  grid-template-columns: 4.25fr 4.91fr;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: var(--gap);
  padding-top: 12.6875rem;
  max-width: 61.9375rem;
  margin: 0 auto;
}
@media (width < 1261px) {
  .top-company__media {
    max-width: 90%;
  }
}
@media (width < 893px) {
  .top-company__media {
    grid-template-columns: 1fr;
    padding-top: 4rem;
    max-width: 34.375rem;
  }
}

.top-company__img-wrap {
  max-width: 26.5625rem;
}
@media (width < 893px) {
  .top-company__img-wrap {
    max-width: none;
  }
}

.top-company__img {
  aspect-ratio: 425/338;
  border-radius: 0.375rem;
}

.top-company__text-wrap {
  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: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.top-company__text {
  color: #000;
  font-size: 1.125rem;
  letter-spacing: 0.01em;
  line-height: 2.4444444444;
  margin-top: -10px;
}
@media (width < 893px) {
  .top-company__text {
    line-height: 2;
    margin-top: 0;
  }
}

.top-company__link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.75rem;
  margin-top: auto;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (width < 1261px) {
  .top-company__link {
    margin-top: 1.875rem;
    margin-left: auto;
  }
}
@media (width < 893px) {
  .top-company__link {
    margin: 2.8125rem 0 0 auto;
    gap: 0.625rem;
  }
}
@media (hover: hover) {
  .top-company__link:hover {
    opacity: 0.7;
  }
  .top-company__link:hover .top-company__link-arrow {
    -webkit-transform: translateX(8px);
            transform: translateX(8px);
  }
}

.top-company__link-text {
  color: #0E4E16;
  font-size: 1.25rem;
  letter-spacing: 0.08em;
  line-height: 1.45;
}

.top-company__link-arrow {
  background: #3A663D;
}
@media (width < 893px) {
  .top-company__link-arrow {
    width: 1.3025rem;
  }
}
@media (width < 893px) {
  .top-company__link-arrow::before, .top-company__link-arrow::after {
    width: 0.75rem;
  }
}

/*

Section：top-business

***************************************/
.top-business {
  background-color: #EEE7DE;
  padding-bottom: 16.25rem;
}
@media (width < 893px) {
  .top-business {
    padding-bottom: 9.75rem;
  }
}

.top-business__lv2-heading {
  padding-top: 4.3rem;
  padding-left: 8.375rem;
}
@media (width < 893px) {
  .top-business__lv2-heading {
    padding-top: 3.2625rem;
    padding-left: 8.5750636132%;
  }
}

.top-business__lv2-heading-svg {
  width: 44.755875rem;
}
@media (width < 893px) {
  .top-business__lv2-heading-svg {
    display: block;
    margin-left: -3px;
    width: 15.619375rem;
  }
}

.top-business__lv2-heading-border {
  width: 45.25rem;
}
@media (width < 893px) {
  .top-business__lv2-heading-border {
    display: block;
    width: 15.8125rem;
  }
}

:root {
  --top-business-gap: 5.2342cqi;
}
@media (width < 893px) {
  :root {
    --top-business-gap: 2.5rem;
  }
}

.top-business__media {
  display: grid;
  grid-template-columns: 7.38fr 5.56fr;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: var(--top-business-gap);
  margin-top: 5.4375rem;
}
@media (width < 893px) {
  .top-business__media {
    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;
    max-width: 85.2417302799%;
    margin: 3.6875rem auto 0;
  }
}
.top-business__media:first-of-type {
  margin-top: 7.5rem;
}
@media (width < 893px) {
  .top-business__media:first-of-type {
    margin-top: 3.375rem;
  }
}

.top-business__text-wrap {
  padding-top: 3.96875rem;
  padding-left: 9.75cqi;
  border-top: 1px solid #3A663D;
  position: relative;
}
@media (width < 893px) {
  .top-business__text-wrap {
    border-top: none;
    padding-top: 0;
    padding-left: 0;
  }
}
.top-business__text-wrap::before {
  content: "";
  position: absolute;
  top: -3px;
  left: 10cqi;
  width: 2.875rem;
  height: 3px;
  background-color: #3A663D;
}
@media (width < 893px) {
  .top-business__text-wrap::before {
    display: none;
  }
}

.top-business__lv3-heading {
  color: #0E4E16;
  font-size: 1.875rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.4666666667;
  position: relative;
}
@media (width < 893px) {
  .top-business__lv3-heading {
    display: inline-block;
    background-color: #EEE7DE;
  }
}
@media (width < 893px) {
  .top-business__lv3-heading::before {
    content: "";
    background-color: #869B89;
    position: absolute;
    bottom: 6px;
    left: 0;
    width: 92.5vw;
    height: 1px;
    z-index: -1;
  }
}

.top-business__text {
  font-size: 1rem;
  letter-spacing: 0.01em;
  line-height: 1.875;
  margin-top: 1.5625rem;
}
@media (width < 893px) {
  .top-business__text {
    margin-top: 1.5625rem;
  }
}

.top-business__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  margin-top: 0.75rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.top-business__btn:hover {
  opacity: 0.7;
}
.top-business__btn:hover .top-business__arrow {
  -webkit-animation: moveRightReturn 0.6s ease-in-out forwards;
          animation: moveRightReturn 0.6s ease-in-out forwards;
}
.top-business__btn:first-of-type {
  margin-top: 1.5625rem;
}
@media (width < 893px) {
  .top-business__btn:first-of-type {
    margin-top: 1.5625rem;
  }
}

.top-business__arrow-wrap {
  width: 2.75rem;
  height: 2.75rem;
}

.top-business__arrow {
  width: 1.2925rem;
}
.top-business__arrow::before, .top-business__arrow::after {
  content: "";
  width: 0.625rem;
}

.top-business__btn-text {
  color: #0E4E16;
  font-size: 1.375rem;
  letter-spacing: 0.08em;
  line-height: 1.4545454545;
}

.top-business__img {
  aspect-ratio: 556/380;
}
@media (width < 893px) {
  .top-business__img {
    aspect-ratio: 333/208;
  }
}

.top-business__reason {
  background-color: #fff;
  padding: 2.3125rem 0 2.8125rem;
  max-width: 68.75rem;
  margin: 8.125rem auto 0;
}
@media (width < 1261px) {
  .top-business__reason {
    max-width: 95%;
  }
}
@media (width < 893px) {
  .top-business__reason {
    padding: 2.3125rem 0 2.0625rem;
    max-width: 85.2417302799%;
    margin-top: 3.75rem;
  }
}

.top-business__reason-heading {
  color: #0E4E16;
  font-size: 1.875rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.4666666667;
  border-top: 1px solid #0E4E16;
  border-bottom: 1px solid #0E4E16;
  padding: 0.84375rem 0;
  max-width: 94.6314%;
  margin: 0 auto;
  text-align: center;
}
@media (width < 893px) {
  .top-business__reason-heading {
    font-size: 1.375rem;
    line-height: 1.6818181818;
    max-width: 82.975975976%;
  }
}
@media (width < 576px) {
  .top-business__reason-heading {
    padding: 1.0625rem 0 0.78125rem;
  }
}

.top-business__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.7cqi;
  margin-top: 2.28125rem;
  max-width: 94.6314%;
  margin: 2.28125rem auto 0;
}
@media (width < 893px) {
  .top-business__list {
    grid-template-columns: 1fr;
    gap: 1.625rem;
    margin-top: 2.40625rem;
    max-width: 82.975975976%;
  }
}

.top-business__item-heading {
  color: #fff;
  background-color: #3A663D;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.4583333333;
  padding: 0.59375rem 0;
  text-align: center;
}
@media (width < 1261px) {
  .top-business__item-heading {
    font-size: 1.25rem;
    line-height: 1.45;
    padding: 0.8125rem 0 0.6875rem;
  }
}

.top-business__item-text {
  font-size: 1.125rem;
  letter-spacing: 0.01em;
  line-height: 1.8888888889;
  margin-top: 1.375rem;
}
@media (width < 893px) {
  .top-business__item-text {
    margin-top: 1.3125rem;
  }
}

/*

Section：top-works

***************************************/
.top-works {
  background-color: #E7DFD0;
}

.top-works__inner {
  padding-bottom: 7.375rem;
}
@media (width < 1261px) {
  .top-works__inner {
    max-width: 90%;
    margin: 0 auto;
  }
}
@media (width < 893px) {
  .top-works__inner {
    padding-bottom: 3.4375rem;
    max-width: 85.2417302799%;
    margin: 0 auto;
  }
}

.top-works__lv2-heading {
  padding-top: 4.3rem;
}
@media (width < 893px) {
  .top-works__lv2-heading {
    padding-top: 3.2625rem;
  }
}

.top-works__lv2-heading-svg {
  margin-left: -8.5px;
  width: 35.145375rem;
}
@media (width < 893px) {
  .top-works__lv2-heading-svg {
    display: block;
    margin-left: 0;
    width: 12.265625rem;
  }
}

.top-works__lv2-heading-border {
  margin-top: 1.5rem;
  width: 34.75rem;
}
@media (width < 893px) {
  .top-works__lv2-heading-border {
    display: block;
    margin-top: 0.8125rem;
    margin-left: 3.5px;
    width: 12.6875rem;
  }
}

.top-works__lv2-heading-span {
  margin-top: 0.9375rem;
}
@media (width < 893px) {
  .top-works__lv2-heading-span {
    margin-top: 1rem;
  }
}

:root {
  --card-width: calc(536rem / 16);
}

.top-works__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 2cqi;
  margin: 4.6875rem auto 0;
}
@media (width < 893px) {
  .top-works__list {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-top: 2.25rem;
  }
}

.top-works__item {
  background: #F7F2EA;
  max-width: var(--card-width);
}
@media (width < 893px) {
  .top-works__item {
    margin: 0 auto;
  }
}

.top-works__link {
  display: block;
  padding: 2.5rem 2.125rem 2.625rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (width < 893px) {
  .top-works__link {
    padding: 2.4375rem 1.6875rem 1.6875rem 1.375rem;
  }
}

.top-works__img-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.2cqi;
}
@media (width < 893px) {
  .top-works__img-container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-top: 2.3125rem;
  }
}

.top-works__img-label {
  display: block;
  color: #0E4E16;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.45;
  text-align: center;
}

.top-works__img-wrap {
  margin-top: 0.875rem;
}

.top-works__img {
  aspect-ratio: 218/145;
}
@media (width < 893px) {
  .top-works__img {
    aspect-ratio: 284/188;
  }
}

.top-works__item-text {
  color: #0E4E16;
  font-size: 1.125rem;
  line-height: 1.6666666667;
  margin-top: 1.625rem;
  text-align: center;
}
@media (width < 893px) {
  .top-works__item-text {
    margin-top: 0;
  }
}

.top-works__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.875rem;
  margin: 4.375rem auto 0;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media (width < 893px) {
  .top-works__btn {
    display: none;
  }
}
.top-works__btn:hover {
  opacity: 0.7;
}
.top-works__btn:hover .top-works__arrow {
  -webkit-transform: translateX(8px);
          transform: translateX(8px);
}

.top-works__btn-text {
  color: #0E4E16;
  font-size: 1.25rem;
  letter-spacing: 0.08em;
  line-height: 1.45;
}

.top-works__arrow {
  width: 1.3025rem;
}
.top-works__arrow::before, .top-works__arrow::after {
  content: "";
  width: 0.625rem;
}

/*

Section：top-check

***************************************/
.top-check {
  position: relative;
  z-index: 1;
  background-color: #F7EDE1;
  overflow: hidden;
}
.top-check::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/layout/top-page/check-bg.webp");
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  z-index: -1;
}

.top-check__inner {
  padding-bottom: 7.5rem;
}
@media (width < 1261px) {
  .top-check__inner {
    max-width: 90%;
    margin: 0 auto;
  }
}
@media (width < 893px) {
  .top-check__inner {
    padding-bottom: 2.625rem;
    max-width: 85.2417302799%;
  }
}

.top-check__lv2-heading {
  margin-top: 6.875rem;
}
@media (width < 893px) {
  .top-check__lv2-heading {
    margin-top: 3.625rem;
  }
}

.top-check__text {
  font-size: 1.125rem;
  letter-spacing: 0.01em;
  line-height: 2;
  margin-top: 5.375rem;
  text-align: center;
}
@media (width < 893px) {
  .top-check__text {
    line-height: 1.7777777778;
    margin-top: 3.375rem;
  }
}

:root {
  --top-check-list-width: calc(800rem / 16);
}

.top-check__list {
  display: grid;
  grid-template-columns: 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.875rem;
  max-width: var(--top-check-list-width);
  margin: 4.375rem auto 0;
}

.top-check__item {
  background: #fff;
}

.top-check__link {
  display: grid;
  grid-template-columns: 11rem auto auto;
  padding: 1.6875rem 1.5625rem 1.625rem 1.5rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (width < 893px) {
  .top-check__link {
    grid-template-columns: 1fr;
  }
}
.top-check__link:hover {
  opacity: 0.7;
}
.top-check__link:hover .arrow {
  -webkit-animation: moveRightReturn 0.6s ease-in-out forwards;
          animation: moveRightReturn 0.6s ease-in-out forwards;
}

.top-check__img-wrap {
  max-width: 11rem;
}
@media (width < 893px) {
  .top-check__img-wrap {
    max-width: 100%;
  }
}

.top-check__img {
  aspect-ratio: 176/117;
}
@media (width < 893px) {
  .top-check__img {
    aspect-ratio: 284/164;
  }
}

.top-check__text-wrap {
  max-width: 25.375rem;
  margin: auto 0 auto 2.7cqi;
}
@media (width < 893px) {
  .top-check__text-wrap {
    margin-top: 1.125rem;
    margin-left: 0.3125rem;
    max-width: 100%;
  }
}

@media (width < 893px) {
  .top-check__heading-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.top-check__lv3-heading {
  color: #0E4E16;
  font-size: 1.375rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1.4545454545;
}

.top-check__item-text {
  color: #000;
  font-size: 1rem;
  letter-spacing: 0.01em;
  line-height: 1.75;
  margin-top: 0.5rem;
}
@media (width < 893px) {
  .top-check__item-text {
    margin-top: 0.25rem;
  }
}

.top-check__arrow-wrap {
  margin: auto 0 auto auto;
  width: 2.75rem;
  height: 2.75rem;
}
@media (width < 893px) {
  .top-check__arrow-wrap {
    display: none;
  }
}
.top-check__arrow-wrap--md {
  display: none;
}
@media (width < 893px) {
  .top-check__arrow-wrap--md {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-right: 0.0625rem;
    width: 2.25rem;
    height: 2.25rem;
  }
}

.top-check__arrow {
  width: 1.2925rem;
}
@media (width < 893px) {
  .top-check__arrow {
    width: 1.0575rem;
  }
}

/*

Section：top-environment

***************************************/
.top-environment {
  background-color: #fff;
}

.top-environment__inner {
  padding-bottom: 6rem;
}
@media (width < 893px) {
  .top-environment__inner {
    padding-bottom: 4.25rem;
  }
}

.top-environment__lv2-heading {
  padding-top: 8.625rem;
}
@media (width < 893px) {
  .top-environment__lv2-heading {
    padding-top: 6.0625rem;
  }
}

.top-environment__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.9cqi;
  max-width: 68.75rem;
  margin: 7.5rem auto 0;
}
@media (width < 1261px) {
  .top-environment__list {
    max-width: 90%;
  }
}
@media (width < 893px) {
  .top-environment__list {
    grid-template-columns: 1fr;
    gap: 2.3125rem;
    margin-top: 5.3125rem;
    max-width: 64.8854961832%;
  }
}

.top-environment__img-wrap {
  max-width: 15.9375rem;
}
@media (width < 893px) {
  .top-environment__img-wrap {
    max-width: 100%;
  }
}

.top-environment__img {
  aspect-ratio: 255/170;
}

.top-environment__lv3-heading {
  color: #0E4E16;
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.45;
  margin-top: 1.875rem;
  text-align: center;
}

.top-environment__item-text {
  font-size: 1.125rem;
  letter-spacing: 0.01em;
  line-height: 1.8888888889;
  margin-top: 0.875rem;
}

/*

Section：top-recruit

***************************************/
.top-recruit {
  background: #E7DFD0;
}

.top-recruit__inner {
  padding-bottom: 6.25rem;
}
@media (width < 893px) {
  .top-recruit__inner {
    max-width: 84.7328244275%;
    padding-bottom: 3.875rem;
  }
}

.top-recruit__lv2-heading {
  padding-top: 5.9375rem;
  max-width: 39.140625rem;
  margin-left: 10px;
  position: relative;
  z-index: 4;
}
@media (width < 893px) {
  .top-recruit__lv2-heading {
    padding-top: 3.2625rem;
    margin-left: 0;
  }
}

.top-recruit__lv2-heading-svg {
  width: 39.1404375rem;
}
@media (width < 893px) {
  .top-recruit__lv2-heading-svg {
    display: block;
    width: 13.66rem;
    height: auto;
    margin-left: 3.7px;
  }
}

.top-recruit__lv2-heading-border {
  width: 39.3125rem;
  margin-top: 1.75rem;
}
@media (width < 893px) {
  .top-recruit__lv2-heading-border {
    display: block;
    margin-top: 0.75625rem;
    width: 14.25rem;
    margin-left: 3.7px;
  }
}

.top-recruit__lv2-heading-span {
  margin-top: 0.875rem;
}
@media (width < 893px) {
  .top-recruit__lv2-heading-span {
    margin-top: 1.0625rem;
  }
}

.top-recruit__link {
  display: block;
  margin-left: auto;
  max-width: 54.5rem;
  margin-top: -9.1875rem;
  position: relative;
  z-index: 3;
}
@media (width < 1261px) {
  .top-recruit__link {
    max-width: 90%;
  }
}
@media (width < 893px) {
  .top-recruit__link {
    margin: 1.25rem auto 0;
    max-width: 87.0870870871%;
  }
}

.top-recruit__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.125rem;
  position: absolute;
  bottom: 2.375rem;
  right: 2.6875rem;
  margin-top: auto;
  z-index: 2;
}
@media (width < 893px) {
  .top-recruit__btn {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 0.4375rem;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    width: 100%;
  }
}

.top-recruit__btn-text {
  color: #fff;
  font-size: 1.875rem;
  letter-spacing: 0.08em;
  line-height: 1.4666666667;
}
@media (width < 893px) {
  .top-recruit__btn-text {
    font-size: 1.0625rem;
    line-height: 1.4705882353;
  }
}

.top-recruit__img-wrap {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.top-recruit__img-wrap::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
  z-index: 2;
}

.top-recruit__img {
  aspect-ratio: 872/406;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
@media (width < 893px) {
  .top-recruit__img {
    aspect-ratio: 290/182;
  }
}

.top-recruit__link:hover .arrow {
  -webkit-animation: moveRightReturn 0.6s ease-in-out forwards;
          animation: moveRightReturn 0.6s ease-in-out forwards;
}
.top-recruit__link:hover .top-recruit__img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.top-recruit__arrow-wrap {
  width: 3.1875rem;
  height: 3.1875rem;
  position: relative;
  z-index: 1;
  border: 1px solid #fff;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media (width < 893px) {
  .top-recruit__arrow-wrap {
    width: 1.75rem;
    height: 1.75rem;
  }
}

.top-recruit__arrow {
  background: #fff;
  width: 1.50375rem;
}
@media (width < 893px) {
  .top-recruit__arrow {
    width: 0.81375rem;
    height: 1px;
  }
}
.top-recruit__arrow::before, .top-recruit__arrow::after {
  content: "";
  width: 0.875rem;
}
@media (width < 893px) {
  .top-recruit__arrow::before, .top-recruit__arrow::after {
    width: 0.50875rem;
    height: 1px;
  }
}

/*

Section：top-news

***************************************/
.top-news {
  background-color: #F7EDE1;
}

.top-news__inner {
  padding-bottom: 7.8125rem;
}
@media (width < 893px) {
  .top-news__inner {
    padding-bottom: 4.875rem;
    max-width: 84.7328244275%;
  }
}

.top-news__lv2-heading {
  padding-top: 6.05rem;
  margin-left: 10px;
}
@media (width < 893px) {
  .top-news__lv2-heading {
    padding-top: 3.2625rem;
    margin-left: 0;
  }
}

.top-news__lv2-heading-svg {
  width: 67.53425rem;
}
@media (width < 1261px) {
  .top-news__lv2-heading-svg {
    display: block;
    max-width: 90%;
  }
}
@media (width < 893px) {
  .top-news__lv2-heading-svg {
    width: 20.553125rem;
    margin-left: 3.6px;
  }
}

.top-news__lv2-heading-border {
  width: 67.53425rem;
  margin-top: 1.5rem;
}
@media (width < 1261px) {
  .top-news__lv2-heading-border {
    display: block;
    max-width: 90%;
  }
}
@media (width < 893px) {
  .top-news__lv2-heading-border {
    width: 20.553125rem;
    margin-top: 0.75625rem;
    margin-left: 3.6px;
  }
}

.top-news__lv2-heading-span {
  margin-top: 0.9375rem;
}
@media (width < 893px) {
  .top-news__lv2-heading-span {
    margin-top: 1.0625rem;
  }
}

.top-news__content {
  max-width: 50.1875rem;
  margin: 1.25rem auto 0;
}
@media (width < 893px) {
  .top-news__content {
    margin-top: 2rem;
  }
}

.top-news__btn-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (width < 893px) {
  .top-news__btn-wrap {
    display: none;
  }
}
.top-news__btn-wrap--md {
  display: none;
}
@media (width < 893px) {
  .top-news__btn-wrap--md {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 2.625rem;
  }
}

.top-news__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.875rem;
  margin-left: auto;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.top-news__btn:hover {
  opacity: 0.7;
}
.top-news__btn:hover .top-news__arrow {
  -webkit-transform: translateX(8px);
          transform: translateX(8px);
}

.top-news__btn-text {
  color: #0E4E16;
  font-size: 1.25rem;
  letter-spacing: 0.08em;
  line-height: 1.45;
}

.top-news__arrow {
  width: 1.3025rem;
}
.top-news__arrow::before, .top-news__arrow::after {
  content: "";
  width: 0.625rem;
}

.top-news__list {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1.875rem;
  margin-top: 1.75rem;
}
@media (width < 893px) {
  .top-news__list {
    gap: 1rem;
  }
}

.top-news__item {
  background-color: #fff;
}

.top-news__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.5625rem;
  padding: 1.875rem 2.0625rem 1.875rem 1.4375rem;
}
@media (width < 893px) {
  .top-news__link {
    display: block;
    padding: 1rem;
  }
}
.top-news__link:hover .top-news__text {
  opacity: 0.5;
}

.top-news__time {
  color: #869B89;
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.4444444444;
}
@media (width < 893px) {
  .top-news__time {
    font-size: 1rem;
    line-height: 1.5;
  }
}

.top-news__text {
  color: #000;
  font-size: 1.125rem;
  letter-spacing: 0.01em;
  line-height: 1.444;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  white-space: normal;
  max-width: 40.125rem;
}
@media (width < 893px) {
  .top-news__text {
    font-size: 1rem;
    line-height: 1.625;
    -webkit-line-clamp: 2;
    max-width: 100%;
    margin-top: 6px;
  }
}

/*************************************

Page：company.scss

***************************************/
/*

Section: company-mv

***************************************/
.company-mv {
  position: relative;
}
.company-mv__inner {
  padding-bottom: 14.625rem;
}
@media (width < 893px) {
  .company-mv__inner {
    padding-bottom: 10rem;
  }
}
@media (width < 576px) {
  .company-mv__inner {
    padding-bottom: 8.125rem;
  }
}
.company-mv__lv1-heading {
  margin-top: 4.5625rem;
}
@media (width < 893px) {
  .company-mv__lv1-heading {
    margin-top: 2.875rem;
  }
}
.company-mv__heading-svg {
  width: 49.0489375rem;
  height: auto;
}
@media (width < 893px) {
  .company-mv__heading-svg {
    width: 20.409375rem;
  }
}
.company-mv__img-wrap {
  max-width: 15rem;
  margin: 9.75rem auto 0;
}
@media (width < 893px) {
  .company-mv__img-wrap {
    margin-top: 9.25rem;
  }
}
@media (width < 576px) {
  .company-mv__img-wrap {
    max-width: 61.0687022901%;
  }
}
.company-mv__img {
  aspect-ratio: 1/1;
  border-radius: 0.5rem;
}
.company-mv__ceo {
  font-size: 1.375rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  line-height: 1.4545454545;
  text-align: center;
  margin-top: 2.375rem;
}
.company-mv__ceo-sub {
  display: block;
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  line-height: 1.5;
  margin-bottom: 4px;
}
.company-mv__text-wrap {
  max-width: 44.625rem;
  margin: 4.875rem auto 0;
}
@media (width < 893px) {
  .company-mv__text-wrap {
    max-width: 83.2061068702%;
  }
}
.company-mv__text {
  font-size: 1.125rem;
  font-weight: 300;
  letter-spacing: 0.01em;
  line-height: 1.8888888889;
  margin-top: 2.125rem;
}
@media (width < 893px) {
  .company-mv__text {
    font-size: 1rem;
    line-height: 2;
  }
}
.company-mv__text:first-of-type {
  margin-top: 0;
}

/*

Section: company-origin

***************************************/
.company-origin {
  background-color: #E7DFD0;
}
.company-origin__inner {
  padding-bottom: 7.375rem;
}
@media (width < 893px) {
  .company-origin__inner {
    padding-bottom: 3.4375rem;
  }
}
.company-origin__lv2-heading {
  color: #0E4E16;
  font-size: 1.1875rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1.4210526316;
  padding-top: 2.6875rem;
  text-align: center;
  position: relative;
}
@media (width < 893px) {
  .company-origin__lv2-heading {
    font-size: 0.875rem;
    line-height: 1.4285714286;
  }
}
.company-origin__lv2-heading::before {
  content: "";
  position: absolute;
  bottom: -3.15625rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 2px;
  height: 1.90625rem;
  background-color: #0E4E16;
}
@media (width < 893px) {
  .company-origin__lv2-heading::before {
    bottom: -2.90625rem;
  }
}
.company-origin__lv3-heading {
  color: #0E4E16;
  font-size: 2.375rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1.4210526316;
  margin-top: 4.3125rem;
  text-align: center;
}
@media (width < 893px) {
  .company-origin__lv3-heading {
    font-size: 1.625rem;
    line-height: 1.5384615385;
    margin-top: 3.8125rem;
  }
}
.company-origin__text {
  font-size: 1.125rem;
  font-weight: 300;
  letter-spacing: 0.01em;
  line-height: 2.1111111111;
  margin-top: 2.5rem;
  text-align: center;
}
@media (width < 893px) {
  .company-origin__text {
    font-size: 1rem;
    line-height: 2;
    max-width: 84.7328244275%;
    margin: 2.5rem auto 0;
    text-align: left;
  }
}

/*

Section: company-attitude

***************************************/
:root {
  --company-attitude-gap: 7.5cqi;
}
@media (width < 893px) {
  :root {
    --company-attitude-gap: 6.4375rem;
  }
}

.company-attitude {
  background-color: #EFE7DE;
}
.company-attitude__inner {
  padding-bottom: 7.4375rem;
}
@media (width < 893px) {
  .company-attitude__inner {
    padding-bottom: 3.625rem;
  }
}
.company-attitude__lv2-heading {
  color: #0E4E16;
  font-size: 2.125rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.4411764706;
  padding-top: 6.1875rem;
  text-align: center;
}
@media (width < 893px) {
  .company-attitude__lv2-heading {
    font-size: 1.875rem;
    line-height: 1.4666666667;
    padding-top: 3.875rem;
  }
}
.company-attitude__text {
  font-size: 1.125rem;
  font-weight: 300;
  letter-spacing: 0.01em;
  line-height: 2.1111111111;
  margin-top: 4.1875rem;
  text-align: center;
}
@media (width < 1261px) {
  .company-attitude__text {
    max-width: 90%;
    margin: 4.1875rem auto 0;
  }
}
@media (width < 893px) {
  .company-attitude__text {
    font-size: 1rem;
    line-height: 2;
    margin-top: 2.5rem;
  }
}
@media (width < 576px) {
  .company-attitude__text {
    text-align: left;
    max-width: 84.7328244275%;
  }
}
.company-attitude__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: var(--company-attitude-gap);
  max-width: 68.1875rem;
  margin: 6.5rem auto 0;
  position: relative;
}
@media (width < 893px) {
  .company-attitude__list {
    grid-template-columns: 1fr;
    max-width: 76.3358778626%;
    max-width: none;
    margin: 3.6875rem auto 0;
  }
}
.company-attitude__item {
  background-color: #fff;
  padding: 1.8125rem 1.375rem 1.5rem;
  position: relative;
  max-width: 18.4375rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media (width < 893px) {
  .company-attitude__item {
    padding: 1.6875rem 1.375rem 1.625rem;
    margin: 0 auto;
  }
}
@media (width < 576px) {
  .company-attitude__item {
    width: 75.0636132316%;
  }
}
.company-attitude__lv3-heading {
  color: #0E4E16;
  font-size: 1.875rem;
  font-weight: 500;
  line-height: 1.4666666667;
  text-align: center;
}
.company-attitude__item-text {
  color: #0E4E16;
  font-size: 1rem;
  font-weight: 300;
  line-height: 2;
  margin-top: 1.375rem;
}
.company-attitude__cross-wrap {
  position: absolute;
  width: 3.3125rem;
  height: 3.3125rem;
  top: 50%;
  right: -5.7vw;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media (width < 893px) {
  .company-attitude__cross-wrap {
    top: unset;
    bottom: -4.4375rem;
    right: 50%;
    -webkit-transform: translateX(50%);
            transform: translateX(50%);
    width: 2.4375rem;
    height: 2.4375rem;
  }
}
.company-attitude__text-large-wrap {
  padding-top: 12.9375rem;
  position: relative;
}
@media (width < 893px) {
  .company-attitude__text-large-wrap {
    padding-top: 7rem;
  }
}
.company-attitude__text-large {
  color: #0E4E16;
  font-size: 2.5rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.45;
  text-align: center;
}

.icon-cross::before, .icon-cross::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #0E4E16;
  border-radius: 2px;
}
.icon-cross::before {
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}
.icon-cross::after {
  -webkit-transform: translateY(-50%) rotate(-45deg);
          transform: translateY(-50%) rotate(-45deg);
}

.icon-vertical-equal {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: absolute;
  top: 5rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 1.110625rem;
  height: 3.06rem;
}
@media (width < 893px) {
  .icon-vertical-equal {
    top: 2rem;
  }
}
.icon-vertical-equal::before, .icon-vertical-equal::after {
  content: "";
  display: block;
  width: 2px;
  height: 100%;
  background-color: #0E4E16;
}

/*

Section: company-info

***************************************/
.company-info {
  background-color: #E7DFD0;
}
.company-info__inner {
  padding-bottom: 7.0625rem;
}
@media (width < 1261px) {
  .company-info__inner {
    padding-bottom: 3.25rem;
    max-width: 84.7328244275%;
  }
}
.company-info__lv2-heading {
  color: #0E4E16;
  font-size: 2.25rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.4444444444;
  padding-top: 7.625rem;
  text-align: center;
}
.company-info__list {
  max-width: 68.75rem;
  margin: 5rem auto 0;
}
.company-info__item {
  display: grid;
  grid-template-columns: 11.25rem auto;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  border-bottom: 1px solid #0E4E16;
  padding: 2.40625rem 0;
}
@media (width < 893px) {
  .company-info__item {
    display: block;
    padding: 0.875rem 1rem;
  }
}
@media (width < 576px) {
  .company-info__item {
    padding: 0.875rem 0.5625rem;
  }
}
.company-info__item:first-of-type {
  border-top: 1px solid #0E4E16;
}
.company-info__item:nth-of-type(8) {
  padding: 2.5rem 0;
}
@media (width < 893px) {
  .company-info__item:nth-of-type(8) {
    padding: 0.875rem 0.5625rem;
  }
}
.company-info__item:nth-of-type(9), .company-info__item:nth-of-type(10) {
  padding: 0.875rem 0;
}
@media (width < 893px) {
  .company-info__item:nth-of-type(9), .company-info__item:nth-of-type(10) {
    padding: 0.875rem 0.5625rem;
  }
}
.company-info__item:nth-of-type(9) .company-info__lv3-heading, .company-info__item:nth-of-type(10) .company-info__lv3-heading {
  margin-left: -1.5rem;
}
@media (width < 893px) {
  .company-info__item:nth-of-type(9) .company-info__lv3-heading, .company-info__item:nth-of-type(10) .company-info__lv3-heading {
    margin-left: 0rem;
  }
}
.company-info__lv3-heading {
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.45;
  text-align: center;
  text-transform: uppercase;
}
@media (width < 893px) {
  .company-info__lv3-heading {
    font-size: 1rem;
    line-height: 1.5;
    text-align: left;
  }
}
.company-info__text {
  font-size: 1.125rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  line-height: 1.4444444444;
  padding-left: 3.4375rem;
}
@media (width < 893px) {
  .company-info__text {
    font-size: 1rem;
    line-height: 1.5;
    padding-left: 0;
    margin-top: 0.5rem;
  }
}
@media (width < 576px) {
  .company-info__text {
    margin-top: 0;
  }
}
.company-info__text-list {
  display: grid;
  grid-template-rows: 1fr;
  gap: 3px;
  padding-left: 3.4375rem;
}
@media (width < 893px) {
  .company-info__text-list {
    padding-left: 0;
    margin-top: 0.5rem;
  }
}
.company-info__text-item {
  font-size: 1.125rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  line-height: 1.4444444444;
}

/*

Section: company-equipment

***************************************/
:root {
  --company-equipment-item-width: calc(255rem / 16);
}
@media (width < 893px) {
  :root {
    --company-equipment-item-width: 100%;
  }
}

.company-equipment {
  background-color: #EFE7DE;
}
.company-equipment__inner {
  padding-bottom: 8.75rem;
}
@media (width < 893px) {
  .company-equipment__inner {
    padding-bottom: 3.875rem;
  }
}
.company-equipment__lv2-heading {
  color: #0E4E16;
  font-size: 2.25rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.4444444444;
  padding-top: 7.625rem;
  text-align: center;
}
.company-equipment__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 2.05cqi;
  max-width: 68.75rem;
  margin: 4.5rem auto 0;
}
@media (width < 1261px) {
  .company-equipment__list {
    max-width: 90%;
  }
}
@media (width < 893px) {
  .company-equipment__list {
    grid-template-columns: 1fr;
    gap: 1.875rem;
    max-width: 18.75rem;
    margin: 2.75rem auto 0;
  }
}
@media (width < 576px) {
  .company-equipment__list {
    max-width: 76.3358778626%;
  }
}
.company-equipment__item {
  position: relative;
  max-width: var(--company-equipment-item-width);
}
.company-equipment__link {
  display: block;
}
.company-equipment__img-wrap {
  max-width: 15.9375rem;
}
@media (width < 893px) {
  .company-equipment__img-wrap {
    max-width: 18.75rem;
  }
}
@media (width < 576px) {
  .company-equipment__img-wrap {
    max-width: 100%;
  }
}
.company-equipment__img {
  aspect-ratio: 255/169;
}
@media (width < 893px) {
  .company-equipment__img {
    aspect-ratio: 300/169;
  }
}
.company-equipment__text {
  color: #000;
  font-size: 1.125rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  line-height: 1.4444444444;
  margin-top: 1.625rem;
  text-align: center;
}

/*

Section: company-access

***************************************/
.company-access {
  background-color: #E7DFD0;
}
.company-access__inner {
  padding-bottom: 7.375rem;
}
@media (width < 893px) {
  .company-access__inner {
    padding-bottom: 4.875rem;
  }
}
.company-access__lv2-heading {
  color: #0E4E16;
  font-size: 2.25rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.4444444444;
  padding-top: 7.625rem;
  text-align: center;
}
@media (width < 893px) {
  .company-access__lv2-heading {
    font-size: 1.875rem;
    line-height: 1.4666666667;
    padding-top: 3.875rem;
  }
}
.company-access__map-wrap {
  position: relative;
  padding-top: 43.676%;
  max-width: 68.75rem;
  margin: 4.5rem auto 0;
  width: 100%;
}
@media (width < 1261px) {
  .company-access__map-wrap {
    max-width: 90%;
  }
}
@media (width < 893px) {
  .company-access__map-wrap {
    max-width: 84.7328244275%;
    margin-top: 2.75rem;
  }
}
.company-access__map-wrap iframe {
  border-radius: 0.5rem;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.company-access__text-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (width < 1261px) {
  .company-access__text-wrap {
    max-width: 90%;
    margin: 0 auto;
  }
}
@media (width < 893px) {
  .company-access__text-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    max-width: 84.7328244275%;
  }
}
.company-access__address {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.325rem;
  margin-top: 1.25rem;
}
@media (width < 893px) {
  .company-access__address {
    margin-top: 1.0625rem;
  }
}
.company-access__icon {
  width: 0.984625rem;
  height: 1.331rem;
}
.company-access__address-text {
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  line-height: 1.5;
}
.company-access__link {
  color: #65AC6A;
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  line-height: 1.5;
  margin-top: 1.25rem;
  -webkit-text-decoration: underline #65AC6A 1px;
          text-decoration: underline #65AC6A 1px;
  text-underline-offset: 3px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (width < 576px) {
  .company-access__link {
    margin-top: 0.625rem;
    margin-left: auto;
  }
}
.company-access__link:hover {
  opacity: 0.7;
}

/*************************************

Page：business.scss

***************************************/
/*

Section: business-mv

***************************************/
.business-mv {
  background-color: #EFE7DE;
}
.business-mv__inner {
  padding-bottom: 12rem;
}
@media (width < 893px) {
  .business-mv__inner {
    padding-bottom: 4rem;
  }
}
.business-mv__lv1-heading {
  margin-top: 4.5rem;
}
@media (width < 893px) {
  .business-mv__lv1-heading {
    margin-top: 2.875rem;
  }
}
.business-mv__lv1-heading-svg {
  width: 44.755875rem;
  height: auto;
}
@media (width < 893px) {
  .business-mv__lv1-heading-svg {
    width: 18.623125rem;
  }
}
.business-mv__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4.1cqi;
  max-width: 60.375rem;
  margin: 9.75rem auto 0;
}
@media (width < 1261px) {
  .business-mv__list {
    max-width: 90%;
  }
}
@media (width < 893px) {
  .business-mv__list {
    width: 35.375rem;
  }
}
@media (width < 576px) {
  .business-mv__list {
    gap: 0.6875rem;
    width: 20.4375rem;
    margin: 9.25rem auto 0;
  }
}
.business-mv__item {
  background-color: #fff;
  max-width: 28.4375rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (width < 893px) {
  .business-mv__item {
    max-width: 100%;
  }
}
@media (hover: hover) {
  .business-mv__item:hover {
    background-color: #0E4E16;
    color: #fff;
  }
}
.business-mv__item:active {
  opacity: 0.7;
}
.business-mv__btn {
  display: block;
  color: #0E4E16;
  font-size: 1.625rem;
  font-weight: 500;
  line-height: 1.4230769231;
  padding: 2.625rem 0;
  text-align: center;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (width < 893px) {
  .business-mv__btn {
    padding: 1.875rem 0;
  }
}
@media (width < 576px) {
  .business-mv__btn {
    font-size: 1.125rem;
    line-height: 1.4444444444;
    padding: 0.875rem 0.5rem;
  }
}
.business-mv__btn:hover {
  color: #fff;
  background-color: #0E4E16;
}

/*

Section: business-demolition

***************************************/
.business-demolition {
  background-color: #E7DFD0;
}
.business-demolition__inner {
  padding-bottom: 7.5rem;
}
@media (width < 1261px) {
  .business-demolition__inner {
    max-width: 90%;
  }
}
@media (width < 893px) {
  .business-demolition__inner {
    padding-bottom: 3.125rem;
  }
}
.business-demolition__lv2-heading {
  color: #0E4E16;
  font-size: 2.125rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.4411764706;
  padding-top: 7.375rem;
  text-align: center;
}
@media (width < 893px) {
  .business-demolition__lv2-heading {
    font-size: 1.875rem;
    line-height: 1.4666666667;
    padding-top: 3.875rem;
  }
}
.business-demolition__list {
  max-width: 68.75rem;
  margin: 5.5rem auto 0;
}
@media (width < 893px) {
  .business-demolition__list {
    margin-top: 3.75rem;
  }
}
.business-demolition__item {
  display: grid;
  grid-template-columns: 5.6fr 4.67fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5.25cqi;
  border-bottom: 1px solid #0E4E16;
  padding: 3rem 0 2.75rem;
}
@media (width < 893px) {
  .business-demolition__item {
    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;
    gap: 1.375rem;
  }
}
.business-demolition__item:first-of-type {
  padding-top: 0;
}
.business-demolition__item:last-of-type {
  padding-bottom: 0;
  border-bottom: none;
}
.business-demolition__item--second-child .business-demolition__text {
  margin-top: 1.5rem;
}
.business-demolition__text-wrap--first-child {
  margin-top: 2.125rem;
}
@media (width < 893px) {
  .business-demolition__text-wrap--first-child {
    margin-top: 0;
  }
}
.business-demolition__lv3-heading {
  color: #0E4E16;
  font-size: 1.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.4285714286;
}
@media (width < 893px) {
  .business-demolition__lv3-heading {
    text-align: center;
  }
}
.business-demolition__lv3-heading-sub {
  display: block;
  font-size: 1.25rem;
  letter-spacing: 0.08em;
  line-height: 1.45;
  margin-bottom: 2px;
}
.business-demolition__text {
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 0.01em;
  line-height: 1.875;
  margin-top: 1.8125rem;
}
@media (width < 893px) {
  .business-demolition__text {
    margin-top: 1.375rem;
  }
}
.business-demolition__img-wrap {
  max-width: 29.1875rem;
}
@media (width < 893px) {
  .business-demolition__img-wrap {
    max-width: 100%;
  }
}
.business-demolition__img {
  aspect-ratio: 467/274;
  border-radius: 0.5rem;
}
@media (width < 893px) {
  .business-demolition__img {
    aspect-ratio: 327/192;
  }
}

/*

Section: business-renovation

***************************************/
.business-renovation {
  background-color: #EFE7DE;
  position: relative;
}
.business-renovation__inner {
  padding-bottom: 13.5rem;
}
@media (width < 893px) {
  .business-renovation__inner {
    padding-bottom: 9.25rem;
  }
}
.business-renovation__lv2-heading {
  color: #0E4E16;
  font-size: 2.125rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.4411764706;
  padding-top: 7.5rem;
  text-align: center;
}
@media (width < 893px) {
  .business-renovation__lv2-heading {
    font-size: 1.875rem;
    line-height: 1.5666666667;
    padding-top: 3.875rem;
  }
}
.business-renovation__media {
  display: grid;
  grid-template-columns: 5.6fr 4.67fr;
  gap: 5.25cqi;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 68.75rem;
  margin: 5.5rem auto 0;
}
@media (width < 1261px) {
  .business-renovation__media {
    max-width: 90%;
  }
}
@media (width < 893px) {
  .business-renovation__media {
    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;
    gap: 1.375rem;
    max-width: 83.2061068702%;
    margin: 3.25rem auto 0;
  }
}
.business-renovation__text-wrap {
  padding-top: 2rem;
}
@media (width < 893px) {
  .business-renovation__text-wrap {
    padding-top: 0;
  }
}
.business-renovation__lv3-heading {
  color: #0E4E16;
  font-size: 1.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.4285714286;
}
@media (width < 893px) {
  .business-renovation__lv3-heading {
    display: none;
  }
}
.business-renovation__text {
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 0.01em;
  line-height: 1.875;
  margin-top: 1.6875rem;
}
@media (width < 893px) {
  .business-renovation__text {
    margin-top: 0;
  }
}
.business-renovation__img-wrap {
  max-width: 29.1875rem;
}
.business-renovation__img {
  aspect-ratio: 467/274;
  border-radius: 0.5rem;
}

/*

Section: business-quality

***************************************/
.business-quality {
  background-color: #E7DFD0;
}
.business-quality__inner {
  padding-bottom: 7.5rem;
}
@media (width < 893px) {
  .business-quality__inner {
    padding-bottom: 2.375rem;
  }
}
.business-quality__lv2-heading {
  color: #0E4E16;
  font-size: 2.375rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.4473684211;
  padding-top: 4.1875rem;
  text-align: center;
}
@media (width < 893px) {
  .business-quality__lv2-heading {
    font-size: 1.875rem;
    line-height: 1.4666666667;
    padding-top: 3.875rem;
  }
}
.business-quality__lv3-heading {
  color: #0E4E16;
  font-size: 1.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.6428571429;
  margin-top: 3.4375rem;
  text-align: center;
}
@media (width < 893px) {
  .business-quality__lv3-heading {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-top: 2.375rem;
  }
}
.business-quality__text {
  font-size: 1.125rem;
  font-weight: 300;
  letter-spacing: 0.01em;
  line-height: 2.1111111111;
  margin-top: 1.75rem;
  text-align: center;
}
@media (width < 893px) {
  .business-quality__text {
    font-size: 1rem;
    line-height: 2;
    margin: 1.875rem auto 0;
    text-align: left;
    width: 43.75rem;
    max-width: 83.2061068702%;
  }
}
.business-quality__list {
  max-width: 68.75rem;
  margin: 5.1875rem auto 0;
}
@media (width < 1261px) {
  .business-quality__list {
    max-width: 90%;
  }
}
@media (width < 893px) {
  .business-quality__list {
    margin-top: 3.375rem;
    max-width: 83.2061068702%;
  }
}
.business-quality__item {
  background-color: #FDFAF6;
  padding: 2.3125rem 2.0625rem 2.5rem;
  margin-top: 3.125rem;
}
@media (width < 893px) {
  .business-quality__item {
    padding: 2.3125rem 1rem 2.3125rem;
    margin-top: 1.5rem;
  }
}
.business-quality__item:first-of-type {
  margin-top: 0;
}
.business-quality__ttl {
  color: #fff;
  background-color: #92AE92;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.4583333333;
  padding: 0.875rem 0;
  text-align: center;
}
@media (width < 893px) {
  .business-quality__ttl {
    font-size: 1.25rem;
    line-height: 1.45;
    padding: 0.75rem 0;
    font-weight: 500;
  }
}
.business-quality__body {
  margin-top: 2.75rem;
}
@media (width < 893px) {
  .business-quality__body {
    margin-top: 0;
  }
}
.business-quality__txt-box {
  display: grid;
  grid-template-columns: 5.17fr 4.84fr;
  gap: 2.5cqi;
}
@media (width < 893px) {
  .business-quality__txt-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.375rem;
  }
}
.business-quality__txt-wrap {
  padding-bottom: 1.8125rem;
}
@media (width < 893px) {
  .business-quality__txt-wrap {
    padding-bottom: 0;
  }
}
.business-quality__lead {
  color: #0E4E16;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.6666666667;
  text-align: center;
}
@media (width < 893px) {
  .business-quality__lead {
    font-size: 1.25rem;
    line-height: 1.7;
    margin-top: 1.6875rem;
  }
}
.business-quality__desc {
  color: #0E4E16;
  font-size: 1rem;
  font-weight: 300;
  line-height: 2;
  margin-top: 1.625rem;
}
@media (width < 893px) {
  .business-quality__desc {
    margin-top: 1.125rem;
  }
}
.business-quality__notes-wrap {
  background-color: #fff;
  border-radius: 0.5rem;
  padding: 2.2125rem 2rem 1.625rem 2.25rem;
  text-align: center;
}
@media (width < 893px) {
  .business-quality__notes-wrap {
    padding: 0.9375rem 0.875rem;
  }
}
.business-quality__notes-ttl {
  display: inline-block;
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  line-height: 1.45;
  padding-bottom: 1.09375rem;
  position: relative;
  text-align: center;
  text-transform: uppercase;
}
.business-quality__accent-line {
  display: block;
  position: absolute;
  top: 3px;
  right: -4px;
  width: 0.3375rem;
  height: 1px;
  background-color: #000;
  -webkit-transform: rotate(-50deg);
          transform: rotate(-50deg);
}
.business-quality__accent-line::before, .business-quality__accent-line::after {
  content: "";
  display: block;
  position: absolute;
  width: inherit;
  height: inherit;
  background-color: inherit;
}
.business-quality__accent-line::before {
  left: -1px;
  top: -4px;
  -webkit-transform: rotate(-20deg);
          transform: rotate(-20deg);
}
.business-quality__accent-line::after {
  left: -1px;
  top: 5px;
  -webkit-transform: rotate(20deg);
          transform: rotate(20deg);
}
.business-quality__notes {
  border-top: 1px solid #000;
  padding-top: 1.15625rem;
  text-align: left;
}
.business-quality__note {
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 2.1428571429;
  padding-left: 1.375rem;
  position: relative;
}
.business-quality__note::before {
  content: "";
  width: 0.625rem;
  height: 0.625rem;
  background-color: #000;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 0.625rem;
}
.business-quality__img-wrap {
  margin-top: 2.5rem;
}
.business-quality__img {
  aspect-ratio: 1032/265;
  border-radius: 0.5rem;
}
@media (width < 893px) {
  .business-quality__img {
    aspect-ratio: 294/182;
  }
}

/*************************************

Page：works.scss

***************************************/
/*

Section: works-mv

***************************************/
.works-mv__lv1-heading {
  margin-top: 4.5rem;
}

.works-mv__lv1-heading-svg {
  width: 35.145375rem;
  height: auto;
}
@media (width < 893px) {
  .works-mv__lv1-heading-svg {
    width: 14.624375rem;
  }
}

.works-filter {
  position: relative;
  max-width: 28.0625rem;
  margin: 9.75rem auto 0;
}
@media (width < 893px) {
  .works-filter {
    max-width: 17.75rem;
    margin-top: 9.375rem;
  }
}
.works-filter__button {
  position: relative;
  width: 100%;
  padding: 1.75rem 3rem;
  background-color: #fff;
  color: #000;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  text-align: left;
}
@media (width < 893px) {
  .works-filter__button {
    padding: 1.1875rem 3rem;
  }
}
.works-filter__button::after {
  content: "";
  position: absolute;
  right: 3rem;
  top: 50%;
  margin-top: -3px;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 9px solid #000;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.works-filter__button.is-open::after {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.works-filter__list {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  width: 100%;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  z-index: 100;
  padding: 10px 0;
  -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.works-filter__item a {
  display: block;
  padding: 10px 20px;
  color: #333;
  text-decoration: none;
  -webkit-transition: background 0.2s;
  transition: background 0.2s;
}
.works-filter__item a:hover {
  background-color: #f5f5f5;
}

/*

Section: works-contents

***************************************/
.works-contents {
  background-color: #EFE7DE;
  padding-top: 8rem;
}
@media (width < 1261px) {
  .works-contents {
    padding: 8rem 7.633% 0;
  }
}
@media (width < 893px) {
  .works-contents {
    padding-top: 3.5rem;
  }
}
.works-contents__inner {
  padding-bottom: 7.5rem;
}
@media (width < 893px) {
  .works-contents__inner {
    padding-bottom: 4.875rem;
  }
}

.works-list {
  max-width: 68.75rem;
  margin: 0 auto;
}
.works-list__item {
  border-radius: 0.5rem;
  background-color: #FDFAF6;
  margin-top: 2.5rem;
}
@media (width < 893px) {
  .works-list__item {
    background-color: #fff;
  }
}
.works-list__item:first-of-type {
  margin-top: 0;
}
.works-list__link {
  display: block;
  padding: 3.0625rem 4.3125rem 4.9375rem 4.3125rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (width < 576px) {
  .works-list__link {
    padding: 2rem 1.875rem 1.6875rem;
  }
}
.works-list__badge-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  gap: 0.625rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (width < 893px) {
  .works-list__badge-wrap {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.works-list__badge {
  display: inline-block;
  color: #3A663D;
  background-color: #fff;
  border: 1px solid #0E4E16;
  border-radius: 2.5rem;
  font-size: 0.875rem;
  line-height: 1.4285714286;
  padding: 0.375rem 0;
  text-align: center;
  min-width: 8.8125rem;
}
@media (width < 576px) {
  .works-list__badge {
    min-width: auto;
    width: 48%;
  }
}
.works-list__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-bottom: 0.59375rem;
  border-bottom: 1px solid #0E4E16;
  margin-top: 2.675rem;
}
@media (width < 576px) {
  .works-list__head {
    margin-top: 1.3125rem;
  }
}
.works-list__ttl {
  color: #0E4E16;
  font-size: 1.375rem;
  font-weight: 500;
  line-height: 1.5;
}
@media (width < 576px) {
  .works-list__ttl {
    font-size: 1.125rem;
    line-height: 1.5555555556;
  }
}
@media (width < 893px) {
  .works-list__ttl-label {
    display: block;
  }
}
@media (width < 576px) {
  .works-list__ttl-label {
    font-size: 0.875rem;
    line-height: 1.4285714286;
    margin-bottom: 0.625rem;
  }
}
@media (width < 893px) {
  .works-list__ttl-separator {
    display: inline-block;
    visibility: hidden;
    position: relative;
    width: 1em;
  }
  .works-list__ttl-separator::after {
    content: "／";
    visibility: visible;
    position: absolute;
    left: 0;
  }
}
.works-list__date {
  color: #0E4E16;
  font-size: 1.125rem;
  font-weight: 300;
  line-height: 1.4444444444;
  margin-top: 5px;
}
@media (width < 576px) {
  .works-list__date {
    font-size: 0.875rem;
    line-height: 1.4285714286;
  }
}
.works-list__gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4.75cqi;
  margin-top: 2.4875rem;
}
@media (width < 893px) {
  .works-list__gallery {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media (width < 576px) {
  .works-list__gallery {
    grid-template-columns: 1fr;
    gap: 2.375rem;
    margin-top: 1.4375rem;
  }
}
.works-list__figure {
  max-width: 28.0625rem;
  position: relative;
}
@media (width < 893px) {
  .works-list__figure {
    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;
    gap: 0.75rem;
    max-width: 100%;
  }
}
.works-list__figure--first::before {
  content: "";
  position: absolute;
  top: 43%;
  right: -2.8vw;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 15px 0 15px 15px;
  border-color: transparent transparent transparent #0E4E16;
  z-index: 2;
}
@media (width < 893px) {
  .works-list__figure--first::before {
    display: none;
  }
}
.works-list__label {
  display: block;
  color: #000;
  font-size: 1.25rem;
  line-height: 1.45;
  letter-spacing: 0.14em;
  margin-top: 1.25rem;
  text-align: center;
}
@media (width < 893px) {
  .works-list__label {
    font-weight: 500;
    margin-top: 0;
  }
}
.works-list__img {
  aspect-ratio: 449/282;
}
.works-list__specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 2.2cqi;
  background-color: #fff;
  border-radius: 0.5rem;
  padding: 3.34375rem 3.6875rem 3.34375rem 3.125rem;
  margin-top: 2.5rem;
}
@media (width < 1261px) {
  .works-list__specs {
    grid-template-columns: 1fr;
    padding: 2.125rem;
  }
}
@media (width < 893px) {
  .works-list__specs {
    padding: 0;
  }
}
@media (width < 576px) {
  .works-list__specs {
    margin-top: 1.64375rem;
  }
}
.works-list__spec {
  display: grid;
  grid-template-columns: 8.125rem auto;
  gap: 2.2cqi 0;
  padding: 1.125rem 0 1.125rem 0.65625rem;
  border-bottom: 1px solid #B2B2B2;
}
@media (width < 1261px) {
  .works-list__spec {
    padding-left: 1.25rem;
  }
}
@media (width < 893px) {
  .works-list__spec {
    padding: 0.75rem 0.65625rem;
  }
}
@media (width < 576px) {
  .works-list__spec {
    grid-template-columns: 6.8125rem auto;
  }
}
.works-list__spec:nth-of-type(1), .works-list__spec:nth-of-type(2) {
  border-top: 1px solid #B2B2B2;
}
@media (width < 1261px) {
  .works-list__spec:nth-of-type(2) {
    border-top: none;
  }
}
.works-list__spec-key {
  color: #000;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.6111111111;
}
@media (width < 893px) {
  .works-list__spec-key {
    font-weight: 300;
  }
}
.works-list__spec-value {
  color: #000;
  font-size: 1.125rem;
  font-weight: 300;
  line-height: 1.6111111111;
}

/*************************************

Page：flow.scss

***************************************/
/*

Section: flow-mv

***************************************/
.flow-mv__inner {
  padding-bottom: 6.25rem;
}
@media (width < 1261px) {
  .flow-mv__inner {
    max-width: 90%;
    margin: 0 auto;
  }
}
@media (width < 893px) {
  .flow-mv__inner {
    padding-bottom: 5.0625rem;
  }
}
@media (width < 576px) {
  .flow-mv__inner {
    max-width: 83.9694656489%;
  }
}
.flow-mv__lv1-heading {
  margin-top: 4.5rem;
}
.flow-mv__lv1-heading-svg {
  width: 27.15525rem;
  height: auto;
}
@media (width < 893px) {
  .flow-mv__lv1-heading-svg {
    width: 14.624375rem;
  }
}
.flow-mv__lv2-heading {
  color: #0E4E16;
  font-size: 2.125rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.4411764706;
  margin-top: 10rem;
  text-align: center;
}
@media (width < 893px) {
  .flow-mv__lv2-heading {
    font-size: 1.5rem;
    line-height: 1.5833333333;
    margin-top: 8.1875rem;
  }
}
.flow-mv__text {
  font-size: 1.125rem;
  letter-spacing: 0.01em;
  line-height: 2.1111111111;
  margin-top: 2.1875rem;
  text-align: center;
}
@media (width < 893px) {
  .flow-mv__text {
    font-size: 1rem;
    line-height: 2;
    margin-top: 2.375rem;
  }
}
@media (width < 576px) {
  .flow-mv__text {
    text-align: left;
  }
}
.flow-mv__btn-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 2cqi;
  max-width: 67.375rem;
  margin: 3.375rem auto 0;
}
@media (width < 1261px) {
  .flow-mv__btn-list {
    max-width: 90%;
  }
}
@media (width < 893px) {
  .flow-mv__btn-list {
    grid-template-columns: repeat(1, 1fr);
    gap: 1rem;
  }
}
.flow-mv__btn-item {
  max-width: 21.1875rem;
}
@media (width < 893px) {
  .flow-mv__btn-item {
    width: 100%;
    margin: 0 auto;
  }
}
.flow-mv__btn-link {
  display: grid;
  grid-template-columns: 1fr auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 1.75rem 1.96875rem 1.75rem 2rem;
  color: #0E4E16;
  background-color: #fff;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (width < 576px) {
  .flow-mv__btn-link {
    padding: 1.25rem 2rem;
  }
}
.flow-mv__btn-link:hover {
  color: #fff;
  background-color: #0E4E16;
}
.flow-mv__btn-link:hover .flow-mv__btn-text {
  color: #fff;
}
.flow-mv__btn-link:hover .flow-mv__arrow-wrap {
  border-color: #fff;
}
.flow-mv__btn-link:hover .flow-mv__arrow {
  border-color: #fff;
  background-color: #fff;
}
.flow-mv__btn-text {
  color: #0E4E16;
  font-size: 1.25rem;
  line-height: 1.45;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.flow-mv__arrow-wrap {
  width: 2.40875rem;
  height: 2.40875rem;
}
.flow-mv__arrow {
  height: 1.126875rem;
}
.flow-mv__arrow::before, .flow-mv__arrow::after {
  height: 0.605rem;
}

/*

Section: flow-faq

***************************************/
.flow-faq {
  background-color: #FDFAF6;
}
.flow-faq__inner {
  padding-bottom: 7.5rem;
}
@media (width < 893px) {
  .flow-faq__inner {
    padding-bottom: 3.95625rem;
  }
}
.flow-faq__lv2-heading {
  color: #0E4E16;
  font-size: 2.125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.4411764706;
  padding-top: 6.125rem;
  text-align: center;
}
@media (width < 893px) {
  .flow-faq__lv2-heading {
    font-size: 1.875rem;
    line-height: 1.4666666667;
    padding-top: 4rem;
  }
}
.flow-faq__text {
  font-size: 1.125rem;
  letter-spacing: 0.01em;
  letter-spacing: 0.01em;
  line-height: 2.1111111111;
  margin-top: 2.1875rem;
  text-align: center;
}
@media (width < 893px) {
  .flow-faq__text {
    font-size: 1rem;
    line-height: 2;
    margin-top: 1.875rem;
  }
}
.flow-faq__list {
  max-width: 60.0625rem;
  margin: 4.89375rem auto 0;
}
@media (width < 1261px) {
  .flow-faq__list {
    max-width: 90%;
  }
}
@media (width < 893px) {
  .flow-faq__list {
    margin-top: 2.4375rem;
    max-width: 83.4605597964%;
  }
}
.flow-faq__item {
  border-bottom: 1px solid #C2CEBE;
  padding-bottom: 0.5125rem;
}
.flow-faq__question {
  display: grid;
  grid-template-columns: 1fr auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 2.125rem 1.5rem 1.7375rem 0.625rem;
  cursor: pointer;
}
@media (width < 893px) {
  .flow-faq__question {
    padding: 0.875rem 0.625rem 0.75rem;
  }
}
@media (width < 576px) {
  .flow-faq__question {
    gap: 2.375rem;
  }
}
.flow-faq__question.triangle-rotate .flow-faq__question-triangle {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
.flow-faq__question-text {
  color: #638B66;
  font-size: 1.25rem;
  letter-spacing: 0.01em;
  line-height: 1.45;
}
@media (width < 893px) {
  .flow-faq__question-text {
    font-size: 1rem;
    line-height: 1.5;
  }
}
.flow-faq__question-triangle {
  background: #638B66;
}
.flow-faq__answer {
  display: none;
}
.flow-faq__answer-text {
  color: #656565;
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 0.01em;
  line-height: 2;
  padding-bottom: 1.425rem;
  max-width: 94.4791%;
  margin-left: auto;
}
@media (width < 893px) {
  .flow-faq__answer-text {
    font-size: 0.875rem;
    line-height: 2;
    margin-left: 0;
    padding-left: 0.625rem;
    padding-bottom: 0.375rem;
  }
}
.flow-faq__text-link {
  color: #869B89;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.flow-faq__text-link:hover {
  opacity: 0.7;
}

/*

Section: flow-process

***************************************/
.flow-process {
  background-color: #EFE7DE;
}
.flow-process__inner {
  padding-bottom: 7.40625rem;
}
.flow-process__lv2-heading {
  color: #0E4E16;
  font-size: 2.125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.4411764706;
  padding-top: 7.5rem;
  text-align: center;
}
.flow-process__list {
  max-width: 60.15625rem;
  margin: 5.125rem auto 0;
}
@media (width < 1261px) {
  .flow-process__list {
    max-width: 90%;
  }
}
@media (width < 893px) {
  .flow-process__list {
    max-width: 75%;
  }
}
@media (width < 576px) {
  .flow-process__list {
    margin-top: 2.4375rem;
    max-width: 83.9694656489%;
  }
}
.flow-process__item {
  display: grid;
  grid-template-columns: auto 1fr;
  margin-top: 2.9375rem;
}
@media (width < 1261px) {
  .flow-process__item {
    margin-top: 1.875rem;
  }
}
@media (width < 893px) {
  .flow-process__item {
    grid-template-columns: 1fr;
    margin-top: 2.375rem;
  }
}
.flow-process__item:first-child {
  margin-top: 0;
}
.flow-process__item:nth-of-type(3) .flow-process__img-wrap::before, .flow-process__item:nth-of-type(4) .flow-process__img-wrap::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.15);
}
.flow-process__number {
  color: #3A663D;
  font-size: 1.9375rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.4516129032;
  text-transform: uppercase;
  padding-right: 2.21875rem;
  position: relative;
}
@media (width < 1261px) {
  .flow-process__number {
    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;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media (width < 893px) {
  .flow-process__number {
    font-size: 1.625rem;
    line-height: 1.4230769231;
    padding-right: 0;
  }
}
.flow-process__number::before {
  content: "";
  position: absolute;
  top: 0.65625rem;
  right: 0;
  width: 1px;
  height: 9.0625rem;
  background-color: #3A663D;
}
@media (width < 1261px) {
  .flow-process__number::before {
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}
@media (width < 893px) {
  .flow-process__number::before {
    display: none;
  }
}
.flow-process__number-sub {
  display: block;
  font-size: 4.3125rem;
  letter-spacing: 0.08em;
  line-height: 1.4492753623;
  margin-top: -0.875rem;
  margin-left: 0.5rem;
}
@media (width < 893px) {
  .flow-process__number-sub {
    font-size: 3.625rem;
    line-height: 1.4482758621;
    margin-top: -0.625rem;
    margin-left: 0.375rem;
  }
}
.flow-process__content {
  display: grid;
  grid-template-columns: 14.875rem 1fr;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 2.75cqi;
  padding-left: 2.09375rem;
  margin-top: 8px;
}
@media (width < 1261px) {
  .flow-process__content {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media (width < 893px) {
  .flow-process__content {
    grid-template-columns: repeat(1, 1fr);
    gap: 1.3125rem;
    padding-left: 0;
    margin-top: 3px;
  }
}
.flow-process__img-wrap {
  max-width: 14.875rem;
  position: relative;
}
@media (width < 893px) {
  .flow-process__img-wrap {
    max-width: 100%;
  }
}
.flow-process__img {
  aspect-ratio: 238/147;
}
.flow-process__lv3-heading {
  color: #3A663D;
  font-size: 1.625rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.4230769231;
}
@media (width < 893px) {
  .flow-process__lv3-heading {
    font-size: 1.25rem;
    line-height: 1.45;
    text-align: center;
  }
}
.flow-process__text {
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 0.04em;
  line-height: 2;
  margin-top: 1rem;
}
.flow-process__text-link {
  color: #869B89;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.flow-process__text-link:hover {
  opacity: 0.7;
}

/*

Section: flow-support

***************************************/
.flow-support {
  background-color: #E7DFD0;
}
.flow-support__inner {
  padding-bottom: 7.5rem;
}
@media (width < 893px) {
  .flow-support__inner {
    padding-bottom: 2.5rem;
    max-width: 83.9694656489%;
  }
}
.flow-support__lv2-heading {
  color: #0E4E16;
  font-size: 2.125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.4411764706;
  padding-top: 7.375rem;
  text-align: center;
}
@media (width < 893px) {
  .flow-support__lv2-heading {
    font-size: 1.875rem;
    line-height: 1.4666666667;
    padding-top: 3.875rem;
  }
}
.flow-support__intro {
  font-weight: 300;
  letter-spacing: 0.01em;
  margin-top: 2.125rem;
  text-align: center;
}
@media (width < 893px) {
  .flow-support__intro {
    text-align: left;
    margin-top: 1.875rem;
  }
}
.flow-support__desc {
  font-size: 1.125rem;
  line-height: 2.1111111111;
}
@media (width < 893px) {
  .flow-support__desc {
    font-size: 1rem;
    line-height: 2;
  }
}
.flow-support__note {
  font-size: 0.875rem;
  line-height: 1.4285714286;
  margin-top: 0.5rem;
}
@media (width < 893px) {
  .flow-support__note {
    font-size: 0.875rem;
    line-height: 1.8571428571;
    margin-top: 1rem;
  }
}
.flow-support__list {
  padding-left: 1.6875rem;
  max-width: 62.9375rem;
  margin: 4.625rem auto 0;
}
@media (width < 1261px) {
  .flow-support__list {
    max-width: 90%;
    padding-left: 0;
  }
}
@media (width < 893px) {
  .flow-support__list {
    max-width: 100%;
    margin-top: 1.875rem;
  }
}
.flow-support__item {
  background-color: #FDFAF6;
  border-radius: 0.5rem;
  padding: 1.5rem 1.84375rem 1.875rem 4.21875rem;
  margin-top: 2.8125rem;
  position: relative;
}
@media (width < 893px) {
  .flow-support__item {
    padding: 1rem 0.78125rem 0.9375rem 1.03125rem;
    margin-top: 1rem;
  }
}
.flow-support__item:first-of-type {
  margin-top: 0;
}
.flow-support__label {
  font-size: 1.375rem;
  font-weight: 300;
  letter-spacing: 0.01em;
  line-height: 1.4545454545;
  padding: 1.3125rem 1.5625rem 1.1875rem 1.5625rem;
  border-radius: 50%;
  background-color: #0E4E16;
  color: #fff;
  position: absolute;
  top: 0;
  left: -1.6875rem;
  -webkit-transform: translateY(-40%);
          transform: translateY(-40%);
}
@media (width < 893px) {
  .flow-support__label {
    font-size: 1rem;
    line-height: 1.5;
    padding: 1rem 1.25rem 0.9375rem 1.1875rem;
    top: 1.75rem;
    left: 1rem;
  }
}
.flow-support__city {
  font-size: 1.25rem;
  font-weight: 300;
  letter-spacing: 0.01em;
  line-height: 1.45;
  padding-bottom: 0.78125rem;
  border-bottom: 1px solid #869B89;
}
@media (width < 893px) {
  .flow-support__city {
    font-size: 1.125rem;
    line-height: 1.4444444444;
    padding-left: 3.96875rem;
    padding-bottom: 0.59375rem;
  }
}
.flow-support__body {
  display: grid;
  grid-template-columns: 0.5fr 2.2fr;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (width < 893px) {
  .flow-support__body {
    display: block;
  }
}
.flow-support__body:first-of-type {
  margin-top: 0.5625rem;
}
@media (width < 893px) {
  .flow-support__body:first-of-type {
    margin-top: 0.59375rem;
  }
}
.flow-support__type {
  font-size: 1.125rem;
  font-weight: 300;
  letter-spacing: 0.01em;
  line-height: 1.7777777778;
  position: relative;
}
@media (width < 893px) {
  .flow-support__type {
    display: inline-block;
    font-size: 0.875rem;
    line-height: 1.7142857143;
  }
}
@media (width < 893px) {
  .flow-support__type::before {
    content: "／";
    margin-left: -2.75cqi;
    position: absolute;
    top: 0;
    right: 0.5rem;
    right: -1.125rem;
  }
}
.flow-support__value {
  font-size: 1.125rem;
  font-weight: 300;
  letter-spacing: 0.01em;
  line-height: 1.7777777778;
  position: relative;
}
@media (width < 893px) {
  .flow-support__value {
    font-size: 0.875rem;
    line-height: 1.7142857143;
  }
}
.flow-support__value::before {
  content: "／";
  margin-left: -2.75cqi;
  position: absolute;
  top: 0;
  left: 0;
}
@media (width < 893px) {
  .flow-support__value::before {
    display: none;
  }
}

/*************************************

Page：company.scss

***************************************/
/*

Section: recruit-mv

***************************************/
@media (width < 1261px) {
  .recruit-mv__inner {
    max-width: 90%;
  }
}
@media (width < 893px) {
  .recruit-mv__inner {
    max-width: 75%;
  }
}
@media (width < 576px) {
  .recruit-mv__inner {
    max-width: 83.9694656489%;
  }
}
.recruit-mv__lv1-heading {
  margin-top: 4.5625rem;
}
@media (width < 893px) {
  .recruit-mv__lv1-heading {
    margin-top: 2.875rem;
  }
}
.recruit-mv__lv1-heading__svg {
  width: 39.1404375rem;
  height: auto;
}
@media (width < 893px) {
  .recruit-mv__lv1-heading__svg {
    width: 16.286875rem;
  }
}
.recruit-mv__lv2-heading {
  color: #0E4E16;
  font-size: 2.125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.7647058824;
  margin-top: 9.625rem;
  text-align: center;
}
@media (width < 893px) {
  .recruit-mv__lv2-heading {
    font-size: 1.5rem;
    line-height: 1.5833333333;
    margin-top: 8.125rem;
  }
}
.recruit-mv__text {
  font-size: 1.125rem;
  font-weight: 300;
  letter-spacing: 0.01em;
  line-height: 2.1111111111;
  margin-top: 3rem;
  text-align: center;
}
@media (width < 893px) {
  .recruit-mv__text {
    font-size: 1rem;
    line-height: 2;
    margin-top: 1.375rem;
  }
}
@media (width < 576px) {
  .recruit-mv__text {
    text-align: left;
  }
}
.recruit-mv__img-wrap {
  margin-top: 4.25rem;
}
@media (width < 893px) {
  .recruit-mv__img-wrap {
    margin-top: 3.375rem;
  }
}
.recruit-mv__img {
  aspect-ratio: 1366/335;
}
@media (width < 893px) {
  .recruit-mv__img {
    aspect-ratio: 393/206;
  }
}

/*

Section: recruit-concept

***************************************/
.recruit-concept {
  position: relative;
  z-index: 1;
  background-color: #EFE7DE;
  overflow: hidden;
}
.recruit-concept::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/layout/recruit/concept-bg.webp");
  background-size: cover;
  background-position: bottom;
  background-repeat: no-repeat;
  opacity: 0.25;
  z-index: -1;
}
.recruit-concept__inner {
  padding-bottom: 7.5rem;
}
@media (width < 1261px) {
  .recruit-concept__inner {
    max-width: 90%;
  }
}
@media (width < 893px) {
  .recruit-concept__inner {
    max-width: 75%;
    padding-bottom: 3.3125rem;
  }
}
@media (width < 576px) {
  .recruit-concept__inner {
    max-width: 83.9694656489%;
  }
}
.recruit-concept__lv2-heading {
  color: #0E4E16;
  font-size: 2.125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.4411764706;
  padding-top: 7.5rem;
  text-align: center;
}
@media (width < 893px) {
  .recruit-concept__lv2-heading {
    font-size: 1.875rem;
    line-height: 1.5666666667;
    padding-top: 3.375rem;
  }
}
.recruit-concept__list {
  display: grid;
  grid-template-rows: 1fr;
  gap: 1.25rem;
  max-width: 59.0625rem;
  margin: 7.375rem auto 0;
}
@media (width < 893px) {
  .recruit-concept__list {
    margin-top: 2.875rem;
  }
}
.recruit-concept__item {
  display: grid;
  grid-template-columns: 21.875rem 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.4375rem;
  border-left: 9px solid #FDC13F;
  background-color: #fff;
  padding: 2.1875rem 3.8125rem 1.9375rem 2.25rem;
}
@media (width < 1261px) {
  .recruit-concept__item {
    grid-template-columns: 20rem 1fr;
    padding-right: 1.375rem;
  }
}
@media (width < 893px) {
  .recruit-concept__item {
    grid-template-columns: 1fr;
    gap: 0.875rem;
    padding: 1.125rem 1rem 1.1875rem;
    border-left: none;
    border-top: 9px solid #FDC13F;
  }
}
.recruit-concept__ttl {
  color: #0E4E16;
  font-size: 1.625rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.4230769231;
}
@media (width < 893px) {
  .recruit-concept__ttl {
    font-size: 1.25rem;
    line-height: 1.45;
    text-align: center;
  }
}
.recruit-concept__desc {
  font-size: 1.125rem;
  font-weight: 300;
  letter-spacing: 0.01em;
  line-height: 1.7777777778;
}
@media (width < 893px) {
  .recruit-concept__desc {
    font-size: 1rem;
    line-height: 1.75;
  }
}

/*

Section: recruit-work

***************************************/
.recruit-work {
  background-color: #FDFAF6;
}
.recruit-work__inner {
  padding-bottom: 7.375rem;
}
@media (width < 1261px) {
  .recruit-work__inner {
    max-width: 90%;
  }
}
@media (width < 893px) {
  .recruit-work__inner {
    padding-bottom: 3rem;
    max-width: 75%;
  }
}
@media (width < 576px) {
  .recruit-work__inner {
    max-width: 83.9694656489%;
  }
}
.recruit-work__lv2-heading {
  color: #0E4E16;
  font-size: 2.125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.4411764706;
  padding-top: 7.5rem;
  text-align: center;
}
@media (width < 893px) {
  .recruit-work__lv2-heading {
    font-size: 1.875rem;
    line-height: 1.4666666667;
    padding-top: 3.375rem;
  }
}
.recruit-work__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.2cqi;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 5rem auto 0;
}
@media (width < 893px) {
  .recruit-work__list {
    grid-template-columns: 1fr;
    gap: 4.25rem;
    margin-top: 2.375rem;
  }
}
.recruit-work__img {
  aspect-ratio: 346/239;
}
@media (width < 893px) {
  .recruit-work__img {
    aspect-ratio: 326/200;
  }
}
.recruit-work__text-wrap {
  margin-top: 2.125rem;
}
@media (width < 893px) {
  .recruit-work__text-wrap {
    margin-top: 1.5rem;
  }
}
.recruit-work__lv3-heading {
  color: #0E4E16;
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.55;
  text-align: center;
}
.recruit-work__text {
  font-size: 1.125rem;
  font-weight: 300;
  letter-spacing: 0.01em;
  line-height: 1.7777777778;
  margin-top: 1.25rem;
}
@media (width < 893px) {
  .recruit-work__text {
    margin-top: 0.875rem;
  }
}

/*

Section: recruit-requirement

***************************************/
.recruit-requirement {
  background-color: #EFE7DE;
}
@media (width < 1261px) {
  .recruit-requirement__inner {
    max-width: 84.7328244275%;
  }
}
.recruit-requirement__lv2-heading {
  color: #0E4E16;
  font-size: 2.125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.4411764706;
  padding-top: 7.375rem;
  text-align: center;
}
@media (width < 893px) {
  .recruit-requirement__lv2-heading {
    font-size: 1.875rem;
    line-height: 1.4666666667;
    padding-top: 3.25rem;
  }
}
.recruit-requirement__list {
  max-width: 68.75rem;
  margin: 4.9375rem auto 0;
}
@media (width < 893px) {
  .recruit-requirement__list {
    max-width: 100%;
    margin-top: 2.75rem;
  }
}
.recruit-requirement__row {
  display: grid;
  grid-template-columns: 11.25rem 1fr;
  border-bottom: 1px solid #0E4E16;
  padding: 2.4375rem 0;
}
@media (width < 893px) {
  .recruit-requirement__row {
    display: block;
    padding: 0.875rem 1rem;
  }
}
@media (width < 576px) {
  .recruit-requirement__row {
    padding: 0.875rem 0.5625rem;
  }
}
.recruit-requirement__row:first-of-type {
  border-top: 1px solid #0E4E16;
}
.recruit-requirement__term {
  font-size: 1.25rem;
  letter-spacing: 0.08em;
  line-height: 1.45;
  text-align: center;
}
@media (width < 893px) {
  .recruit-requirement__term {
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.5;
    text-align: left;
  }
}
.recruit-requirement__data {
  font-size: 1.125rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  line-height: 1.4444444444;
  padding-left: 3.4375rem;
}
@media (width < 893px) {
  .recruit-requirement__data {
    font-size: 1rem;
    line-height: 1.5;
    padding-left: 0;
    margin-top: 0.5rem;
  }
}
.recruit-requirement__sub-list {
  display: grid;
  grid-template-rows: 1fr;
  gap: 3px;
  padding-bottom: 1.625rem;
}
@media (width < 893px) {
  .recruit-requirement__sub-list {
    padding-left: 0;
    margin-top: 0.5rem;
  }
}
.recruit-requirement__sub-item {
  position: relative;
  padding-left: 1.25rem;
}
.recruit-requirement__sub-item::before {
  content: "";
  width: 3px;
  height: 3px;
  background-color: #000;
  border-radius: 50%;
  position: absolute;
  top: 12px;
  left: 7px;
}
.recruit-requirement__slider {
  margin-top: 4.25rem;
  padding-bottom: 7.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
}
@media (width < 893px) {
  .recruit-requirement__slider {
    padding-bottom: 5rem;
    margin-top: 3.375rem;
  }
}
.recruit-requirement__slider.slick-initialized {
  display: block;
  overflow: visible;
}
.recruit-requirement__slide {
  padding: 0 14px;
  outline: none;
  max-width: 20.3125rem;
}
@media (width < 893px) {
  .recruit-requirement__slide {
    padding: 0 8px;
  }
}
.recruit-requirement__slide img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 297/205;
}

/*************************************

Page：info.scss

***************************************/
/*

Section: info-mv

***************************************/
.info-mv {
  background-color: #EFE7DE;
}
.info-mv__lv1-heading {
  margin-top: 4.5625rem;
}
.info-mv__lv1-heading-svg {
  width: 22.927375rem;
  height: auto;
}
@media (width < 893px) {
  .info-mv__lv1-heading-svg {
    top: 5%;
    width: 10rem;
  }
}

/*

Section: info-content

***************************************/
.info-content {
  background-color: #EFE7DE;
  padding-bottom: 7.375rem;
}
@media (width < 893px) {
  .info-content {
    padding-bottom: 4.875rem;
  }
}
.info-content .wp-pagenavi {
  margin-top: 4.875rem;
}
@media (width < 893px) {
  .info-content .wp-pagenavi {
    margin-top: 3.625rem;
  }
}
.info-content__list {
  display: grid;
  grid-template-rows: 1fr;
  gap: 1.75rem;
  max-width: 50rem;
  padding-top: 9.8125rem;
  margin: 0 auto;
}
@media (width < 893px) {
  .info-content__list {
    gap: 1rem;
    padding-top: 11.4375rem;
    max-width: 85.2417302799%;
  }
}
.info-content__item {
  background-color: #fff;
}
.info-content__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.5625rem;
  color: #000;
  padding: 1.875rem 2.0625rem 1.875rem 1.4375rem;
}
@media (width < 893px) {
  .info-content__link {
    display: block;
    padding: 1rem;
  }
}
.info-content__link:hover .info-content__date {
  opacity: 0.5;
}
.info-content__link:hover .info-content__ttl {
  opacity: 0.5;
}
.info-content__date {
  color: #869B89;
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.4444444444;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media (width < 893px) {
  .info-content__date {
    font-size: 1rem;
    line-height: 1.5;
  }
}
.info-content__ttl {
  font-size: 1.125rem;
  font-weight: 300;
  letter-spacing: 0.01em;
  line-height: 1.4444444444;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  white-space: normal;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 40.125rem;
}
@media (width < 893px) {
  .info-content__ttl {
    font-size: 1rem;
    line-height: 1.625;
    -webkit-line-clamp: 2;
    max-width: 100%;
    margin-top: 6px;
  }
}

/*

Section：news-content.scss

***************************************/
.news-content-container {
  background-color: #EFE7DE;
}

.news-content__container {
  padding-top: 7.5rem;
}

@media (width < 1261px) {
  .news-content__img-wrap {
    max-width: 90%;
    margin: 0 auto;
  }
}
@media (width < 576px) {
  .news-content__img-wrap {
    max-width: 100%;
    padding: 0 1.875rem;
  }
}

.news-content__text-container {
  margin: 0 auto;
  padding-bottom: 1rem;
}
@media (width < 1261px) {
  .news-content__text-container {
    max-width: 90%;
  }
}
.news-content__text-container h2 {
  font-size: 1.5rem;
  letter-spacing: 0.08em;
  line-height: 1.4583333333;
  font-weight: 500;
  margin-top: 5rem;
  padding-bottom: 0.65625rem;
  border-bottom: 1px solid #3A663D;
}
@media (width < 893px) {
  .news-content__text-container h2 {
    line-height: 1.3333333333;
    margin-top: 3.125rem;
    padding-bottom: 0.75rem;
  }
}
.news-content__text-container h3 {
  font-size: 1.375rem;
  letter-spacing: 0.08em;
  line-height: 1.4545454545;
  font-weight: 500;
  padding-bottom: 0.625rem;
  border-bottom: 1px solid #959595;
  margin-top: 3.75rem;
}
@media (width < 893px) {
  .news-content__text-container h3 {
    padding-bottom: 0.75rem;
    margin-top: 2.5rem;
  }
}
.news-content__text-container h4 {
  padding: 0.5625rem 0;
  border-top: 1px solid #3A663D;
  border-bottom: 1px solid #3A663D;
  font-size: 1.375rem;
  letter-spacing: 0.08em;
  line-height: 1.4545454545;
  font-weight: 500;
  margin-top: 3.75rem;
}
@media (width < 893px) {
  .news-content__text-container h4 {
    padding: 0.75rem 0;
    margin-top: 2.5rem;
    font-weight: 300;
  }
}
.news-content__text-container p {
  color: #000;
  font-size: 1.125rem;
  letter-spacing: 0.08em;
  line-height: 2;
  font-weight: 300;
  margin-top: 1.28125rem;
}
@media (width < 893px) {
  .news-content__text-container p {
    margin-top: 1.25rem;
  }
}

.news-pagination {
  background: #EFE7DE;
  padding: 5rem 0;
  margin: 0 auto;
  text-align: center;
}

.news-pagination__nav {
  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;
  gap: 3.125rem;
}

.news-pagination__all {
  color: #3A663D;
  font-size: 1.25rem;
  letter-spacing: 0.08em;
  line-height: 1.5;
  font-weight: 500;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.news-pagination__all:hover {
  opacity: 0.7;
}

.news-pagination__arrow {
  position: relative;
  display: inline-block;
  width: 1.171875rem;
  height: 1.5px;
  border-radius: 9999px;
  background-color: #000;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.news-pagination__arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2.5rem;
  height: 2.5rem;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: transparent;
  cursor: pointer;
}
.news-pagination__arrow .news-pagination__arrow-line {
  width: 1.25rem;
  height: 1.5px;
  border-radius: 9999px;
  background-color: #000;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.news-pagination__arrow .news-pagination__arrow-line::before, .news-pagination__arrow .news-pagination__arrow-line::after {
  content: "";
  position: absolute;
  top: calc(50% - 1px);
  right: 0;
  width: 10px;
  height: 1.5px;
  border-radius: 9999px;
  background-color: inherit;
  -webkit-transform-origin: calc(100% - 1px) 50%;
          transform-origin: calc(100% - 1px) 50%;
}
.news-pagination__arrow .news-pagination__arrow-line::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.news-pagination__arrow .news-pagination__arrow-line::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.news-pagination__arrow:hover {
  opacity: 0.7;
}

.news-pagination__arrow--prev {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

/*************************************

Page：contact.scss

***************************************/
/*

Section: contact-mv

***************************************/
.contact-mv {
  background-color: #EFE7DE;
}
.contact-mv__inner {
  padding-bottom: 7.8125rem;
}
@media (width < 1261px) {
  .contact-mv__inner {
    max-width: 90%;
  }
}
@media (width < 893px) {
  .contact-mv__inner {
    padding-bottom: 3.875rem;
  }
}
@media (width < 576px) {
  .contact-mv__inner {
    max-width: 81.4249363868%;
  }
}
.contact-mv__lv1-heading {
  margin-top: 4.5625rem;
}
.contact-mv__lv1-heading-svg {
  width: 45.0073125rem;
  height: auto;
}
@media (width < 893px) {
  .contact-mv__lv1-heading-svg {
    width: 18.875rem;
  }
}
.contact-mv__lv2-heading {
  color: #0E4E16;
  font-size: 2.125rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.7647058824;
  margin-top: 9.625rem;
  text-align: center;
}
@media (width < 893px) {
  .contact-mv__lv2-heading {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-top: 8.625rem;
  }
}
.contact-mv__desc {
  font-size: 1.125rem;
  font-weight: 300;
  letter-spacing: 0.01em;
  line-height: 2.1111111111;
  margin-top: 1.75rem;
  text-align: center;
}
@media (width < 893px) {
  .contact-mv__desc {
    font-size: 1rem;
    line-height: 2;
  }
}
@media (width < 576px) {
  .contact-mv__desc {
    text-align: left;
  }
}
.contact-mv__note {
  font-size: 1.125rem;
  font-weight: 300;
  letter-spacing: 0.01em;
  line-height: 2.1111111111;
  text-align: center;
}
@media (width < 893px) {
  .contact-mv__note {
    font-size: 1rem;
    line-height: 2;
  }
}
@media (width < 576px) {
  .contact-mv__note {
    text-align: left;
  }
}

/*

Section: contact-tel

***************************************/
.contact-tel {
  background-color: #EFE7DE;
}
.contact-tel__inner {
  max-width: 57.5rem;
  margin: 0 auto;
  padding-bottom: 6.75rem;
  text-align: center;
  position: relative;
}
@media (width < 1261px) {
  .contact-tel__inner {
    max-width: 90%;
  }
}
@media (width < 893px) {
  .contact-tel__inner {
    padding-bottom: 3.875rem;
  }
}
@media (width < 576px) {
  .contact-tel__inner {
    max-width: 81.4249363868%;
  }
}
.contact-tel__inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-size: 10px 1px;
  background-image: linear-gradient(to right, #0E4E16 6px, transparent 6px);
  background-repeat: repeat-x;
}
.contact-tel__inner::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-size: 10px 1px;
  background-image: linear-gradient(to right, #0E4E16 6px, transparent 6px);
  background-repeat: repeat-x;
}
.contact-tel__level2-heading {
  color: #0E4E16;
  font-size: 1.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.4285714286;
  text-align: center;
  padding-top: 5rem;
}
@media (width < 893px) {
  .contact-tel__level2-heading {
    font-size: 1.5rem;
    line-height: 1.4583333333;
    padding-top: 3.625rem;
  }
}
.contact-tel__number {
  display: inline-block;
  color: #0E4E16;
  font-size: 3.125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.44;
  margin-top: 1.25rem;
}
@media (width < 893px) {
  .contact-tel__number {
    font-size: 2.5rem;
    line-height: 1.15;
    margin-top: 1.125rem;
  }
}
.contact-tel__time {
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 0.01em;
  line-height: 1.5;
  margin-top: 0.5625rem;
  text-align: center;
}
@media (width < 893px) {
  .contact-tel__time {
    margin-top: 0;
  }
}

/*

Section: contact-form

***************************************/
.contact-form {
  background-color: #EFE7DE;
}
.contact-form__inner {
  max-width: 57.5rem;
  margin: 0 auto;
  padding-bottom: 7.5rem;
}
@media (width < 1261px) {
  .contact-form__inner {
    max-width: 90%;
  }
}
@media (width < 576px) {
  .contact-form__inner {
    max-width: 85.3333333333%;
  }
}
.contact-form__level2-heading {
  color: #0E4E16;
  font-size: 1.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.4285714286;
  text-align: center;
  padding-top: 5.375rem;
}
@media (width < 893px) {
  .contact-form__level2-heading {
    padding-top: 3.625rem;
  }
}
.contact-form__form {
  margin: 5rem auto 0;
  max-width: 38.75rem;
}
@media (width < 893px) {
  .contact-form__form {
    margin-top: 3.625rem;
  }
}
.contact-form__item {
  margin-top: 1.875rem;
}
.contact-form__item:first-of-type {
  margin-top: 0;
}
.contact-form label:has(input[type=radio]) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.6875rem;
  position: relative;
}
.contact-form label:has(input[type=radio])::before {
  content: "";
  display: inline-block;
  width: 1.9375rem;
  height: 1.9375rem;
  background-color: #fff;
  border: 1px solid #C9C9C9;
  border-radius: 50%;
}
.contact-form label:has(input[type=radio]):has(input[type=radio]:checked)::after {
  content: "";
  display: block;
  background-color: #FCC23F;
  width: 1.125rem;
  height: 1.125rem;
  border-radius: 50%;
  position: absolute;
  top: 6.5px;
  left: 6.5px;
}
.contact-form__label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.75rem;
  font-size: 1.125rem;
  letter-spacing: 0.08em;
  line-height: 1.4444444444;
}
.contact-form__label-badge {
  background-color: #E20722;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  line-height: 1.4285714286;
  padding: 0.1875rem 1rem;
  margin-top: 1px;
  border-radius: 0.75rem;
}
.contact-form__radio-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.8125rem;
  margin-top: 1.375rem;
  margin-left: 5px;
}
@media (width < 893px) {
  .contact-form__radio-list {
    margin-top: 1.125rem;
    margin-left: 0;
  }
}
.contact-form input[type=radio] {
  position: absolute;
  white-space: nowrap;
  width: 1px;
  height: 1px;
  overflow: hidden;
  border: 0;
  padding: 0;
}
.contact-form__radio-text {
  font-size: 1.125rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  line-height: 1.4444444444;
}
.contact-form__input {
  background-color: #fff;
  padding: 1.46875rem 2.25rem;
  margin-top: 0.9375rem;
  width: 100%;
}
@media (width < 893px) {
  .contact-form__input {
    padding: 1.125rem 1.25rem 1.125rem 2.25rem;
  }
}
.contact-form__input::-webkit-input-placeholder {
  color: #BEBEBE;
  font-size: 1.125rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  line-height: 1.4444444444;
}
.contact-form__input::-moz-placeholder {
  color: #BEBEBE;
  font-size: 1.125rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  line-height: 1.4444444444;
}
.contact-form__input:-ms-input-placeholder {
  color: #BEBEBE;
  font-size: 1.125rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  line-height: 1.4444444444;
}
.contact-form__input::-ms-input-placeholder {
  color: #BEBEBE;
  font-size: 1.125rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  line-height: 1.4444444444;
}
.contact-form__input::placeholder {
  color: #BEBEBE;
  font-size: 1.125rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  line-height: 1.4444444444;
}
.contact-form__textarea {
  background-color: #fff;
  padding: 1.46875rem 1.125rem 1.46875rem 2.25rem;
  margin-top: 0.9375rem;
  width: 100%;
  height: 11.3125rem;
}
.contact-form__textarea::-webkit-input-placeholder {
  color: #BEBEBE;
  font-size: 1.125rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  line-height: 1.4444444444;
}
.contact-form__textarea::-moz-placeholder {
  color: #BEBEBE;
  font-size: 1.125rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  line-height: 1.4444444444;
}
.contact-form__textarea:-ms-input-placeholder {
  color: #BEBEBE;
  font-size: 1.125rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  line-height: 1.4444444444;
}
.contact-form__textarea::-ms-input-placeholder {
  color: #BEBEBE;
  font-size: 1.125rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  line-height: 1.4444444444;
}
.contact-form__textarea::placeholder {
  color: #BEBEBE;
  font-size: 1.125rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  line-height: 1.4444444444;
}
.contact-form__acceptance-wrap {
  margin-top: 4.8125rem;
}
.contact-form__acceptance-label {
  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;
  font-size: 1rem;
  letter-spacing: 0.08em;
  line-height: 1;
  position: relative;
  cursor: pointer;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
@media (width < 893px) {
  .contact-form__acceptance-label {
    line-height: 2;
  }
}
.contact-form__acceptance-label::before {
  content: "";
  display: inline-block;
  width: 1.9375rem;
  height: 1.9375rem;
  background-color: #fff;
  border: 1px solid #C9C9C9;
  border-radius: 50%;
  margin-right: 1.5rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.contact-form__acceptance-input[type=checkbox] {
  position: absolute;
  white-space: nowrap;
  width: 1px;
  height: 1px;
  overflow: hidden;
  border: 0;
  padding: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  margin: -1px;
}
.contact-form__acceptance-input[type=checkbox]:checked + .contact-form__acceptance-label::after {
  content: "";
  display: block;
  background-color: #FCC23F;
  width: 1.125rem;
  height: 1.125rem;
  border-radius: 50%;
  position: absolute;
  top: 6.5px;
  left: 6.5px;
}
@media (width < 576px) {
  .contact-form__acceptance-input[type=checkbox]:checked + .contact-form__acceptance-label::after {
    top: 1.4375rem;
  }
}
.contact-form__acceptance-link {
  color: #869B89;
  text-decoration: underline;
  text-underline-offset: 1px;
  text-decoration-thickness: 1px;
}
.contact-form__submit {
  display: block;
  background-color: #E0E0E0;
  color: #B7B7B7;
  font-size: 1.125rem;
  letter-spacing: 0.07em;
  border-radius: 1.4375rem;
  line-height: 1.4444444444;
  padding: 0.625rem 3.875rem;
  margin: 5rem auto 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (width < 576px) {
  .contact-form__submit {
    padding: 0.625rem 0;
    width: 100%;
    max-width: 13.75rem;
  }
}
.contact-form__submit.active {
  background-color: #FCC23F;
  color: #fff;
}

@media (width < 893px) {
  .wpcf7-list-item {
    display: block;
    margin-top: 0.875rem;
    margin-left: 1.25rem;
  }
}
.wpcf7-list-item:first-of-type {
  margin-top: 0;
}

@media (width < 893px) {
  .wpcf7-list-item-label {
    font-size: 1.125rem;
  }
}

/*

Section: confirm-form

***************************************/
.confirm-value {
  padding: 10px 0;
  color: #333;
  white-space: pre-wrap;
}

.contact-form__confirm-btns {
  display: grid;
  grid-template-columns: 9.375rem 15.625rem;
  gap: 1.25rem;
}
@media (width < 576px) {
  .contact-form__confirm-btns {
    grid-template-columns: 9.375rem 1fr;
  }
}
.contact-form__confirm-btns .contact-form__back {
  width: 9.375rem;
  background: #333;
  border: 1px solid #333;
  color: #fff;
  padding: 0.65625rem 0;
  cursor: pointer;
  border-radius: 50px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  text-align: center;
  margin-top: 5em;
}

/*

Section: thanks-mv

***************************************/
.contact-mv__desc--thanks {
  margin-top: 6.25rem;
}
@media (width < 893px) {
  .contact-mv__desc--thanks {
    margin-top: 8.5rem;
  }
}
.contact-mv__lv1-heading-svg {
  width: 45.0073125rem;
  height: auto;
}
@media (width < 893px) {
  .contact-mv__lv1-heading-svg {
    width: 18.728125rem;
  }
}
.contact-mv__link-thanks {
  display: block;
  background-color: #0E4E16;
  color: #EFE7DE;
  font-size: 1.125rem;
  letter-spacing: 0.07em;
  border-radius: 1.4375rem;
  line-height: 1.4444444444;
  padding: 0.625rem 2.625rem;
  margin: 5rem auto 0;
  max-width: 12.5rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  text-align: center;
}
@media (width < 893px) {
  .contact-mv__link-thanks {
    font-size: 1.25rem;
    line-height: 1.45;
    margin-top: 4rem;
    max-width: 13.75rem;
  }
}
.contact-mv__link-thanks:hover {
  opacity: 0.7;
}

/*************************************

Page：privacy-policy.scss

***************************************/
/*

Section: privacy-policy-mv

***************************************/
.privacy-policy-mv {
  background-color: #EFE7DE;
}
.privacy-policy-mv__lv1-heading {
  margin-top: 4.5625rem;
}
.privacy-policy-mv__lv1-heading-svg {
  width: 33.767125rem;
  height: auto;
}
@media (width < 893px) {
  .privacy-policy-mv__lv1-heading-svg {
    width: 14.05075rem;
  }
}

/*

Section: privacy-policy

***************************************/
.privacy-policy {
  padding-top: 9.875rem;
  background-color: #EFE7DE;
  padding-bottom: 7.5rem;
}
@media (width < 893px) {
  .privacy-policy {
    padding-bottom: 5.625rem;
  }
}

.privacy-policy__inner {
  max-width: 56.28125rem;
  margin: 0 auto;
}
@media (width < 1261px) {
  .privacy-policy__inner {
    max-width: 90%;
  }
}
@media (width < 576px) {
  .privacy-policy__inner {
    max-width: 85.2417302799%;
  }
}

.privacy-policy__ttl {
  color: #6E6E6E;
  font-size: 1.125rem;
  letter-spacing: 0.08em;
  line-height: 2;
  margin-top: 1.5rem;
  padding-bottom: 0.625rem;
  border-bottom: 1px solid #BCC7BE;
}

.privacy-policy__text {
  color: #6E6E6E;
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 0.06em;
  line-height: 1.75;
  margin-top: 0.625rem;
  font-weight: 300;
  overflow-wrap: break-word;
}
.privacy-policy__text:nth-of-type(1) {
  margin-top: 0;
}

/*************************************

Page：404.scss

***************************************/
.error404 {
  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;
  text-align: center;
  padding: 14.5rem 1.25rem 8rem;
}
.error404__inner {
  max-width: 600px;
  margin: 0 auto;
}
.error404__ttl {
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: #0E4E16;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  position: relative;
}
.error404__ttl::after {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  background-color: #333;
  margin: 1.25rem auto 0;
}
.error404__text {
  font-size: 1.125rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

/*************************************

Component：pagenavi.scss

***************************************/
.wp-pagenavi {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.375rem;
  margin-top: 6.875rem;
}
@media (width < 893px) {
  .wp-pagenavi {
    margin-top: 3.375rem;
  }
}
.wp-pagenavi a {
  border: none !important;
  color: #BEBEBE;
  font-size: 1.125rem;
  letter-spacing: 0.04em;
  line-height: 1.4444444444;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-weight: 500;
}
.wp-pagenavi a:hover {
  opacity: 0.7;
}
.wp-pagenavi .current {
  color: #0E4E16;
  border: none;
  font-size: 1.125rem;
  line-height: 1.4444444444;
}
.wp-pagenavi .first {
  color: #3A663D;
  margin-right: 2.375rem;
}
.wp-pagenavi .last {
  color: #3A663D;
  margin-left: 2.375rem;
}

/*************************************

Component：breadcrumbs.scss

***************************************/
.breadcrumbs {
  white-space: nowrap;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 3.6875rem;
}
@media (width < 893px) {
  .breadcrumbs {
    display: none;
  }
}
.breadcrumbs__link {
  color: #0E4E16;
  font-size: 0.875rem;
  font-weight: 300;
  letter-spacing: 0.01em;
  line-height: 1.4285714286;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.breadcrumbs__link:hover {
  opacity: 0.7;
}
.breadcrumbs__separator {
  color: #0E4E16;
  font-size: 0.875rem;
  font-weight: 300;
  letter-spacing: 0.01em;
  line-height: 1.4285714286;
  padding: 0 0.5rem;
}
.breadcrumbs__current {
  display: inline-block;
  color: #0E4E16;
  font-size: 0.875rem;
  font-weight: 300;
  letter-spacing: 0.01em;
  line-height: 1.4285714286;
  max-width: 300px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  vertical-align: bottom;
}