@charset "UTF-8";
/*

Page：style.scss

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

Page: variable.scss

***************************************/
/* color
***************************************/
/* font
***************************************/
@-webkit-keyframes zoomUp {
  0% {
    -webkit-transform: scale(1.15);
            transform: scale(1.15);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes zoomUp {
  0% {
    -webkit-transform: scale(1.15);
            transform: scale(1.15);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
.add-animation {
  -webkit-animation: zoomUp 10s linear 0s normal both;
          animation: zoomUp 10s linear 0s normal both;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
/*

Page：style.scss

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

Page: common.scss

***************************************/
body {
  color: #1a1a1a;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 1rem;
  letter-spacing: 0.03em;
  background-color: #FCF8F2;
}

body.is-drawerActive {
  overflow: hidden;
}

a {
  text-decoration: none;
  color: #1a1a1a;
}

a:visited {
  text-decoration: none;
}

a:active {
  text-decoration: none;
}

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

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

/*

Page：style.scss

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

Page: parts.scss

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

inner

***************************************/
.inner {
  max-width: 78.75rem;
  margin: 0 auto;
}
@media (width < 1261px) {
  .inner {
    max-width: 90%;
  }
}

.inner-s {
  max-width: 67.5rem;
  margin: 0 auto;
}
@media (width < 1261px) {
  .inner-s {
    max-width: 90%;
  }
}

.inner-l {
  max-width: 86.25rem;
  margin: 0 auto;
}
@media (width < 1261px) {
  .inner-l {
    max-width: 90%;
  }
}

/*

.section-heading

***************************************/
.section-heading--center {
  text-align: center;
}
.section-heading--center .section-heading__en {
  padding-left: 0;
}
.section-heading--center .section-heading__en::before {
  top: -0.6875rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.section-heading--white .section-heading__en {
  color: #ffffff;
}
.section-heading--white .section-heading__en::before {
  background-color: #ffffff;
}
.section-heading--white .section-heading__text {
  color: #ffffff;
}

.section-heading__en {
  display: inline-block;
  color: #DF1C07;
  font-family: "Bellefair", sans-serif;
  font-size: 1.1875rem;
  line-height: 1.1578947368;
  font-weight: 400;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  position: relative;
  padding-left: 1rem;
}

.section-heading__en::before {
  content: "";
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 50%;
  background-color: #DF1C07;
  position: absolute;
  top: 50%;
  left: 0rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.section-heading__text {
  font-size: 1.75rem;
  line-height: 1.4285714286;
  margin-top: 0.5625rem;
  font-weight: 500;
}

/*

.lineup-btn

***************************************/
.lineup-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #298A00;
  border-radius: 5px;
  padding: 1.75rem 0.8125rem;
  position: relative;
  min-width: 17.6875rem;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.lineup-btn:hover {
  opacity: 0.8;
}

.lineup-btn__text {
  color: #ffffff;
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: 0.09em;
  text-align: center;
}

.lineup-btn__arrow {
  display: grid;
  place-items: center;
  background-color: #69B118;
  border-radius: 5px;
  position: absolute;
  top: 50%;
  right: 0.8125rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1.25rem;
  height: 1.1875rem;
  margin: 0 auto;
}

.top-lineup__btn {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.1875rem;
  -webkit-box-shadow: inset 0 0 0 5px #298A00, inset 0 0 0 6px rgba(255, 255, 255, 0.75);
          box-shadow: inset 0 0 0 5px #298A00, inset 0 0 0 6px rgba(255, 255, 255, 0.75);
  padding: 2.5625rem 1rem;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.top-lineup__btn .lineup-btn__arrow {
  position: static;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  width: 1.875rem;
  height: 1.875rem;
}
.top-lineup__btn .lineup-btn__arrow .arrow {
  width: 1rem;
  height: 1.5px;
}
.top-lineup__btn .lineup-btn__arrow .arrow::before, .top-lineup__btn .lineup-btn__arrow .arrow::after {
  width: 0.5rem;
  height: 1.5px;
}

/*

.arrow-btn

***************************************/
.arrow-btn {
  display: grid;
  grid-template-columns: 1fr 3rem;
  border: 1px solid #298A00;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media (hover: hover) {
  .arrow-btn:hover {
    opacity: 0.7;
  }
}
@media (hover: none) {
  .arrow-btn:active {
    opacity: 0.7;
  }
}

.arrow-btn__text {
  display: grid;
  -ms-flex-line-pack: center;
      align-content: center;
  padding: 0.875rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.arrow-btn__icon {
  display: grid;
  place-items: center;
  background-color: rgba(41, 138, 0, 0.12);
  font-size: 1rem;
}

/*

.arrow

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

.arrow--white {
  background-color: #ffffff;
}

.arrow--green {
  background-color: #298A00;
}

/*

.arrow-btn--fill

***************************************/
.arrow-btn--fill {
  background-color: #298A00;
  border-color: #298A00;
}

.arrow-btn--fill .arrow-btn__text {
  color: #ffffff;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.arrow-btn--fill .arrow-btn__icon {
  background-color: rgba(0, 0, 0, 0.15);
}

/*

.section-head

***************************************/
.section-head {
  text-align: center;
}

.section-head__img {
  margin: 0 auto;
}

.section-head__img img {
  aspect-ratio: 1/1;
}

.section-head__text {
  font-size: 1.75rem;
  font-weight: 500;
  line-height: 1.4285714286;
}
@media (width < 576px) {
  .section-head__text {
    font-size: 1.5rem;
    line-height: 1.5;
  }
}

/*

.link-arrow

***************************************/
.link-arrow {
  display: grid;
  grid-template-columns: auto 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.25rem;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media (hover: hover) {
  .link-arrow:hover {
    opacity: 0.7;
  }
}

.link-arrow__text {
  font-size: 0.9375rem;
  line-height: 1.4;
  letter-spacing: 0.05em;
  color: #1a1a1a;
}

.link-arrow__icon {
  display: grid;
  place-items: center;
  width: 1.278125rem;
  height: 1.18125rem;
  background-color: #298A00;
  border-radius: 0.1875rem;
}

/*

page-mv

***************************************/
.page-mv {
  padding-top: 8.75rem;
}
@media (width < 1261px) {
  .page-mv {
    padding-top: 8rem;
  }
}
@media (width < 893px) {
  .page-mv {
    padding-top: 4.6875rem;
  }
}

.page-mv__head {
  display: grid;
  grid-template-columns: auto 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.25rem;
  max-width: 81.25rem;
  margin: 0 auto;
  padding: 0 1.25rem;
}
@media (width < 1261px) {
  .page-mv__head {
    max-width: 90%;
    padding: 0;
  }
}
@media (width < 576px) {
  .page-mv__head {
    max-width: 93%;
  }
}

.page-mv__title {
  color: #403224;
  font-family: "Zen Old Mincho", serif;
  font-size: 2.25rem;
  font-weight: 500;
  line-height: 1.4444444444;
  letter-spacing: 0em;
}
@media (width < 893px) {
  .page-mv__title {
    font-size: 1.5rem;
  }
}

.page-mv__en {
  color: #DF1C07;
  font-family: "Bellefair", sans-serif;
  font-size: 1.1875rem;
  line-height: 1.1578947368;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  position: relative;
  padding-left: 1rem;
}
@media (width < 893px) {
  .page-mv__en {
    font-size: 0.875rem;
    line-height: 1.4285714286;
  }
}

.page-mv__en::before {
  content: "";
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 50%;
  background-color: #DF1C07;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.page-mv__img {
  margin-top: 0.3125rem;
}

.page-mv__img img {
  aspect-ratio: 1500/435;
}
@media (width < 576px) {
  .page-mv__img img {
    aspect-ratio: 2/1;
  }
}

/*

.anchor-nav

***************************************/
.anchor-nav {
  padding: 0 1.5rem;
  margin-top: 5.05625rem;
}
@media (width < 893px) {
  .anchor-nav {
    margin-top: 3.625rem;
  }
}

.anchor-nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-left: 1px dashed #298A00;
  max-width: 67.5rem;
  margin: 0 auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media (width < 576px) {
  .anchor-nav__list {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 1fr;
    grid-auto-flow: row;
    border-left: none;
    gap: 0.3125rem;
  }
}

.anchor-nav__item {
  border-right: 1px dashed #298A00;
  padding: 0.06875rem 2.5rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media (width < 893px) {
  .anchor-nav__item {
    padding: 0.06875rem 0.5rem;
  }
}
@media (width < 576px) {
  .anchor-nav__item {
    border-right: none;
    border-bottom: 1px dashed #298A00;
    width: 100%;
  }
}

.anchor-nav__link {
  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: 0.625rem;
  color: #403224;
  font-size: 1.125rem;
  line-height: 1.4444444444;
  letter-spacing: 0.06em;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media (width < 893px) {
  .anchor-nav__link {
    font-size: 1rem;
  }
}
@media (width < 576px) {
  .anchor-nav__link {
    font-size: 1.125rem;
    padding: 0.3125rem 0;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 100%;
  }
}
@media (hover: hover) {
  .anchor-nav__link:hover {
    opacity: 0.7;
  }
}
@media (hover: none) {
  .anchor-nav__link:active {
    opacity: 0.7;
  }
}

.anchor-nav__icon {
  display: grid;
  place-items: center;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  background-color: #69B118;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.anchor-nav__icon::before {
  content: "";
  display: block;
  width: 0.375rem;
  height: 0.375rem;
  border-right: 0.0625rem solid #ffffff;
  border-bottom: 0.0625rem solid #ffffff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  margin-top: -0.125rem;
}

/*

banner-img

***************************************/
.banner-img img {
  aspect-ratio: 1500/276;
}
@media (width < 893px) {
  .banner-img img {
    aspect-ratio: 325/121;
    -o-object-position: 50% 50%;
       object-position: 50% 50%;
  }
}

/*

bg-green

***************************************/
.bg-green {
  background-color: #109C4A;
}

/*

Page：style.scss

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

Page: header.scss

***************************************/
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background-color: #FCF8F2;
}
@media (width < 1261px) {
  .header {
    display: grid;
    grid-template-columns: 1fr auto;
    padding-left: 1.25rem;
  }
}

/*

header__inner

***************************************/
.header__inner {
  display: grid;
  grid-template-columns: auto 1fr;
  padding-left: 1.875rem;
}
@media (width < 1261px) {
  .header__inner {
    display: none;
  }
}

/*

header__logo-area

***************************************/
.header__logo-area {
  padding: 2.625rem 1rem 0rem 0;
}

.header__logo {
  display: block;
  max-width: 16.25rem;
}
@media (width < 1261px) {
  .header__logo {
    max-width: 13.75rem;
  }
}

.header__logo img {
  aspect-ratio: 260/54;
}

.header__logo-sp {
  display: none;
}
@media (width < 1261px) {
  .header__logo-sp {
    display: block;
    max-width: 16.25rem;
    padding: 0.625rem 0 0.5625rem;
    max-width: 12.3125rem;
  }
}
.header__logo-sp img {
  aspect-ratio: 197/41;
}

.header__logo-link-sp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

/*

header__right

***************************************/
.header__right {
  display: grid;
  grid-template-rows: auto 1fr;
}

/*

header__btn-area

***************************************/
.header__btn-area {
  display: grid;
  grid-template-columns: repeat(2, auto);
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  gap: 2px;
}

.header__btn {
  display: inline-block;
  color: #ffffff;
  font-family: "Zen Old Mincho", serif;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.4444444444;
  letter-spacing: 0em;
  padding: 0.8125rem 2.625rem;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media (width < 1261px) {
  .header__btn {
    padding: 0.6875rem 1.25rem;
    font-size: 0.875rem;
  }
}
@media (hover: hover) {
  .header__btn:hover {
    opacity: 0.8;
  }
}
@media (hover: none) {
  .header__btn:active {
    opacity: 0.8;
  }
}

.header__btn--faq {
  background-color: #298A00;
}

.header__btn--contact {
  background-color: #D65D00;
}

/*

header__nav

***************************************/
.header__nav {
  display: grid;
  -ms-flex-line-pack: center;
      align-content: center;
  padding: 1.0625rem 4.8125rem 1.0625rem 0;
}

.header__nav-list {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: auto;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  gap: 2.8125rem;
}

.header__nav-item {
  position: relative;
}

.header__nav-item--has-child .header__nav-link::after {
  content: "";
  background-color: #298A00;
  border-radius: 50%;
  position: absolute;
  bottom: -0.75rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 0.3125rem;
  height: 0.3125rem;
  -webkit-transition: border-color 0.3s ease;
  transition: border-color 0.3s ease;
}

@media (hover: hover) {
  .header__nav-item:hover .header__nav-link {
    color: #298A00;
  }
  .header__nav-item:hover .header__nav-link::after {
    border-color: #298A00;
  }
  .header__nav-item:hover .header__nav-sub-list {
    opacity: 1;
    visibility: visible;
  }
}
.header__nav-link {
  display: block;
  color: #403224;
  font-size: 1.125rem;
  font-family: "Zen Old Mincho", serif;
  line-height: 1.4444444444;
  letter-spacing: 0em;
  position: relative;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

.header__nav-sub-list {
  position: absolute;
  top: 1.875rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: #ffffff;
  border-top: 0.125rem solid #298A00;
  padding: 1.375rem 1.5rem 1.5rem;
  z-index: 10;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s ease, visibility 0.3s ease;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.header__nav-sub-list::before {
  content: "";
  position: absolute;
  top: -0.625rem;
  left: 0;
  width: 100%;
  height: 1.75rem;
  background: transparent;
}

.header__nav-sub-item {
  margin-top: 1.25rem;
}

.header__nav-sub-item:first-child {
  margin-top: 0;
}

.header__nav-sub-link {
  position: relative;
  display: block;
  padding-left: 1rem;
  font-size: 0.875rem;
  line-height: 1.5;
  letter-spacing: 0.03em;
  white-space: nowrap;
  color: #1a1a1a;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

.header__nav-sub-link::before,
.header__nav-sub-link::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 6px;
  height: 1px;
  background-color: #298A00;
  -webkit-transform-origin: calc(100% - 0.5px) 50%;
          transform-origin: calc(100% - 0.5px) 50%;
}

.header__nav-sub-link::before {
  -webkit-transform: rotate(40deg);
          transform: rotate(40deg);
}

.header__nav-sub-link::after {
  -webkit-transform: rotate(-40deg);
          transform: rotate(-40deg);
}

@media (hover: hover) {
  .header__nav-sub-link:hover {
    color: #298A00;
  }
}
/*

hamburger-btn

***************************************/
.hamburger-btn {
  display: none;
}
@media (width < 1261px) {
  .hamburger-btn {
    display: block;
    background-color: #298A00;
    position: relative;
    width: 3.75rem;
    height: 3.75rem;
    cursor: pointer;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
}

.hamburger-btn__line {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1.4375rem;
  height: 2px;
  background-color: #ffffff;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: inherit;
  transition: inherit;
}

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

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

.hamburger-btn[aria-expanded=true] .hamburger-btn__line {
  background-color: transparent;
}

.hamburger-btn[aria-expanded=true] .hamburger-btn__line::before {
  top: 0;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  background-color: #ffffff;
}

.hamburger-btn[aria-expanded=true] .hamburger-btn__line::after {
  top: 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  background-color: #ffffff;
}

/*

global-menu (SP drawer)

***************************************/
.global-menu {
  position: fixed;
  top: 4.625rem;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99;
  background-color: #403224;
  overflow-y: auto;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease, visibility 0.3s ease;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
@media (width < 1261px) {
  .global-menu {
    top: 3.75rem;
  }
}

.global-menu[aria-hidden=false] {
  visibility: visible;
  opacity: 1;
}

.global-menu__inner {
  padding: 4.34375rem 3.125rem 6.0625rem;
}

.global-menu__item {
  border-bottom: 1px solid #8B7A69;
}

.global-menu__item:last-of-type {
  border-bottom: none;
}

.global-menu__link {
  display: block;
  color: #ffffff;
  font-family: "Zen Old Mincho", serif;
  font-size: 1.125rem;
  line-height: 1.4444444444;
  letter-spacing: 0em;
  margin: 0.875rem 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media (hover: hover) {
  .global-menu__link:hover {
    opacity: 0.7;
  }
}
@media (hover: none) {
  .global-menu__link:active {
    opacity: 0.7;
  }
}

.global-menu__item--has-child .global-menu__link {
  padding-bottom: 0rem;
}

.global-menu__item:last-of-type .global-menu__link {
  padding-bottom: 0;
}

.global-menu__sub-list {
  display: grid;
  gap: 0.9375rem;
  padding-bottom: 0.875rem;
  margin-top: 1.5625rem;
}

.global-menu__sub-link {
  color: #ffffff;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 0.9375rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
  position: relative;
  padding-left: 1.0625rem;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media (hover: hover) {
  .global-menu__sub-link:hover {
    opacity: 0.7;
  }
}
@media (hover: none) {
  .global-menu__sub-link:active {
    opacity: 0.7;
  }
}

.global-menu__sub-link::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 0.4375rem;
  height: 0.0625rem;
  background-color: #8B7A69;
  border-radius: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.global-menu__btn-area {
  display: grid;
  gap: 1.25rem;
  margin-top: 2.75rem;
}

.global-menu__btn {
  display: grid;
  place-items: center;
  padding: 0.875rem;
  font-size: 0.9375rem;
  line-height: 1.4666666667;
  letter-spacing: 0.03em;
  color: #ffffff;
  border-radius: 0.375rem;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media (hover: hover) {
  .global-menu__btn:hover {
    opacity: 0.8;
  }
}

.global-menu__btn--faq {
  background-color: #3E603B;
}

.global-menu__btn--contact {
  background-color: #E68615;
}

.global-menu__btn--normal {
  color: #403224;
  background-color: #ffffff;
  font-family: "Zen Old Mincho", serif;
  font-weight: 500;
  border-radius: 3px;
}

/*

Page：style.scss

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

Page: footer.scss

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

contact

***************************************/
.contact {
  background-color: #ffffff;
  padding: 4.375rem 1.25rem;
}

.contact__img {
  max-width: 6.875rem;
  margin: -6.8125rem auto 0;
}

.contact__text {
  font-size: 1.125rem;
  letter-spacing: 0.06em;
  line-height: 1.8333333333;
  margin-top: 1.625rem;
  text-align: center;
}

.contact__btn {
  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: 0.9375rem;
  background-color: #298A00;
  max-width: 26.25rem;
  margin: 2.375rem auto 0;
  padding: 2.625rem 1rem;
  border-radius: 5px;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media (hover: hover) {
  .contact__btn:hover {
    opacity: 0.8;
  }
}
@media (hover: none) {
  .contact__btn:active {
    opacity: 0.8;
  }
}

.contact__btn-img {
  max-width: 2.625rem;
}

.contact__btn-img img {
  aspect-ratio: 42/29;
}

.contact__btn-text {
  color: #ffffff;
  font-size: 1rem;
  line-height: 1.5;
}

/*

footer

***************************************/
.footer {
  background-color: #403224;
  padding: 5rem 1.5rem 2.125rem;
}
@media (width < 576px) {
  .footer {
    padding-top: 4.375rem;
    padding-bottom: 0.5rem;
  }
}

.footer__body {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
@media (width < 1261px) {
  .footer__body {
    gap: 5rem;
  }
}
@media (width < 576px) {
  .footer__body {
    gap: 3.75rem;
    max-width: 100%;
  }
}

.footer__company {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(2.5rem, 7.2vw, 6.75rem);
}
@media (width < 576px) {
  .footer__company {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

.footer__logo {
  display: grid;
  grid-template-columns: 1fr;
}

.footer__logo-small-text {
  color: #ffffff;
  font-family: "Zen Old Mincho", serif;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.4444444444;
  letter-spacing: 0.1em;
}

.footer__logo-text {
  color: #ffffff;
  font-family: "Zen Old Mincho", serif;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.4375;
  letter-spacing: 0.16em;
  margin-top: -2px;
}

.footer__address {
  font-style: normal;
  margin-top: 9px;
  margin-left: -5px;
}
@media (width < 576px) {
  .footer__address {
    margin-left: 0;
    margin-top: 0;
  }
}
.footer__address p + p {
  margin-top: 0.625rem;
}

.footer__address-line {
  color: #ffffff;
  font-size: 0.9375rem;
  line-height: 1.4;
  letter-spacing: 0.05em;
  opacity: 0.8;
}

.footer__address-link {
  color: #ffffff;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media (hover: hover) {
  .footer__address-link:hover {
    opacity: 0.8;
  }
}
@media (hover: none) {
  .footer__address-link:active {
    opacity: 0.8;
  }
}

.footer__nav {
  padding-right: 2.3125rem;
  max-width: 78.75rem;
  margin: 0 auto;
  width: 100%;
}
@media (width < 1261px) {
  .footer__nav {
    padding-right: 0;
  }
}

.footer__nav-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2.90625rem;
}
@media (width < 1261px) {
  .footer__nav-list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (width < 893px) {
  .footer__nav-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 5rem;
  }
}
@media (width < 576px) {
  .footer__nav-list {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

.footer__nav-col {
  border-top: 1px solid #8B7A69;
  padding-top: 0.875rem;
}
@media (width < 576px) {
  .footer__nav-col {
    padding: 1.25rem 0;
  }
}

.footer__nav-col--inner {
  margin-top: 2.875rem;
}
@media (width < 576px) {
  .footer__nav-col--inner {
    margin-top: 1.25rem;
  }
}

@media (width < 576px) {
  .footer__nav-col--last {
    padding-bottom: 0;
  }
}

.footer__nav-link {
  display: block;
  color: #ffffff;
  font-family: "Zen Old Mincho", serif;
  font-size: 1.125rem;
  line-height: 1.4444444444;
  letter-spacing: 0em;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media (hover: hover) {
  .footer__nav-link:hover {
    opacity: 0.7;
  }
}
@media (hover: none) {
  .footer__nav-link:active {
    opacity: 0.7;
  }
}

.footer__sub-list {
  display: grid;
  gap: 0.8125rem;
  padding-left: 1.0625rem;
  margin-top: 1.5rem;
}
@media (width < 576px) {
  .footer__sub-list {
    margin-top: 1.25rem;
  }
}

.footer__sub-link {
  color: #ffffff;
  font-size: 0.9375rem;
  line-height: 1.4;
  letter-spacing: 0.05em;
  position: relative;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media (hover: hover) {
  .footer__sub-link:hover {
    opacity: 0.8;
  }
}
@media (hover: none) {
  .footer__sub-link:active {
    opacity: 0.8;
  }
}

.footer__sub-link::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -1.0625rem;
  width: 0.625rem;
  height: 1px;
  background-color: #8B7A69;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.footer__btn-area {
  display: grid;
  gap: 0.625rem;
  margin-top: 2.9375rem;
}
@media (width < 576px) {
  .footer__btn-area {
    margin-top: 1.25rem;
    gap: 1.25rem;
  }
}

.footer__btn {
  display: grid;
  place-items: center;
  padding: 0.90625rem;
  font-family: "Zen Old Mincho", serif;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.4444444444;
  letter-spacing: 0em;
  color: #403224;
  background-color: #ffffff;
  border-radius: 0.1875rem;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media (hover: hover) {
  .footer__btn:hover {
    opacity: 0.8;
  }
}
@media (hover: none) {
  .footer__btn:active {
    opacity: 0.8;
  }
}

.footer__copyright {
  text-align: center;
  color: #ffffff;
  font-size: 0.625rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
  padding-top: 3.3125rem;
}

/*

Page：style.scss

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

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.5rem;
  margin-top: 5rem;
}

.wp-pagenavi a {
  border: none;
  color: #7C7C7C;
  font-size: 1rem;
  letter-spacing: 0.04em;
  line-height: 1.5;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-weight: 500;
}

.wp-pagenavi .current {
  color: #298A00;
  border: none;
}

.wp-pagenavi .first {
  margin-right: 1.5625rem;
  border: none;
}

.wp-pagenavi .last {
  margin-left: 1.5625rem;
  border: none;
}

.wp-pagenavi a, .wp-pagenavi span {
  border: none !important;
}

/*

Page：style.scss

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

Page: breadcrumb.scss

***************************************/
.breadcrumb {
  background-color: #FCF8F2;
  padding-top: 0.3125rem;
}
@media (width < 1261px) {
  .breadcrumb {
    padding-top: 0.75rem;
  }
}

.breadcrumb__list {
  font-size: 0.8125rem;
  line-height: 1.4615384615;
  letter-spacing: 0em;
  color: #403224;
}

/*

Page：style.scss

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

Page: top-page

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

top-gallery

***************************************/
.top-gallery__slider {
  overflow: hidden;
  padding-top: 9.375rem;
}
@media (width < 1261px) {
  .top-gallery__slider {
    padding-top: 8rem;
  }
}
@media (width < 576px) {
  .top-gallery__slider {
    padding-top: 4.6875rem;
  }
}

.top-gallery__slide {
  padding: 0 0.3125rem;
}
@media (width < 576px) {
  .top-gallery__slide {
    padding: 0 0.25rem;
  }
}

.top-gallery__slide-img img {
  border-radius: 1.25rem;
  aspect-ratio: 1/1;
}

.top-gallery__body {
  display: grid;
  grid-template-columns: 1fr auto;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  padding: 1.75rem 3.125rem 0;
}
@media (width < 1261px) {
  .top-gallery__body {
    padding: 3rem 1.25rem 0;
  }
}
@media (width < 893px) {
  .top-gallery__body {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding-top: 2rem;
  }
}

.top-gallery__text {
  color: #403224;
  font-family: "Zen Old Mincho", serif;
  font-size: 4.3333333333vw;
  font-weight: 500;
  line-height: 1.5384615385;
  letter-spacing: 0em;
}
@media (width < 576px) {
  .top-gallery__text {
    font-size: 9.3457943925vw;
    line-height: 1.325;
  }
}

.top-gallery__link {
  margin-top: -4.5rem;
  max-width: 19.4666666667vw;
  position: relative;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  z-index: 1;
}
@media (width < 893px) {
  .top-gallery__link {
    max-width: 26.6666666667vw;
    margin: 1.6875rem auto 0;
  }
}
@media (width < 576px) {
  .top-gallery__link {
    max-width: 51.8691588785vw;
  }
}
@media (hover: hover) {
  .top-gallery__link:hover {
    opacity: 0.8;
  }
}
@media (hover: none) {
  .top-gallery__link:active {
    opacity: 0.8;
  }
}

.top-gallery__link img {
  aspect-ratio: 1/1;
}

/*

top-lineup

***************************************/
.top-lineup {
  position: relative;
  padding: 14.1875rem 0 30.875rem;
  background-image: url("../img/layout/top/lineup-bg.jpg");
  background-size: contain;
  background-position: center bottom;
  background-repeat: no-repeat;
  overflow: hidden;
}
@media (width < 1261px) {
  .top-lineup {
    padding: 4.375rem 0 23.75rem;
  }
}
@media (width < 893px) {
  .top-lineup {
    padding: 11.9375rem 0 13.75rem;
  }
}
@media (width < 576px) {
  .top-lineup {
    background-size: 390%;
    padding: 3.75rem 0 28.625rem;
  }
}

.top-lineup__img01 {
  position: absolute;
  left: -3.125rem;
  bottom: 0;
  max-width: 21.8125rem;
}
@media (width < 1261px) {
  .top-lineup__img01 {
    max-width: 23.2666666667vw;
  }
}
@media (width < 893px) {
  .top-lineup__img01 {
    left: -1.125rem;
  }
}
@media (width < 576px) {
  .top-lineup__img01 {
    max-width: 11rem;
    bottom: 4.25rem;
  }
}

.top-lineup__img02 {
  position: absolute;
  right: 0;
  bottom: 0;
  max-width: 21.3125rem;
}
@media (width < 1261px) {
  .top-lineup__img02 {
    max-width: 22.7333333333vw;
  }
}
@media (width < 576px) {
  .top-lineup__img02 {
    max-width: 16.25rem;
    right: -2.8125rem;
  }
}

.top-lineup__img01 img {
  aspect-ratio: 349/253;
}

.top-lineup__img02 img {
  aspect-ratio: 341/298;
}

.top-lineup__inner {
  position: relative;
  z-index: 1;
}

.top-lineup__text {
  font-size: 1.125rem;
  letter-spacing: 0.06em;
  line-height: 2.3333333333;
  text-align: center;
  margin-top: 2.6875rem;
  padding: 0 1rem;
}
@media (width < 576px) {
  .top-lineup__text {
    text-align: left;
  }
}

.top-lineup__btn-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: clamp(1.25rem, 3.7333333333vw, 3.5rem);
  max-width: 56.25rem;
  margin: 3.4375rem auto 0;
}
@media (width < 1261px) {
  .top-lineup__btn-list {
    gap: clamp(1.125rem, 2.5333333333vw, 2.375rem);
    max-width: 90%;
    width: 56.25rem;
  }
}
@media (width < 576px) {
  .top-lineup__btn-list {
    grid-template-columns: 1fr;
    gap: 1.875rem;
  }
}

.top-lineup__btn-item {
  border-radius: 5px;
}

.top-lineup__btn {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.1875rem;
  -webkit-box-shadow: inset 0 0 0 5px #298A00, inset 0 0 0 6px rgba(255, 255, 255, 0.75);
          box-shadow: inset 0 0 0 5px #298A00, inset 0 0 0 6px rgba(255, 255, 255, 0.75);
  padding: 2.5625rem 1rem;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media (width < 1261px) {
  .top-lineup__btn {
    padding: 1.5rem 0.5rem;
  }
}
@media (width < 893px) {
  .top-lineup__btn {
    min-width: auto;
  }
}
@media (width < 576px) {
  .top-lineup__btn {
    padding: 2.4375rem 0 2rem;
    max-width: 21.25rem;
    margin: 0 auto;
    gap: 1rem;
  }
}

.top-lineup__btn-arrow {
  position: static;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  width: 1.875rem;
  height: 1.875rem;
}
@media (width < 576px) {
  .top-lineup__btn-arrow {
    width: 1.625rem;
    height: 1.5rem;
  }
}
.top-lineup__btn-arrow .arrow {
  width: 1rem;
  height: 1.5px;
}
.top-lineup__btn-arrow .arrow::before, .top-lineup__btn-arrow .arrow::after {
  width: 0.5rem;
  height: 1.5px;
}

.top-lineup__btn-text {
  font-size: 1.625rem;
  line-height: 1.4230769231;
}
@media (width < 1261px) {
  .top-lineup__btn-text {
    font-size: 1rem;
  }
}
@media (width < 576px) {
  .top-lineup__btn-text {
    font-size: 1.375rem;
    line-height: 1.4545454545;
  }
}

/*

.top-intro-img

***************************************/
.top-intro-img {
  max-width: 33.3125rem;
  margin: 1.25rem auto 0;
}
@media (width < 576px) {
  .top-intro-img {
    max-width: 85%;
  }
}

.top-intro-img img {
  aspect-ratio: 533/265;
}

/*

top-about

***************************************/
.top-about {
  padding-top: 8.75rem;
}
@media (width < 893px) {
  .top-about {
    padding-top: 4.375rem;
  }
}

.top-about__inner {
  display: grid;
  grid-template-columns: 6.57fr 6.3fr;
  gap: clamp(2.5rem, 6.2vw, 5.8125rem);
  max-width: 86.25rem;
  margin-right: auto;
}
@media (width < 893px) {
  .top-about__inner {
    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: 3rem;
  }
}

.top-about__img-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.375rem;
  margin-bottom: auto;
}

.top-about__img-item--main {
  grid-column: 1/-1;
}

.top-about__img-item img {
  aspect-ratio: 325/234;
}

.top-about__img-item--main img {
  aspect-ratio: 657/361;
  border-radius: 0 1.25rem 0 0;
}
@media (width < 1261px) {
  .top-about__img-item--main img {
    aspect-ratio: 657/423;
  }
}

.top-about__img-item:nth-child(3) img {
  border-radius: 0 0 1.25rem 0;
}

.top-about__body {
  padding-right: 1.5rem;
}
@media (width < 893px) {
  .top-about__body {
    max-width: 90%;
    margin: 0 auto;
    padding-right: 0;
  }
}

.top-about__text {
  font-size: 1.125rem;
  line-height: 2.3333333333;
  letter-spacing: 0.06em;
  margin-top: 2.5625rem;
}

.top-about__btn-wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1.25rem, 2.6666666667vw, 2.5rem);
  margin-top: 3.25rem;
}
@media (width < 1261px) {
  .top-about__btn-wrap {
    grid-template-columns: 1fr;
  }
}
@media (width < 893px) {
  .top-about__btn-wrap {
    max-width: 20rem;
    margin: 3.75rem auto 0;
  }
}
@media (width < 576px) {
  .top-about__btn-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    max-width: 17.6875rem;
  }
}

@media (width < 1261px) {
  .top-about__btn {
    min-width: auto;
  }
}

/*

top-efforts

***************************************/
.top-efforts {
  padding-top: 6.25rem;
}
@media (width < 893px) {
  .top-efforts {
    padding-top: 3.75rem;
  }
}
@media (width < 576px) {
  .top-efforts {
    padding-top: 7.375rem;
  }
}

.top-efforts__inner {
  max-width: 78.75rem;
  margin: 0 auto;
}
@media (width < 1261px) {
  .top-efforts__inner {
    max-width: 90%;
  }
}

.top-efforts__block {
  background-color: #ffffff;
  position: relative;
  padding: 6.4375rem 2.125rem 5.75rem;
  text-align: center;
  -webkit-box-shadow: inset 0 0 0 9px #ffffff, inset 0 0 0 10px rgba(62, 96, 59, 0.75);
          box-shadow: inset 0 0 0 9px #ffffff, inset 0 0 0 10px rgba(62, 96, 59, 0.75);
}
@media (width < 893px) {
  .top-efforts__block {
    padding: 2.5rem 1.5rem;
  }
}
@media (width < 576px) {
  .top-efforts__block {
    padding: 6.3125rem 1.875rem 4.5rem;
  }
}

.top-efforts__deco {
  position: absolute;
  top: -2.875rem;
  right: 0;
  max-width: 15.75rem;
}
@media (width < 893px) {
  .top-efforts__deco {
    max-width: 9.375rem;
    top: -1.5rem;
  }
}
@media (width < 576px) {
  .top-efforts__deco {
    max-width: 11.125rem;
    top: -3rem;
  }
}

.top-efforts__deco img {
  aspect-ratio: 252/185;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (width < 576px) {
  .top-efforts__deco img {
    aspect-ratio: 178/130;
  }
}

.top-efforts__heading {
  color: #3E603B;
  font-size: 1.5rem;
  line-height: 1.25;
}

.top-efforts__text {
  font-size: 0.9375rem;
  line-height: 2.1333333333;
  letter-spacing: 0.05em;
  margin-top: 1.875rem;
}
@media (width < 893px) {
  .top-efforts__text {
    text-align: left;
  }
}

.top-efforts__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin: 2.8125rem auto 0;
  max-width: 43.75rem;
}
@media (width < 893px) {
  .top-efforts__list {
    gap: 0.75rem;
  }
}
@media (width < 576px) {
  .top-efforts__list {
    grid-template-columns: 1fr;
    gap: 0.875rem;
  }
}

.top-efforts__item {
  background-color: #F3F7ED;
  padding: 1rem 0.5rem 1.375rem;
  display: grid;
  justify-items: center;
  gap: 0.3125rem;
  border-radius: 8px;
}
@media (width < 576px) {
  .top-efforts__item {
    padding: 0.5rem 0.625rem 0.5rem 1.40625rem;
    border-radius: 5px;
    grid-template-columns: 3.125rem auto;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 0.75rem;
  }
}

.top-efforts__item-img {
  max-width: 3.125rem;
}

.top-efforts__item-img img {
  aspect-ratio: 1/1;
}

.top-efforts__item-text {
  color: #3E603B;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  line-height: 1.4285714286;
}
@media (width < 576px) {
  .top-efforts__item-text {
    text-align: left;
  }
}

.top-efforts__btn-wrap {
  display: grid;
  justify-items: center;
  margin-top: 3.75rem;
}

.top-efforts__bg {
  margin-top: -4.6875rem;
}
@media (width < 893px) {
  .top-efforts__bg {
    margin-top: -3.75rem;
  }
}

.top-efforts__bg img {
  aspect-ratio: 1500/429;
}
@media (width < 576px) {
  .top-efforts__bg img {
    -o-object-fit: cover;
       object-fit: cover;
    aspect-ratio: 325/249;
    -o-object-position: 63% 50%;
       object-position: 63% 50%;
  }
}

/*

top-recruit

***************************************/
.top-recruit {
  padding-top: 6.25rem;
}
@media (width < 893px) {
  .top-recruit {
    padding-top: 4.375rem;
  }
}

.top-recruit__inner {
  display: grid;
  grid-template-columns: 6.3fr 6.58fr;
  gap: clamp(2.5rem, 6.1333333333vw, 5.75rem);
  max-width: 86.25rem;
  margin-left: auto;
}
@media (width < 893px) {
  .top-recruit__inner {
    grid-template-columns: 1fr;
    gap: 5rem;
  }
}

.top-recruit__body {
  padding-left: 1.5rem;
}
@media (width < 893px) {
  .top-recruit__body {
    text-align: center;
    padding: 0 1.25rem;
  }
}

.top-recruit__lead {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.4583333333;
  margin-top: 3.125rem;
}
@media (width < 893px) {
  .top-recruit__lead {
    font-size: 1rem;
  }
}
@media (width < 576px) {
  .top-recruit__lead {
    text-align: left;
  }
}

.top-recruit__text {
  font-size: 1.125rem;
  line-height: 2.3333333333;
  letter-spacing: 0.06em;
  margin-top: 1.25rem;
}
@media (width < 893px) {
  .top-recruit__text {
    font-size: 0.875rem;
  }
}
@media (width < 576px) {
  .top-recruit__text {
    text-align: left;
  }
}

.top-recruit__btn-wrap {
  margin-top: 3.25rem;
  max-width: 17.6875rem;
}
@media (width < 893px) {
  .top-recruit__btn-wrap {
    margin: 3.25rem auto 0;
  }
}

.top-recruit__img-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.375rem;
  align-self: start;
}

.top-recruit__img-item--main {
  grid-column: 1/-1;
}

.top-recruit__img-item img {
  aspect-ratio: 326/231;
}

.top-recruit__img-item--main img {
  aspect-ratio: 658/402;
  border-radius: 1.25rem 0 0 0;
}

.top-recruit__img-item:nth-of-type(2) img {
  border-radius: 0 0 0 1.25rem;
}

/*

top-faq

***************************************/
.top-faq {
  padding-top: 9.375rem;
}
@media (width < 893px) {
  .top-faq {
    padding-top: 6.25rem;
  }
}

.top-faq__block {
  display: grid;
  grid-template-columns: 3.65fr 5.3fr;
  background-color: #ffffff;
  max-width: 57.5rem;
  margin: 0 auto;
  border: 1px solid #45392E;
  padding: 2.375rem 5rem;
}
@media (width < 893px) {
  .top-faq__block {
    padding: 2rem;
    grid-template-columns: 14.0625rem auto;
  }
}
@media (width < 576px) {
  .top-faq__block {
    padding: 2.5rem 1.875rem 3.125rem;
    grid-template-columns: 1fr;
  }
}

.top-faq__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-right: 1px solid #45392E;
  padding-right: 1rem;
  height: 100%;
}
@media (width < 576px) {
  .top-faq__left {
    border-right: none;
    border-bottom: 1px solid #45392E;
    padding-right: 0;
    padding-bottom: 0.875rem;
  }
}

@media (width < 893px) {
  .top-faq__head-en {
    font-size: 1.125rem;
  }
}
@media (width < 576px) {
  .top-faq__head-en {
    font-size: 1.1875rem;
  }
}

@media (width < 893px) {
  .top-faq__head-text {
    font-size: 1.5rem;
  }
}
@media (width < 576px) {
  .top-faq__head-text {
    font-size: 1.5rem;
  }
}

.top-faq__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.625rem;
  margin-top: 0.3125rem;
}
@media (width < 576px) {
  .top-faq__title {
    gap: 2.6875rem;
  }
}

.top-faq__title-icon {
  max-width: 3.125rem;
}

.top-faq__title-icon img {
  aspect-ratio: 1/1;
}

.top-faq__right {
  padding: 0.9375rem 0 1.25rem 2.8125rem;
}
@media (width < 893px) {
  .top-faq__right {
    padding-left: 1.5rem;
  }
}
@media (width < 576px) {
  .top-faq__right {
    padding: 1.4375rem 0 0;
  }
}

.top-faq__text {
  font-size: 0.9375rem;
  line-height: 2.1333333333;
  letter-spacing: 0.05em;
}

.top-faq__link {
  display: grid;
  grid-template-columns: auto 1.3125rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.25rem;
  justify-self: end;
  margin-top: 1.5625rem;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media (width < 576px) {
  .top-faq__link {
    margin-top: 2.5rem;
  }
}
@media (hover: hover) {
  .top-faq__link:hover {
    opacity: 0.7;
  }
}
@media (hover: none) {
  .top-faq__link:active {
    opacity: 0.7;
  }
}

.top-faq__link-text {
  color: #3E603B;
  font-size: 0.9375rem;
  letter-spacing: 0.05em;
  line-height: 1.4;
}

.top-faq__link-icon {
  display: grid;
  place-items: center;
  width: 1.3125rem;
  height: 1.1875rem;
  background-color: #298A00;
  border-radius: 3px;
}

/*

top-news

***************************************/
.top-news {
  padding-top: 9.375rem;
  padding-bottom: 11.8125rem;
}
@media (width < 893px) {
  .top-news {
    padding-top: 6.25rem;
    padding-bottom: 10.1875rem;
  }
}

.top-news__inner {
  display: grid;
  grid-template-columns: 7.1875rem 1fr;
  gap: clamp(5.625rem, 10vw, 9.375rem);
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  max-width: 81.25rem;
  padding: 0 1.25rem;
  margin: 0 auto;
}
@media (width < 1261px) {
  .top-news__inner {
    max-width: 90%;
    padding: 0;
  }
}
@media (width < 893px) {
  .top-news__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.top-news__head {
  text-align: center;
}

.top-news__body {
  max-width: 51.3125rem;
  margin-top: 0.3125rem;
}

.top-news__item {
  border-bottom: 1px solid #DED6CD;
}

.top-news__row {
  display: grid;
  grid-template-columns: auto 4.875rem 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 1.875rem 0;
}
@media (width < 576px) {
  .top-news__row {
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    row-gap: 0.5rem;
    padding: 1.125rem 0;
  }
}

.top-news__item:first-child .top-news__row {
  padding-top: 0;
}

.top-news__link {
  display: grid;
  grid-template-columns: 1fr auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: 1.40625rem;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media (hover: hover) {
  .top-news__link:hover {
    opacity: 0.7;
  }
}
@media (hover: none) {
  .top-news__link:active {
    opacity: 0.7;
  }
}
@media (width < 576px) {
  .top-news__link {
    grid-column: 1/3;
    grid-row: 2;
    margin-left: 0;
  }
}

.top-news__tag {
  color: #DF1C07;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.4285714286;
  border-right: 1px solid #403224;
  padding-right: 1.5625rem;
}
@media (width < 576px) {
  .top-news__tag {
    grid-column: 1;
    grid-row: 1;
  }
}

.top-news__date {
  color: #403224;
  font-size: 0.875rem;
  line-height: 1.4285714286;
  margin-left: 1.40625rem;
}
@media (width < 576px) {
  .top-news__date {
    grid-column: 2;
    grid-row: 1;
  }
}

.top-news__text {
  color: #403224;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.05em;
}

.top-news__icon {
  display: grid;
  place-items: center;
  width: 1.3125rem;
  height: 1.1875rem;
  background-color: #E68615;
  border-radius: 0.1875rem;
}

.top-news__more {
  display: grid;
  justify-items: end;
  margin-top: 2.1875rem;
}

.top-news__more-link {
  display: grid;
  grid-template-columns: auto 1.3125rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.25rem;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media (hover: hover) {
  .top-news__more-link:hover {
    opacity: 0.7;
  }
}
@media (hover: none) {
  .top-news__more-link:active {
    opacity: 0.7;
  }
}

.top-news__more-text {
  font-size: 0.9375rem;
  letter-spacing: 0.05em;
  line-height: 1.4285714286;
}

.top-news__more-icon {
  display: grid;
  place-items: center;
  width: 1.3125rem;
  height: 1.1875rem;
  background-color: #E68615;
  border-radius: 0.1875rem;
}

/*

Page：style.scss

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

Page: initiatives

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

initiatives-feature

***************************************/
.initiatives-feature {
  padding: 7.5rem 1.5rem 0;
}
@media (width < 893px) {
  .initiatives-feature {
    padding: 5rem 0 0;
  }
}

.initiatives-feature__head-img {
  max-width: 3.125rem;
}

.section-head__text {
  margin-top: 0.375rem;
}

.initiatives-feature__lead {
  max-width: 67.5rem;
  margin: 3.75rem auto 0;
  padding: 0 3.125rem;
  text-align: center;
}
@media (width < 1261px) {
  .initiatives-feature__lead {
    padding: 0 1.25rem;
  }
}
@media (width < 576px) {
  .initiatives-feature__lead {
    margin-top: 2.5rem;
    padding: 0;
  }
}

.initiatives-feature__lead-title {
  font-family: "Zen Old Mincho", serif;
  font-size: 2.125rem;
  font-weight: 500;
  line-height: 1.4411764706;
  letter-spacing: 0.05em;
  color: #403224;
}
@media (width < 893px) {
  .initiatives-feature__lead-title {
    font-size: 1.75rem;
  }
}
@media (width < 576px) {
  .initiatives-feature__lead-title {
    font-size: 1.375rem;
    line-height: 1.5454545455;
  }
}

.initiatives-feature__lead-text {
  font-family: "Zen Old Mincho", serif;
  font-size: 1.25rem;
  line-height: 1.45;
  margin-top: 1.25rem;
  color: #403224;
}

/*

initiatives-block

***************************************/
.initiatives-block {
  max-width: 78.75rem;
  margin: 6.25rem auto 0;
  display: grid;
  gap: 6.25rem;
}
@media (width < 1261px) {
  .initiatives-block {
    gap: 5rem;
  }
}
@media (width < 576px) {
  .initiatives-block {
    margin-top: 3.5rem;
    gap: 3rem;
  }
}

.initiatives-block__item {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media (width < 893px) {
  .initiatives-block__item {
    grid-template-columns: 1fr;
  }
}

.initiatives-block__item--reverse {
  grid-template-columns: 1fr 1fr;
}
@media (width < 893px) {
  .initiatives-block__item--reverse {
    grid-template-columns: 1fr;
  }
}

.initiatives-block__item--reverse .initiatives-block__img {
  grid-column: 2;
  grid-row: 1;
}
@media (width < 893px) {
  .initiatives-block__item--reverse .initiatives-block__img {
    grid-column: 1;
    grid-row: 1;
  }
}

.initiatives-block__item--reverse .initiatives-block__body {
  grid-column: 1;
  grid-row: 1;
  margin-left: 0;
  margin-right: -3.75rem;
  border-radius: 0 5rem 0 0;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
@media (width < 1261px) {
  .initiatives-block__item--reverse .initiatives-block__body {
    padding: 3.625rem 2.125rem 1.25rem 1.25rem;
    margin-right: -1.25rem;
    border-radius: 2.5rem 0 0 0;
  }
}
@media (width < 893px) {
  .initiatives-block__item--reverse .initiatives-block__body {
    grid-column: 1;
    grid-row: 2;
    margin-right: 0;
  }
}

.initiatives-block__img {
  max-width: 39.375rem;
}

.initiatives-block__img img {
  aspect-ratio: 630/460;
  border-radius: 0.625rem;
}

.initiatives-block__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: auto;
  background-color: #FCF8F2;
  -webkit-transform: translateY(0.625rem);
          transform: translateY(0.625rem);
  border-radius: 5rem 0 0 0;
  padding: 2.5rem 3.5rem 2.5rem 3.75rem;
  margin-left: -3.9375rem;
  position: relative;
  z-index: 1;
}
@media (width < 1261px) {
  .initiatives-block__body {
    padding: 3.625rem 1.25rem 1.25rem 2.125rem;
    margin-left: -1.25rem;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    margin-top: -2.5rem;
  }
}
@media (width < 893px) {
  .initiatives-block__body {
    margin-left: 0;
    border-radius: 2.5rem 0 0 0;
    padding: 2rem 1.75rem;
  }
}

.initiatives-block__title {
  font-family: "Zen Old Mincho", serif;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.4583333333;
  letter-spacing: 0.05em;
  color: #298A00;
  padding-bottom: 1rem;
  position: relative;
}
@media (width < 576px) {
  .initiatives-block__title {
    font-size: 1.125rem;
    line-height: 1.5555555556;
  }
}

.initiatives-block__title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1.875rem;
  height: 1px;
  background-color: #298A00;
}

.initiatives-block__text {
  font-size: 1.125rem;
  line-height: 2.3333333333;
  margin-top: 1.5rem;
  letter-spacing: 0.06em;
  color: #403224;
}
@media (width < 576px) {
  .initiatives-block__text {
    font-size: 1rem;
  }
}

.initiatives-block__body .link-arrow {
  margin-top: 1.25rem;
}

/*

initiatives-safety

***************************************/
.initiatives-safety {
  padding: 10rem 1.5rem 0;
}
@media (width < 893px) {
  .initiatives-safety {
    padding: 7.5rem 0 0;
  }
}
@media (width < 576px) {
  .initiatives-safety {
    padding: 4.25rem 0 0;
  }
}

.initiatives-safety__head-img {
  max-width: 3.625rem;
}

.initiatives-safety__head-text {
  margin-top: 0.3125rem;
}

.initiatives-safety__note {
  font-family: "Zen Old Mincho", serif;
  margin-top: 3.75rem;
  font-size: 1.5rem;
  line-height: 1.7916666667;
  color: #298A00;
  text-align: center;
}
@media (width < 1261px) {
  .initiatives-safety__note {
    max-width: 90%;
    -webkit-transform: translateX(24px);
            transform: translateX(24px);
  }
}
@media (width < 893px) {
  .initiatives-safety__note {
    font-size: 1.125rem;
  }
}
@media (width < 576px) {
  .initiatives-safety__note {
    font-size: 3.8666666667vw;
    margin-top: 2.5rem;
  }
}

/*

initiatives-panel

***************************************/
.initiatives-panel {
  margin-top: 3.75rem;
  display: grid;
  gap: 5rem;
}
@media (width < 576px) {
  .initiatives-panel {
    margin-top: 3.375rem;
    gap: 2.375rem;
  }
}

.initiatives-panel__header {
  background-color: #298A00;
  padding: 0.75rem 1rem;
  text-align: center;
}

.initiatives-panel__label {
  color: #ffffff;
  font-size: 1.625rem;
  font-weight: 500;
  line-height: 1.4230769231;
  letter-spacing: 0.09em;
}
@media (width < 576px) {
  .initiatives-panel__label {
    font-size: 1.25rem;
  }
}

.initiatives-panel__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3.3333333333vw, 3.125rem);
  padding: 3.125rem 3.75rem 2.6875rem;
  background-color: #ffffff;
  border: 1px solid #298A00;
}
@media (width < 893px) {
  .initiatives-panel__cards {
    grid-template-columns: 1fr;
    padding: 2.375rem 1.25rem;
  }
}

@media (width < 893px) {
  .initiatives-panel__card {
    max-width: 21.625rem;
    margin: 0 auto;
  }
}

.initiatives-panel__card-title {
  font-family: "Zen Old Mincho", serif;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.4583333333;
  color: #298A00;
  text-align: center;
}
@media (width < 1261px) {
  .initiatives-panel__card-title {
    font-size: 1rem;
  }
}
@media (width < 893px) {
  .initiatives-panel__card-title {
    font-size: 1.125rem;
  }
}

.initiatives-panel__card-img {
  margin-top: 1.25rem;
  max-width: 21.625rem;
}

.initiatives-panel__card-img img {
  aspect-ratio: 346/230;
}

.initiatives-panel__card-text {
  font-size: 0.9375rem;
  line-height: 2.1333333333;
  letter-spacing: 0.05em;
  margin-top: 0.9375rem;
  color: #403224;
}

/*

initiatives-partner

***************************************/
.initiatives-partner__photos {
  margin-top: 3.75rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5625rem;
}
@media (width < 576px) {
  .initiatives-partner__photos {
    margin-top: 2.5rem;
    gap: 0.375rem;
  }
}

.initiatives-partner__photo {
  max-width: 30.875rem;
}
@media (width < 576px) {
  .initiatives-partner__photo {
    max-width: 100%;
  }
}

.initiatives-partner__photo img {
  aspect-ratio: 494/355;
}

.initiatives-partner__body {
  max-width: 68.75rem;
  margin: -4.0625rem auto 0;
  padding: 4.375rem 1.5rem;
  background-color: #FCF8F2;
  border-radius: 5rem;
  position: relative;
  z-index: 1;
  text-align: center;
}
@media (width < 1261px) {
  .initiatives-partner__body {
    max-width: 90%;
    margin-top: -3.75rem;
    padding: 3rem 1rem;
  }
}
@media (width < 893px) {
  .initiatives-partner__body {
    margin-top: -2.5rem;
  }
}
@media (width < 576px) {
  .initiatives-partner__body {
    margin: -2.5rem 1rem 0;
    border-radius: 2.5rem;
    padding: 2.25rem 1.5rem;
  }
}

.initiatives-partner__title {
  font-family: "Zen Old Mincho", serif;
  font-size: 1.9375rem;
  font-weight: 500;
  line-height: 1.4516129032;
  color: #298A00;
  letter-spacing: 0.05em;
}
@media (width < 893px) {
  .initiatives-partner__title {
    font-size: 1.25rem;
    line-height: 1.6;
  }
}

.initiatives-partner__text {
  font-size: 1.25rem;
  line-height: 2.25;
  margin-top: 2rem;
  color: #1a1a1a;
}
@media (width < 1261px) {
  .initiatives-partner__text {
    margin-top: 2.5rem;
  }
}
@media (width < 893px) {
  .initiatives-partner__text {
    font-size: 1rem;
    margin-top: 2.125rem;
  }
}
@media (width < 576px) {
  .initiatives-partner__text {
    text-align: left;
  }
}
.initiatives-partner__text + .initiatives-partner__text {
  margin-top: 2.8125rem;
}
@media (width < 1261px) {
  .initiatives-partner__text + .initiatives-partner__text {
    margin-top: 1.5rem;
  }
}
@media (width < 893px) {
  .initiatives-partner__text + .initiatives-partner__text {
    margin-top: 1.25rem;
  }
}

/*

initiatives-sdgs

***************************************/
.initiatives-sdgs {
  padding-top: 7.5rem;
}
@media (width < 893px) {
  .initiatives-sdgs {
    padding-top: 5rem;
  }
}
@media (width < 576px) {
  .initiatives-sdgs {
    padding-top: 3.75rem;
  }
}

.initiatives-sdgs__head-img {
  max-width: 3.625rem;
}

.initiatives-sdgs__head-text {
  color: #ffffff;
  margin-top: 0.25rem;
}

.initiatives-sdgs__lead {
  color: #ffffff;
  font-size: 1.125rem;
  line-height: 1.4444444444;
  padding: 0 3.125rem;
  max-width: 78.75rem;
  margin: 3.75rem auto 0;
  text-align: center;
}
@media (width < 1261px) {
  .initiatives-sdgs__lead {
    padding: 0 1.25rem;
  }
}
@media (width < 576px) {
  .initiatives-sdgs__lead {
    font-size: 1rem;
    margin-top: 2.125rem;
  }
}

.initiatives-sdgs__list {
  background-color: #ffffff;
  max-width: 84%;
  margin: 3.75rem auto 0;
  padding: 5rem 3.75rem;
  display: grid;
  gap: 5rem;
}
@media (width < 1261px) {
  .initiatives-sdgs__list {
    max-width: 90%;
    padding: 3rem 2rem;
    gap: 3.75rem;
  }
}
@media (width < 576px) {
  .initiatives-sdgs__list {
    margin-top: 3.75rem;
    padding: 2.125rem 1.25rem 3rem;
    gap: 2.5rem;
  }
}

.initiatives-sdgs__item-title {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.4583333333;
  color: #3E603B;
  padding-bottom: 0.5625rem;
  border-bottom: 1px solid #3E603B;
}
@media (width < 576px) {
  .initiatives-sdgs__item-title {
    font-size: 1.125rem;
  }
}

.initiatives-sdgs__item-body {
  display: grid;
  grid-template-columns: 6.5fr 4.3fr;
  gap: clamp(1.25rem, 3.9333333333vw, 3.6875rem);
  margin-top: 2.1875rem;
}
@media (width < 893px) {
  .initiatives-sdgs__item-body {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}
@media (width < 576px) {
  .initiatives-sdgs__item-body {
    margin-top: 1.25rem;
    gap: 1.25rem;
  }
}

.initiatives-sdgs__item-text {
  font-size: 0.9375rem;
  letter-spacing: 0.05em;
  line-height: 2.1333333333;
  color: #403224;
}

.initiatives-sdgs__item-label {
  font-size: 0.9375rem;
  line-height: 1.4;
  letter-spacing: 0.05em;
  color: #3E603B;
  margin-top: 1.5625rem;
}

.initiatives-sdgs__item-tags {
  display: grid;
  gap: 0.625rem;
  margin-top: 0.625rem;
}

.initiatives-sdgs__item-tag {
  font-size: 1.0625rem;
  line-height: 1.4705882353;
  letter-spacing: 0.06em;
  color: #298A00;
  background-color: #F3F7ED;
  padding: 0.5rem 1.625rem;
  border-radius: 0.5rem;
}
@media (width < 576px) {
  .initiatives-sdgs__item-tag {
    font-size: 0.875rem;
    padding: 0.5rem 1rem;
  }
}

.initiatives-sdgs__item-imgs {
  display: grid;
  grid-template-columns: repeat(4, 6.25rem);
  grid-template-rows: 6.25rem;
  gap: 0.625rem;
  margin-top: 0.3125rem;
}
@media (width < 1261px) {
  .initiatives-sdgs__item-imgs {
    grid-template-columns: repeat(auto-fill, 6.25rem);
  }
}
@media (width < 576px) {
  .initiatives-sdgs__item-imgs {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 1fr;
  }
}

.initiatives-sdgs__item-img {
  max-width: 22vw;
}

.initiatives-sdgs__item-img img {
  aspect-ratio: 1/1;
}

/*

initiatives-achievement

***************************************/
.initiatives-achievement {
  padding-top: 10rem;
}
@media (width < 1261px) {
  .initiatives-achievement {
    padding-top: 7.5rem;
  }
}
@media (width < 576px) {
  .initiatives-achievement {
    padding-top: 5rem;
  }
}

.initiatives-achievement__head {
  padding-right: 1.25rem;
  padding-left: 1.25rem;
}

.initiatives-achievement__head-text {
  color: #ffffff;
}

.initiatives-achievement__body {
  max-width: 84%;
  margin: 3.75rem auto 0;
  padding: 5rem 3.75rem 6.25rem;
  background-color: #ffffff;
}
@media (width < 1261px) {
  .initiatives-achievement__body {
    max-width: 90%;
    margin-top: 2.5rem;
    padding: 2rem 1.5rem;
  }
}
@media (width < 893px) {
  .initiatives-achievement__body {
    overflow-x: auto;
  }
}
@media (width < 576px) {
  .initiatives-achievement__body {
    padding: 1.5rem 1rem;
  }
}

.initiatives-achievement__table {
  width: 100%;
  border-collapse: collapse;
}
@media (width < 893px) {
  .initiatives-achievement__table {
    width: 71.25rem;
  }
}

.initiatives-achievement__th,
.initiatives-achievement__td {
  border: 1px solid #298A00;
}
.initiatives-achievement__th:nth-child(1),
.initiatives-achievement__td:nth-child(1) {
  width: 17.5%;
}
.initiatives-achievement__th:nth-child(2),
.initiatives-achievement__td:nth-child(2) {
  width: 28.5%;
}
.initiatives-achievement__th:nth-child(3),
.initiatives-achievement__td:nth-child(3) {
  width: 28.5%;
}
.initiatives-achievement__th:nth-child(4),
.initiatives-achievement__td:nth-child(4) {
  width: 25.5%;
}

.initiatives-achievement__th {
  background-color: #F3F7ED;
  padding: 0.96875rem 1.25rem 0.90625rem;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.06em;
  text-align: center;
  color: #403224;
}

.initiatives-achievement__td {
  padding: 1rem 1.4375rem 1.125rem 1.21875rem;
  font-size: 0.9375rem;
  line-height: 1.6666666667;
  letter-spacing: 0.05em;
  color: #1a1a1a;
  vertical-align: top;
}

.initiatives-achievement__td--imgs {
  padding: 1.125rem 4.25rem;
}

.initiatives-achievement__list-item {
  padding-left: 1rem;
  position: relative;
}
.initiatives-achievement__list-item::before {
  content: "";
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background-color: #403224;
  position: absolute;
  top: 0.875rem;
  left: 0.375rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.initiatives-achievement__imgs {
  display: grid;
  grid-template-columns: repeat(2, 4.375rem);
  gap: 0.625rem;
}

.initiatives-achievement__img img {
  aspect-ratio: 1/1;
}

/*

initiatives-materiality

***************************************/
.initiatives-materiality {
  padding: 10rem 0;
  margin-bottom: 12.4375rem;
}
@media (width < 1261px) {
  .initiatives-materiality {
    padding-top: 7.5rem;
  }
}
@media (width < 576px) {
  .initiatives-materiality {
    padding: 5rem 0;
    margin-bottom: 5rem;
  }
}

.initiatives-materiality__head {
  padding-right: 1.25rem;
  padding-left: 1.25rem;
}

.initiatives-materiality__head-text {
  color: #ffffff;
}

.initiatives-materiality__body {
  max-width: 84%;
  margin: 3.625rem auto 0;
  padding: 5rem 3rem 7.25rem;
  background-color: #ffffff;
}
@media (width < 1261px) {
  .initiatives-materiality__body {
    max-width: 90%;
    margin-top: 2.5rem;
    padding: 2rem 1.5rem;
  }
}
@media (width < 576px) {
  .initiatives-materiality__body {
    padding: 1.5rem 1rem;
  }
}

.initiatives-materiality__img {
  max-width: 63.625rem;
  margin: 0 auto;
}

.initiatives-materiality__img img {
  aspect-ratio: 1018/338;
}

.initiatives-materiality__subtitle {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.4583333333;
  color: #3E603B;
  border-bottom: 1px solid #3E603B;
  padding-bottom: 0.5625rem;
  max-width: 71.25rem;
  margin: 5rem auto 0;
}
@media (width < 576px) {
  .initiatives-materiality__subtitle {
    font-size: 1.25rem;
    margin-top: 3.75rem;
  }
}

.initiatives-materiality__table-wrap {
  overflow-x: auto;
  margin-top: 2.5rem;
  padding: 0 3.8125rem;
}
@media (width < 1261px) {
  .initiatives-materiality__table-wrap {
    padding: 0;
  }
}
@media (width < 1261px) {
  .initiatives-materiality__table-wrap {
    overflow-x: auto;
  }
}

.initiatives-materiality__table {
  width: 100%;
  border-collapse: collapse;
  max-width: 63.6875rem;
  margin: 0 auto;
}
@media (width < 1261px) {
  .initiatives-materiality__table {
    width: 63.6875rem;
  }
}

.initiatives-materiality__th,
.initiatives-materiality__td {
  border: 1px solid #298A00;
}
.initiatives-materiality__th:nth-child(1),
.initiatives-materiality__td:nth-child(1) {
  width: 15.7%;
}
.initiatives-materiality__th:nth-child(2),
.initiatives-materiality__td:nth-child(2) {
  width: 18.8%;
}
.initiatives-materiality__th:nth-child(3),
.initiatives-materiality__td:nth-child(3) {
  width: 17.3%;
}
.initiatives-materiality__th:nth-child(4),
.initiatives-materiality__td:nth-child(4) {
  width: 18.8%;
}
.initiatives-materiality__th:nth-child(5),
.initiatives-materiality__td:nth-child(5) {
  width: 13.7%;
}
.initiatives-materiality__th:nth-child(6),
.initiatives-materiality__td:nth-child(6) {
  width: 15.7%;
}

.initiatives-materiality__th {
  background-color: #EFF7EC;
  border: 1px solid #298A00;
  padding: 0.9375rem 0.625rem 1.0625rem;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  letter-spacing: 0.06em;
  color: #403224;
}

.initiatives-materiality__td {
  border: 1px solid #298A00;
  padding: 1.0625rem 0.625rem 1.1875rem;
  font-size: 0.9375rem;
  line-height: 1.6666666667;
  color: #403224;
  text-align: center;
}

/*

Page：style.scss

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

Page: lineup

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

lineup-section

***************************************/
.lineup-section {
  margin-top: 7.5625rem;
}
@media (width < 893px) {
  .lineup-section {
    margin-top: 6.125rem;
  }
}

.lineup-section:last-of-type {
  margin-bottom: 12.4375rem;
}
@media (width < 893px) {
  .lineup-section:last-of-type {
    margin-bottom: 7.5rem;
  }
}

.lineup-section__head {
  background-color: #298A00;
  padding: 0.75rem 3.75rem;
  border-radius: 5px;
}
@media (width < 893px) {
  .lineup-section__head {
    padding: 0.75rem 1.5rem;
  }
}

.lineup-section__title {
  color: #ffffff;
  font-size: 1.625rem;
  font-weight: 400;
  line-height: 1.4230769231;
  letter-spacing: 0.09em;
}
@media (width < 893px) {
  .lineup-section__title {
    font-size: 1.25rem;
  }
}

.lineup-section + .lineup-section {
  margin-top: 6.25rem;
}
@media (width < 893px) {
  .lineup-section + .lineup-section {
    margin-top: 3.75rem;
  }
}

.lineup-section + .lineup-section--text {
  margin-top: 3.75rem;
}

.lineup-block {
  background-color: #ffffff;
  padding: 2.5rem 3.75rem 3.4375rem;
  margin-top: 3.75rem;
}
@media (width < 893px) {
  .lineup-block {
    padding: 2.125rem 1.5rem;
    margin-top: 2.5rem;
  }
}

.lineup-block + .lineup-block {
  margin-top: 6.25rem;
}

.lineup-block__title {
  color: #3E603B;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.25;
  padding-bottom: 0.8125rem;
  border-bottom: 1px solid #3E603B;
  margin-bottom: 2.5rem;
}
@media (width < 893px) {
  .lineup-block__title {
    font-size: 1.25rem;
  }
}

.lineup-section--text .lineup-block__title {
  margin-bottom: 0;
}

.lineup-block__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.8125rem 4.375rem;
  max-width: 94%;
  margin: 0 auto;
}
@media (width < 1261px) {
  .lineup-block__list {
    max-width: 100%;
    gap: 2.125rem;
  }
}
@media (width < 893px) {
  .lineup-block__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.75rem;
  }
}
@media (width < 576px) {
  .lineup-block__list {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.lineup-block__link {
  display: grid;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media (hover: hover) {
  .lineup-block__link:hover {
    opacity: 0.7;
  }
}
@media (hover: none) {
  .lineup-block__link:active {
    opacity: 0.7;
  }
}

.lineup-block__img-wrap img {
  aspect-ratio: 31/21;
}

.lineup-block__name-row {
  display: grid;
  grid-template-columns: 1fr auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  margin-top: 0.9375rem;
}

.lineup-block__name {
  font-size: 1.125rem;
  line-height: 1.4444444444;
  letter-spacing: 0.06em;
  color: #403224;
}
@media (width < 893px) {
  .lineup-block__name {
    font-size: 1rem;
  }
}

.lineup-block__icon {
  display: grid;
  place-items: center;
  width: 1.25rem;
  height: 1.125rem;
  background-color: #69B118;
  border-radius: 0.1875rem;
}

.lineup-block__text {
  font-size: 0.9375rem;
  line-height: 2.1333333333;
  letter-spacing: 0.05em;
  color: #403224;
  margin-top: 0.9375rem;
}

.lineup-text-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3.125rem 4.375rem;
  margin: 3.6875rem auto 0;
  max-width: 93.5%;
}
@media (width < 893px) {
  .lineup-text-list {
    max-width: 100%;
    gap: 1.5625rem 1.875rem;
    margin-top: 2.5rem;
  }
}
@media (width < 576px) {
  .lineup-text-list {
    grid-template-columns: 1fr;
    max-width: 93.5%;
  }
}

.lineup-text-list__item {
  padding-bottom: 0.6875rem;
  border-bottom: 1px dashed #3E603B;
}

.lineup-text-list__link {
  font-size: 1.125rem;
  line-height: 1.4444444444;
  letter-spacing: 0.06em;
  color: #1a1a1a;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media (width < 893px) {
  .lineup-text-list__link {
    font-size: 1rem;
  }
}
@media (hover: hover) {
  .lineup-text-list__link:hover {
    opacity: 0.7;
  }
}
@media (hover: none) {
  .lineup-text-list__link:active {
    opacity: 0.7;
  }
}

/*

Page：style.scss

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

Page: lineup-page

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

lineup-detail

***************************************/
.lineup-detail {
  margin-top: 7.375rem;
  padding-bottom: 12.4375rem;
}
@media (width < 576px) {
  .lineup-detail {
    margin-top: 3.75rem;
    padding-bottom: 7.5rem;
  }
}

.lineup-detail__head {
  background-color: #298A00;
  padding: 0.75rem 1.5rem;
  text-align: center;
  border-radius: 5px;
}

.lineup-detail__title {
  color: #ffffff;
  font-size: 1.625rem;
  font-weight: 500;
  line-height: 1.4230769231;
  letter-spacing: 0.09em;
}
@media (width < 576px) {
  .lineup-detail__title {
    font-size: 1.25rem;
  }
}

.lineup-detail__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: clamp(1.25rem, 4vw, 3.75rem);
  margin-top: 3.75rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (width < 893px) {
  .lineup-detail__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2rem;
  }
}
@media (width < 576px) {
  .lineup-detail__body {
    margin-top: 1.875rem;
    gap: 2.75rem;
  }
}

.lineup-detail__imgs {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 1.25rem;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  max-width: 35.625rem;
  min-width: 45%;
  margin: 0 auto;
}
@media (width < 893px) {
  .lineup-detail__imgs {
    min-width: 100%;
  }
}

.lineup-detail__img-main-wrap img {
  aspect-ratio: 570/386;
}

.lineup-detail__img-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem 1.875rem;
}

.lineup-detail__img-item img {
  aspect-ratio: 270/184;
}

.lineup-detail__content {
  color: #403224;
  background-color: #ffffff;
  padding: 2.375rem 3.75rem 3.4375rem;
}
@media (width < 576px) {
  .lineup-detail__content {
    padding: 1.5rem;
  }
}

.lineup-detail__content-head {
  padding-bottom: 0.875rem;
  border-bottom: 1px solid #3E603B;
  margin-bottom: 2.5rem;
}

.lineup-detail__content-title {
  color: #3E603B;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.45;
}

.lineup-detail__entry {
  margin-top: 2rem;
}

.lineup-detail__entry + .lineup-detail__entry {
  margin-top: 3.125rem;
}

.lineup-detail__entry-title {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.4444444444;
  letter-spacing: 0.06em;
}

.lineup-detail__entry-text {
  font-size: 0.875rem;
  line-height: 1.5714285714;
  letter-spacing: 0.03em;
}

.lineup-detail__entry-list {
  display: grid;
  gap: 0.25rem;
  margin-top: 0.5rem;
}

.lineup-detail__entry-list-item {
  font-size: 0.875rem;
  line-height: 1.5714285714;
  letter-spacing: 0.03em;
  color: #1a1a1a;
  padding-left: 0.75rem;
  position: relative;
}

.lineup-detail__entry-list-item::before {
  content: "・";
  position: absolute;
  left: 0;
}

.lineup-detail__btn-wrap {
  display: grid;
  justify-items: center;
  margin-top: 8.75rem;
}
@media (width < 576px) {
  .lineup-detail__btn-wrap {
    margin-top: 5.625rem;
  }
}

/*

lineup-detail（詳細ページ）

***************************************/
.lineup-detail__content-inner h2 {
  color: #403224;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.4444444444;
  letter-spacing: 0.06em;
  padding-bottom: 0.625rem;
}
.lineup-detail__content-inner p {
  color: #403224;
  font-size: 0.9375rem;
  line-height: 2.1333333333;
  letter-spacing: 0.05em;
  padding-bottom: 2.125rem;
  font-weight: 300;
}
.lineup-detail__content-inner p:has(+ ul) {
  padding-bottom: 0;
}
.lineup-detail__content-inner ul {
  padding-bottom: 3.125rem;
}
.lineup-detail__content-inner li {
  padding-left: 1rem;
  position: relative;
  font-size: 0.9375rem;
  line-height: 2.1333333333;
  letter-spacing: 0.05em;
}
.lineup-detail__content-inner li::before {
  content: "";
  display: block;
  width: 3px;
  height: 3px;
  position: absolute;
  left: 6px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: #403224;
  border-radius: 50%;
}

/*

Page：style.scss

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

Page: company

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

company-message

***************************************/
.company-message {
  padding-top: 7.5rem;
}
@media (width < 893px) {
  .company-message {
    padding-top: 5rem;
  }
}
@media (width < 576px) {
  .company-message {
    padding-top: 3.75rem;
  }
}

.company-message__heading {
  text-align: center;
}

.company-message__lead {
  margin-top: 3.25rem;
  text-align: center;
}
@media (width < 576px) {
  .company-message__lead {
    margin-top: 2.5rem;
  }
}

.company-message__lead-text {
  font-size: 1.125rem;
  line-height: 2.3333333333;
  letter-spacing: 0.06em;
  color: #403224;
}
@media (width < 576px) {
  .company-message__lead-text {
    text-align: left;
  }
}

.company-message__lead-text + .company-message__lead-text {
  margin-top: 2.625rem;
}
@media (width < 893px) {
  .company-message__lead-text + .company-message__lead-text {
    margin-top: 1.875rem;
  }
}

.company-message__block {
  display: grid;
  border-radius: 1.25rem;
  overflow: hidden;
  margin: 7.0625rem auto 0;
  max-width: 45.375rem;
  isolation: isolate;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media (width < 893px) {
  .company-message__block {
    margin-top: 5.5rem;
  }
}
@media (hover: hover) {
  .company-message__block:hover img {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
  .company-message__block:hover .company-message__block-body::before {
    background-color: rgba(45, 35, 25, 0.75);
  }
  .company-message__block:hover .company-message__block-link-icon {
    -webkit-transform: translateX(8px);
            transform: translateX(8px);
  }
}
@media (hover: none) {
  .company-message__block:active img {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
  .company-message__block:active .company-message__block-body::before {
    background-color: rgba(45, 35, 25, 0.75);
  }
  .company-message__block:active .company-message__block-link-icon {
    -webkit-transform: translateX(4px);
            transform: translateX(4px);
  }
}

.company-message__block img {
  grid-area: 1/1;
  aspect-ratio: 726/286;
  height: 100%;
  -webkit-transition: -webkit-transform 0.5s ease-out;
  transition: -webkit-transform 0.5s ease-out;
  transition: transform 0.5s ease-out;
  transition: transform 0.5s ease-out, -webkit-transform 0.5s ease-out;
}
@media (width < 576px) {
  .company-message__block img {
    -o-object-position: 75% 50%;
       object-position: 75% 50%;
  }
}

.company-message__block-body {
  grid-area: 1/1;
  position: relative;
  display: grid;
  -ms-flex-line-pack: start;
      align-content: start;
  padding: 2.9375rem 2.5rem 1.125rem 3.75rem;
}
@media (width < 576px) {
  .company-message__block-body {
    padding: 2.5rem 1.5rem 1.5rem;
  }
}

.company-message__block-body::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(80, 66, 52, 0.75);
  mix-blend-mode: multiply;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}

.company-message__block-title {
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: 500;
  font-family: "Zen Old Mincho", serif;
  line-height: 1.45;
  letter-spacing: 0.05em;
  padding-bottom: 1rem;
  position: relative;
  z-index: 1;
}
@media (width < 576px) {
  .company-message__block-title {
    font-size: 1.125rem;
  }
}

.company-message__block-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1.875rem;
  height: 1px;
  background-color: #ffffff;
}

.company-message__block-text {
  color: #ffffff;
  font-size: 0.9375rem;
  line-height: 2.1333333333;
  letter-spacing: 0.05em;
  margin-top: 1.5rem;
  position: relative;
  z-index: 1;
}

.company-message__block-link {
  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: end;
  gap: 1.25rem;
  margin-top: 0rem;
  position: relative;
  z-index: 1;
}
@media (width < 576px) {
  .company-message__block-link {
    margin-top: 1rem;
  }
}

.company-message__block-link-text {
  color: #ffffff;
  font-size: 0.9375rem;
  line-height: 1.4;
  letter-spacing: 0.05em;
}

.company-message__block-link-icon {
  display: grid;
  place-items: center;
  width: 1.25rem;
  height: 1.125rem;
  background-color: #ffffff;
  border-radius: 0.1875rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -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;
}

/*

company-philosophy

***************************************/
.company-philosophy__photos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5625rem;
  padding-top: 10rem;
}
@media (width < 893px) {
  .company-philosophy__photos {
    padding-top: 7.5rem;
  }
}
@media (width < 576px) {
  .company-philosophy__photos {
    padding-top: 5rem;
    gap: 0.375rem;
  }
}

.company-philosophy__photo {
  max-width: 30.875rem;
}
@media (width < 576px) {
  .company-philosophy__photo {
    max-width: 100%;
  }
}

.company-philosophy__photo img {
  aspect-ratio: 494/355;
}

.company-philosophy__body {
  max-width: 68.75rem;
  margin: -3.125rem auto 0;
  padding: 4.25rem 1.5rem 3.75rem;
  background-color: #FCF8F2;
  border-radius: 5rem;
  position: relative;
  z-index: 1;
  text-align: center;
}
@media (width < 1261px) {
  .company-philosophy__body {
    max-width: 90%;
    margin-top: -3.75rem;
    padding: 3rem 1rem;
  }
}
@media (width < 893px) {
  .company-philosophy__body {
    margin-top: -2.5rem;
  }
}
@media (width < 576px) {
  .company-philosophy__body {
    margin: -2.5rem 1rem 0;
    border-radius: 2.5rem;
    padding: 2.25rem 1.5rem;
  }
}

.company-philosophy__heading {
  text-align: center;
}

.company-philosophy__title {
  font-family: "Zen Old Mincho", serif;
  font-size: 1.9375rem;
  font-weight: 500;
  line-height: 1.4516129032;
  color: #298A00;
  letter-spacing: 0.05em;
  margin-top: 3.75rem;
}
@media (width < 893px) {
  .company-philosophy__title {
    font-size: 1.25rem;
    line-height: 1.6;
  }
}

.company-philosophy__text {
  font-family: "Zen Old Mincho", serif;
  font-size: 1.25rem;
  line-height: 2.25;
  margin-top: 2rem;
  color: #1a1a1a;
}
@media (width < 1261px) {
  .company-philosophy__text {
    margin-top: 2.5rem;
  }
}
@media (width < 893px) {
  .company-philosophy__text {
    font-size: 1rem;
    margin-top: 2.125rem;
  }
}
@media (width < 576px) {
  .company-philosophy__text {
    text-align: left;
  }
}

.company-philosophy__text + .company-philosophy__text {
  margin-top: 2.8125rem;
}
@media (width < 1261px) {
  .company-philosophy__text + .company-philosophy__text {
    margin-top: 1.5rem;
  }
}
@media (width < 893px) {
  .company-philosophy__text + .company-philosophy__text {
    margin-top: 1.25rem;
  }
}

/*

company-history

***************************************/
.company-history {
  padding: 7.5rem 0;
}
@media (width < 893px) {
  .company-history {
    padding: 5rem 0;
  }
}
@media (width < 576px) {
  .company-history {
    padding: 3.75rem 0;
  }
}

.company-history__heading {
  text-align: center;
}

.company-history__body {
  background-color: #ffffff;
  overflow: hidden;
  margin-top: 3.75rem;
  position: relative;
  padding: 5rem 0;
}
@media (width < 576px) {
  .company-history__body {
    margin-top: 2.5rem;
    padding-bottom: 3.75rem;
  }
}

.company-history__list {
  padding-left: 4.125rem;
  max-width: 59.9375rem;
  margin: 0 auto;
  -webkit-transform: translateX(0.375rem);
          transform: translateX(0.375rem);
  position: relative;
}
@media (width < 1261px) {
  .company-history__list {
    max-width: 90%;
  }
}
@media (width < 576px) {
  .company-history__list {
    padding-left: 2.125rem;
  }
}

.company-history__list::before {
  content: "";
  position: absolute;
  left: -0.1875rem;
  top: 0;
  bottom: 0;
  width: 0.375rem;
  background-color: #298A00;
  z-index: 2;
}
@media (width < 576px) {
  .company-history__list::before {
    left: -0.125rem;
    width: 0.25rem;
  }
}

.company-history__item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2.3125rem;
  padding: 1.125rem 1.0625rem 1.125rem 1.25rem;
  position: relative;
}
@media (width < 893px) {
  .company-history__item {
    grid-template-columns: auto 1fr;
    grid-template-rows: 1fr;
    padding: 1.25rem 1.5rem;
  }
}
@media (width < 576px) {
  .company-history__item {
    grid-template-columns: auto 1fr;
    gap: 1rem;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    padding: 1.25rem 1rem;
  }
}

.company-history__item:nth-child(odd) {
  background-color: #F2FAEC;
}

.company-history__item::before {
  content: "";
  position: absolute;
  left: -4.125rem;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 1.375rem;
  height: 1.375rem;
  border-radius: 50%;
  border: 3px solid #298A00;
  background-color: #ffffff;
  z-index: 3;
}
@media (width < 576px) {
  .company-history__item::before {
    top: 2.1875rem;
    left: -2.125rem;
    width: 1.125rem;
    height: 1.125rem;
  }
}

.company-history__item::after {
  content: "";
  position: absolute;
  left: -3.9375rem;
  top: 50%;
  width: 3.9375rem;
  height: 3px;
  background-image: radial-gradient(circle at 1.5px center, #298A00 0, #298A00 1.5px, transparent 1.5px);
  background-size: 10px 100%;
  background-repeat: repeat-x;
  z-index: 2;
}
@media (width < 576px) {
  .company-history__item::after {
    top: 2.1875rem;
    left: -2rem;
    width: 1.75rem;
    height: 3px;
    background-image: radial-gradient(circle at 1.5px center, #298A00 0, #298A00 1.5px, transparent 1.5px);
    background-size: 8px 100%;
  }
}

.company-history__year {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  color: #298A00;
  font-size: 1.25rem;
  line-height: 1.7;
  letter-spacing: 0em;
}
@media (width < 576px) {
  .company-history__year {
    font-size: 0.75rem;
  }
}

.company-history__year-num {
  font-size: 1.75rem;
  line-height: 1.2142857143;
}
@media (width < 576px) {
  .company-history__year-num {
    font-size: 1.25rem;
  }
}

.company-history__text {
  font-size: 1rem;
  line-height: 1.875;
  color: #403224;
  letter-spacing: 0.05em;
}
@media (width < 576px) {
  .company-history__text {
    font-size: 0.875rem;
  }
}

.company-history__img-wrap {
  max-width: 14.8125rem;
}
@media (width < 893px) {
  .company-history__img-wrap {
    max-width: 100%;
    grid-column: 2/-1;
  }
}
@media (width < 576px) {
  .company-history__img-wrap {
    grid-column: 1/-1;
  }
}

.company-history__img-wrap img {
  aspect-ratio: 237/152;
}

/*

company-overview

***************************************/
.company-overview {
  margin-top: 10rem;
  padding-bottom: 10rem;
}
@media (width < 893px) {
  .company-overview {
    margin-top: 7.5rem;
    padding-bottom: 7.5rem;
  }
}
@media (width < 576px) {
  .company-overview {
    margin-top: 5rem;
    padding-bottom: 3.75rem;
  }
}

.company-overview__heading {
  text-align: center;
}

.company-overview__body {
  background-color: #ffffff;
  padding: 5rem 5.6875rem;
  margin-top: 3.75rem;
}
@media (width < 1261px) {
  .company-overview__body {
    padding: 3.75rem 5rem;
  }
}
@media (width < 893px) {
  .company-overview__body {
    padding: 2.5rem 3.75rem;
  }
}
@media (width < 576px) {
  .company-overview__body {
    padding: 2.5rem 1.875rem;
  }
}

.company-overview__table {
  width: 100%;
  border-collapse: collapse;
}

.company-overview__th,
.company-overview__td {
  border: 1px solid #298A00;
  vertical-align: middle;
}

.company-overview__th {
  background-color: #EFF7EC;
  width: 16.9375rem;
  padding: 1.03125rem 1.25rem;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.06em;
  text-align: center;
  color: #403224;
}
@media (width < 893px) {
  .company-overview__th {
    width: 8.125rem;
  }
}
@media (width < 576px) {
  .company-overview__th {
    width: 6.25rem;
    font-size: 0.8125rem;
    padding: 0.75rem 0.625rem;
  }
}

.company-overview__td {
  padding: 1.125rem 1.84375rem;
  font-size: 0.9375rem;
  line-height: 1.4;
  letter-spacing: 0.05em;
  color: #403224;
}
@media (width < 1261px) {
  .company-overview__td {
    padding: 1.125rem 1.25rem;
  }
}
@media (width < 576px) {
  .company-overview__td {
    padding: 0.75rem 0.875rem;
    font-size: 0.8125rem;
  }
}

.company-overview__link {
  color: #403224;
}

.company-overview__map-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem 1rem;
}

.company-overview__map {
  display: inline-grid;
  grid-template-columns: auto auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.625rem;
  background-color: #69B118;
  color: #ffffff;
  font-size: 0.875rem;
  line-height: 1.4285714286;
  padding: 0.0625rem 0.5rem 0.0625rem 0.625rem;
  border-radius: 0.25rem;
  text-transform: uppercase;
  max-height: 1.375rem;
}
@media (width < 576px) {
  .company-overview__map {
    gap: 0.5rem;
  }
}

.company-overview__map-img {
  max-width: 0.75rem;
  aspect-ratio: 1/1;
}

/*

company-access

***************************************/
.company-access__img img {
  aspect-ratio: 1500/505;
}

.company-access__body {
  max-width: 68.75rem;
  margin: -3.125rem auto 0;
  padding: 4.25rem 2.5rem 0rem;
  background-color: #FCF8F2;
  border-radius: 5rem;
  position: relative;
  z-index: 1;
}
@media (width < 1261px) {
  .company-access__body {
    max-width: 90%;
    margin-top: -3.75rem;
    padding: 3rem 1.5rem;
  }
}
@media (width < 893px) {
  .company-access__body {
    margin-top: -2.5rem;
    padding: 3rem 2.5rem;
  }
}
@media (width < 576px) {
  .company-access__body {
    margin: -2.5rem 1rem 0;
    border-radius: 2.5rem;
    padding: 2.25rem 1.5rem 2.5rem;
  }
}

.company-access__heading {
  text-align: center;
}

.company-access__map {
  position: relative;
  padding-top: 50.686%;
  max-width: 63.75rem;
  margin: 3.75rem auto 0;
  width: 100%;
}
@media (width < 576px) {
  .company-access__map {
    padding-top: 75%;
  }
}

.company-access__map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.company-access__address {
  font-size: 0.9375rem;
  line-height: 1.4;
  color: #403224;
  letter-spacing: 0.05em;
  margin-top: 0.9375rem;
}
@media (width < 576px) {
  .company-access__address {
    font-size: 0.75rem;
    margin-top: 0.625rem;
  }
}

/*

company-factory

***************************************/
.company-factory {
  padding: 9.875rem 0 16.3125rem;
}
@media (width < 893px) {
  .company-factory {
    padding: 7.5rem 0 13.75rem;
  }
}
@media (width < 576px) {
  .company-factory {
    padding: 5.625rem 0 11.25rem;
  }
}

.company-factory__heading {
  text-align: center;
}

.company-factory__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(2.5rem, 4vw, 3.75rem);
  margin: 3.75rem auto 0;
  max-width: 63.75rem;
}
@media (width < 893px) {
  .company-factory__list {
    gap: 1.5rem;
    margin-top: 2.5rem;
  }
}
@media (width < 576px) {
  .company-factory__list {
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-top: 2rem;
  }
}

.company-factory__img-wrap img {
  aspect-ratio: 480/312;
}

.company-factory__name {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.4444444444;
  color: #403224;
  letter-spacing: 0.06em;
  margin-top: 1.25rem;
}
@media (width < 576px) {
  .company-factory__name {
    font-size: 1.125rem;
  }
}

.company-factory__info {
  display: grid;
  grid-template-columns: auto auto;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  gap: 1.25rem;
  margin-top: 0.5625rem;
}
@media (width < 1261px) {
  .company-factory__info {
    grid-template-columns: auto;
    gap: 0rem;
  }
}

.company-factory__detail-text {
  font-size: 0.9375rem;
  line-height: 2.1333333333;
  color: #403224;
  letter-spacing: 0.05em;
}

.company-factory__map {
  margin-top: 5px;
  max-width: 4.4375rem;
}

/*

Page：style.scss

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

Page: interview

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

interview-toc

***************************************/
.interview-toc {
  padding-top: 5rem;
}
@media (width < 893px) {
  .interview-toc {
    padding-top: 3.75rem;
  }
}

.interview-toc__label {
  text-align: center;
  font-size: 0.9375rem;
  line-height: 1.4;
  color: #403224;
  letter-spacing: 0.05em;
}

.interview-toc__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.625rem 1.25rem;
  margin: 1.875rem auto 0;
  max-width: 64.375rem;
}
@media (width < 893px) {
  .interview-toc__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (width < 576px) {
  .interview-toc__list {
    grid-template-columns: 1fr;
  }
}

.interview-toc__item {
  background-color: #ffffff;
  border-bottom: 1px solid #298A00;
}

.interview-toc__link {
  display: grid;
  grid-template-columns: 3.4375rem 1fr auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0.53125rem 1.25rem 0.46875rem 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  height: 100%;
}
@media (hover: hover) {
  .interview-toc__link:hover {
    opacity: 0.7;
  }
}
@media (hover: none) {
  .interview-toc__link:active {
    opacity: 0.7;
  }
}

.interview-toc__num {
  font-size: 1.125rem;
  line-height: 1.4444444444;
  color: #298A00;
  text-align: center;
  border-right: 1px dashed #298A00;
}

.interview-toc__text {
  font-size: 1.125rem;
  line-height: 1.4444444444;
  color: #403224;
  letter-spacing: 0.06em;
  padding: 0.53125rem 0.625rem 0.53125rem 1.25rem;
}

.interview-toc__icon {
  display: grid;
  place-items: center;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  background-color: #69B118;
}

.interview-toc__icon::before {
  content: "";
  display: block;
  width: 0.375rem;
  height: 0.375rem;
  border-right: 1px solid #ffffff;
  border-bottom: 1px solid #ffffff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  margin-top: -0.125rem;
}

/*
interview-sections
***************************************/
.interview-sections {
  display: grid;
  gap: 5rem;
  padding: 5rem 0 13.3125rem;
}
@media (width < 893px) {
  .interview-sections {
    gap: 2.5rem;
    padding: 3.75rem 0 10rem;
  }
}
@media (width < 576px) {
  .interview-sections {
    padding: 2.5rem 0 5.625rem;
  }
}

.interview-section__card {
  background-color: #ffffff;
  position: relative;
  border: 1px solid #298A00;
  border-radius: 0.3125rem;
  padding: 0 5rem 3.75rem;
}
@media (width < 893px) {
  .interview-section__card {
    padding: 0 2.5rem 3rem;
  }
}
@media (width < 576px) {
  .interview-section__card {
    padding: 0 1.25rem 2.5rem;
  }
}

.interview-section__num {
  background-color: #298A00;
  color: #ffffff;
  width: 4.375rem;
  height: 2.75rem;
  border-radius: 0 0 0.3125rem 0.3125rem;
  display: grid;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 1.75rem;
  letter-spacing: 0.06em;
  line-height: 1.4285714286;
  margin: 0 auto;
}

.interview-section__title {
  font-size: 1.625rem;
  font-weight: 500;
  line-height: 1.4230769231;
  color: #298A00;
  text-align: center;
  letter-spacing: 0.05em;
  margin-top: 1.5625rem;
}
@media (width < 576px) {
  .interview-section__title {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
  }
}

.interview-section__img-wrap {
  max-width: 50rem;
  margin: 2.5rem auto 0;
}
@media (width < 576px) {
  .interview-section__img-wrap {
    margin-top: 1.75rem;
  }
}

.interview-section__img-wrap img {
  aspect-ratio: 800/435;
}

.interview-section__img-desc {
  color: #7C7C7C;
  text-align: center;
  margin-top: 4px;
}
@media (width < 893px) {
  .interview-section__img-desc {
    font-size: 0.875rem;
  }
}

.interview-section__qa-list {
  display: grid;
  gap: 3.75rem;
  margin-top: 3.75rem;
}
@media (width < 576px) {
  .interview-section__qa-list {
    gap: 1.5rem;
  }
}

.interview-section__question {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.45;
  color: #298A00;
  font-family: "Zen Old Mincho", serif;
  letter-spacing: 0.05em;
  padding-left: 2.1875rem;
  position: relative;
}

.interview-section__question::before {
  content: "";
  display: block;
  width: 1.5625rem;
  position: absolute;
  left: 0rem;
  top: 0.75rem;
  height: 1px;
  background-color: #298A00;
}

.interview-section__answer {
  font-size: 1.125rem;
  line-height: 2.3333333333;
  color: #403224;
  letter-spacing: 0.06em;
  margin-top: 1.5625rem;
}

.interview-section__speaker {
  color: #298A00;
}

/*

Page：style.scss

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

Page: recruit

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

recruit-message

***************************************/
.recruit-message {
  padding: 7.5rem 0 10rem;
}
@media (width < 893px) {
  .recruit-message {
    padding: 5rem 0 7.5rem;
  }
}
@media (width < 576px) {
  .recruit-message {
    padding: 3.75rem 0 5rem;
  }
}

.recruit-message__inner {
  display: grid;
  grid-template-columns: 6.58fr 6.3fr;
  gap: clamp(2.5rem, 6.1333333333vw, 5.75rem);
  max-width: 92%;
  margin-right: auto;
}
@media (width < 893px) {
  .recruit-message__inner {
    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: 3rem;
    max-width: 100%;
  }
}

.recruit-message__img-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.375rem;
  margin-bottom: auto;
}

.recruit-message__img-item--main {
  grid-column: 1/-1;
}

.recruit-message__img-item img {
  aspect-ratio: 326/231;
}
@media (width < 1261px) {
  .recruit-message__img-item img {
    aspect-ratio: 326/314;
  }
}
@media (width < 893px) {
  .recruit-message__img-item img {
    aspect-ratio: 326/231;
  }
}

.recruit-message__img-item--main img {
  aspect-ratio: 658/370;
  border-radius: 0 1.25rem 0 0;
}
@media (width < 1261px) {
  .recruit-message__img-item--main img {
    aspect-ratio: 326/277;
    -o-object-position: 25%;
       object-position: 25%;
  }
}
@media (width < 893px) {
  .recruit-message__img-item--main img {
    aspect-ratio: 658/370;
  }
}

.recruit-message__img-item:nth-child(3) img {
  border-radius: 0 0 1.25rem 0;
}

.recruit-message__body {
  max-width: 90%;
  margin: 0 auto;
}

@media (width < 893px) {
  .recruit-message__heading {
    text-align: center;
  }
}

.recruit-message__text {
  font-size: 1.125rem;
  line-height: 2.3333333333;
  letter-spacing: 0.06em;
  margin-top: 2.5625rem;
}

/*
recruit-data
***************************************/
.recruit-data {
  background-color: #109C4A;
  padding: 7.5rem 0 10rem;
}
@media (width < 893px) {
  .recruit-data {
    padding: 6.25rem 0 7.5rem;
  }
}
@media (width < 576px) {
  .recruit-data {
    padding: 3.75rem 0 2.5rem;
  }
}

.recruit-data__inner {
  max-width: 80.75rem;
  padding: 0 1.25rem;
}
@media (width < 1261px) {
  .recruit-data__inner {
    max-width: 90%;
  }
}
@media (width < 893px) {
  .recruit-data__inner {
    max-width: 41rem;
  }
}

.recruit-data__heading {
  text-align: center;
}

.recruit-data__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 3.75rem;
}
@media (width < 1261px) {
  .recruit-data__grid {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 2.25rem;
  }
}
@media (width < 576px) {
  .recruit-data__grid {
    grid-template-columns: repeat(1, 1fr);
  }
}

.recruit-data__card {
  background-color: #ffffff;
  border-radius: 0.625rem;
  padding: 1.875rem 1.25rem 0.9375rem;
  display: grid;
  justify-items: center;
  -ms-flex-line-pack: start;
      align-content: start;
  text-align: center;
  min-height: 18.875rem;
}
@media (width < 576px) {
  .recruit-data__card {
    padding-top: 1.25rem;
    min-height: auto;
  }
}

.recruit-data__card--wide {
  grid-column: 1/-1;
  display: grid;
  grid-template-columns: auto auto;
  justify-items: stretch;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: left;
  gap: clamp(2.5rem, 6vw, 5.625rem);
  padding: 1.875rem 3rem 2.1875rem;
}
@media (width < 893px) {
  .recruit-data__card--wide {
    grid-template-columns: auto;
    padding: 1.75rem;
  }
}

.recruit-data__label {
  display: inline-block;
  background-color: #298A00;
  color: #ffffff;
  font-size: 1.125rem;
  line-height: 1.4444444444;
  padding: 0.25rem 1.875rem;
  border-radius: 1.125rem;
}

.recruit-data__icon-wrap {
  max-width: 7.1875rem;
  margin: 0.625rem auto 0;
}

.recruit-data__icon-wrap img {
  aspect-ratio: 115/90;
}

.recruit-data__value {
  font-size: 1.875rem;
  line-height: 1.4666666667;
  color: #298A00;
  margin-top: 0.3125rem;
  letter-spacing: 0.02em;
}

.recruit-data__nums {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.15625rem;
  padding-left: 3px;
}

.recruit-data__num {
  font-family: "Bellefair", sans-serif;
  font-size: 4.75rem;
  line-height: 1.1447368421;
  color: #298A00;
  letter-spacing: 0.05em;
}

.recruit-data__wave {
  font-family: "Bellefair", sans-serif;
  color: #298A00;
  margin-top: 9px;
}

.recruit-data__unit {
  font-size: 1.875rem;
  line-height: 1.4666666667;
  color: #298A00;
  letter-spacing: 0.02em;
  margin-left: -7px;
}

.recruit-data__sub {
  font-size: 0.9375rem;
  line-height: 1.4;
  letter-spacing: 0.05em;
  color: #403224;
  margin-top: 2px;
}

.recruit-data__text {
  font-size: 1.25rem;
  line-height: 1.45;
  color: #298A00;
}

.recruit-data__map-wrap {
  max-width: 25.0625rem;
}

.recruit-data__map-wrap img {
  aspect-ratio: 401/291;
}

.recruit-data__area {
  padding-top: 0.625rem;
  padding-right: 4rem;
  margin-top: -0.875rem;
}
@media (width < 893px) {
  .recruit-data__area {
    padding-right: 0;
  }
}

.recruit-data__area-label {
  display: inline-block;
  background-color: #298A00;
  color: #ffffff;
  font-size: 1.125rem;
  line-height: 1.4444444444;
  padding: 0.25rem 1.25rem;
  border-radius: 1.125rem;
}

.recruit-data__area-value {
  font-size: 1.875rem;
  line-height: 1.4666666667;
  color: #298A00;
  padding-top: 0.375rem;
}

.recruit-data__area-num {
  font-family: "Bellefair", sans-serif;
  font-size: 4.75rem;
  line-height: 1;
  color: #298A00;
  letter-spacing: 0.05em;
}

.recruit-data__area-text {
  font-size: 1.25rem;
  line-height: 1.45;
  color: #298A00;
  margin-top: 0.625rem;
}

.recruit-data__area-sub-text {
  font-size: 1.25rem;
  line-height: 1.45;
  color: #298A00;
}

.recruit-data__area-note {
  font-size: 0.9375rem;
  line-height: 1.4;
  color: #403224;
  letter-spacing: 0.05em;
  margin-top: 0.625rem;
}

/*

recruit-job

***************************************/
.recruit-job {
  padding-top: 10rem;
}
@media (width < 893px) {
  .recruit-job {
    padding-top: 7.5rem;
  }
}

.recruit-job__heading {
  text-align: center;
}

.recruit-job__list {
  display: grid;
  gap: 5rem;
  margin-top: 3.75rem;
}
@media (width < 893px) {
  .recruit-job__list {
    gap: 3.75rem;
    margin-top: 3rem;
  }
}

.recruit-job__item {
  border: 1px solid #298A00;
  background-color: #ffffff;
}

.recruit-job__head {
  background-color: #298A00;
  padding: 0.75rem 1.25rem;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.5833333333;
  color: #ffffff;
}

.recruit-job__desc {
  font-size: 1.125rem;
  line-height: 2.1111111111;
  color: #403224;
  letter-spacing: 0.06em;
  margin-top: 2.375rem;
  text-align: center;
}
@media (width < 893px) {
  .recruit-job__desc {
    font-size: 0.9375rem;
    line-height: 1.8666666667;
    padding: 0 1.5rem;
  }
}
@media (width < 576px) {
  .recruit-job__desc {
    text-align: left;
  }
}

.recruit-job__block {
  display: grid;
  grid-template-columns: 5.2fr 5.7fr;
  gap: clamp(1.25rem, 3.0666666667vw, 2.875rem);
  padding: 0 3.75rem 5rem;
  margin-top: 2.625rem;
}
@media (width < 1261px) {
  .recruit-job__block {
    grid-template-columns: 1fr;
    gap: 1.75rem;
    padding: 0 2.5rem 2.5rem;
  }
}
@media (width < 576px) {
  .recruit-job__block {
    padding: 0 1.25rem 2.5rem;
  }
}

.recruit-job__slider-wrap {
  max-width: 32.75rem;
}
@media (width < 1261px) {
  .recruit-job__slider-wrap {
    max-width: 40.625rem;
    margin: 0 auto;
  }
}
@media (width < 893px) {
  .recruit-job__slider-wrap {
    max-width: 28.125rem;
  }
}
@media (width < 576px) {
  .recruit-job__slider-wrap {
    max-width: 18.75rem;
  }
}

.recruit-job__slide-img-wrap img {
  aspect-ratio: 524/367;
  width: 100%;
  height: auto;
}

.dots-class {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 0.625rem;
}

.dots-class button {
  display: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  outline: none;
  padding: 0;
  border: none;
  background-color: transparent;
}

.dots-class li {
  width: 0.625rem;
  height: 0.625rem;
  background-color: #DBDBDB;
  border-radius: 50%;
  margin-right: 0.625rem;
  cursor: pointer;
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
}

.dots-class li:hover {
  opacity: 0.7;
}

.dots-class li.slick-active {
  background-color: #57B430;
}

.slick-dotted.slick-slider {
  margin-bottom: 0;
}

.recruit-job__slider-wrap .slick-arrow {
  position: absolute;
  top: 47%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1.5625rem;
  height: 1.5625rem;
  background-color: #ffffff;
  border-radius: 50%;
  z-index: 1;
}

.recruit-job__slider-wrap .slick-arrow::before {
  content: "";
  display: block;
  width: 0.5rem;
  height: 0.5rem;
  border-right: 2px solid #B4B4B4;
  border-bottom: 2px solid #B4B4B4;
  position: absolute;
  top: 50%;
  left: 50%;
  opacity: 1;
}

.recruit-job__slider-wrap .prev-arrow {
  left: 0.625rem;
}

.recruit-job__slider-wrap .prev-arrow::before {
  -webkit-transform: translate(-3px, -50%) rotate(135deg);
          transform: translate(-3px, -50%) rotate(135deg);
}

.recruit-job__slider-wrap .next-arrow {
  right: 0.625rem;
}

.recruit-job__slider-wrap .next-arrow::before {
  -webkit-transform: translate(-5px, -50%) rotate(-45deg);
          transform: translate(-5px, -50%) rotate(-45deg);
}

.recruit-job__detail {
  display: grid;
  -ms-flex-line-pack: start;
      align-content: start;
}

.recruit-job__detail-heading {
  font-size: 1rem;
  line-height: 1.5;
  color: #3E603B;
  padding-left: 0.90625rem;
  position: relative;
}

.recruit-job__detail-heading::before {
  content: "";
  display: block;
  width: 0.40625rem;
  height: 0.40625rem;
  border-radius: 50%;
  background-color: #3E603B;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.recruit-job__task-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.625rem;
  margin-top: 0.9375rem;
}

.recruit-job__task-item {
  background-color: #F3F7ED;
  border-radius: 0.3125rem;
  padding: 0.8125rem 0.625rem 0.75rem;
  font-size: 1.0625rem;
  line-height: 1.4705882353;
  color: #3E603B;
  text-align: center;
  letter-spacing: 0.06em;
  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;
}

.recruit-job__fit {
  background-color: #298A00;
  border-radius: 0.3125rem;
  padding: 1.875rem 1.9375rem 1.875rem;
  margin-top: 2.4375rem;
}

.recruit-job__fit-heading {
  font-size: 1rem;
  line-height: 1.5;
  color: #FFE386;
}

.recruit-job__fit-list {
  display: grid;
  margin-top: 0.9375rem;
}

.recruit-job__fit-item {
  font-size: 1rem;
  line-height: 1.5;
  color: #ffffff;
  letter-spacing: 0.06em;
  margin-top: 0.625rem;
  padding-bottom: 0.625rem;
  padding-left: 1.84375rem;
  position: relative;
  border-bottom: 1px dashed #F3F7ED;
}

.recruit-job__fit-item:first-of-type {
  margin-top: 0;
}

.recruit-job__fit-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.recruit-job__fit-item::before {
  content: "";
  display: block;
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 50%;
  background-color: #FFE386;
  position: absolute;
  top: 0.75rem;
  left: 0.65625rem;
}

/*
recruit-beginner
***************************************/
.recruit-beginner {
  padding: 5rem 0 10rem;
}
@media (width < 893px) {
  .recruit-beginner {
    padding: 3.75rem 0 7.5rem;
  }
}

.recruit-beginner__card {
  display: grid;
  grid-template-columns: 2.49fr 7.84fr;
  gap: clamp(1.25rem, 3.5666666667vw, 3.34375rem);
  border: 1px solid #298A00;
  background-color: #ffffff;
  padding: 2.5rem 5.1875rem 1.5625rem 5.625rem;
}
@media (width < 1261px) {
  .recruit-beginner__card {
    padding: 2.5rem 1.5rem 1.5625rem 1.5rem;
  }
}
@media (width < 893px) {
  .recruit-beginner__card {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

.recruit-beginner__left {
  display: grid;
  grid-template-columns: auto 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.96875rem;
  border-right: 1px solid #298A00;
}
@media (width < 893px) {
  .recruit-beginner__left {
    border-right: none;
    border-bottom: 1px solid #298A00;
    padding-bottom: 1.5rem;
  }
}

.recruit-beginner__icon-wrap {
  max-width: 1.375rem;
}

.recruit-beginner__icon-wrap img {
  aspect-ratio: 22/31;
}

.recruit-beginner__label {
  color: #298A00;
  font-size: 1.25rem;
  line-height: 1.45;
  font-weight: 700;
}

.recruit-beginner__heading {
  font-size: 1.375rem;
  line-height: 1.4545454545;
  color: #298A00;
  font-weight: 700;
}
@media (width < 893px) {
  .recruit-beginner__heading {
    font-size: 1.125rem;
  }
}

.recruit-beginner__text {
  font-size: 1.125rem;
  line-height: 2.1111111111;
  color: #403224;
  letter-spacing: 0.06em;
  margin-top: 0.75rem;
}
@media (width < 893px) {
  .recruit-beginner__text {
    font-size: 0.9375rem;
    line-height: 1.8666666667;
  }
}

/*
recruit-appeal
***************************************/
.recruit-appeal {
  background-color: #109C4A;
  padding: 7.5rem 0 10rem;
}
@media (width < 893px) {
  .recruit-appeal {
    padding: 5rem 0 7.5rem;
  }
}

.recruit-appeal__heading {
  color: #ffffff;
  text-align: center;
  font-size: 1.75rem;
  line-height: 1.4285714286;
  font-weight: 500;
}

.recruit-appeal__heading-sub {
  display: block;
  font-size: 1.375rem;
  line-height: 1.4545454545;
  margin-bottom: 0.5rem;
}

.recruit-appeal__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4.375rem 3.75rem;
  margin-top: 3.75rem;
}
@media (width < 1261px) {
  .recruit-appeal__grid {
    gap: 2.5rem 1.875rem;
  }
}
@media (width < 893px) {
  .recruit-appeal__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 3rem;
  }
}

.recruit-appeal__item {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto 1fr;
}

.recruit-appeal__img-wrap {
  max-width: 37.5rem;
}
@media (width < 893px) {
  .recruit-appeal__img-wrap {
    max-width: 100%;
  }
}

.recruit-appeal__img-wrap img {
  aspect-ratio: 10/7;
  aspect-ratio: 600/420;
  border-radius: 0.625rem;
}
@media (width < 893px) {
  .recruit-appeal__img-wrap img {
    border-radius: 0.9375rem;
  }
}

.recruit-appeal__body {
  background-color: #109C4A;
  border-radius: 5rem;
  padding: 2.8125rem 1.875rem 2rem;
  margin: -3.125rem auto 0;
  position: relative;
  z-index: 1;
  max-width: 86.66%;
}
@media (width < 1261px) {
  .recruit-appeal__body {
    max-width: 90%;
  }
}

.recruit-appeal__title {
  color: #ffffff;
  font-size: 1.5rem;
  line-height: 1.0833333333;
  font-weight: 500;
  padding-bottom: 1.25rem;
  position: relative;
  text-align: center;
}

.recruit-appeal__title::after {
  content: "";
  display: block;
  width: 1.875rem;
  height: 1px;
  background-color: #ffffff;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.recruit-appeal__text {
  font-size: 1.125rem;
  line-height: 2.3333333333;
  color: #ffffff;
  letter-spacing: 0.06em;
  margin-top: 1.375rem;
}

/*
recruit-details
***************************************/
.recruit-details {
  padding-top: 10rem;
}
@media (width < 893px) {
  .recruit-details {
    padding-top: 5rem 0 7.5rem;
  }
}

.recruit-details__heading {
  text-align: center;
}

.recruit-details__list {
  display: grid;
  gap: 1.875rem;
  max-width: 67.4375rem;
  margin: 3.75rem auto 0;
}
@media (width < 1261px) {
  .recruit-details__list {
    max-width: 90%;
  }
}
@media (width < 893px) {
  .recruit-details__list {
    margin-top: 3rem;
  }
}

.recruit-details__summary {
  display: grid;
  grid-template-columns: 1fr auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.25rem;
  background-color: #298A00;
  padding: 1.1875rem 3.75rem;
  cursor: pointer;
}
@media (width < 893px) {
  .recruit-details__summary {
    padding: 1.25rem 1.5rem;
  }
}

.recruit-details__summary-text {
  color: #ffffff;
  font-size: 1.375rem;
  line-height: 1.4545454545;
  letter-spacing: 0.09em;
}
@media (width < 893px) {
  .recruit-details__summary-text {
    font-size: 1.125rem;
  }
}

.recruit-details__icon {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  position: relative;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.recruit-details__icon::before,
.recruit-details__icon::after {
  content: "";
  position: absolute;
  background-color: #ffffff;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.recruit-details__icon::before {
  width: 1.5rem;
  height: 2px;
}

.recruit-details__icon::after {
  width: 2px;
  height: 1.5rem;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.recruit-details__item.is-active .recruit-details__icon::after {
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
          transform: translate(-50%, -50%) rotate(90deg);
}

.recruit-details__content {
  display: none;
  background-color: #ffffff;
}

.recruit-details__table {
  width: 100%;
  border-collapse: collapse;
}

.recruit-details__th,
.recruit-details__td {
  border: 1px solid #298A00;
  vertical-align: middle;
}

.recruit-details__th {
  background-color: #EFF7EC;
  width: 16.9375rem;
  padding: 1rem 1.25rem 1.5625rem;
  font-size: 1rem;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-align: center;
  color: #403224;
}
@media (width < 893px) {
  .recruit-details__th {
    width: 6.875rem;
    font-size: 0.875rem;
  }
}
@media (width < 576px) {
  .recruit-details__th {
    width: 5.625rem;
    padding: 0.75rem 0.625rem;
    font-size: 0.8125rem;
  }
}

.recruit-details__td {
  padding: 1rem 1.75rem 1.40625rem;
  font-size: 0.9375rem;
  line-height: 1.8666666667;
  letter-spacing: 0.05em;
  color: #403224;
}
@media (width < 893px) {
  .recruit-details__td {
    padding: 0.75rem 1rem;
  }
}
@media (width < 576px) {
  .recruit-details__td {
    padding: 0.75rem 0.75rem;
    font-size: 0.8125rem;
  }
}

/*
recruit-entry
***************************************/
.recruit-entry {
  padding: 7.5rem 0 12.4375rem;
}
@media (width < 893px) {
  .recruit-entry {
    padding: 5rem 0 7.5rem;
  }
}

.recruit-entry__heading {
  text-align: center;
}

.recruit-entry__text {
  font-size: 1.125rem;
  line-height: 1.8333333333;
  letter-spacing: 0.06em;
  color: #403224;
  text-align: center;
  margin-top: 3rem;
}
@media (width < 893px) {
  .recruit-entry__text {
    margin-top: 2rem;
    text-align: left;
  }
}

.recruit-entry__btn {
  display: block;
  margin: 2.25rem auto 0;
  max-width: 26.25rem;
  padding: 2.775rem 1rem 2.85rem;
  background-color: #E68615;
  border-radius: 0.3125rem;
  color: #ffffff;
  font-size: 1rem;
  line-height: 1.5;
  text-align: center;
}
@media (hover: hover) {
  .recruit-entry__btn:hover {
    opacity: 0.8;
  }
}
@media (hover: none) {
  .recruit-entry__btn:active {
    opacity: 0.8;
  }
}
@media (width < 893px) {
  .recruit-entry__btn {
    margin-top: 2rem;
  }
}

/*

Page：style.scss

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

Page : faq

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

faq

***************************************/
.faq {
  padding: 7.5rem 0 12.4375rem;
}
@media (width < 893px) {
  .faq {
    padding: 5rem 0 7.5rem;
  }
}

.faq__block + .faq__block {
  margin-top: 7.5rem;
}
@media (width < 893px) {
  .faq__block + .faq__block {
    margin-top: 5rem;
  }
}

.faq__category-title {
  color: #ffffff;
  font-size: 1.625rem;
  line-height: 1.4230769231;
  font-weight: 500;
  letter-spacing: 0.09em;
  background-color: #298A00;
  padding: 0.75rem 3.75rem;
  border-radius: 5px;
}
@media (width < 893px) {
  .faq__category-title {
    font-size: 1.125rem;
    padding: 1rem 1.875rem;
  }
}

.faq__list {
  display: grid;
  gap: 1.25rem;
  margin-top: 3.75rem;
}
@media (width < 893px) {
  .faq__list {
    margin-top: 2.5rem;
  }
}

.faq__item {
  display: grid;
  grid-template-columns: 1fr;
  background-color: #ffffff;
  padding: 1.875rem 3.75rem 1.5625rem;
}
@media (width < 893px) {
  .faq__item {
    padding: 1.5rem 1.875rem;
  }
}

.faq__question {
  font-size: 1.25rem;
  line-height: 1.45;
  font-weight: 500;
  color: #3E603B;
  border-bottom: 1px dashed #3E603B;
  padding-bottom: 0.875rem;
}
@media (width < 893px) {
  .faq__question {
    font-size: 1.125rem;
  }
}

.faq__answer {
  font-size: 0.9375rem;
  line-height: 2.1333333333;
  letter-spacing: 0.05em;
  color: #403224;
  padding-top: 0.9375rem;
}

/*

Page：style.scss

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

Page: contact

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

contact-lead

***************************************/
.contact-lead {
  padding-top: 7.5rem;
}
@media (width < 893px) {
  .contact-lead {
    padding-top: 5rem;
  }
}

.contact-lead__text {
  font-size: 1.125rem;
  line-height: 1.8333333333;
  color: #403224;
  letter-spacing: 0.06em;
  text-align: center;
}
@media (width < 893px) {
  .contact-lead__text {
    font-size: 0.9375rem;
  }
}
@media (width < 576px) {
  .contact-lead__text {
    text-align: left;
  }
}

.contact-lead__block {
  margin-top: 2.8125rem;
}

.contact-lead__block-heading {
  background-color: #298A00;
  color: #ffffff;
  font-size: 1.625rem;
  line-height: 1.4230769231;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-align: center;
  padding: 0.75rem 1.25rem;
  border-radius: 5px;
}
@media (width < 893px) {
  .contact-lead__block-heading {
    font-size: 1.25rem;
  }
}

.contact-lead__block-body {
  display: grid;
  place-items: center;
  background-color: #ffffff;
  padding: 1.25rem 1.25rem 1.75rem;
}
@media (width < 893px) {
  .contact-lead__block-body {
    padding: 1.75rem 1.5rem;
  }
}

.contact-lead__tel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: 0.75rem;
  color: #3E603B;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media (hover: hover) {
  .contact-lead__tel:hover {
    opacity: 0.7;
  }
}
@media (hover: none) {
  .contact-lead__tel:active {
    opacity: 0.7;
  }
}

.contact-lead__tel-label {
  font-size: 2.0625rem;
  line-height: 1.3939393939;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.contact-lead__tel-num {
  font-size: 3rem;
  line-height: 1.4583333333;
  font-weight: 500;
  letter-spacing: 0.05em;
}
@media (width < 893px) {
  .contact-lead__tel-num {
    font-size: 2.25rem;
  }
}

.contact-lead__hours {
  font-size: 0.9375rem;
  line-height: 1.4;
  color: #8B7A69;
  letter-spacing: 0.05em;
}

/*

contact-form

***************************************/
.contact-form {
  padding: 5rem 0 7.5rem;
}
@media (width < 893px) {
  .contact-form {
    padding: 3.75rem 0 5rem;
  }
}

.contact-form__heading {
  color: #ffffff;
  font-size: 1.625rem;
  line-height: 1.4230769231;
  font-weight: 400;
  letter-spacing: 0.09em;
  background-color: #298A00;
  border-radius: 5px;
  padding: 0.75rem 1.25rem;
  text-align: center;
}
@media (width < 893px) {
  .contact-form__heading {
    font-size: 1.25rem;
  }
}

.contact-form__form {
  background-color: #ffffff;
  padding: 4rem 0 16.5rem;
}
@media (width < 893px) {
  .contact-form__form {
    padding-bottom: 11.25rem;
  }
}

.contact-form__form-inner {
  max-width: 60rem;
  margin: 0 auto;
}
@media (width < 1261px) {
  .contact-form__form-inner {
    max-width: 90%;
  }
}

.contact-form__item {
  margin-top: 1.875rem;
}

.contact-form__item--radio {
  display: grid;
  grid-template-columns: auto 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 7.6875rem;
  margin-top: 0;
}
@media (width < 893px) {
  .contact-form__item--radio {
    grid-template-columns: 1fr;
    gap: 0.875rem;
  }
}

.contact-form__label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.9375rem;
  font-size: 1.125rem;
  line-height: 1.4444444444;
  color: #2F2725;
  margin-bottom: 1.25rem;
}

.contact-form__item--radio .contact-form__label {
  margin-bottom: 0;
}

.contact-form__label-badge {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #EB3600;
  color: #ffffff;
  font-size: 0.75rem;
  line-height: 1.4166666667;
  letter-spacing: 0.08em;
  padding: 0.125rem 0.75rem;
  border-radius: 0.8125rem;
  white-space: nowrap;
}

.wpcf7-radio {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 3.125rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.contact-form__radio-list .wpcf7-list-item {
  margin: 0;
}

.contact-form__radio-list label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.625rem;
  cursor: pointer;
  position: relative;
}

.contact-form__radio-list label::before {
  content: "";
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 1.4375rem;
  height: 1.4375rem;
  border: 1px solid #C6C6C6;
  border-radius: 50%;
  background-color: #fff;
}

.contact-form__radio-list label:has(input[type=radio]:checked)::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0.375rem;
  width: 0.6875rem;
  height: 0.6875rem;
  border-radius: 50%;
  background-color: #EB3600;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.contact-form__radio-list .wpcf7-list-item-label {
  color: #382E2C;
  font-size: 1rem;
  line-height: 1.5;
}

.contact-form__radio-list input[type=radio] {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  margin: -1px;
}

.contact-form__input {
  display: block;
  width: 100%;
  border: 1px solid #D9D9D9;
  padding: 1.375rem 1.1875rem;
  font-size: 1.125rem;
  line-height: 1.4444444444;
  letter-spacing: 0.08em;
  color: #2F2725;
  background-color: #ffffff;
}

.contact-form__input::-webkit-input-placeholder {
  color: #BEBEBE;
  font-size: 1.125rem;
  line-height: 1.4444444444;
  letter-spacing: 0.08em;
}

.contact-form__input::-moz-placeholder {
  color: #BEBEBE;
  font-size: 1.125rem;
  line-height: 1.4444444444;
  letter-spacing: 0.08em;
}

.contact-form__input:-ms-input-placeholder {
  color: #BEBEBE;
  font-size: 1.125rem;
  line-height: 1.4444444444;
  letter-spacing: 0.08em;
}

.contact-form__input::-ms-input-placeholder {
  color: #BEBEBE;
  font-size: 1.125rem;
  line-height: 1.4444444444;
  letter-spacing: 0.08em;
}

.contact-form__input::placeholder {
  color: #BEBEBE;
  font-size: 1.125rem;
  line-height: 1.4444444444;
  letter-spacing: 0.08em;
}

.contact-form__textarea {
  display: block;
  width: 100%;
  border: 1px solid #D9D9D9;
  padding: 1.375rem 1.1875rem;
  font-size: 1.125rem;
  line-height: 1.4444444444;
  color: #2F2725;
  background-color: #ffffff;
  max-height: 15.0625rem;
  resize: vertical;
}

.contact-form__textarea::-webkit-input-placeholder {
  color: #BEBEBE;
  font-size: 1.125rem;
  line-height: 1.4444444444;
  letter-spacing: 0.08em;
}

.contact-form__textarea::-moz-placeholder {
  color: #BEBEBE;
  font-size: 1.125rem;
  line-height: 1.4444444444;
  letter-spacing: 0.08em;
}

.contact-form__textarea:-ms-input-placeholder {
  color: #BEBEBE;
  font-size: 1.125rem;
  line-height: 1.4444444444;
  letter-spacing: 0.08em;
}

.contact-form__textarea::-ms-input-placeholder {
  color: #BEBEBE;
  font-size: 1.125rem;
  line-height: 1.4444444444;
  letter-spacing: 0.08em;
}

.contact-form__textarea::placeholder {
  color: #BEBEBE;
  font-size: 1.125rem;
  line-height: 1.4444444444;
  letter-spacing: 0.08em;
}

.contact-form__acceptance-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.25rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 3.125rem;
}

.contact-form__acceptance-input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  margin: -1px;
}

.contact-form__acceptance-label {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.25rem;
  font-size: 1rem;
  line-height: 1.5;
  color: #2F2725;
  letter-spacing: 0.08em;
  cursor: pointer;
  position: relative;
}

.contact-form__acceptance-label::before {
  content: "";
  width: 1.4375rem;
  height: 1.4375rem;
  accent-color: #298A00;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  cursor: pointer;
  border: 1px solid #C6C6C6;
  border-radius: 50%;
}

.contact-form__acceptance-input:checked + .contact-form__acceptance-label::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0.375rem;
  width: 0.6875rem;
  height: 0.6875rem;
  background-color: #DB0000;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border-radius: 50%;
}

.contact-form__acceptance-link {
  color: #DB0000;
  -webkit-text-decoration: underline solid #DB0000;
          text-decoration: underline solid #DB0000;
  text-underline-offset: 0;
}

.contact-form__submit-wrap {
  margin-top: 2.6875rem;
  text-align: center;
}
@media (width < 893px) {
  .contact-form__submit-wrap {
    margin-top: 2rem;
  }
}

.contact-form__submit {
  display: inline-block;
  width: 100%;
  max-width: 23.3125rem;
  padding: 1.5625rem 1.25rem;
  border: 1px solid #CBCBCB;
  border-radius: 0.3125rem;
  color: #E5E5E5;
  font-size: 1.25rem;
  line-height: 1.45;
  font-weight: 500;
  letter-spacing: 0.06em;
  -webkit-transition: color 0.3s ease, background-color 0.3s ease;
  transition: color 0.3s ease, background-color 0.3s ease;
}

.contact-form__submit.is-active {
  cursor: pointer;
  color: #ffffff;
  background-color: #298A00;
  pointer-events: auto;
}
@media (hover: hover) {
  .contact-form__submit.is-active:hover {
    background-color: #298A00;
    border-color: #298A00;
    color: #ffffff;
  }
}
@media (hover: none) {
  .contact-form__submit.is-active:active {
    background-color: #298A00;
    border-color: #298A00;
    color: #ffffff;
  }
}

/*

Page：style.scss

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

Page: news

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

news-archive

***************************************/
.news-archive {
  padding: 7.5rem 0 10rem;
}
@media (width < 893px) {
  .news-archive {
    padding: 6.25rem 0 7.5rem;
  }
}

.news-archive__inner {
  max-width: 56.25rem;
  margin: 0 auto;
}
@media (width < 1261px) {
  .news-archive__inner {
    max-width: 90%;
  }
}

.news-archive__list {
  display: grid;
  border-top: 1px solid #DED6CD;
}

.news-archive__item {
  border-bottom: 1px solid #DED6CD;
}

.news-archive__link {
  display: grid;
  grid-template-columns: auto auto 1fr auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 1.5rem;
     -moz-column-gap: 1.5rem;
          column-gap: 1.5rem;
  padding: 1.5rem 0.5rem;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media (width < 893px) {
  .news-archive__link {
    grid-template-columns: auto 1fr auto;
    grid-template-rows: auto auto;
    row-gap: 0.5rem;
    -webkit-column-gap: 1rem;
       -moz-column-gap: 1rem;
            column-gap: 1rem;
    padding: 1.25rem 0.25rem;
  }
}
@media (hover: hover) {
  .news-archive__link:hover {
    opacity: 0.7;
  }
}
@media (hover: none) {
  .news-archive__link:active {
    opacity: 0.7;
  }
}

.news-archive__tag {
  color: #DF1C07;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.4285714286;
}
@media (width < 893px) {
  .news-archive__tag {
    grid-column: 1;
    grid-row: 1;
  }
}

.news-archive__date {
  color: #8B7A69;
  font-size: 0.8125rem;
  line-height: 1.5384615385;
  letter-spacing: 0.03em;
  white-space: nowrap;
}
@media (width < 893px) {
  .news-archive__date {
    grid-column: 2;
    grid-row: 1;
  }
}

.news-archive__text {
  color: #403224;
  font-size: 0.9375rem;
  line-height: 1.6;
  letter-spacing: 0.05em;
}
@media (width < 893px) {
  .news-archive__text {
    grid-column: 1/3;
    grid-row: 2;
  }
}

.news-archive__icon {
  display: grid;
  place-items: center;
  width: 1.25rem;
  height: 1.25rem;
  background-color: #E68615;
  border-radius: 0.1875rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media (width < 893px) {
  .news-archive__icon {
    grid-column: 3;
    grid-row: 1/3;
  }
}

.news-archive__empty {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #403224;
  text-align: center;
  padding: 3.75rem 0;
}

.news-archive__pager {
  margin-top: 3.75rem;
}
@media (width < 893px) {
  .news-archive__pager {
    margin-top: 3rem;
  }
}

/*

news-single

***************************************/
.news-single {
  padding: 5rem 0 10rem;
}
@media (width < 893px) {
  .news-single {
    padding: 3.75rem 0 7.5rem;
  }
}

.news-single__head {
  display: grid;
  gap: 1rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #DED6CD;
}
@media (width < 893px) {
  .news-single__head {
    gap: 0.75rem;
    padding-bottom: 1.5rem;
  }
}

.news-single__tag {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #298A00;
  color: #ffffff;
  font-size: 0.75rem;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0.03em;
  padding: 0.3125rem 0.75rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.news-single__date {
  color: #8B7A69;
  font-size: 0.8125rem;
  line-height: 1.5384615385;
  letter-spacing: 0.03em;
}

.news-single__title {
  color: #403224;
  font-size: 1.5rem;
  line-height: 1.5;
  font-weight: 500;
  letter-spacing: 0.05em;
}
@media (width < 893px) {
  .news-single__title {
    font-size: 1.25rem;
    line-height: 1.5;
  }
}

.news-single__body {
  padding-bottom: 3rem;
  font-size: 0.9375rem;
  line-height: 2;
  color: #403224;
  letter-spacing: 0.05em;
  max-width: 56.25rem;
  margin: 0 auto;
}
@media (width < 893px) {
  .news-single__body {
    padding: 2.25rem 0;
  }
}

.news-single__body 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 #298A00;
}
@media (width < 893px) {
  .news-single__body h2 {
    line-height: 1.3333333333;
    margin-top: 3.125rem;
    padding-bottom: 0.75rem;
  }
}
.news-single__body h3 {
  font-size: 1.375rem;
  letter-spacing: 0.08em;
  line-height: 1.4545454545;
  font-weight: 500;
  padding-bottom: 0.625rem;
  border-bottom: 1px solid #298A00;
  margin-top: 3.75rem;
}
@media (width < 893px) {
  .news-single__body h3 {
    padding-bottom: 0.75rem;
    margin-top: 2.5rem;
  }
}
.news-single__body h4 {
  padding: 0.5625rem 0;
  border-top: 1px solid #298A00;
  border-bottom: 1px solid #298A00;
  font-size: 1.375rem;
  letter-spacing: 0.08em;
  line-height: 1.4545454545;
  font-weight: 500;
  margin-top: 3.75rem;
}
@media (width < 893px) {
  .news-single__body h4 {
    padding: 0.75rem 0;
    margin-top: 2.5rem;
    font-weight: 300;
  }
}
.news-single__body p {
  color: #403224;
  font-size: 1.125rem;
  letter-spacing: 0.08em;
  line-height: 2;
  font-weight: 300;
  margin-top: 1.28125rem;
}
@media (width < 893px) {
  .news-single__body p {
    margin-top: 1.25rem;
  }
}

.news-single__pagenav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  padding-top: 3rem;
  border-top: 1px solid #DED6CD;
}
@media (width < 893px) {
  .news-single__pagenav {
    padding-top: 2.25rem;
  }
}

.news-single__pagenav-prev {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.625rem;
  color: #403224;
  font-size: 0.8125rem;
  line-height: 1.5384615385;
  letter-spacing: 0.03em;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media (hover: hover) {
  .news-single__pagenav-prev:hover {
    opacity: 0.7;
  }
}

.news-single__pagenav-prev--disabled {
  pointer-events: none;
  visibility: hidden;
}

.news-single__pagenav-next {
  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;
  gap: 0.625rem;
  color: #403224;
  font-size: 0.8125rem;
  line-height: 1.5384615385;
  letter-spacing: 0.03em;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media (hover: hover) {
  .news-single__pagenav-next:hover {
    opacity: 0.7;
  }
}

.news-single__pagenav-next--disabled {
  pointer-events: none;
  visibility: hidden;
}

.news-single__pagenav-arrow {
  display: inline-block;
  width: 1.5rem;
  height: 1.5rem;
  border: 1px solid #DED6CD;
  border-radius: 50%;
  position: relative;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.news-single__pagenav-arrow--prev::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 55%;
  -webkit-transform: translate(-50%, -50%) rotate(135deg);
          transform: translate(-50%, -50%) rotate(135deg);
  width: 0.375rem;
  height: 0.375rem;
  border-right: 1px solid #403224;
  border-bottom: 1px solid #403224;
}

.news-single__pagenav-arrow--next::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 45%;
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
  width: 0.375rem;
  height: 0.375rem;
  border-right: 1px solid #403224;
  border-bottom: 1px solid #403224;
}

@media (width < 576px) {
  .news-single__pagenav-label {
    display: none;
  }
}

.news-single__pagenav-all {
  display: grid;
  place-items: center;
  background-color: #298A00;
  color: #ffffff;
  font-size: 0.8125rem;
  line-height: 1.5384615385;
  font-weight: 500;
  letter-spacing: 0.05em;
  padding: 0.625rem 1.5rem;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media (hover: hover) {
  .news-single__pagenav-all:hover {
    opacity: 0.8;
  }
}
@media (hover: none) {
  .news-single__pagenav-all:active {
    opacity: 0.8;
  }
}

.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: #298A00;
  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: #403224;
  -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: #403224;
  -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：style.scss

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

Page: privacy-policy

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

privacy

***************************************/
.privacy {
  padding: 5rem 0 10rem;
}
@media (width < 893px) {
  .privacy {
    padding: 3.75rem 0 7.5rem;
  }
}

.privacy__intro-text {
  font-size: 0.9375rem;
  line-height: 2;
  color: #403224;
  letter-spacing: 0.05em;
}

.privacy__heading {
  font-size: 1.25rem;
  line-height: 1.5;
  color: #403224;
  letter-spacing: 0.05em;
  padding-bottom: 0.625rem;
  border-bottom: 1px solid #DED6CD;
  margin-top: 1.5rem;
}
@media (width < 893px) {
  .privacy__heading {
    font-size: 1.125rem;
    line-height: 1.5;
    margin-bottom: 1rem;
  }
}

.privacy__text {
  font-size: 1rem;
  line-height: 1.75;
  color: #403224;
  letter-spacing: 0.06em;
  margin-top: 0.625rem;
}

.privacy__list {
  display: grid;
  gap: 0.5rem;
  margin-top: 1rem;
  padding-left: 1rem;
}

.privacy__list-item {
  font-size: 0.9375rem;
  line-height: 1.8666666667;
  color: #403224;
  letter-spacing: 0.05em;
  position: relative;
  padding-left: 0.875rem;
}

.privacy__list-item::before {
  content: "";
  position: absolute;
  top: 0.8125rem;
  left: 0;
  width: 0.3125rem;
  height: 0.3125rem;
  border-radius: 50%;
  background-color: #298A00;
}

.privacy__contact {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.privacy__contact-name {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #403224;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.privacy__contact-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.5rem;
  color: #298A00;
  font-size: 0.9375rem;
  line-height: 1.6;
  letter-spacing: 0.05em;
  border-bottom: 1px solid #298A00;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding-bottom: 0.125rem;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media (hover: hover) {
  .privacy__contact-link:hover {
    opacity: 0.7;
  }
}
@media (hover: none) {
  .privacy__contact-link:active {
    opacity: 0.7;
  }
}

/*

Page：style.scss

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

Page: thanks

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

thanks

***************************************/
.thanks {
  padding: 6.25rem 0 10rem;
}
@media (width < 893px) {
  .thanks {
    padding: 5rem 0 7.5rem;
  }
}

.thanks__body {
  display: grid;
  place-items: center;
  gap: 3rem;
  text-align: center;
}
@media (width < 893px) {
  .thanks__body {
    gap: 2.5rem;
  }
}

.thanks__text {
  font-size: 1rem;
  line-height: 2.25;
  color: #403224;
  letter-spacing: 0.05em;
}
@media (width < 893px) {
  .thanks__text {
    font-size: 0.875rem;
    line-height: 2.1428571429;
    text-align: left;
  }
}

.thanks__btn-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.thanks__btn {
  display: grid;
  grid-template-columns: 1fr 3rem;
  background-color: #298A00;
  border-radius: 0.25rem;
  min-width: 17.5rem;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media (hover: hover) {
  .thanks__btn:hover {
    opacity: 0.8;
  }
}
@media (hover: none) {
  .thanks__btn:active {
    opacity: 0.8;
  }
}

.thanks__btn-text {
  display: grid;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #ffffff;
  font-size: 0.9375rem;
  line-height: 1.4666666667;
  font-weight: 500;
  letter-spacing: 0.08em;
  padding: 1.25rem 1rem;
}

.thanks__btn-icon {
  display: grid;
  place-items: center;
  background-color: rgba(0, 0, 0, 0.15);
  border-radius: 0 0.25rem 0.25rem 0;
}

/*

Page：style.scss

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

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: #298A00;
  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;
}

.error404__btn {
  background-color: #298A00;
  color: #fff;
  font-size: 1.125rem;
  letter-spacing: 0.07em;
  line-height: 1.4444444444;
  border-radius: 1.4375rem;
  padding: 0.625rem 2.0625rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (hover: hover) {
  .error404__btn:hover {
    opacity: 0.7;
  }
}
@media (hover: none) {
  .error404__btn:active {
    opacity: 0.7;
  }
}