/* ============================
	FEATURE
============================ */
#feature #main {
  font-size: calc(10 / 1440 * 100vw);
}

@media screen and (max-width: 1040px) {
  #feature #main {
    font-size: calc(10px / 1440 * 1040);
  }
}

@media screen and (max-width: 767px) {
  #feature #main {
    font-size: 10px;
  }
}

.feature-top {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10em 0 3.45em;
}

@media screen and (max-width: 767px) {
  .feature-top {
    padding: 4rem 0 7.4rem;
  }
}

.feature-top__catch {
  margin: 0;
  padding-bottom: calc(8em / 40);
  border-bottom: 1px solid #2F2F2F;
  font-size: 4em;
  font-weight: 500;
  line-height: 1.425;
  letter-spacing: 0.15em;
  color: #32412A;
}

@media screen and (max-width: 767px) {
  .feature-top__catch {
    padding-right: 1.2rem;
    padding-bottom: 0.8rem;
    font-size: 2.4rem;
    line-height: calc(35 / 24);
  }
}

.feature-top__text {
  margin: 1.725em 0 0;
  text-align: center;
  font-size: 2em;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.1em;
}

@media screen and (max-width: 767px) {
  .feature-top__text {
    margin-top: 2rem;
    font-size: 1.4rem;
    letter-spacing: 0.05em;
  }
}

.feature-top__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  column-gap: 1.5em;
  margin-top: 3.6em;
}

@media screen and (max-width: 767px) {
  .feature-top__nav {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

.feature-top__nav-link {
  display: block;
  padding: 0.5em 1em;
  background-color: #48593F;
  font-size: 2.4em;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: #fff;
}

@media screen and (max-width: 767px) {
  .feature-top__nav-link {
    padding: 0.5rem 1rem;
    font-size: 1.8rem;
  }
}

.feature-top__nav-item:nth-child(even) .feature-top__nav-link {
  background-color: #728469;
}

/* Scrolldown */
.concept__scroll {
  position: absolute;
  bottom: 2.6em;
  right: 2.4em;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 4.2em;
}

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

.concept__scroll-text {
  writing-mode: vertical-rl;
  font-size: 1.2em;
  letter-spacing: 0.1em;
  color: #32412A;
}

.concept__scroll-arrow {
  width: 100%;
  height: 11.71em;
  margin-top: 1.4em;
}

.concept__scroll-arrow::before {
  content: "";
  display: block;
  height: 4.2em;
  opacity: 0;
  background: url("../img/top/arrow-scroll.svg") no-repeat center bottom / 100% auto;
  animation: scrollDown 1.5s ease-in-out infinite;
}

@keyframes scrollDown {
  0% {
    height: 4.2em;
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  100% {
    height: 11.71em;
    opacity: 0;
  }
}

.feature-item {
  padding-top: 8em;
}

@media screen and (max-width: 767px) {
  .feature-item {
    margin-top: -5.6rem;
    padding-top: 5.6rem;
  }
}

.feature-item__inner {
  position: relative;
  z-index: 0;
  display: flex;
  column-gap: 8.8em;
  padding-bottom: 8em;
  background-color: #F4F4F4;
}

.feature-item__inner::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  left: 0;
  height: 4.8em;
  background-color: #fff;
}

.feature-item:nth-child(even) .feature-item__inner {
  flex-direction: row-reverse;
  background-color: #fff;
}

@media screen and (max-width: 767px) {
  .feature-item__inner {
    flex-direction: column !important;
  }
}

.feature-item__title {
  position: absolute;
  top: 3em;
  left: calc(50% - 1.2em);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 2.4em;
  height: 8.5em;
  margin: 0;
  padding-top: 0.26em;
  background-color: #48593F;
  writing-mode: vertical-rl;
  font-size: 4em;
  font-weight: 500;
  letter-spacing: 0.26em;
  color: #fff;
}

.feature-item:nth-child(even) .feature-item__title {
  background-color: #728469;
}

@media screen and (max-width: 767px) {
  .feature-item__title {
    top: 27.4rem;
    left: calc(50% - 7.3rem);
    width: 14.6rem;
    height: 5.6rem;
    padding-top: 0;
    padding-left: 0.15em;
    writing-mode: horizontal-tb;
    font-size: 2.4rem;
    letter-spacing: 0.15em;
  }
}

.feature-item__img-wrapper {
  flex-shrink: 0;
  width: 50%;
}

@media screen and (max-width: 767px) {
  .feature-item__img-wrapper {
    width: 100%;
  }
}

.feature-item__contents {
  padding: 16.6em 0 0;
}

@media screen and (max-width: 767px) {
  .feature-item__contents {
    padding: 5rem 2rem 0;
  }
}

.feature-item__catch {
  max-width: calc(490em / 28);
  margin: 0;
  font-size: 2.8em;
  font-weight: 500;
  line-height: calc(40 / 28);
  letter-spacing: 0.15em;
  white-space: nowrap;
  color: #32412A;
}

@media screen and (min-width: 768px) {
  .feature-item__catch.--row2 {
    margin-top: -1.6em;
    line-height: calc(46 / 28);
  }
}

@media screen and (max-width: 767px) {
  .feature-item__catch {
    max-width: unset;
    text-align: center;
    font-size: 2.2rem;
    line-height: calc(36 / 22);
  }
}

.feature-item__text {
  max-width: calc(490em / 14);
  margin: calc(16em / 14) 0 0;
  font-size: 1.4em;
  line-height: 2;
  letter-spacing: 0.15em;
}

@media screen and (max-width: 767px) {
  .feature-item__text {
    max-width: unset;
    margin: 1rem 0 0;
  }
}

/* REFORM */
.feature-reform {
  position: relative;
  z-index: 0;
  margin: 8em 0 -13.1em;
  padding-bottom: 23.2em;
}

@media screen and (max-width: 767px) {
  .feature-reform {
    margin: 7rem 0 -10em;
    padding-bottom: 15rem;
  }
}

.feature-reform::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 10.5em;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #D9E2D5;
}

@media screen and (max-width: 767px) {
  .feature-reform::before {
    top: 13.7rem;
  }
}

.feature-reform__images {
  position: absolute;
  top: 0;
  right: 0;
  display: grid;
  grid-template-columns: repeat(2, 34.8em);
  column-gap: 0.8em;
}

@media screen and (max-width: 767px) {
  .feature-reform__images {
    position: static;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 0.4em;
    margin: 0 2rem;
  }
}

.feature-reform__contents {
  width: 51.1em;
  margin-left: 14.2em;
  padding-top: 3.3em;
}

@media screen and (max-width: 767px) {
  .feature-reform__contents {
    width: 100%;
    margin-left: 0;
    padding: 2.44em 2em 0;
  }
}

.feature-reform__heading__sub {
  margin: 0;
  font-family: "Prompt", sans-serif;
  font-size: 9.2em;
  font-weight: 200;
  line-height: calc(139 / 92);
  color: #728469;
}

@media screen and (max-width: 767px) {
  .feature-reform__heading__sub {
    font-size: 7.2rem;
    line-height: calc(108 / 72);
  }
}

.feature-reform__heading__main {
  margin: calc(-16em / 24) 0 0;
  font-family: "Noto Serif JP", serif;
  font-size: 2.4em;
  font-weight: 500;
  line-height: calc(35 / 24);
  letter-spacing: 0.15em;
}

@media screen and (max-width: 767px) {
  .feature-reform__heading__main {
    margin-top: -1.8rem;
    font-size: 1.8rem;
    line-height: calc(26 / 18);
  }
}

.feature-reform__text {
  margin: calc(55em / 18) 0 0;
  font-size: 1.8em;
  line-height: 2;
  letter-spacing: 0.15em;
}

@media screen and (max-width: 767px) {
  .feature-reform__text {
    margin: 2rem 0 0;
    font-size: 1.4rem;
  }
}

.feature-reform__list {
  width: 115.6em;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 3.1em 3.2em;
  margin: 9.9em auto 0;
}

@media screen and (max-width: 767px) {
  .feature-reform__list {
    width: 100%;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem 0.3rem;
    margin-top: 4.6rem;
    padding: 0 2rem;
  }
}

.feature-reform__item {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 3em;
  background-color: #fff;
  font-size: 1.6em;
  font-weight: 500;
}

/* ============================
	COMPANY
============================ */
.company-message {
  text-align: center;
  font-size: 3.2rem;
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0.15em;
  color: #32412A;
}

@media screen and (max-width: 767px) {
  .company-message {
    margin: 0 0 1em;
    font-size: 2.2rem;
  }
}

.company-text {
  margin-top: 4rem;
  text-align: center;
  font-size: 1.6rem;
  line-height: 2.5;
  letter-spacing: 0.15rem;
}

@media screen and (max-width: 767px) {
  .company-text {
    text-align: left;
    font-size: 1.4rem;
  }
}

.company-section {
  position: relative;
  z-index: 0;
  margin: 16rem 0 6.4rem;
  padding: 1rem 6.4rem 6.4rem;
}

@media screen and (max-width: 767px) {
  .company-section {
    margin: 10rem 0 6.4rem;
    padding: 1rem 0 4rem;
  }
}

.company-section::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background-color: #f8f8f8;
}

.company-section:nth-child(odd)::before {
  margin-right: calc(50% - 50vw);
}

.company-section:nth-child(even)::before {
  margin-left: calc(50% - 50vw);
}

@media screen and (max-width: 767px) {
  .company-section::before {
    margin-right: calc(50% - 50vw);
    margin-left: calc(50% - 50vw);
  }
}

.heading {
  margin-bottom: 4.8rem;
}

.company-section .heading {
  margin-top: -5rem;
}

@media screen and (min-width: 768px) {
  .company-section:nth-child(even) .heading {
    text-align: right;
  }
}

@media screen and (max-width: 767px) {
  .heading {
    margin-bottom: 3.2rem;
  }

  .company-section .heading {
    margin-top: -3.2rem;
  }
}

.heading__sub {
  margin: 0;
  font-family: "Prompt", sans-serif;
  font-size: 9.2rem;
  font-weight: 200;
  line-height: 1.15;
  color: #728469;
}

@media screen and (max-width: 1279px) {
  .heading__sub {
    font-size: 8.1rem;
  }
}

@media screen and (max-width: 767px) {
  .heading__sub {
    font-size: 5.6rem;
  }
}

.heading__main {
  margin: 0;
  font-family: "Noto Serif JP", serif;
  font-size: 2.4rem;
  font-weight: 500;
  line-height: calc(35 / 24);
  letter-spacing: 0.15em;
}

@media screen and (max-width: 1279px) {
  .heading__main {
    font-size: 2.1rem;
  }
}

@media screen and (max-width: 767px) {
  .heading__main {
    margin-top: 0.5rem;
    font-size: 1.8rem;
  }
}

.company-table {
  width: 100%;
  border: none;
}

.company-table th {
  width: 20%;
  padding: 1.6rem;
  background: none;
  border: none;
  border-bottom: 1px solid #728469;
  font-weight: 500;
  letter-spacing: 0.1em;
}

@media screen and (max-width: 767px) {
  .company-table th {
    width: 30%;
    padding: 1.6rem 0.8rem;
    font-size: 1.4rem;
  }
}

.company-table tr:first-of-type th {
  border-top: 1px solid #728469;
}

.company-table td {
  width: 80%;
  padding: 1.6rem;
  border: none;
  border-bottom: 1px solid #E5E5E5;
}

@media screen and (max-width: 767px) {
  .company-table td {
    width: 70%;
    padding: 1.6rem 0.8rem;
    font-size: 1.4rem;
  }
}

.company-table tr:first-of-type td {
  border-top: 1px solid #E5E5E5;
}

.staff-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6.4rem 4rem;
}

@media screen and (max-width: 767px) {
  .staff-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem 2rem;
  }
}

.staff-name {
  margin: 0.5em 0;
  font-size: 2rem;
  font-weight: 500;
}

@media screen and (max-width: 767px) {
  .staff-name {
    margin: 0.25em 0 0;
    font-size: 1.6rem;
  }
}

.staff-position {
  margin: 0 0 0.5em;
  line-height: 1.35;
}

@media screen and (max-width: 767px) {
  .staff-position {
    font-size: 1.2rem;
  }
}

.company-access {
  margin: 12rem 0 6.4rem;
}

@media screen and (max-width: 767px) {
  .company-access {
    margin-top: 8rem;
  }
}

.company-address {
  margin-top: -1.2rem;
}

@media screen and (max-width: 767px) {
  .company-address {
    font-size: 1.4rem;
  }
}

.company-map {
  margin-top: 2.4rem;
}

/* ============================
	PRIVACY POLICY
============================ */
.privacy-policy .entry-content h2 {
  position: relative;
  padding-bottom: 2.4rem;
  border-bottom: none;
  font-size: 2.8rem;
  font-weight: 500;
}

@media screen and (max-width: 767px) {
  .privacy-policy .entry-content h2 {
    font-size: 2.2rem;
  }
}

.privacy-policy .entry-content h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 3rem;
  height: 1px;
  background-color: #C4C4C4;
}

.privacy-policy .entry-content h3 {
  padding-left: 0;
  background: none;
  font-size: 2rem;
  font-weight: 500;
}

@media screen and (max-width: 767px) {
  .privacy-policy .entry-content h3 {
    font-size: 1.8rem;
  }
}

.privacy-policy .entry-content h4,
.privacy-policy .entry-content h5,
.privacy-policy .entry-content h6 {
  font-weight: 500;
}