html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

img {
  display: block;
}

a {
  text-decoration: none;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  color: #231815;
  background: #fff;
}

:root {
  --green: #5cb531;
  --red: #e02f00;
  --black: #231815;
  --bg: #f5f6ec;
  --content-max: 1440px;
  --content-pad: 115px;
}

.inner {
  width: 100%;
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 var(--content-pad);
}

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 400;
}

.nav {
  margin: 0 auto;
  padding: 32px 65px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  flex-shrink: 0;
  max-width: 365px;
  width: 25%;
}
.nav__logo img {
  width: 100%;
  height: auto;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 34px;
}
.nav__links a {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--black);
  white-space: nowrap;
}
.nav__links .nav__item > a {
  transition: opacity 0.2s ease;
}
.nav__links .nav__item > a:hover {
  opacity: 0.6;
}
.nav__links .nav__item > a.is-active {
  color: var(--green);
}

.nav__item {
  position: relative;
}

.nav__dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.13);
  padding: 6px 0;
  list-style: none;
  min-width: 168px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0s linear 0.2s;
  z-index: 500;
}
.nav__dropdown li:not(:last-child) {
  border-bottom: 1px solid #eee;
}
.nav__dropdown li a {
  display: block;
  padding: 11px 24px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: var(--black);
  white-space: nowrap;
  transition: opacity 0.2s ease;
}
.nav__dropdown li a:hover {
  opacity: 0.6;
}

.nav__item:hover .nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0s linear 0s;
}

.nav__contact {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  padding: 0 24px;
  border: 2px solid var(--green);
  border-radius: 25px;
  background: #fff;
  transition: background 0.2s ease;
  cursor: pointer;
}
.nav__contact:hover {
  background: var(--green);
}
.nav__contact:hover a {
  color: #fff;
}
.nav__contact a {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--green);
  white-space: nowrap;
  transition: color 0.2s ease;
}

.nav__lang {
  position: relative;
  width: 115px;
  height: 40px;
  flex-shrink: 0;
  cursor: pointer;
  user-select: none;
}
.nav__lang::before {
  content: "JP";
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--black);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 1;
}
.nav__lang.is-en::before {
  opacity: 1;
}

.nav__lang-bg {
  position: absolute;
  inset: 0;
  background: #e7e7e7;
  border-radius: 20px;
}

.nav__lang-jp {
  position: absolute;
  left: 4px;
  top: 3px;
  height: 34px;
  background: var(--black);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  transition: left 0.3s ease;
}
.nav__lang-jp span {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: #fff;
}

.nav__lang-en {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--black);
  transition: opacity 0.3s ease;
}

.nav__lang.is-en .nav__lang-jp {
  left: 55px;
}
.nav__lang.is-en .nav__lang-en {
  opacity: 0;
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 8px;
  width: 30px;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  flex-shrink: 0;
  position: relative;
  z-index: 400;
}
.nav__hamburger span {
  display: block;
  width: 100%;
  height: 1px;
  background: var(--black);
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav__hamburger.is-active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.nav__hamburger.is-active span:nth-child(2) {
  opacity: 0;
}
.nav__hamburger.is-active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.4s ease, visibility 0s linear 0.4s;
}
.mobile-nav.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 0.4s ease, visibility 0s linear 0s;
}
.mobile-nav__overlay {
  display: none;
}
.mobile-nav__panel {
  position: static;
  width: 100%;
  height: auto;
  background: transparent;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.mobile-nav__close {
  display: none;
}
.mobile-nav__links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.mobile-nav__links li {
  border-bottom: 1px solid #eee;
  width: 240px;
  text-align: center;
}
.mobile-nav__links li a {
  display: block;
  padding: 20px 0;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--black);
}
.mobile-nav__item-row {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #eee;
  width: 240px;
}
.mobile-nav__item-row a {
  flex: 1;
  padding: 20px 0;
  text-align: center;
}
.mobile-nav__toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 100%;
  min-height: 60px;
  flex-shrink: 0;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.mobile-nav__arrow {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-right: 2px solid var(--black);
  border-bottom: 2px solid var(--black);
  transform: rotate(45deg);
  transition: transform 0.3s ease;
}
.mobile-nav__arrow.is-open {
  transform: rotate(-135deg);
}
.mobile-nav__submenu {
  list-style: none;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s ease;
  width: 240px;
}
.mobile-nav__submenu.is-open {
  max-height: 300px;
}
.mobile-nav__submenu li {
  border-bottom: 1px solid #eee;
  width: 100%;
}
.mobile-nav__submenu li a {
  display: block;
  padding: 14px 0;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 15px;
  color: var(--black);
  text-align: center;
}
.mobile-nav .has-submenu {
  border-bottom: none;
  width: 240px;
}
.mobile-nav__contact-item {
  border-bottom: none !important;
  margin-top: 24px;
  width: auto;
}
.mobile-nav__contact-item .nav__contact a {
  color: var(--green);
}
.mobile-nav__contact-item .nav__contact:hover a {
  color: #fff;
}
.mobile-nav__lang {
  margin-top: 48px;
  display: flex;
  justify-content: center;
}

.btn-outline {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 264px;
  height: 60px;
  border: 3px solid var(--green);
  border-radius: 40px;
  background: #fff;
  overflow: hidden;
  transition: background 0.2s ease;
}
.btn-outline span {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--green);
  line-height: 28px;
  transition: color 0.2s ease;
}
.btn-outline .btn-arrow {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 10px;
  transition: filter 0.2s ease, transform 0.2s ease;
}
.btn-outline:hover {
  background: var(--green);
}
.btn-outline:hover span {
  color: #fff;
}
.btn-outline:hover .btn-arrow {
  filter: brightness(0) invert(1);
  transform: translateX(-10px) translateY(-50%);
}

.section-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
}
.section-heading__en {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: 45px;
  color: #000;
  line-height: 1;
}
.section-heading__ja {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--black);
  line-height: 1;
}
.section-heading__line {
  width: 1px;
  height: 41px;
  background: var(--black);
}

.footer__contact {
  position: relative;
  height: 373px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.footer__contact-bg {
  position: absolute;
  top: -10.66%;
  left: 0;
  width: 100%;
  height: 121.31%;
  object-fit: cover;
}
.footer__contact-inner {
  position: relative;
  display: flex;
  align-items: center;
  gap: 43px;
  width: 998px;
}
.footer__contact-text {
  flex-shrink: 0;
  width: 478px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.footer__contact-heading {
  display: flex;
  flex-direction: column;
}
.footer__contact-en {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: 45px;
  color: var(--black);
  line-height: 1;
}
.footer__contact-ja {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--black);
  margin-top: 8px;
}
.footer__contact-desc {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.8;
  color: var(--black);
  text-align: justify;
}
.footer__contact-desc a {
  color: var(--black);
  text-decoration: underline;
}
.footer__contact-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: #fff;
  border-radius: 40px;
  padding: 20px 40px;
  width: 477px;
  flex-shrink: 0;
  transition: background 0.2s ease;
  cursor: pointer;
}
.footer__contact-btn img {
  width: 24px;
  height: 24px;
  transition: filter 0.2s ease;
}
.footer__contact-btn span {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--black);
  white-space: nowrap;
  line-height: 1.7;
  transition: color 0.2s ease;
}
.footer__contact-btn:hover {
  background: var(--black);
}
.footer__contact-btn:hover span {
  color: #fff;
}
.footer__contact-btn:hover img {
  filter: brightness(0) invert(1);
}

.footer__body {
  background: #fff;
  padding: 80px 65px 40px;
  display: flex;
  gap: 59px;
  max-width: var(--content-max);
  margin: 0 auto;
}

.footer__brand {
  flex-shrink: 0;
  width: 300px;
  display: flex;
  flex-direction: column;
}

.footer__logo img {
  width: 126px;
  height: 192px;
}

.footer__divider {
  height: 1px;
  background: #ccc;
  margin: 16px 0;
}

.footer__address {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.8;
  color: #000;
}

.footer__btns {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-top: 20px;
}

.footer__ec-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 272px;
  height: 65px;
  border: 1px solid var(--green);
  border-radius: 12px;
  background: #fff;
  padding: 0 21px;
  transition: background 0.2s ease;
}
.footer__ec-btn img {
  width: 25px;
  height: 20px;
  object-fit: contain;
  transition: filter 0.2s ease;
}
.footer__ec-btn span {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--green);
  transition: color 0.2s ease;
}
.footer__ec-btn:hover {
  background: var(--green);
}
.footer__ec-btn:hover img {
  filter: brightness(0) invert(1);
}
.footer__ec-btn:hover span {
  color: #fff;
}

.footer__insta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 272px;
  height: 65px;
  border: 1px solid var(--black);
  border-radius: 12px;
  background: #fff;
  padding: 0 21px;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.footer__insta-btn img {
  width: 20px;
  height: 20px;
}
.footer__insta-btn span {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: #000;
}
.footer__insta-btn:hover {
  background: #f0f0f0;
  border-color: transparent;
}

.footer__nav {
  flex: 1;
  display: flex;
  gap: 59px;
}

.footer__nav-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.footer__nav-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer__nav-rule {
  height: 1px;
  background: #ccc;
}

.footer__nav-title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.7;
  color: var(--black);
}
.footer__nav-title--en {
  font-family: "Lato", sans-serif;
  font-size: 18px;
}

.footer__nav-links {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.footer__nav-links a {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 13px;
  line-height: 1.8;
  color: var(--black);
}

.footer__bottom {
  background: #fff;
  padding: 16px 115px 30px;
  display: flex;
  justify-content: flex-end;
  max-width: var(--content-max);
  margin: 0 auto;
}

.footer__copyright {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-size: 12px;
  color: #000;
  line-height: 23px;
}

@media (max-width: 1024px) {
  .nav__links {
    display: none;
  }
  .nav__hamburger {
    display: flex;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  :root {
    --content-pad: 40px;
  }
  .nav {
    padding: 24px 40px 0;
  }
  .nav__logo img {
    width: 280px;
  }
  .footer__contact {
    height: auto;
    padding: 60px 40px;
  }
  .footer__contact-inner {
    width: 100%;
    gap: 24px;
  }
  .footer__contact-text {
    width: auto;
    flex: 1;
  }
  .footer__contact-btn {
    flex-shrink: 0;
  }
  .footer__body {
    padding: 60px 40px 40px;
    gap: 40px;
  }
}
@media (max-width: 1024px) {
  .nav {
    padding: 20px 22px;
  }
  .nav__logo img {
    width: 212px;
  }
  .footer__contact {
    height: auto;
    padding: 49px 22px;
  }
  .footer__contact-bg {
    top: 0;
    height: 100%;
  }
  .footer__contact-inner {
    flex-direction: column;
    width: 100%;
    max-width: 330px;
    gap: 40px;
  }
  .footer__contact-text {
    width: 100%;
    text-align: center;
  }
  .footer__contact-heading {
    align-items: center;
  }
  .footer__contact-btn {
    width: 100%;
    padding: 27px 20px;
  }
  .footer__body {
    flex-direction: column;
    align-items: center;
    padding: 40px 22px;
    gap: 0;
  }
  .footer__brand {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .footer__btns {
    order: -1;
    margin-top: 0;
    align-items: center;
  }
  .footer__logo {
    order: 1;
    margin-top: 27px;
  }
  .footer__divider {
    order: 2;
    width: 270px;
    margin: 16px auto;
  }
  .footer__address {
    order: 3;
    text-align: center;
  }
  .footer__nav {
    display: none;
  }
  .footer__bottom {
    justify-content: center;
    padding: 16px 22px 30px;
  }
  .btn-page-top {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
  }
  .btn-page-top img {
    width: 50px;
    height: 50px;
  }
}
.btn-page-top {
  position: fixed;
  bottom: 28px;
  right: 30px;
  width: 60px;
  height: 60px;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 200;
}
.btn-page-top.is-visible {
  opacity: 1;
}
.btn-page-top img {
  width: 60px;
  height: 60px;
  display: block;
}

@keyframes hero-scale-in {
  from {
    transform: scale(1.06);
  }
  to {
    transform: scale(1);
  }
}
@keyframes catchphrase-focus-in {
  from {
    opacity: 0;
    filter: blur(12px);
  }
  to {
    opacity: 1;
    filter: blur(0);
  }
}
.hero {
  position: relative;
  width: 100%;
  height: 974px;
  overflow: hidden;
}
.hero__slideshow {
  position: absolute;
  inset: 0;
}
.hero__slideshow.is-revealed {
  animation: hero-scale-in 1.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}
.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transition: opacity 1s ease;
}
.hero__bg.is-active {
  opacity: 1;
}
.hero__content {
  position: absolute;
  inset: 0;
  width: 100%;
  max-width: var(--content-max);
  left: 50%;
  transform: translateX(-50%);
}
.hero__catchphrase {
  position: absolute;
  top: 194px;
  right: 239px;
  width: 147px;
  height: 293px;
  opacity: 0;
}
.hero__catchphrase img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.hero__catchphrase.is-revealed {
  animation: catchphrase-focus-in 1.2s ease forwards;
}

.about {
  padding: 80px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 33px;
}
.about__text {
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 2;
  color: var(--black);
}

.service {
  background: var(--bg);
  padding: 100px 0 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 21px;
}
.service__card-wrap {
  position: relative;
  width: 88%;
  max-width: 1328px;
  margin: 0 auto;
}
.service__card-shadow {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 88%;
  height: 211px;
  background: #d9d9d9;
  box-shadow: 0 30px 50px rgba(0, 0, 0, 0.25);
  z-index: 0;
}
.service__card {
  position: relative;
  background: #fff;
  padding: 60px;
  display: flex;
  flex-direction: column;
  gap: 60px;
  z-index: 1;
}
.service__item {
  position: relative;
  height: 419px;
}
.service__item:nth-child(1) .service__item-bg-text {
  text-align: right;
}
.service__item:nth-child(3) .service__item-bg-text {
  text-align: left;
}
.service__item:nth-child(5) .service__item-bg-text {
  text-align: right;
}
.service__item-bg-text {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  font-family: "Lato", sans-serif;
  font-weight: 100;
  font-size: clamp(48px, 8.3vw, 120px);
  color: #8e8e8e;
  line-height: 1;
  z-index: 1;
}
.service__item-content {
  position: absolute;
  top: 97px;
  left: 0;
  right: 0;
  height: 322px;
  display: flex;
  align-items: center;
  gap: 40px;
}
.service__item-img {
  flex: 1;
  min-width: 0;
  height: 100%;
  overflow: hidden;
  position: relative;
}
.service__item-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.5);
  opacity: 0;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1) var(--reveal-delay, 0s), opacity 0.5s ease var(--reveal-delay, 0s);
}
.service__item-img.is-revealed img {
  transform: scale(1);
  opacity: 1;
}
.service__item-text {
  flex-shrink: 0;
  width: 478px;
  display: flex;
  flex-direction: column;
  gap: 19px;
}
.service__item-title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 1.4;
  color: #000;
  margin-bottom: 5px;
}
.service__item-desc {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 2;
  color: #000;
  letter-spacing: 0.05em;
}
.service__divider {
  height: 1px;
  background: #ccc;
  flex-shrink: 0;
}

.products {
  padding: 100px 0 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 29px;
}
.products__panels {
  display: flex;
  width: 100%;
}
.products__panel:hover .products__panel-bg {
  opacity: 0.6;
}
.products__panel {
  flex: 1;
  height: 540px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  cursor: pointer;
}
.products__panel-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.2s ease;
}
.products__panel-label {
  position: relative;
  border: 2px solid #fff;
  border-radius: 41px;
  padding: 5px 60px;
}
.products__panel-label span {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: 60px;
  color: #fff;
  line-height: 1;
}

.recruit {
  background: var(--bg);
  padding: 100px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 31px;
}
.recruit__headline {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 1.3;
  color: #000;
  text-align: center;
}
.recruit__slider {
  width: 100%;
  overflow: hidden;
}
.recruit__track {
  display: flex;
  gap: 0px;
  will-change: transform;
}
.recruit__images-item {
  flex-shrink: 0;
  width: 335px;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.recruit__images-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news {
  padding: 100px 0;
  width: 88%;
  margin: 0 auto;
}
.news__cards {
  display: flex;
  gap: 39px;
  width: 100%;
  list-style: none;
  margin: 0;
  padding: 0;
}
.news__card {
  flex: 1;
  min-width: 0;
  overflow: hidden;
}
.news__card a {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.2s ease;
}
.news__card a:hover {
  opacity: 0.6;
}
.news__card a img {
  aspect-ratio: 40/30;
  width: 100%;
  object-fit: cover;
}
.news__card a .news__card-img--placeholder {
  aspect-ratio: 40/30;
  width: 100%;
  background: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.news__card a .news__card-img--placeholder img {
  width: 55%;
  aspect-ratio: unset;
  object-fit: contain;
  height: auto;
}
.news__card-date {
  display: inline-block;
  margin: 15px 0;
  padding: 4px 12px;
  background: #f0f0f0;
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #000;
  line-height: 1.4;
}
.news__card-title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 15px;
  line-height: 1.7;
  color: var(--black);
  border-top: 1px solid #ccc;
  padding-top: 13px;
}

@media (min-width: 768px) and (max-width: 1024px) {
  .service__card {
    padding: 40px;
    gap: 50px;
  }
  .service__item-bg-text {
    font-size: 80px;
  }
  .service__item-text {
    width: 360px;
  }
  .service__item-title {
    font-size: 26px;
  }
  .service__item-desc {
    font-size: 16px;
    line-height: 1.8;
  }
  .products__panel {
    height: 400px;
  }
  .products__panel-label span {
    font-size: 50px;
  }
  .recruit__headline {
    font-size: 32px;
  }
}
@media (max-width: 767px) {
  .hero {
    height: 429px;
  }
  .hero__catchphrase {
    top: 110px;
    right: 58px;
    width: 86px;
    height: 160px;
  }
  .about {
    padding: 42px 22px 60px;
    gap: 33px;
  }
  .about__text {
    font-size: 15px;
    line-height: 1.7;
  }
  .service {
    padding: 50px 0 80px;
  }
  .service__card-wrap {
    width: 88%;
    margin-bottom: 20px;
  }
  .service__card-shadow {
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 88%;
    height: 211px;
  }
  .service__card {
    padding: 40px 35px;
    gap: 31px;
  }
  .service__item {
    height: auto;
    display: flex;
    flex-direction: column;
  }
  .service__item:nth-child(1) .service__item-bg-text, .service__item:nth-child(3) .service__item-bg-text, .service__item:nth-child(5) .service__item-bg-text {
    text-align: left;
  }
  .service__item-content {
    display: contents;
  }
  .service__item-img {
    order: 1;
    flex: none;
    width: 100%;
    height: auto;
    aspect-ratio: 815/376;
  }
  .service__item-bg-text {
    order: 2;
    position: static;
    font-size: 30px;
    font-weight: 100;
    line-height: 1.2;
    margin-top: 4px;
    text-align: left;
  }
  .service__item-text {
    order: 3;
    width: 100%;
    margin-top: 15px;
  }
  .service__item-title {
    font-size: 24px;
    line-height: 1.6;
  }
  .service__item-desc {
    font-size: 15px;
    line-height: 1.8;
  }
  .service .btn-outline {
    width: 100%;
  }
  .products {
    padding: 50px 0 0;
    gap: 29px;
  }
  .products__panels {
    flex-direction: column;
  }
  .products__panel {
    height: 283px;
    flex: none;
  }
  .products__panel-label span {
    font-size: 40px;
  }
  .recruit {
    padding: 50px 0;
    gap: 20px;
  }
  .recruit__headline {
    font-size: 24px;
    line-height: 1.6;
  }
  .recruit__images-item {
    width: 168px;
  }
  .news {
    padding: 50px 0;
  }
  .news .inner {
    padding: 0 22px;
  }
  .news__cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
  .news__card {
    flex: none;
  }
}
.en-about {
  padding: 100px 65px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.en-about__heading {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: 48px;
  color: var(--black);
  text-align: center;
  line-height: normal;
  margin-bottom: 30px;
}
.en-about__body {
  max-width: 732px;
  width: 100%;
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 2;
  color: var(--black);
}
.en-about__body p {
  margin-bottom: 1em;
}
.en-about__body p:last-child {
  margin-bottom: 0;
}

.en-photos__slider {
  width: 100%;
  overflow: hidden;
}
.en-photos__track {
  display: flex;
  gap: 0;
  will-change: transform;
}
.en-photos__item {
  flex-shrink: 0;
  width: 335px;
  height: 251px;
  overflow: hidden;
}
.en-photos__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.en-company {
  background: var(--bg);
  padding: 100px 65px 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 80px;
}
.en-company .section-heading__en {
  font-size: 45px;
}
.en-company__card-wrap {
  position: relative;
  width: min(930px, 100%);
}
.en-company__card-shadow {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 88%;
  height: 211px;
  background: #d9d9d9;
  box-shadow: 0 30px 50px rgba(0, 0, 0, 0.25);
  z-index: 0;
}
.en-company__card {
  position: relative;
  background: #fff;
  padding: 80px;
  z-index: 1;
}
.en-company__list {
  width: 100%;
}
.en-company__row {
  display: flex;
  align-items: stretch;
}
.en-company__row--last .en-company__label,
.en-company__row--last .en-company__value {
  border-bottom: none;
}
.en-company__label {
  width: 220px;
  flex-shrink: 0;
  padding: 20px 15px;
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 2;
  color: var(--black);
  border-bottom: 2px solid #b9b5b5;
  white-space: nowrap;
}
.en-company__value {
  flex: 1;
  min-width: 0;
  padding: 20px 15px;
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 2;
  color: var(--black);
  border-bottom: 1px solid #b9b5b5;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  margin: 0;
}
.en-company__value span {
  display: block;
}
.en-company__maps-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 3px solid var(--green);
  border-radius: 40px;
  padding: 12px 32px;
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--green);
  line-height: 28px;
  transition: background 0.2s ease, color 0.2s ease;
}
.en-company__maps-btn svg {
  flex-shrink: 0;
  transition: filter 0.2s ease;
}
.en-company__maps-btn:hover {
  background: var(--green);
  color: #fff;
}
.en-company__maps-btn:hover svg path {
  fill: #fff;
}

.en-team {
  background: var(--bg);
  padding: 0 0 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 80px;
}
.en-team__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 77px 0;
  justify-content: space-between;
  max-width: 1310px;
  width: 88%;
  margin: 0 auto;
}
.en-team__member {
  width: 22%;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.en-team__photo {
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
  background: #d9d9d9;
}
.en-team__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.en-team__role {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.3;
  color: var(--black);
}
.en-team__name {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.3;
  color: var(--black);
}

.footer-en {
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 80px 0 30px;
  gap: 24px;
}
.footer-en__logo img {
  width: 126px;
  height: 192px;
}
.footer-en__insta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 272px;
  height: 65px;
  border: 1px solid var(--black);
  border-radius: 12px;
  background: #fff;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.footer-en__insta img {
  width: 20px;
  height: 20px;
}
.footer-en__insta span {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: #000;
}
.footer-en__insta:hover {
  background: #f0f0f0;
  border-color: transparent;
}
.footer-en__copyright {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 23px;
  color: #000;
}

@media (max-width: 1024px) {
  .en-about {
    padding: 60px 22px 60px;
  }
  .en-about__heading {
    font-size: 32px;
  }
  .en-about__body {
    font-size: 16px;
  }
  .en-photos {
    height: 160px;
  }
  .en-company {
    padding: 60px 22px 80px;
    gap: 40px;
  }
  .en-company__card {
    padding: 30px 20px;
  }
  .en-company__label {
    width: 130px;
    font-size: 14px;
    white-space: normal;
  }
  .en-company__value {
    font-size: 14px;
  }
  .en-company__maps-btn {
    font-size: 13px;
    padding: 10px 20px;
  }
  .en-team {
    padding: 0 0 80px;
    gap: 40px;
  }
  .en-team__member {
    width: calc(50% - 30px);
  }
  .en-team__name {
    font-size: 16px;
  }
  .footer-en {
    padding: 60px 0 30px;
  }
}
body[data-page=about] .site-header {
  position: relative;
  background: #fff;
  z-index: 400;
}

.about-hero {
  width: 100%;
}
.about-hero__img-wrap {
  aspect-ratio: 24/11;
  width: 100%;
  overflow: hidden;
}
.about-hero__img-wrap img {
  width: 100%;
  height: auto;
  display: block;
}
.about-hero .vision-main-grid {
  aspect-ratio: 24/11;
}

.about-page-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 40px;
  padding-bottom: 0;
}
.about-page-title__en {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: 70px;
  color: var(--black);
  line-height: 1;
  letter-spacing: 0;
}
.about-page-title__ja {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: var(--black);
  line-height: 1.6;
  margin-top: 4px;
}

.about-subnav {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-top: 32px;
  margin-bottom: 80px;
}
.about-subnav__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 213px;
  height: 60px;
  border: 3px solid var(--green);
  border-radius: 30px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--green);
  line-height: 1.7;
  background: #fff;
  transition: background 0.2s ease, color 0.2s ease;
}
.about-subnav__btn.is-active {
  background: var(--green);
  color: #fff;
}
.about-subnav__btn:not(.is-active):hover {
  background: var(--green);
  color: #fff;
}

.about-message {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 var(--content-pad) 120px;
}
.about-message__heading {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 40px;
  color: var(--green);
  line-height: 1.3;
  margin-bottom: 56px;
}
.about-message__body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 20px;
  color: var(--black);
  line-height: 2;
}

.about-vision {
  background: var(--bg);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 80px;
  padding: 100px var(--content-pad);
}
.about-vision__logo {
  flex-shrink: 0;
  width: 228px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.about-vision__logo.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.about-vision__logo img {
  width: 100%;
  height: auto;
}
.about-vision__content {
  padding-top: 12px;
}
.about-vision__heading {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 40px;
  color: var(--green);
  line-height: 1.3;
  margin-bottom: 40px;
}
.about-vision__body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 20px;
  color: var(--black);
  line-height: 2;
}

.about-local {
  position: relative;
  height: 960px;
  overflow: hidden;
}
.about-local__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.about-local__content {
  position: relative;
  z-index: 1;
  margin-left: auto;
  margin-right: var(--content-pad);
  max-width: 608px;
  color: #fff;
  padding-top: 150px;
}
.about-local__heading {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 40px;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 40px;
}
.about-local__body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 20px;
  color: #fff;
  line-height: 2;
}

.about-company {
  background: var(--bg);
  padding: 120px var(--content-pad);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
.about-company__card-wrap {
  position: relative;
  width: min(930px, 100%);
}
.about-company__card-shadow {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 88%;
  height: 207px;
  background: #d9d9d9;
  box-shadow: 0 30px 50px rgba(0, 0, 0, 0.25);
  z-index: 0;
}
.about-company__card {
  position: relative;
  background: #fff;
  padding: 80px;
  z-index: 1;
}
.about-company__list {
  width: 100%;
}
.about-company__row {
  display: flex;
  align-items: stretch;
}
.about-company__row--last .about-company__label,
.about-company__row--last .about-company__value {
  border-bottom: none;
}
.about-company__label {
  width: 220px;
  flex-shrink: 0;
  padding: 20px 15px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 2;
  color: var(--black);
  border-bottom: 2px solid #b9b5b5;
  white-space: nowrap;
}
.about-company__value {
  flex: 1;
  min-width: 0;
  padding: 20px 15px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 2;
  color: var(--black);
  border-bottom: 1px solid #b9b5b5;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  margin: 0;
}
.about-company__value span {
  display: block;
}
.about-company__maps-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 3px solid var(--green);
  border-radius: 40px;
  padding: 12px 32px;
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--green);
  line-height: 28px;
  margin-top: 8px;
  transition: background 0.2s ease, color 0.2s ease;
}
.about-company__maps-btn img {
  flex-shrink: 0;
  width: 14px;
  height: 18px;
  transition: filter 0.2s ease;
}
.about-company__maps-btn:hover {
  background: var(--green);
  color: #fff;
}
.about-company__maps-btn:hover img {
  filter: brightness(0) invert(1);
}

.about-team {
  padding: 70px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 88%;
  margin: 0 auto;
  gap: 60px 0;
}
.about-team__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 77px 0;
  justify-content: space-between;
  max-width: 1310px;
  width: 100%;
}
.about-team__member {
  width: 22%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.about-team__photo {
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
  background: #d9d9d9;
}
.about-team__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.about-team__info {
  display: flex;
  flex-direction: column;
}
.about-team__position {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: normal;
  color: var(--black);
  margin-bottom: 4px;
}
.about-team__name-ja {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 29px;
  color: var(--black);
}
.about-team__name-en {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 23px;
  color: var(--black);
  margin-bottom: 8px;
}
.about-team__bio {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.8;
  color: var(--black);
}

@media (min-width: 768px) and (max-width: 1024px) {
  .about-page-title {
    padding-top: 32px;
  }
  .about-page-title__en {
    font-size: 52px;
  }
  .about-page-title__ja {
    font-size: 18px;
  }
  .about-subnav {
    margin-bottom: 60px;
  }
  .about-message {
    padding: 0 40px 80px;
  }
  .about-message__heading {
    font-size: 30px;
    margin-bottom: 40px;
  }
  .about-message__body {
    font-size: 16px;
  }
  .about-vision {
    padding: 80px 40px;
    gap: 48px;
  }
  .about-vision__logo {
    width: 160px;
  }
  .about-vision__heading {
    font-size: 28px;
  }
  .about-vision__body {
    font-size: 16px;
  }
  .about-local {
    height: 600px;
  }
  .about-local__content {
    margin-right: 40px;
    max-width: 400px;
    padding-top: 80px;
  }
  .about-local__heading {
    font-size: 28px;
    margin-bottom: 24px;
  }
  .about-local__body {
    font-size: 15px;
  }
  .about-company {
    padding: 80px 40px;
    gap: 48px;
  }
  .about-company__card {
    padding: 40px 32px;
  }
  .about-company__label {
    width: 160px;
    font-size: 16px;
  }
  .about-company__value {
    font-size: 16px;
  }
  .about-company__maps-btn {
    font-size: 13px;
    padding: 10px 24px;
  }
  .about-team {
    gap: 48px;
  }
  .about-team__member {
    width: calc(50% - 30px);
  }
}
@media (max-width: 767px) {
  .about-page-title {
    padding-top: 24px;
  }
  .about-page-title__en {
    font-size: 44px;
  }
  .about-page-title__ja {
    font-size: 16px;
  }
  .about-subnav {
    gap: 10px;
    margin-top: 24px;
    margin-bottom: 48px;
  }
  .about-subnav__btn {
    width: 150px;
    height: 50px;
    font-size: 14px;
  }
  .about-message {
    padding: 0 0 60px;
  }
  .about-message__heading {
    font-size: 24px;
    margin-bottom: 28px;
  }
  .about-message__body {
    width: 88%;
    margin: 0 auto;
    font-size: 15px;
    text-align: left;
    white-space: normal;
  }
  .about-message__body br {
    display: none;
  }
  .about-vision {
    padding: 60px 0;
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }
  .about-vision__logo {
    width: 160px;
    align-self: center;
  }
  .about-vision__content {
    width: 88%;
    margin: 0 auto;
    padding-top: 0;
  }
  .about-vision__heading {
    font-size: 26px;
    margin-bottom: 24px;
    text-align: center;
  }
  .about-vision__body {
    font-size: 15px;
  }
  .about-vision__body br {
    display: none;
  }
  .about-local {
    height: auto;
    min-height: 500px;
  }
  .about-local__bg {
    height: 100%;
  }
  .about-local__content {
    width: 88%;
    margin: 0 auto;
    padding-top: 70px;
    max-width: 100%;
  }
  .about-local__heading {
    font-size: 24px;
    margin-bottom: 20px;
    text-align: center;
  }
  .about-local__body {
    font-size: 14px;
  }
  .about-local__body br {
    display: none;
  }
  .about-company {
    padding: 60px 0 80px;
    gap: 20px;
  }
  .about-company__card-wrap {
    width: 88%;
    margin: 0 auto;
  }
  .about-company__card {
    padding: 24px 16px;
  }
  .about-company__card-shadow {
    height: 120px;
    width: 90%;
  }
  .about-company__label {
    width: 110px;
    font-size: 14px;
    white-space: normal;
    word-break: keep-all;
  }
  .about-company__value {
    font-size: 14px;
  }
  .about-company__maps-btn {
    font-size: 12px;
    padding: 8px 16px;
  }
  .about-team {
    gap: 40px;
  }
  .about-team__grid {
    gap: 48px 0;
  }
  .about-team__member {
    width: calc(50% - 15px);
    gap: 16px;
  }
  .about-team__name-ja {
    font-size: 18px;
  }
  .about-team__bio {
    font-size: 13px;
  }
}
.vision-main-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: 100%;
}
.vision-main-grid__img {
  width: 100%;
  height: auto;
  display: block;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}
.vision-main-grid__img.is-visible {
  opacity: 1;
}

.vision-slider {
  width: 100%;
  overflow: hidden;
  margin-bottom: 80px;
}
.vision-slider__track {
  display: flex;
  gap: 0;
  will-change: transform;
}
.vision-slider__item {
  flex-shrink: 0;
  width: 335px;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.vision-slider__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vision-intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 80px 0 100px;
  gap: 20px;
}
.vision-intro__logo {
  width: 193px;
  opacity: 0;
  transform: scale(0.7);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.vision-intro__logo.is-visible {
  opacity: 1;
  transform: scale(1);
}
.vision-intro__logo img {
  width: 100%;
  height: auto;
}
.vision-intro__label {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-size: 32px;
  color: var(--black);
  line-height: normal;
  margin-top: 4px;
}
.vision-intro__tagline {
  margin-top: 8px;
}
.vision-intro__tagline img {
  width: 494px;
  max-width: 88vw;
  height: auto;
}

.vision-values {
  background: var(--bg);
  padding: 100px 0 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.vision-values__label {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-size: 32px;
  color: var(--black);
  line-height: normal;
  text-align: center;
  margin-bottom: 8px;
}
.vision-values__heading {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 40px;
  color: var(--black);
  text-align: center;
  line-height: 1.3;
  letter-spacing: 0.4px;
  margin-bottom: 100px;
}
.vision-values__list {
  width: min(738px, 88%);
  display: flex;
  flex-direction: column;
  gap: 38px;
  padding: 0;
  margin: 0;
}
.vision-values__item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.vision-values__item-title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 32px;
  color: var(--black);
  line-height: 1.4;
  margin: 0;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.vision-values__item-title.is-revealed {
  opacity: 1;
  transform: translateY(0);
}
.vision-values__item-divider {
  width: 100%;
  height: 1px;
  background: rgba(35, 24, 21, 0.25);
}
.vision-values__item-body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 20px;
  color: var(--black);
  line-height: 2;
  margin: 0;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease 0.15s, transform 0.5s ease 0.15s;
}
.vision-values__item-body.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 768px) and (max-width: 1024px) {
  .vision-intro {
    padding: 60px 0 80px;
  }
  .vision-intro__logo {
    width: 150px;
  }
  .vision-intro__label {
    font-size: 26px;
  }
  .vision-values {
    padding: 80px 0 100px;
  }
  .vision-values__heading {
    font-size: 30px;
    margin-bottom: 48px;
  }
  .vision-values__item-title {
    font-size: 26px;
  }
  .vision-values__item-body {
    font-size: 17px;
  }
}
@media (max-width: 767px) {
  .vision-slider {
    margin-bottom: 60px;
  }
  .vision-slider__item {
    width: 240px;
  }
  .vision-intro {
    padding: 48px 0 64px;
    gap: 14px;
  }
  .vision-intro__logo {
    width: 130px;
  }
  .vision-intro__label {
    font-size: 22px;
  }
  .vision-values {
    padding: 60px 0 80px;
  }
  .vision-values__label {
    font-size: 24px;
  }
  .vision-values__heading {
    font-size: 22px;
    margin-bottom: 36px;
  }
  .vision-values__list {
    gap: 28px;
  }
  .vision-values__item-title {
    font-size: 20px;
  }
  .vision-values__item-body {
    font-size: 15px;
  }
}
body[data-page=products] .site-header {
  position: relative;
  background: #fff;
  z-index: 400;
}

.products-hero {
  position: relative;
  width: 100%;
}
.products-hero__img-wrap {
  position: relative;
  aspect-ratio: 24/11;
  overflow: hidden;
}
.products-hero__img-wrap img {
  width: 100%;
  height: auto;
  display: block;
}
.products-hero__tomato-text {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
  width: 88%;
  max-width: 1500px;
  font-family: "Lato", sans-serif;
  font-weight: 100;
  font-size: clamp(80px, 22vw, 1500px);
  color: #fff;
  line-height: 0.77;
  text-align: center;
  white-space: nowrap;
  letter-spacing: -0.02em;
  pointer-events: none;
}
.products-hero__lettuce-text {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
  width: 88%;
  max-width: 1500px;
  font-family: "Lato", sans-serif;
  font-weight: 100;
  font-size: clamp(80px, 19vw, 1500px);
  color: #fff;
  line-height: 0.77;
  text-align: center;
  white-space: nowrap;
  letter-spacing: -0.02em;
  pointer-events: none;
}

.products-page-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 40px;
  padding-bottom: 0;
}
.products-page-title__en {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: 70px;
  color: var(--black);
  line-height: 1;
}
.products-page-title__ja {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: var(--black);
  line-height: 1.6;
  margin-top: 4px;
}

.products-subnav {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-top: 32px;
  margin-bottom: 80px;
}
.products-subnav__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 213px;
  height: 60px;
  border: 3px solid var(--green);
  border-radius: 30px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--green);
  line-height: 1.7;
  background: #fff;
  transition: background 0.2s ease, color 0.2s ease;
}
.products-subnav__btn.is-active {
  background: var(--green);
  color: #fff;
}
.products-subnav__btn:not(.is-active):hover {
  background: var(--green);
  color: #fff;
}

.products-intro {
  display: flex;
  justify-content: center;
  padding-bottom: 80px;
}
.products-intro__text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 20px;
  color: var(--black);
  line-height: 2;
  max-width: 664px;
}

.tamatoma {
  padding-bottom: 100px;
}
.tamatoma__top {
  display: flex;
  align-items: flex-start;
  gap: 60px;
  max-width: 1208px;
  width: 88%;
  margin: 0 auto;
}
.tamatoma__img01-wrap {
  flex: 0 0 584px;
  max-width: 584px;
}
.tamatoma__img01-wrap img {
  width: 100%;
  height: auto;
  display: block;
}
.tamatoma__lead {
  flex: 1;
  padding-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.tamatoma__logo img {
  height: auto;
  width: 262px;
  display: block;
}
.tamatoma__desc {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 20px;
  color: var(--black);
  line-height: 2;
}
.tamatoma__point {
  display: flex;
  align-items: center;
  gap: 60px;
  max-width: 1208px;
  width: 88%;
  margin: 0 auto;
}
.tamatoma__point--right {
  flex-direction: row;
}
.tamatoma__point--left {
  flex-direction: row;
}
.tamatoma__point-img {
  flex: 0 0 611px;
  max-width: 611px;
}
.tamatoma__point-img img {
  width: 100%;
  height: auto;
  display: block;
}
.tamatoma__point-text {
  flex: 1;
}
.tamatoma__point-label {
  font-family: "Lato", sans-serif;
  font-weight: 100;
  font-size: 65px;
  color: var(--red);
  line-height: 1;
  margin-bottom: 8px;
}
.tamatoma__point-heading {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 40px;
  color: var(--black);
  line-height: 1.3;
  margin-bottom: 16px;
}
.tamatoma__point-body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 20px;
  color: var(--black);
  line-height: 2;
}
.tamatoma__point3 {
  width: 530px;
  margin: 0 auto 80px;
  transform: translateX(100px);
}
.tamatoma__point3 .tamatoma__point-body {
  margin: 0;
  text-align: left;
}

.products-green-copy {
  background: var(--bg);
  padding: 60px 0;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 32px;
  color: var(--green);
  line-height: 1.5;
}
.products-green-copy p {
  margin: 0;
}

.other-tomato {
  background: var(--bg);
  padding: 0 0 100px;
}
.other-tomato__inner {
  display: flex;
  gap: 42px;
  max-width: 1000px;
  width: 88%;
  margin: 0 auto;
}
.other-tomato__item {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.other-tomato__img {
  aspect-ratio: 440/330;
  overflow: hidden;
}
.other-tomato__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.other-tomato__info {
  display: flex;
  flex-direction: column;
}
.other-tomato__name {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 32px;
  color: var(--black);
  line-height: 1.4;
  margin-bottom: 4px;
}
.other-tomato__reg {
  font-weight: 400;
}
.other-tomato__desc {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 20px;
  color: var(--black);
  line-height: 2;
}

.chokubai {
  padding: 100px 0;
}
.chokubai__heading {
  max-width: 1090px;
  width: 88%;
  margin: 0 auto 60px;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 40px;
  color: var(--black);
  line-height: 1.3;
}
.chokubai__inner {
  display: flex;
  justify-content: space-between;
  max-width: 1090px;
  width: 88%;
  margin: 0 auto;
}
.chokubai__text-col {
  width: 48%;
  flex: none;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.chokubai__body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 20px;
  color: var(--black);
  line-height: 2;
}
.chokubai__btns {
  display: flex;
  flex-direction: column;
  gap: 13px;
  align-items: flex-start;
}
.chokubai__btn-ec {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 272px;
  height: 65px;
  border: 1px solid var(--green);
  border-radius: 12px;
  background: #fff;
  padding: 0 21px;
  transition: background 0.2s ease;
}
.chokubai__btn-ec img {
  width: 25px;
  height: 20px;
  object-fit: contain;
  transition: filter 0.2s ease;
}
.chokubai__btn-ec span {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--green);
  transition: color 0.2s ease;
}
.chokubai__btn-ec:hover {
  background: var(--green);
}
.chokubai__btn-ec:hover img {
  filter: brightness(0) invert(1);
}
.chokubai__btn-ec:hover span {
  color: #fff;
}
.chokubai__btn-furusato {
  display: block;
  opacity: 1;
  transition: opacity 0.2s ease;
}
.chokubai__btn-furusato img {
  width: 100%;
  height: auto;
  max-width: 468px;
  display: block;
}
.chokubai__btn-furusato:hover {
  opacity: 0.7;
}
.chokubai__img-col {
  width: 48%;
  flex: none;
  overflow: hidden;
}
.chokubai__img-col img {
  width: 100%;
  height: auto;
  display: block;
}

.products-agri {
  background: #fff;
  position: relative;
  padding: 0 0 80px;
}
.products-agri::before {
  content: "";
  display: block;
  height: 1px;
  background: #b9b5b5;
  max-width: 1208px;
  width: 88%;
  margin: 0 auto 100px;
}
.products-agri__bg-text {
  position: absolute;
  top: 50px;
  left: 50%;
  transform: translateX(-50%);
  width: 88%;
  max-width: 1000px;
  text-align: right;
  font-family: "Lato", sans-serif;
  font-weight: 100;
  font-size: clamp(48px, 6.25vw, 90px);
  color: var(--green);
  line-height: 1;
  white-space: nowrap;
  pointer-events: none;
  z-index: 2;
}
.products-agri__card {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 39px;
  max-width: 1000px;
  width: 88%;
  margin: 80px auto 0;
  background: #fff;
  border: 10px solid var(--bg);
  padding: 40px;
}
.products-agri__img-wrap {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  position: relative;
}
.products-agri__img-wrap::before {
  content: "";
  display: block;
  padding-top: 46%;
}
.products-agri__img-wrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.5);
  opacity: 0;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s ease;
}
.products-agri__img-wrap.is-revealed img {
  transform: scale(1);
  opacity: 1;
}
.products-agri__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}
.products-agri__desc {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 20px;
  color: var(--black);
  line-height: 2;
}

@media (min-width: 768px) and (max-width: 1024px) {
  .products-hero__tomato-text {
    font-size: clamp(60px, 14vw, 180px);
  }
  .products-page-title__en {
    font-size: 52px;
  }
  .products-page-title__ja {
    font-size: 18px;
  }
  .products-subnav {
    margin-bottom: 60px;
  }
  .tamatoma__img01-wrap {
    flex: 0 0 320px;
    max-width: 320px;
  }
  .tamatoma__top {
    margin-bottom: 40px;
  }
  .tamatoma__desc {
    font-size: 16px;
  }
  .tamatoma__point-label {
    font-size: 48px;
  }
  .tamatoma__point-heading {
    font-size: 28px;
  }
  .tamatoma__point-body {
    font-size: 16px;
  }
  .tamatoma__point-img {
    flex: 0 0 360px;
    max-width: 360px;
  }
  .other-tomato__name {
    font-size: 24px;
  }
  .other-tomato__desc {
    font-size: 16px;
  }
  .chokubai__body {
    font-size: 16px;
  }
  .chokubai__btn-ec {
    font-size: 16px;
    width: 240px;
  }
  .products-agri__bg-text {
    font-size: clamp(36px, 88vw, 80px);
  }
  .products-agri__card {
    gap: 24px;
    padding: 28px;
  }
  .products-agri__desc {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .products-page-title {
    padding-top: 24px;
  }
  .products-page-title__en {
    font-size: 44px;
  }
  .products-page-title__ja {
    font-size: 16px;
  }
  .products-subnav {
    gap: 10px;
    margin-top: 24px;
    margin-bottom: 48px;
  }
  .products-subnav__btn {
    width: 150px;
    height: 50px;
    font-size: 14px;
  }
  .products-intro {
    padding-bottom: 48px;
  }
  .products-intro__text {
    width: 88%;
    margin: 0 auto;
    font-size: 15px;
    text-align: left;
  }
  .tamatoma {
    padding-bottom: 60px;
  }
  .tamatoma__top {
    flex-direction: column;
    gap: 0;
    margin-bottom: 40px;
  }
  .tamatoma__img01-wrap {
    flex: none;
    max-width: 100%;
    width: 100%;
  }
  .tamatoma__lead {
    padding-top: 24px;
    margin: 0 auto;
  }
  .tamatoma__logo img {
    margin: 0 auto;
  }
  .tamatoma__desc {
    font-size: 15px;
  }
  .tamatoma__point {
    flex-direction: column !important;
    gap: 0;
    margin-bottom: 0;
    width: 100%;
  }
  .tamatoma__point .tamatoma__point-img {
    flex: none;
    width: 88%;
    margin: 0 auto;
    order: -1;
  }
  .tamatoma__point .tamatoma__point-text {
    width: 88%;
    margin: 0 auto;
    padding-top: 24px;
    padding-bottom: 40px;
  }
  .tamatoma__point-label {
    text-align: center;
  }
  .tamatoma__point-heading {
    font-size: 32px;
    text-align: center;
  }
  .tamatoma__point-body {
    font-size: 15px;
  }
  .tamatoma__point3 {
    width: 88%;
    margin: 0 auto;
    transform: inherit;
  }
  .tamatoma__point3 .tamatoma__point-body {
    text-align: left;
  }
  .products-green-copy {
    font-size: 24px;
    padding: 40px 0;
  }
  .products-green-copy p {
    width: 88%;
    margin: 0 auto;
  }
  .other-tomato {
    padding: 0 0 60px;
  }
  .other-tomato__inner {
    flex-direction: column;
    gap: 40px;
  }
  .other-tomato__item {
    width: 100%;
  }
  .other-tomato__name {
    font-size: 22px;
  }
  .other-tomato__desc {
    font-size: 15px;
  }
  .chokubai {
    padding: 60px 0;
  }
  .chokubai__heading {
    margin-bottom: 16px;
    font-size: 32px;
    text-align: left;
  }
  .chokubai__heading br {
    display: none;
  }
  .chokubai__inner {
    flex-direction: column;
    gap: 32px;
    align-items: stretch;
    justify-content: flex-start;
  }
  .chokubai__text-col {
    width: 100%;
  }
  .chokubai__body {
    font-size: 15px;
  }
  .chokubai__btn-ec {
    font-size: 16px;
    width: 260px;
    height: 64px;
  }
  .chokubai__img-col {
    width: 100%;
  }
  .products-agri {
    padding: 0 0 48px;
  }
  .products-agri::before {
    margin-bottom: 80px;
  }
  .products-agri__card {
    margin-top: 40px;
    flex-direction: column;
    gap: 20px;
    padding: 20px;
  }
  .products-agri__img-wrap {
    width: 100%;
  }
  .products-agri__body {
    width: 100%;
    align-items: center;
  }
  .products-agri__btn {
    width: 100%;
    max-width: 264px;
  }
  .products-agri__desc {
    font-size: 15px;
  }
}
.lettuce-points {
  padding-top: 40px;
  padding-bottom: 80px;
}

.lettuce-point--p1 {
  display: flex;
  align-items: center;
  gap: 60px;
  max-width: 1208px;
  width: 88%;
  margin: 0 auto 80px;
}
.lettuce-point--p1 .lettuce-point__text {
  flex: 1;
}
.lettuce-point--p1 .lettuce-point__img {
  flex: 0 0 622px;
  max-width: 622px;
}
.lettuce-point--p1 .lettuce-point__img img {
  width: 100%;
  height: auto;
  display: block;
}

.lettuce-point--p2 {
  position: relative;
  overflow: visible;
  margin-bottom: 80px;
}
.lettuce-point--p2 .lettuce-point__img--p2 {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(-8%, -35%);
  width: 58%;
  z-index: -1;
}
.lettuce-point--p2 .lettuce-point__img--p2 img {
  width: 100%;
  height: auto;
  display: block;
}
.lettuce-point--p2 .lettuce-point__text--p2 {
  position: relative;
  z-index: 1;
  margin-left: 54%;
  padding: 0 0 80px 0;
  max-width: 480px;
}

.lettuce-point--p3 {
  display: flex;
  align-items: center;
  gap: 60px;
  max-width: 1208px;
  width: 88%;
  margin: 0 auto 80px;
}
.lettuce-point--p3 .lettuce-point__text {
  flex: 1;
  padding-top: 80px;
}
.lettuce-point--p3 .lettuce-point__imgs-pair {
  flex: 0 0 50%;
  overflow: visible;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.lettuce-point--p3 .lettuce-point__imgs-pair img {
  width: 100%;
  height: auto;
  display: block;
}
.lettuce-point--p3 .lettuce-point__imgs-pair > img:last-child {
  margin-top: 70%;
  position: relative;
  z-index: 1;
}

.lettuce-p3-img-main {
  position: absolute;
  left: -20%;
  top: -10%;
  width: 130%;
  aspect-ratio: 734/563;
  overflow: visible;
  z-index: -1;
}
.lettuce-p3-img-main img {
  width: 100%;
  height: auto;
  display: block;
}

.lettuce-point__note {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 15px;
  color: var(--black);
  line-height: 1.8;
  margin-top: 16px;
}

.lettuce-sup {
  font-size: 0.7em;
  vertical-align: super;
}

.lettuce-product {
  background: var(--bg);
  padding: 80px 0 100px;
}
.lettuce-product__inner {
  display: flex;
  gap: 42px;
  max-width: 1000px;
  width: 88%;
  margin: 0 auto;
}
.lettuce-product__item {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.lettuce-product__img-wrap {
  position: relative;
  aspect-ratio: 440/330;
}
.lettuce-product__img-wrap > img:first-child {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.lettuce-product__icon {
  position: absolute;
  top: 0;
  left: 0;
  height: auto;
  pointer-events: none;
}
.lettuce-product__icon--irodori {
  width: 124px;
}
.lettuce-product__icon--kururin {
  width: 134px;
}
.lettuce-product__name {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 32px;
  color: var(--black);
  line-height: 1.4;
  margin-bottom: 0;
}
.lettuce-product__tm {
  font-weight: 400;
  font-size: 0.6em;
  vertical-align: super;
}
.lettuce-product__desc {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 20px;
  color: var(--black);
  line-height: 2;
}

@media (min-width: 768px) and (max-width: 1024px) {
  .lettuce-point--p1 .lettuce-point__img {
    flex: 0 0 380px;
    max-width: 380px;
  }
  .lettuce-point--p2 .lettuce-point__img--p2 {
    width: 52%;
  }
  .lettuce-point--p3 .lettuce-point__imgs-pair {
    flex: 0 0 48%;
  }
  .other-tomato__icon {
    width: 72px;
    height: 72px;
  }
}
@media (max-width: 767px) {
  .lettuce-points {
    padding-top: 24px;
    padding-bottom: 40px;
  }
  .lettuce-point--p1 {
    flex-direction: column;
    width: 100%;
    gap: 0;
    margin-bottom: 0;
  }
  .lettuce-point--p1 .lettuce-point__text {
    width: 88%;
    margin: 24px auto 40px;
    order: 2;
  }
  .lettuce-point--p1 .lettuce-point__img {
    flex: none;
    width: 88%;
    max-width: 100%;
    margin: 0 auto;
    order: 1;
  }
  .lettuce-point--p2 {
    flex-direction: column;
    width: 100%;
    gap: 0;
    margin-bottom: 0;
  }
  .lettuce-point--p2 .lettuce-point__img--p2 {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    flex: none;
    width: 88%;
    max-width: 100%;
    margin: 0 auto;
  }
  .lettuce-point--p2 .lettuce-point__text--p2 {
    width: 88%;
    margin: 0 auto 40px;
  }
  .lettuce-point--p3 {
    flex-direction: column;
    width: 100%;
    gap: 0;
    margin-bottom: 0;
  }
  .lettuce-point--p3 .lettuce-point__text {
    width: 88%;
    margin: 0 auto;
    padding-top: 0;
    padding-bottom: 40px;
    order: 2;
  }
  .lettuce-point--p3 .lettuce-point__imgs-pair {
    flex: none;
    width: 88%;
    margin: 0 auto;
    order: 1;
  }
  .lettuce-point--p3 .lettuce-point__imgs-pair > img:last-child {
    margin-top: 0;
    position: relative;
    z-index: 1;
  }
  .lettuce-p3-img-main {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
  }
  .lettuce-p3-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left top;
    transform: scale(1.2);
    transform-origin: left top;
  }
  .lettuce-product {
    padding: 60px 0;
  }
  .lettuce-product__inner {
    flex-direction: column;
    gap: 40px;
  }
  .lettuce-product__name {
    font-size: 22px;
  }
  .lettuce-product__desc {
    font-size: 15px;
  }
  .lettuce-product__icon--irodori {
    width: 80px;
  }
  .lettuce-product__icon--kururin {
    width: 86px;
  }
}
body[data-page=service] .site-header {
  position: relative;
  background: #fff;
  z-index: 400;
}

.service-hero {
  width: 100%;
}
.service-hero__img-wrap {
  aspect-ratio: 24/11;
  overflow: hidden;
}
.service-hero__img-wrap img {
  width: 100%;
  height: auto;
  display: block;
}

.service-page-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 40px;
}
.service-page-title__en {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: 44px;
  color: var(--black);
  line-height: 1;
}
@media print, screen and (min-width: 768px) {
  .service-page-title__en {
    font-size: 60px;
  }
}
@media print, screen and (min-width: 1025px) {
  .service-page-title__en {
    font-size: 70px;
  }
}
.service-page-title__ja {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--black);
  line-height: 1.6;
  margin-top: 4px;
}
@media print, screen and (min-width: 1025px) {
  .service-page-title__ja {
    font-size: 24px;
  }
}

.service-subnav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 24px;
  margin-bottom: 48px;
  padding: 0 16px;
}
@media print, screen and (min-width: 768px) {
  .service-subnav {
    gap: 15px;
    margin-top: 32px;
    margin-bottom: 80px;
    padding: 0;
  }
}
.service-subnav__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  height: 50px;
  padding: 0 18px;
  border: 3px solid var(--green);
  border-radius: 30px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: var(--green);
  line-height: 1.7;
  background: #fff;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease;
}
@media print, screen and (min-width: 768px) {
  .service-subnav__btn {
    height: 60px;
    padding: 0 24px;
    font-size: 14px;
  }
}
@media print, screen and (min-width: 1025px) {
  .service-subnav__btn {
    width: 213px;
    font-size: 15px;
  }
}
.service-subnav__btn.is-active {
  background: var(--green);
  color: #fff;
}
.service-subnav__btn:not(.is-active):hover {
  background: var(--green);
  color: #fff;
}

.service-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  margin-bottom: 80px;
}
@media print, screen and (min-width: 1025px) {
  .service-copy {
    gap: 61px;
    margin-bottom: 120px;
  }
}
.service-copy__text {
  width: 88%;
  margin: 0 auto;
  text-align: center;
}
@media print, screen and (min-width: 1025px) {
  .service-copy__text {
    max-width: 644px;
  }
}
.service-copy__heading {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: var(--black);
  line-height: 1.4;
  margin-bottom: 20px;
}
@media print, screen and (min-width: 1025px) {
  .service-copy__heading {
    font-size: 32px;
    margin-bottom: 32px;
  }
}
.service-copy__body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 15px;
  color: var(--black);
  line-height: 1.8;
  text-align: left;
}
@media print, screen and (min-width: 1025px) {
  .service-copy__body {
    font-size: 20px;
    line-height: 2;
    text-align: center;
  }
}
.service-copy__photos {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
@media print, screen and (min-width: 1025px) {
  .service-copy__photos {
    grid-template-columns: repeat(4, 1fr);
  }
}
.service-copy__photos img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}
@media print, screen and (min-width: 1025px) {
  .service-copy__photos img {
    aspect-ratio: 360/269;
  }
}

.service-agri__inner {
  width: 88%;
  margin: 0 auto;
}
@media print, screen and (min-width: 1025px) {
  .service-agri__inner {
    width: 100%;
    max-width: 1440px;
    padding: 0 116px;
  }
}
.service-agri__row {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 0 0 60px;
}
@media print, screen and (min-width: 1025px) {
  .service-agri__row {
    flex-direction: row;
    align-items: center;
    gap: 41px;
    padding: 0 0 90px;
  }
}
.service-agri__row--text-first .service-agri__photo {
  order: 1;
}
@media print, screen and (min-width: 1025px) {
  .service-agri__row--text-first .service-agri__photo {
    order: 2;
  }
}
.service-agri__row--text-first .service-agri__text {
  order: 2;
}
@media print, screen and (min-width: 1025px) {
  .service-agri__row--text-first .service-agri__text {
    order: 1;
  }
}
@media print, screen and (min-width: 1025px) {
  .service-agri__text {
    flex: 1;
  }
}
.service-agri__heading {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: var(--black);
  line-height: 1.4;
  margin-bottom: 20px;
}
@media print, screen and (min-width: 1025px) {
  .service-agri__heading {
    font-size: 32px;
    margin-bottom: 25px;
  }
}
.service-agri__body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 15px;
  color: var(--black);
  line-height: 1.8;
}
@media print, screen and (min-width: 1025px) {
  .service-agri__body {
    font-size: 20px;
    line-height: 2;
  }
}
.service-agri__body sub {
  font-size: 0.65em;
}
@media print, screen and (min-width: 1025px) {
  .service-agri__photo {
    flex: 1;
  }
}
.service-agri__photo img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 584/439;
  object-fit: cover;
}
@media print, screen and (min-width: 1025px) {
  .service-agri__mosaic {
    flex: 1;
  }
}
.service-agri__mosaic img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 584/501;
  object-fit: cover;
}

.service-plant {
  width: 100%;
  height: 300px;
  overflow: hidden;
  position: relative;
}
@media print, screen and (min-width: 1025px) {
  .service-plant {
    height: 600px;
  }
}
.service-plant img {
  position: absolute;
  bottom: -50%;
  left: 0;
  width: 100%;
  height: 200%;
  object-fit: cover;
  will-change: transform;
}
@media print, screen and (min-width: 1025px) {
  .service-plant img {
    bottom: -20%;
  }
}

.service-base {
  padding: 60px 0 80px;
}
@media print, screen and (min-width: 1025px) {
  .service-base {
    padding: 100px 0 120px;
  }
}
.service-base__inner {
  width: 88%;
  margin: 0 auto;
}
@media print, screen and (min-width: 1025px) {
  .service-base__inner {
    max-width: 1000px;
  }
}
.service-base .section-heading {
  margin-bottom: 0;
}
@media print, screen and (min-width: 768px) {
  .service-base .section-heading__en {
    font-size: 45px;
  }
}
.service-base__list {
  display: flex;
  flex-direction: column;
}
.service-base__item {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 48px 0;
}
@media print, screen and (min-width: 1025px) {
  .service-base__item {
    flex-direction: row;
    align-items: center;
    gap: 40px;
  }
}
.service-base__photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
@media print, screen and (min-width: 1025px) {
  .service-base__photos {
    width: 376px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 7px;
  }
}
.service-base__photos img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}
@media print, screen and (min-width: 1025px) {
  .service-base__photos img {
    aspect-ratio: 376/281;
  }
}
.service-base__info {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media print, screen and (min-width: 1025px) {
  .service-base__info {
    flex: 1;
    gap: 10px;
  }
}
.service-base__name {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--black);
  line-height: 1.4;
}
@media print, screen and (min-width: 1025px) {
  .service-base__name {
    font-size: 32px;
  }
}
.service-base__desc {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: var(--black);
  line-height: 1.8;
}
@media print, screen and (min-width: 1025px) {
  .service-base__desc {
    font-size: 20px;
    line-height: 2;
  }
}
.service-base__address-block {
  background: #f5f5f5;
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media print, screen and (min-width: 1025px) {
  .service-base__address-block {
    padding: 20px 30px;
    gap: 8px;
  }
}
.service-base__address {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: var(--black);
  line-height: 1.8;
}
@media print, screen and (min-width: 1025px) {
  .service-base__address {
    font-size: 20px;
  }
}
.service-base__maps-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 3px solid var(--green);
  border-radius: 40px;
  padding: 10px 24px;
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--green);
  line-height: 28px;
  background: #fff;
  align-self: flex-start;
  transition: background 0.2s ease, color 0.2s ease;
}
@media print, screen and (min-width: 1025px) {
  .service-base__maps-btn {
    font-size: 16px;
    padding: 12px 40px;
  }
}
.service-base__maps-btn img {
  flex-shrink: 0;
  transition: filter 0.2s ease;
}
.service-base__maps-btn:hover {
  background: var(--green);
  color: #fff;
}
.service-base__maps-btn:hover img {
  filter: brightness(0) invert(1);
}
.service-base__divider {
  width: 100%;
  height: 1px;
  background: #b9b5b5;
}

.consulting-copy {
  padding: 48px 0 60px;
}
@media print, screen and (min-width: 1025px) {
  .consulting-copy {
    padding: 60px 0 80px;
  }
}
.consulting-copy__inner {
  width: 88%;
  margin: 0 auto;
  text-align: center;
}
@media print, screen and (min-width: 1025px) {
  .consulting-copy__inner {
    max-width: 664px;
  }
}
.consulting-copy__heading {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: var(--black);
  line-height: 1.4;
  margin-bottom: 24px;
}
.consulting-copy__heading br {
  display: block;
}
@media print, screen and (min-width: 1025px) {
  .consulting-copy__heading {
    font-size: 32px;
    margin-bottom: 32px;
  }
  .consulting-copy__heading br {
    display: none;
  }
}
.consulting-copy__body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 15px;
  color: var(--black);
  line-height: 1.8;
  text-align: left;
}
@media print, screen and (min-width: 1025px) {
  .consulting-copy__body {
    font-size: 20px;
    line-height: 2;
  }
}

.consulting-plant {
  width: 100%;
  height: 300px;
  overflow: hidden;
  position: relative;
}
@media print, screen and (min-width: 1025px) {
  .consulting-plant {
    height: 415px;
  }
}
.consulting-plant img {
  position: absolute;
  bottom: -50%;
  left: 0;
  width: 100%;
  height: 200%;
  object-fit: cover;
  will-change: transform;
}
@media print, screen and (min-width: 1025px) {
  .consulting-plant img {
    bottom: -60%;
  }
}

.consulting-case {
  padding: 60px 0;
}
@media print, screen and (min-width: 1025px) {
  .consulting-case {
    padding: 100px 0;
  }
}
.consulting-case__inner {
  width: 88%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}
@media print, screen and (min-width: 1025px) {
  .consulting-case__inner {
    max-width: 1013px;
    gap: 79px;
  }
}
.consulting-case__label {
  background: var(--green);
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 15px;
  line-height: 1.6;
  padding: 10px 20px;
  text-align: center;
}
@media print, screen and (min-width: 1025px) {
  .consulting-case__label {
    font-size: 24px;
    padding: 10px 30px;
  }
}
.consulting-case__list {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.consulting-case__item {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 32px 0;
}
@media print, screen and (min-width: 1025px) {
  .consulting-case__item {
    flex-direction: row;
    align-items: flex-start;
    gap: 100px;
    padding: 40px 0;
  }
}
.consulting-case__header {
  flex-shrink: 0;
}
@media print, screen and (min-width: 1025px) {
  .consulting-case__header {
    width: 256px;
  }
}
.consulting-case__num {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: 32px;
  color: var(--green);
  line-height: 1;
}
@media print, screen and (min-width: 1025px) {
  .consulting-case__num {
    font-size: 45px;
  }
}
.consulting-case__title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--black);
  line-height: 1.4;
  margin-top: 4px;
}
@media print, screen and (min-width: 1025px) {
  .consulting-case__title {
    font-size: 32px;
  }
}
.consulting-case__body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 15px;
  color: var(--black);
  line-height: 1.8;
}
@media print, screen and (min-width: 1025px) {
  .consulting-case__body {
    flex: 1;
    font-size: 20px;
    line-height: 2;
  }
}
.consulting-case__divider {
  width: 100%;
  height: 1px;
  background: #b9b5b5;
}

.consulting-achievement {
  background: var(--bg);
  padding: 60px 0;
}
@media print, screen and (min-width: 1025px) {
  .consulting-achievement {
    padding: 100px 0;
  }
}
.consulting-achievement__inner {
  width: 88%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media print, screen and (min-width: 1025px) {
  .consulting-achievement__inner {
    max-width: 1079px;
    gap: 46px;
  }
}
.consulting-achievement__top {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
@media print, screen and (min-width: 1025px) {
  .consulting-achievement__top {
    flex-direction: row;
    align-items: flex-start;
    gap: 65px;
  }
}
.consulting-achievement__title-col {
  display: block;
  border-top: 1px solid var(--black);
  border-bottom: 1px solid var(--black);
  padding: 24px 0;
}
.consulting-achievement__badge {
  background: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: var(--black);
  line-height: 1.6;
  padding: 8px 14px;
  display: inline-block;
  margin-bottom: 10px;
}
@media print, screen and (min-width: 1025px) {
  .consulting-achievement__badge {
    font-size: 24px;
    padding: 10px;
  }
}
.consulting-achievement__title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: var(--black);
  line-height: 1.3;
}
@media print, screen and (min-width: 1025px) {
  .consulting-achievement__title {
    font-size: 40px;
  }
}
.consulting-achievement__summary-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media print, screen and (min-width: 1025px) {
  .consulting-achievement__summary-col {
    flex: 1;
    gap: 5px;
  }
}
.consulting-achievement__subtitle {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--black);
  line-height: 1.4;
}
@media print, screen and (min-width: 1025px) {
  .consulting-achievement__subtitle {
    font-size: 32px;
  }
}
.consulting-achievement__summary {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: var(--black);
  line-height: 1.8;
}
@media print, screen and (min-width: 1025px) {
  .consulting-achievement__summary {
    font-size: 20px;
    line-height: 2;
  }
}
.consulting-achievement__photos {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}
@media print, screen and (min-width: 768px) {
  .consulting-achievement__photos {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
}
.consulting-achievement__photos img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}
.consulting-achievement__result {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media print, screen and (min-width: 1025px) {
  .consulting-achievement__result {
    flex-direction: row;
    align-items: flex-start;
    gap: 65px;
  }
}
.consulting-achievement__measures {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media print, screen and (min-width: 1025px) {
  .consulting-achievement__measures {
    flex: 1;
  }
}
.consulting-achievement__result-label {
  background: var(--green);
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 15px;
  line-height: 2;
  padding: 4px 20px;
  display: inline-block;
}
@media print, screen and (min-width: 1025px) {
  .consulting-achievement__result-label {
    font-size: 20px;
    padding: 6px 30px;
  }
}
.consulting-achievement__list {
  list-style: none;
  display: flex;
  flex-direction: column;
}
.consulting-achievement__list li {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: var(--black);
  line-height: 2;
  padding-left: 20px;
  position: relative;
}
.consulting-achievement__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 10px;
  height: 10px;
  background-color: var(--green);
  border-radius: 10px;
}
@media print, screen and (min-width: 1025px) {
  .consulting-achievement__list li {
    font-size: 20px;
    padding-left: 24px;
  }
  .consulting-achievement__list li::before {
    width: 12px;
    height: 12px;
    border-radius: 12px;
    top: 0.7em;
  }
}
.consulting-achievement__outcome {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media print, screen and (min-width: 1025px) {
  .consulting-achievement__outcome {
    flex: 1;
  }
}
.consulting-achievement__outcome-text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: var(--black);
  line-height: 2;
}
@media print, screen and (min-width: 1025px) {
  .consulting-achievement__outcome-text {
    font-size: 20px;
  }
}
.consulting-achievement__vision {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media print, screen and (min-width: 1025px) {
  .consulting-achievement__vision {
    flex-direction: row;
    align-items: flex-start;
    gap: 65px;
  }
}
@media print, screen and (min-width: 1025px) {
  .consulting-achievement__vision-photo {
    flex: 1;
  }
}
.consulting-achievement__vision-photo img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.consulting-achievement__vision-text {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media print, screen and (min-width: 1025px) {
  .consulting-achievement__vision-text {
    flex: 1;
  }
}
.consulting-achievement__vision-text p {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: var(--black);
  line-height: 2;
}
@media print, screen and (min-width: 1025px) {
  .consulting-achievement__vision-text p {
    font-size: 20px;
  }
}

.consulting-message {
  padding: 60px 0 80px;
}
@media print, screen and (min-width: 1025px) {
  .consulting-message {
    padding: 100px 0 120px;
  }
}
.consulting-message__inner {
  width: 88%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}
@media print, screen and (min-width: 1025px) {
  .consulting-message__inner {
    max-width: 820px;
  }
}
.consulting-message__heading {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: var(--black);
  line-height: 1.3;
}
@media print, screen and (min-width: 1025px) {
  .consulting-message__heading {
    font-size: 40px;
  }
}
.consulting-message__body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 15px;
  color: var(--black);
  line-height: 1.8;
  text-align: left;
}
@media print, screen and (min-width: 1025px) {
  .consulting-message__body {
    font-size: 20px;
    line-height: 2;
  }
}
.consulting-message__il {
  width: 100%;
}
.consulting-message__il img {
  width: 100%;
  height: auto;
  display: block;
}

.inno-copy {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 20px;
}
@media print, screen and (min-width: 768px) {
  .inno-copy {
    margin-bottom: 40px;
  }
}
@media print, screen and (min-width: 1025px) {
  .inno-copy {
    flex-direction: row;
    align-items: flex-start;
    gap: 38px;
    margin-bottom: 80px;
    width: 94%;
    max-width: 1400px;
  }
}
.inno-copy__photo {
  width: 100%;
  flex-shrink: 0;
}
@media print, screen and (min-width: 1025px) {
  .inno-copy__photo {
    width: 60%;
  }
}
.inno-copy__photo img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 804/480;
  object-fit: cover;
}
.inno-copy__photo.js-inno-slide {
  clip-path: inset(0 100% 0 0);
  transition: clip-path 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}
.inno-copy__photo.js-inno-slide.is-visible {
  clip-path: inset(0 0% 0 0);
}
.inno-copy__text {
  width: 88%;
  margin: 0 auto;
}
@media print, screen and (min-width: 1025px) {
  .inno-copy__text {
    width: 40%;
    flex: 1;
    margin: 0;
  }
}
.inno-copy__heading {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: var(--black);
  line-height: 1.4;
  margin-bottom: 16px;
}
@media print, screen and (min-width: 1025px) {
  .inno-copy__heading {
    font-size: 32px;
    margin-bottom: 11px;
  }
}
.inno-copy__body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: var(--black);
  line-height: 1.8;
}
@media print, screen and (min-width: 1025px) {
  .inno-copy__body {
    font-size: 20px;
    line-height: 2;
  }
}

.inno-image {
  padding-bottom: 80px;
}
@media print, screen and (min-width: 1025px) {
  .inno-image {
    padding-bottom: 120px;
  }
}
.inno-image__inner {
  width: 88%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 48px;
}
@media print, screen and (min-width: 1025px) {
  .inno-image__inner {
    max-width: 1208px;
    gap: 45px;
  }
}
.inno-image__partners {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
@media print, screen and (min-width: 1025px) {
  .inno-image__partners {
    flex-direction: row;
    align-items: flex-start;
    gap: 0;
    justify-content: space-between;
    position: relative;
    width: 88%;
    max-width: 838px;
    margin: 0 auto;
  }
}
.inno-image__col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 100%;
}
@media print, screen and (min-width: 1025px) {
  .inno-image__col {
    width: 385px;
    flex-shrink: 0;
  }
}
.inno-image__circle {
  width: 180px;
  height: 180px;
  flex-shrink: 0;
}
@media print, screen and (min-width: 1025px) {
  .inno-image__circle {
    width: 232px;
    height: 232px;
  }
}
.inno-image__circle img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.inno-image__tags {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}
@media print, screen and (min-width: 768px) {
  .inno-image__tag-row {
    display: flex;
    gap: 12px;
    align-items: center;
  }
}
@media print, screen and (min-width: 1025px) {
  .inno-image__tag-row {
    gap: 14px;
  }
}
.inno-image__tag {
  border: 1px solid #b9b5b5;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  flex-shrink: 0;
  width: 100%;
  min-height: 48px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: var(--black);
  line-height: 1.7;
  text-align: center;
  margin-bottom: 5px;
}
@media print, screen and (min-width: 768px) {
  .inno-image__tag {
    width: 140px;
  }
}
@media print, screen and (min-width: 1025px) {
  .inno-image__tag {
    width: 154px;
    min-height: 54px;
    font-size: 15px;
  }
}
.inno-image__tag-desc {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 13px;
  color: var(--black);
  line-height: 1.8;
}
@media print, screen and (min-width: 1025px) {
  .inno-image__tag-desc {
    font-size: 15px;
  }
}
.inno-image__arrows-wrap {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
@media print, screen and (min-width: 1025px) {
  .inno-image__arrows-wrap {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 86px;
    width: 251px;
    z-index: -1;
    flex-direction: column;
    padding-top: 0;
    gap: 5px;
  }
  .inno-image__arrows-wrap .inno-image__arrow--right {
    margin-left: 20px;
  }
  .inno-image__arrows-wrap .inno-image__arrow--left {
    margin-right: 20px;
  }
}
.inno-image__arrow-img--sp {
  display: block;
}
@media print, screen and (min-width: 1025px) {
  .inno-image__arrow-img--sp {
    display: none;
  }
}
.inno-image__arrow-img--pc {
  display: none;
}
@media print, screen and (min-width: 1025px) {
  .inno-image__arrow-img--pc {
    display: block;
  }
}
.inno-image__arrow--right .inno-image__arrow-img--sp {
  clip-path: inset(100% 0 0 0);
  transition: clip-path 0.4s ease-out;
}
.inno-image__arrow--right .inno-image__arrow-img--pc {
  clip-path: inset(0 0 0 100%);
  transition: clip-path 0.4s ease-out;
}
.inno-image__arrow--left .inno-image__arrow-img--sp {
  clip-path: inset(0 0 100% 0);
  transition: clip-path 0.4s ease-out 0.05s;
}
.inno-image__arrow--left .inno-image__arrow-img--pc {
  clip-path: inset(0 100% 0 0);
  transition: clip-path 0.4s ease-out 0.05s;
}
.inno-image__partners.is-visible .inno-image__arrow-img--sp,
.inno-image__partners.is-visible .inno-image__arrow-img--pc {
  clip-path: inset(0 0 0 0);
}
.inno-image__theme {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
}
.inno-image__theme-label {
  background: var(--green);
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 15px;
  line-height: 1.6;
  padding: 10px 24px;
  text-align: center;
  width: 100%;
}
@media print, screen and (min-width: 1025px) {
  .inno-image__theme-label {
    font-size: 24px;
    width: auto;
  }
}
@media print, screen and (min-width: 1025px) {
  .inno-image__theme-grid {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 0;
  }
}
.inno-image__theme-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
@media print, screen and (min-width: 1025px) {
  .inno-image__theme-item {
    flex: 1;
  }
}
.inno-image__theme-icon {
  width: 180px;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media print, screen and (min-width: 1025px) {
  .inno-image__theme-icon {
    width: 240px;
    height: 180px;
  }
}
.inno-image__theme-icon img {
  max-width: 100%;
  max-height: 100%;
  display: block;
  object-fit: contain;
}
.inno-image__theme-title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--black);
  line-height: 2;
  text-align: center;
  width: 100%;
}
@media print, screen and (min-width: 1025px) {
  .inno-image__theme-title {
    font-size: 20px;
  }
}
.inno-image__theme-desc {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 13px;
  color: var(--black);
  line-height: 1.8;
}
@media print, screen and (min-width: 1025px) {
  .inno-image__theme-desc {
    font-size: 20px;
    line-height: 2;
  }
}
.inno-image__theme-divider {
  width: 100%;
  height: 1px;
  background: #b9b5b5;
  flex-shrink: 0;
  margin-top: 20px;
}
@media print, screen and (min-width: 1025px) {
  .inno-image__theme-divider {
    display: block;
    width: 1px;
    height: auto;
    align-self: stretch;
    background: #b9b5b5;
    flex-shrink: 0;
    margin: 0 30px;
  }
}

.inno-theme__icon {
  width: 180px;
  height: 140px;
}
@media print, screen and (min-width: 1025px) {
  .inno-theme__icon {
    width: 240px;
    height: 180px;
  }
}

#lottie-innovation03 {
  width: 216px;
  height: 168px;
}
@media print, screen and (min-width: 1025px) {
  #lottie-innovation03 {
    width: 288px;
    height: 216px;
  }
}

.inno-achievement {
  background: var(--bg);
  padding: 60px 0;
}
@media print, screen and (min-width: 1025px) {
  .inno-achievement {
    padding: 100px 0;
  }
}
.inno-achievement__inner {
  width: 88%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media print, screen and (min-width: 1025px) {
  .inno-achievement__inner {
    max-width: 1079px;
    gap: 46px;
  }
}
.inno-achievement__top {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
@media print, screen and (min-width: 1025px) {
  .inno-achievement__top {
    flex-direction: row;
    align-items: flex-start;
    gap: 65px;
  }
}
.inno-achievement__title-col {
  display: block;
  border-top: 1px solid var(--black);
  border-bottom: 1px solid var(--black);
  padding: 24px 0;
}
@media print, screen and (min-width: 1025px) {
  .inno-achievement__title-col {
    flex: 1;
  }
}
.inno-achievement__badge {
  background: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--black);
  line-height: 1.6;
  padding: 8px 14px;
  display: inline-block;
  margin-bottom: 10px;
}
@media print, screen and (min-width: 1025px) {
  .inno-achievement__badge {
    font-size: 24px;
    padding: 10px;
  }
}
.inno-achievement__title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--black);
  line-height: 1.3;
}
@media print, screen and (min-width: 1025px) {
  .inno-achievement__title {
    font-size: 40px;
  }
}
.inno-achievement__summary-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media print, screen and (min-width: 1025px) {
  .inno-achievement__summary-col {
    flex: 1;
    gap: 5px;
  }
}
.inno-achievement__subtitle {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--black);
  line-height: 1.4;
}
@media print, screen and (min-width: 1025px) {
  .inno-achievement__subtitle {
    font-size: 32px;
  }
}
.inno-achievement__summary {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: var(--black);
  line-height: 1.8;
}
@media print, screen and (min-width: 1025px) {
  .inno-achievement__summary {
    font-size: 20px;
    line-height: 2;
  }
}
.inno-achievement__roles {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media print, screen and (min-width: 1025px) {
  .inno-achievement__roles {
    flex-direction: row;
    align-items: flex-start;
    gap: 65px;
  }
}
.inno-achievement__role {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media print, screen and (min-width: 1025px) {
  .inno-achievement__role {
    flex: 1;
    gap: 13px;
  }
}
.inno-achievement__result-label {
  background: var(--green);
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 15px;
  line-height: 2;
  padding: 4px 20px;
  display: inline-block;
}
@media print, screen and (min-width: 1025px) {
  .inno-achievement__result-label {
    font-size: 20px;
    padding: 6px 30px;
  }
}
.inno-achievement__role-intro {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.inno-achievement__role-title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--black);
  line-height: 1.6;
}
@media print, screen and (min-width: 1025px) {
  .inno-achievement__role-title {
    font-size: 24px;
  }
}
.inno-achievement__role-lead {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 13px;
  color: var(--black);
  line-height: 1.8;
}
@media print, screen and (min-width: 1025px) {
  .inno-achievement__role-lead {
    font-size: 20px;
    line-height: 2;
  }
}
.inno-achievement__list {
  list-style: none;
  display: flex;
  flex-direction: column;
}
.inno-achievement__list li {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 13px;
  color: var(--black);
  line-height: 2;
  padding-left: 20px;
  position: relative;
}
.inno-achievement__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 10px;
  height: 10px;
  background-color: var(--green);
  border-radius: 10px;
}
@media print, screen and (min-width: 1025px) {
  .inno-achievement__list li {
    font-size: 20px;
    padding-left: 24px;
  }
  .inno-achievement__list li::before {
    width: 12px;
    height: 12px;
    border-radius: 12px;
    top: 0.7em;
  }
}
.inno-achievement__vision {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media print, screen and (min-width: 1025px) {
  .inno-achievement__vision {
    flex-direction: row;
    align-items: flex-start;
    gap: 65px;
  }
}
@media print, screen and (min-width: 1025px) {
  .inno-achievement__vision-photo {
    flex: 1;
  }
}
.inno-achievement__vision-photo img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.inno-achievement__vision-text {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media print, screen and (min-width: 1025px) {
  .inno-achievement__vision-text {
    flex: 1;
  }
}
.inno-achievement__vision-text p {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: var(--black);
  line-height: 2;
}
@media print, screen and (min-width: 1025px) {
  .inno-achievement__vision-text p {
    font-size: 20px;
  }
}

.inno-message {
  padding: 60px 0 80px;
}
@media print, screen and (min-width: 1025px) {
  .inno-message {
    padding: 100px 0 120px;
  }
}
.inno-message__inner {
  width: 88%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}
@media print, screen and (min-width: 1025px) {
  .inno-message__inner {
    max-width: 694px;
    gap: 27px;
  }
}
.inno-message__heading {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: var(--black);
  line-height: 1.3;
}
@media print, screen and (min-width: 1025px) {
  .inno-message__heading {
    font-size: 40px;
  }
}
.inno-message__body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 15px;
  color: var(--black);
  line-height: 1.8;
  text-align: left;
}
@media print, screen and (min-width: 1025px) {
  .inno-message__body {
    font-size: 20px;
    line-height: 2;
  }
}

body[data-page=recruit] .site-header {
  position: relative;
  background: #fff;
  z-index: 400;
}

.js-fade-in {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.js-fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.js-interview-fade {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.js-interview-fade.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

.recruit-page-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 40px;
}
.recruit-page-title__en {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: 44px;
  color: var(--black);
  line-height: 1;
}
@media print, screen and (min-width: 768px) {
  .recruit-page-title__en {
    font-size: 60px;
  }
}
@media print, screen and (min-width: 1025px) {
  .recruit-page-title__en {
    font-size: 70px;
  }
}
.recruit-page-title__ja {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--black);
  line-height: 1.6;
  margin-top: 4px;
}
@media print, screen and (min-width: 1025px) {
  .recruit-page-title__ja {
    font-size: 24px;
  }
}

.recruit-subnav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 24px;
  padding: 0 16px;
}
@media print, screen and (min-width: 768px) {
  .recruit-subnav {
    gap: 15px;
    margin-top: 32px;
    padding: 0;
  }
}
.recruit-subnav__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  height: 50px;
  padding: 0 20px;
  border: 3px solid var(--green);
  border-radius: 30px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: var(--green);
  line-height: 1.7;
  background: #fff;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease;
}
@media print, screen and (min-width: 768px) {
  .recruit-subnav__btn {
    height: 60px;
    padding: 0 30px;
    font-size: 15px;
  }
}
.recruit-subnav__btn.is-active, .recruit-subnav__btn:hover {
  background: var(--green);
  color: #fff;
}

.recruit-hero {
  position: relative;
  width: 100%;
  margin-top: 40px;
}
@media print, screen and (min-width: 768px) {
  .recruit-hero {
    margin-top: 48px;
  }
}
.recruit-hero__img-wrap {
  aspect-ratio: 36/19;
  overflow: hidden;
}
.recruit-hero__img-wrap img {
  width: 100%;
  height: auto;
  display: block;
}
.recruit-hero__catchphrase {
  position: absolute;
  right: 13%;
  top: 13%;
  opacity: 0;
}
.recruit-hero__catchphrase img {
  width: 22vw;
  height: auto;
  display: block;
  object-fit: unset;
}
@media print, screen and (min-width: 1025px) {
  .recruit-hero__catchphrase img {
    width: 207px;
  }
}
.recruit-hero__catchphrase.is-revealed {
  animation: catchphrase-focus-in 1.2s ease forwards;
}

.recruit-message {
  margin-top: 80px;
}
@media print, screen and (min-width: 1025px) {
  .recruit-message {
    margin-top: 100px;
  }
}
.recruit-message__intro {
  width: 88%;
  margin: 0 auto;
}
@media print, screen and (min-width: 1025px) {
  .recruit-message__intro {
    display: flex;
    align-items: center;
    gap: 159px;
    max-width: 1153px;
  }
}
.recruit-message__title-block {
  margin-bottom: 32px;
}
@media print, screen and (min-width: 1025px) {
  .recruit-message__title-block {
    margin-bottom: 0;
    width: 28%;
  }
}
.recruit-message__en {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: 48px;
  color: var(--black);
  line-height: 1;
}
@media print, screen and (min-width: 1025px) {
  .recruit-message__en {
    font-size: 70px;
  }
}
.recruit-message__ja {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--black);
  line-height: 1.6;
  margin-top: 8px;
}
@media print, screen and (min-width: 1025px) {
  .recruit-message__ja {
    font-size: 24px;
  }
}
.recruit-message__body-first {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 15px;
  color: var(--black);
  line-height: 2;
}
@media print, screen and (min-width: 1025px) {
  .recruit-message__body-first {
    font-size: 20px;
    width: 57%;
  }
}
.recruit-message__body-first p + p {
  margin-top: 1em;
}
.recruit-message__staff-img {
  width: 100%;
  margin-top: 60px;
}
@media print, screen and (min-width: 1025px) {
  .recruit-message__staff-img {
    margin-top: 71px;
  }
}
.recruit-message__staff-img img {
  width: 100%;
  height: auto;
  display: block;
}
.recruit-message__second {
  width: 88%;
  margin: 60px auto 0;
}
@media print, screen and (min-width: 1025px) {
  .recruit-message__second {
    display: flex;
    justify-content: flex-end;
    max-width: 1153px;
    margin: 71px auto 0;
  }
}
.recruit-message__second-content {
  width: 100%;
}
@media print, screen and (min-width: 1025px) {
  .recruit-message__second-content {
    width: 57%;
  }
}
.recruit-message__heading {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 26px;
  color: var(--black);
  line-height: 1.3;
}
@media print, screen and (min-width: 1025px) {
  .recruit-message__heading {
    font-size: 40px;
  }
}
.recruit-message__body-second {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 15px;
  color: var(--black);
  line-height: 2;
  margin-top: 28px;
}
@media print, screen and (min-width: 1025px) {
  .recruit-message__body-second {
    font-size: 20px;
  }
}
.recruit-message__body-second p + p {
  margin-top: 1em;
}
.recruit-message__sig-name {
  display: flex;
  align-items: baseline;
  justify-content: flex-end;
  gap: 8px;
  margin-top: 28px;
  font-family: "Noto Sans JP", sans-serif;
  color: var(--black);
}
.recruit-message__sig-title {
  font-weight: 500;
  font-size: 14px;
  line-height: 29px;
}
.recruit-message__sig-name-kanji {
  font-weight: 700;
  font-size: 24px;
  line-height: 29px;
}
.recruit-message__sig-img {
  display: flex;
  justify-content: flex-end;
  margin-top: 16px;
  padding-bottom: 80px;
}
@media print, screen and (min-width: 1025px) {
  .recruit-message__sig-img {
    padding-bottom: 100px;
  }
}
.recruit-message__sig-img img {
  width: 55%;
  max-width: 302px;
  height: auto;
}

.interview-lead {
  margin-top: 40px;
}
@media print, screen and (min-width: 1025px) {
  .interview-lead {
    margin-top: 60px;
  }
}
.interview-lead__inner {
  width: 88%;
  margin: 0 auto;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 15px;
  color: var(--black);
  line-height: 2;
}
@media print, screen and (min-width: 1025px) {
  .interview-lead__inner {
    font-size: 20px;
    max-width: 700px;
  }
}
.interview-lead__inner p + p {
  margin-top: 1em;
}

.interview-list {
  margin-top: 60px;
  padding-bottom: 80px;
}
@media print, screen and (min-width: 1025px) {
  .interview-list {
    margin-top: 80px;
    padding-bottom: 100px;
  }
}
.interview-list__inner {
  width: 88%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  row-gap: 40px;
}
@media print, screen and (min-width: 1025px) {
  .interview-list__inner {
    max-width: 1050px;
  }
}
.interview-list__item {
  flex: 0 0 46%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: var(--black);
  transition: opacity 0.2s ease;
}
@media print, screen and (min-width: 1025px) {
  .interview-list__item {
    flex: 0 0 31%;
  }
}
.interview-list__item:hover {
  opacity: 0.6;
}
.interview-list__img {
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
}
.interview-list__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.interview-list__dept {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 13px;
  color: var(--black);
  line-height: 1.4;
}
@media print, screen and (min-width: 1025px) {
  .interview-list__dept {
    font-size: 14px;
  }
}
.interview-list__name {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.interview-list__name-ja {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--black);
  line-height: normal;
}
@media print, screen and (min-width: 1025px) {
  .interview-list__name-ja {
    font-size: 24px;
  }
}
.interview-list__name-en {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-size: 11px;
  color: var(--black);
  line-height: 1.5;
}
@media print, screen and (min-width: 1025px) {
  .interview-list__name-en {
    font-size: 12px;
    line-height: 23px;
  }
}
.interview-list__desc {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 13px;
  color: var(--black);
  line-height: 1.8;
}
@media print, screen and (min-width: 1025px) {
  .interview-list__desc {
    font-size: 15px;
  }
}

.interview-detail__main-img {
  width: 100%;
  margin-top: 40px;
}
@media print, screen and (min-width: 768px) {
  .interview-detail__main-img {
    margin-top: 48px;
  }
}
.interview-detail__main-img img {
  width: 100%;
  height: auto;
  display: block;
}

.interview-detail__section--intro {
  margin-top: 60px;
}
@media print, screen and (min-width: 1025px) {
  .interview-detail__section--intro {
    margin-top: 80px;
  }
}

.interview-detail__intro-inner {
  width: 88%;
  margin: 0 auto;
}
@media print, screen and (min-width: 1025px) {
  .interview-detail__intro-inner {
    display: flex;
    align-items: flex-start;
    gap: 56px;
    max-width: 1210px;
  }
}

@media print, screen and (min-width: 1025px) {
  .interview-detail__profile {
    order: 3;
    flex: 0 0 26%;
  }
}
.interview-detail__profile-name-ja {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: var(--black);
  line-height: normal;
}
.interview-detail__profile-name-en {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-size: 12px;
  color: var(--black);
  line-height: 23px;
}
.interview-detail__profile-career {
  margin-top: 16px;
}
.interview-detail__profile-label {
  display: inline-block;
  background: var(--bg);
  padding: 4px 15px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 15px;
  color: var(--black);
  line-height: 1.8;
}
.interview-detail__profile-text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 15px;
  color: var(--black);
  line-height: 1.8;
  margin-top: 8px;
}

.interview-detail__divider {
  height: 1px;
  background: var(--black);
  opacity: 0.15;
  margin: 32px 0;
}
@media print, screen and (min-width: 1025px) {
  .interview-detail__divider {
    order: 2;
    height: auto;
    width: 1px;
    margin: 0;
    flex: 0 0 1px;
    align-self: stretch;
    min-height: 226px;
    opacity: 1;
  }
}

@media print, screen and (min-width: 1025px) {
  .interview-detail__article {
    order: 1;
    flex: 0 0 58%;
  }
}

.interview-detail__heading {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: var(--green);
  line-height: 1.4;
}
@media print, screen and (min-width: 1025px) {
  .interview-detail__heading {
    font-size: 32px;
  }
}

.interview-detail__body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 15px;
  color: var(--black);
  line-height: 2;
  margin-top: 20px;
}
@media print, screen and (min-width: 1025px) {
  .interview-detail__body {
    font-size: 20px;
    margin-top: 24px;
  }
}
.interview-detail__body p + p {
  margin-top: 1em;
}

.interview-detail__section--img-left,
.interview-detail__section--img-right {
  margin-top: 60px;
}
@media print, screen and (min-width: 1025px) {
  .interview-detail__section--img-left,
  .interview-detail__section--img-right {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    width: 94%;
    margin-top: 80px;
    max-width: 1440px;
  }
}

@media print, screen and (min-width: 1025px) {
  .interview-detail__section--img-left {
    margin-left: 0;
    margin-right: auto;
  }
}
@media print, screen and (min-width: 1025px) {
  .interview-detail__section--img-left .interview-detail__img-block {
    flex: none;
    width: 48%;
  }
}
@media print, screen and (min-width: 1025px) {
  .interview-detail__section--img-left .interview-detail__text-block {
    flex: none;
    width: 45%;
    padding: 0;
    margin: 0;
  }
}

@media print, screen and (min-width: 1025px) {
  .interview-detail__section--img-right {
    margin-left: auto;
    margin-right: 0;
  }
}
.interview-detail__section--img-right .interview-detail__img-block {
  margin-top: 40px;
}
@media print, screen and (min-width: 1025px) {
  .interview-detail__section--img-right .interview-detail__img-block {
    margin: 0;
    flex: none;
    width: 48%;
  }
}
@media print, screen and (min-width: 1025px) {
  .interview-detail__section--img-right .interview-detail__text-block {
    flex: none;
    width: 45%;
    padding: 0;
    margin: 0;
  }
}

.interview-detail__img-block img {
  width: 100%;
  height: auto;
  display: block;
}
@media print, screen and (min-width: 1025px) {
  .interview-detail__img-block {
    flex: 0 0 56%;
  }
}

.interview-detail__text-block {
  width: 88%;
  margin: 40px auto 0;
}
@media print, screen and (min-width: 1025px) {
  .interview-detail__text-block {
    flex: 1;
    padding: 60px 5%;
    margin: 0;
    width: auto;
  }
}

.interview-detail__members {
  background: var(--bg);
  padding: 80px 0 70px;
  margin-top: 80px;
}
@media print, screen and (min-width: 1025px) {
  .interview-detail__members {
    margin-top: 100px;
    padding: 88px 0 70px;
  }
}

.footer__requirements-bar {
  width: 100%;
  height: 46px;
  background: #c3d600;
}

.requirements {
  margin-top: 60px;
  padding-bottom: 80px;
}
@media print, screen and (min-width: 1025px) {
  .requirements {
    margin-top: 80px;
    padding-bottom: 100px;
  }
}
.requirements__list {
  width: 88%;
  margin: 0 auto;
  max-width: 720px;
}
.requirements__item {
  border-bottom: 1px solid #b9b5b5;
  padding: 16px 0;
}
@media print, screen and (min-width: 1025px) {
  .requirements__item {
    display: flex;
    align-items: stretch;
    padding: 0;
  }
}
.requirements__term {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--black);
  line-height: 2;
  margin-bottom: 4px;
}
@media print, screen and (min-width: 1025px) {
  .requirements__term {
    flex: 0 0 220px;
    font-size: 20px;
    padding: 20px 15px;
    border-bottom: 2px solid #b9b5b5;
    display: flex;
    align-items: center;
    margin-bottom: 0;
  }
}
.requirements__desc {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 15px;
  color: var(--black);
  line-height: 2;
  margin: 0;
}
@media print, screen and (min-width: 1025px) {
  .requirements__desc {
    flex: 1;
    font-size: 20px;
    padding: 20px 15px;
    display: flex;
    align-items: center;
  }
}

.selection {
  background: var(--bg);
  padding: 60px 0;
}
@media print, screen and (min-width: 1025px) {
  .selection {
    padding: 100px 0;
  }
}
.selection__header {
  text-align: center;
  margin-bottom: 40px;
}
@media print, screen and (min-width: 1025px) {
  .selection__header {
    margin-bottom: 25px;
  }
}
.selection__label-en {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: 32px;
  color: var(--black);
  line-height: normal;
}
@media print, screen and (min-width: 1025px) {
  .selection__label-en {
    font-size: 45px;
  }
}
.selection__label-ja {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: var(--black);
  line-height: normal;
  margin-top: 6px;
}
@media print, screen and (min-width: 1025px) {
  .selection__label-ja {
    font-size: 15px;
  }
}
.selection__steps {
  width: 88%;
  margin: 0 auto;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  row-gap: 30px;
  max-width: 580px;
}
@media print, screen and (min-width: 1025px) {
  .selection__steps {
    flex-wrap: nowrap;
    justify-content: center;
    gap: 9px;
    max-width: 860px;
  }
}
.selection__step {
  flex: 0 0 46%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
@media print, screen and (min-width: 600px) {
  .selection__step {
    flex: 0 0 24%;
  }
}
@media print, screen and (min-width: 1025px) {
  .selection__step {
    flex: 0 0 205px;
  }
}
.selection__step-num {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--green);
  line-height: normal;
}
@media print, screen and (min-width: 1025px) {
  .selection__step-num {
    font-size: 30px;
  }
}
.selection__step-icon {
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.selection__step-icon img {
  width: 100px;
  height: auto;
}
@media print, screen and (min-width: 1025px) {
  .selection__step-icon img {
    width: 154px;
  }
}
.selection__step-name {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--black);
  text-align: center;
  line-height: 2;
}
@media print, screen and (min-width: 1025px) {
  .selection__step-name {
    font-size: 20px;
  }
}

.entry-cta {
  margin-top: 60px;
  padding-bottom: 60px;
  text-align: center;
}
@media print, screen and (min-width: 1025px) {
  .entry-cta {
    margin-top: 80px;
    padding-bottom: 80px;
  }
}
.entry-cta__text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--black);
  line-height: 2;
  width: 88%;
  margin: 0 auto;
}
@media print, screen and (min-width: 1025px) {
  .entry-cta__text {
    font-size: 20px;
    max-width: 728px;
  }
}
.entry-cta__highlight {
  color: var(--green);
  text-decoration: underline;
  font-size: 18px;
}
@media print, screen and (min-width: 1025px) {
  .entry-cta__highlight {
    font-size: 24px;
  }
}
.entry-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 32px;
  width: 88%;
  max-width: 540px;
  min-height: 72px;
  padding: 20px 40px;
  background: #fff;
  border: 3px solid var(--green);
  border-radius: 9999px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--green);
  transition: background 0.2s ease, color 0.2s ease;
}
@media print, screen and (min-width: 1025px) {
  .entry-cta__btn {
    font-size: 16px;
    min-height: 94px;
  }
}
.entry-cta__btn img {
  width: 24px;
  height: auto;
  filter: invert(52%) sepia(83%) saturate(401%) hue-rotate(63deg) brightness(97%) contrast(97%);
  transition: filter 0.2s ease;
}
.entry-cta__btn:hover {
  background: var(--green);
  color: #fff;
}
.entry-cta__btn:hover img {
  filter: brightness(0) invert(1);
}

.entry-form {
  margin-top: 60px;
  padding-bottom: 80px;
}
@media print, screen and (min-width: 1025px) {
  .entry-form {
    margin-top: 80px;
    padding-bottom: 100px;
  }
}
.entry-form__inner {
  width: 88%;
  margin: 0 auto;
  max-width: 940px;
}
.entry-form__row {
  border-bottom: 1px solid #b4a2a2;
  padding: 16px 0;
}
@media print, screen and (min-width: 1025px) {
  .entry-form__row {
    display: flex;
    align-items: stretch;
    border-bottom: none;
    padding: 0;
  }
}
.entry-form__label {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 15px;
  color: var(--black);
  line-height: 1.8;
  padding-bottom: 8px;
}
@media print, screen and (min-width: 1025px) {
  .entry-form__label {
    flex: 0 0 262px;
    padding: 30px 20px;
    border-bottom: 1px solid var(--black);
    display: flex;
    align-items: center;
  }
}
@media print, screen and (min-width: 1025px) {
  .entry-form__field {
    flex: 1;
    padding: 30px 20px;
    border-bottom: 1px solid #b4a2a2;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
  }
}
.entry-form__input {
  display: block;
  width: 100%;
  height: 34px;
  background: #f0f0f0;
  border: none;
  padding: 0 8px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 15px;
  color: var(--black);
}
.entry-form__input:focus {
  outline: 2px solid var(--green);
  outline-offset: 0;
}
@media print, screen and (min-width: 1025px) {
  .entry-form__input {
    max-width: 400px;
  }
}
@media print, screen and (min-width: 1025px) {
  .entry-form__input--name {
    max-width: 199px;
  }
}
@media print, screen and (min-width: 1025px) {
  .entry-form__input--zip {
    max-width: 189px;
  }
}
.entry-form__input--date {
  width: 160px;
  padding-right: 4px;
  text-align: left !important;
}
@media print, screen and (min-width: 1025px) {
  .entry-form__input--date {
    width: 180px;
    max-width: 180px;
  }
}
.entry-form__name-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media print, screen and (min-width: 1025px) {
  .entry-form__name-group {
    flex: 1;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 42px;
    align-items: flex-start;
  }
}
.entry-form__name-group > div.mfp_err {
  flex: 0 0 100%;
  order: 10;
  margin-top: 0;
}
.entry-form__name-item {
  display: block;
}
.entry-form__name-item input {
  margin: 8px 0;
}
.entry-form__sub-label {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 15px;
  color: var(--black);
  flex-shrink: 0;
  line-height: 1;
}
.entry-form__radio-group {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 12px;
  align-items: flex-start;
}
@media print, screen and (min-width: 1025px) {
  .entry-form__radio-group {
    flex-direction: row;
    gap: 42px;
    align-items: center;
  }
}
.entry-form__radio-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 15px;
  color: var(--black);
  cursor: pointer;
}
.entry-form__radio-label input[type=radio] {
  width: 20px;
  height: 20px;
  accent-color: var(--green);
  cursor: pointer;
  flex-shrink: 0;
}
.entry-form__date-group {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.entry-form__select {
  display: inline-block;
  background-color: #fff;
  border: 1px solid #999;
  border-radius: 4px;
  padding: 0.5em 3.5em 0.5em 1em;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 15px;
  line-height: 1.5;
  color: var(--black);
  cursor: pointer;
  appearance: none;
  box-sizing: border-box;
  background-image: linear-gradient(45deg, transparent 50%, #333 50%), linear-gradient(135deg, #333 50%, transparent 50%), linear-gradient(to right, #ccc, #ccc);
  background-position: calc(100% - 20px) calc(1em + 2px), calc(100% - 15px) calc(1em + 2px), calc(100% - 2.5em) 0.5em;
  background-size: 5px 5px, 5px 5px, 1px 1.5em;
  background-repeat: no-repeat;
}
.entry-form__select:focus {
  outline: 2px solid var(--green);
  outline-offset: 0;
}
.entry-form__textarea {
  display: block;
  width: 100%;
  height: 120px;
  background: #f0f0f0;
  border: none;
  padding: 8px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 15px;
  color: var(--black);
  resize: vertical;
}
.entry-form__textarea:focus {
  outline: 2px solid var(--green);
  outline-offset: 0;
}
@media print, screen and (min-width: 1025px) {
  .entry-form__textarea {
    max-width: 400px;
    height: 162px;
  }
}
.entry-form div.mfp_err {
  background-image: none;
  padding-left: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  color: #e00;
  margin-top: 4px;
  flex-basis: 100%;
}
.entry-form__submit-wrap {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}
@media print, screen and (min-width: 1025px) {
  .entry-form__submit-wrap {
    margin-top: 48px;
  }
}
.entry-form__submit {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 88%;
  max-width: 426px;
  min-height: 72px;
  background: #fff;
  border: 3px solid var(--green);
  border-radius: 9999px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--green);
  line-height: 1.75;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}
@media print, screen and (min-width: 1025px) {
  .entry-form__submit {
    min-height: 96px;
  }
}
.entry-form__submit:hover, .entry-form__submit.mfp_element_submit:hover {
  background: var(--green);
  color: #fff;
}
.entry-form__submit.mfp_element_submit {
  background: #fff;
  border: 3px solid var(--green);
  border-radius: 9999px;
  color: var(--green);
  width: 88%;
  max-width: 426px;
  min-height: 72px;
  font-weight: 700;
  font-size: 16px;
}
@media print, screen and (min-width: 1025px) {
  .entry-form__submit.mfp_element_submit {
    min-height: 96px;
  }
}

div#mfp_phase_confirm {
  width: 88%;
  margin: 60px auto 80px;
  max-width: 940px;
}
@media print, screen and (min-width: 1025px) {
  div#mfp_phase_confirm {
    margin: 80px auto 100px;
  }
}
div#mfp_phase_confirm h4 {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  color: var(--black);
  padding: 0;
  margin-bottom: 40px;
  line-height: 1.4;
}
@media print, screen and (min-width: 1025px) {
  div#mfp_phase_confirm h4 {
    font-size: 24px;
    margin-bottom: 48px;
  }
}

table#mfp_confirm_table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}
table#mfp_confirm_table tr.mfp_colored,
table#mfp_confirm_table tr.mfp_achroma {
  display: block;
  border-bottom: 1px solid #b4a2a2;
  padding: 16px 0;
}
@media print, screen and (min-width: 1025px) {
  table#mfp_confirm_table tr.mfp_colored,
  table#mfp_confirm_table tr.mfp_achroma {
    display: flex;
    align-items: stretch;
    border-bottom: none;
    padding: 0;
  }
}
table#mfp_confirm_table tr th {
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 15px;
  color: var(--black);
  line-height: 1.8;
  padding: 0 0 4px;
  text-align: left;
}
@media print, screen and (min-width: 1025px) {
  table#mfp_confirm_table tr th {
    flex: 0 0 262px;
    display: flex;
    align-items: center;
    padding: 30px 20px;
    border-bottom: 1px solid var(--black);
    width: auto;
  }
}
table#mfp_confirm_table tr td {
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 15px;
  color: var(--black);
  line-height: 1.8;
  word-break: break-all;
  padding: 0;
}
@media print, screen and (min-width: 1025px) {
  table#mfp_confirm_table tr td {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 30px 20px;
    border-bottom: 1px solid #b4a2a2;
  }
}

div.mfp_buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  padding: 40px 0 0;
  width: auto;
  margin: 0;
}
@media print, screen and (min-width: 1025px) {
  div.mfp_buttons {
    flex-direction: row;
    justify-content: center;
    gap: 24px;
    padding-top: 48px;
  }
}
div.mfp_buttons #mfp_button_send {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 88%;
  max-width: 426px;
  min-height: 72px;
  background: #fff;
  border: 3px solid var(--green);
  border-radius: 9999px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--green);
  line-height: 1.75;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}
@media print, screen and (min-width: 1025px) {
  div.mfp_buttons #mfp_button_send {
    width: 300px;
    min-height: 70px;
  }
}
div.mfp_buttons #mfp_button_send:hover {
  background: var(--green);
  color: #fff;
}
div.mfp_buttons #mfp_button_cancel {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 88%;
  max-width: 426px;
  min-height: 72px;
  background: #e9e7e7;
  border: none;
  border-radius: 9999px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--black);
  line-height: 1.75;
  cursor: pointer;
  transition: background 0.2s ease;
}
@media print, screen and (min-width: 1025px) {
  div.mfp_buttons #mfp_button_cancel {
    width: 300px;
    min-height: 70px;
  }
}
div.mfp_buttons #mfp_button_cancel:hover {
  background: #d5d3d3;
}

.entry-thanks {
  margin-top: 60px;
  padding-bottom: 80px;
}
@media print, screen and (min-width: 1025px) {
  .entry-thanks {
    margin-top: 80px;
    padding-bottom: 100px;
  }
}
.entry-thanks__inner {
  width: 88%;
  margin: 0 auto;
  max-width: 940px;
}
.entry-thanks__text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 15px;
  color: var(--black);
  line-height: 2;
  text-align: left;
}
@media print, screen and (min-width: 1025px) {
  .entry-thanks__text {
    text-align: center;
    font-size: 16px;
  }
}
.entry-thanks__btn-wrap {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}
@media print, screen and (min-width: 1025px) {
  .entry-thanks__btn-wrap {
    margin-top: 48px;
  }
}
.entry-thanks__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 88%;
  max-width: 426px;
  min-height: 72px;
  background: #fff;
  border: 3px solid var(--green);
  border-radius: 9999px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--green);
  line-height: 1.75;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}
@media print, screen and (min-width: 1025px) {
  .entry-thanks__btn {
    min-height: 96px;
  }
}
.entry-thanks__btn:hover {
  background: var(--green);
  color: #fff;
}

.prefcodeWrapper {
  position: relative;
}

.prefcodeResult,
#mfp_element_10_result {
  position: absolute;
  z-index: 100;
  background: #fff;
  border: 1px solid #ccc;
  min-width: 200px;
  width: auto;
  white-space: nowrap;
  padding: 4px 0;
}
.prefcodeResult div,
#mfp_element_10_result div {
  padding: 6px 12px;
  cursor: pointer;
}
.prefcodeResult div:hover,
#mfp_element_10_result div:hover {
  background: var(--bg);
}

body[data-page=contact] .site-header {
  position: relative;
  background: #fff;
  z-index: 400;
}

.contact-lead {
  width: 88%;
  margin: 24px auto 0;
  max-width: 552px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 15px;
  color: var(--black);
  line-height: 1.8;
  text-align: left;
}
@media print, screen and (min-width: 1025px) {
  .contact-lead {
    text-align: center;
    margin-top: 32px;
  }
}
.contact-lead a {
  text-decoration: underline;
  color: var(--black);
}
.contact-lead a:hover {
  opacity: 0.6;
}

body[data-page=privacy] .site-header {
  position: relative;
  background: #fff;
  z-index: 400;
}

.privacy-page-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 40px;
}
.privacy-page-title__en {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: 36px;
  color: var(--black);
  line-height: 1;
}
@media print, screen and (min-width: 768px) {
  .privacy-page-title__en {
    font-size: 48px;
  }
}
@media print, screen and (min-width: 1025px) {
  .privacy-page-title__en {
    font-size: 60px;
  }
}
.privacy-page-title__ja {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--black);
  line-height: 1.6;
  margin-top: 4px;
}
@media print, screen and (min-width: 1025px) {
  .privacy-page-title__ja {
    font-size: 20px;
  }
}

.privacy {
  margin-top: 48px;
  padding-bottom: 80px;
}
@media print, screen and (min-width: 1025px) {
  .privacy {
    margin-top: 64px;
    padding-bottom: 120px;
  }
}
.privacy__inner {
  width: 88%;
  margin: 0 auto;
  max-width: 900px;
}
.privacy__lead {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: var(--black);
  line-height: 1.9;
}
@media print, screen and (min-width: 1025px) {
  .privacy__lead {
    font-size: 15px;
  }
}
.privacy__section {
  margin-top: 40px;
}
@media print, screen and (min-width: 1025px) {
  .privacy__section {
    margin-top: 48px;
  }
}
.privacy__heading {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--black);
  line-height: 1.6;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--green);
  margin-bottom: 16px;
}
@media print, screen and (min-width: 1025px) {
  .privacy__heading {
    font-size: 18px;
    margin-bottom: 20px;
  }
}
.privacy__text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: var(--black);
  line-height: 1.9;
}
@media print, screen and (min-width: 1025px) {
  .privacy__text {
    font-size: 15px;
  }
}
.privacy__text + .privacy__text {
  margin-top: 12px;
}
.privacy__list {
  margin-top: 12px;
  padding-left: 1em;
  list-style: disc;
}
.privacy__list li {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: var(--black);
  line-height: 1.9;
}
@media print, screen and (min-width: 1025px) {
  .privacy__list li {
    font-size: 15px;
  }
}
.privacy__list li + li {
  margin-top: 4px;
}
.privacy__list--info {
  list-style: none;
  padding-left: 0;
  margin-top: 16px;
}
.privacy__link {
  color: var(--green);
  text-decoration: underline;
}
.privacy__link:hover {
  opacity: 0.7;
}
.privacy__footer {
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid #b4a2a2;
  text-align: right;
}
@media print, screen and (min-width: 1025px) {
  .privacy__footer {
    margin-top: 72px;
  }
}
.privacy__date {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 13px;
  color: var(--black);
  line-height: 1.8;
}
@media print, screen and (min-width: 1025px) {
  .privacy__date {
    font-size: 14px;
  }
}
.privacy__company {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 13px;
  color: var(--black);
  line-height: 2;
  margin-top: 4px;
}
@media print, screen and (min-width: 1025px) {
  .privacy__company {
    font-size: 14px;
  }
}

body[data-page=news] {
  background-color: #fff;
}

#news-ttl {
  padding-top: 80px;
  text-align: center;
}
#news-ttl > div {
  display: none;
}
#news-ttl h1 {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 0 32px;
  height: auto;
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: 52px;
  color: var(--black);
  line-height: 1;
  letter-spacing: 0;
}
#news-ttl h1 span {
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--black);
  line-height: 1.6;
  margin-top: 8px;
}
@media print, screen and (min-width: 1025px) {
  #news-ttl h1 {
    padding-top: 60px;
    font-size: 70px;
  }
  #news-ttl h1 span {
    font-size: 24px;
  }
}
@media print, screen and (min-width: 1025px) {
  #news-ttl {
    padding-top: 110px;
  }
}

div#blogmain {
  width: 88%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 48px 0 80px;
  overflow: visible;
}
@media print, screen and (min-width: 1025px) {
  div#blogmain {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    padding: 60px 0 100px;
  }
}

div#blogleft {
  float: none;
  width: 100%;
}
@media print, screen and (min-width: 1025px) {
  div#blogleft {
    flex: 1;
    min-width: 0;
  }
}
div#blogleft article {
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid #e0e0e0;
}
div#blogleft article:last-of-type {
  border-bottom: none;
}
div#blogleft figure {
  margin: 20px 0;
}
div#blogleft p {
  font-size: 16px;
  line-height: 1.8;
  margin-top: 16px;
  color: var(--black);
}
div#blogleft p a {
  color: var(--green);
  text-decoration: underline;
}

div.blog-ttl time {
  font-family: "Lato", sans-serif;
  font-size: 14px;
  letter-spacing: 0.05em;
  color: #666;
  margin-right: 8px;
}
div.blog-ttl div.ttl-category {
  display: inline-block;
  font-size: 12px;
  background-color: var(--green);
  color: #fff;
  padding: 3px 10px;
  border-radius: 2px;
  vertical-align: middle;
  margin: 0 0 8px;
  width: auto;
  text-align: center;
  line-height: 1.5;
}
div.blog-ttl h2 {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.6;
  color: var(--black);
  margin: 10px 0 0;
  text-align: left;
}
div.blog-ttl h2 a {
  display: block;
  color: inherit;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
div.blog-ttl h2 a:hover {
  opacity: 0.6;
}
@media print, screen and (min-width: 1025px) {
  div.blog-ttl h2 {
    font-size: 20px;
  }
}

div#blogright {
  float: none;
  width: 100%;
  margin: 0 0 60px;
}
@media print, screen and (min-width: 768px) {
  div#blogright {
    width: 80%;
    margin: 0 auto 60px;
  }
}
@media print, screen and (min-width: 1025px) {
  div#blogright {
    width: 240px;
    flex-shrink: 0;
    margin: 0;
  }
}
div#blogright h3 {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--black);
  border-bottom: 2px solid var(--black);
  padding-bottom: 8px;
  margin-bottom: 0;
}
div#blogright ul {
  margin-bottom: 40px;
  list-style: none;
}
div#blogright li {
  padding: 12px 0;
  border-bottom: 1px solid #e0e0e0;
  line-height: 1.5;
}
div#blogright li a {
  display: block;
  font-size: 14px;
  color: var(--black);
  text-decoration: none;
  transition: opacity 0.2s ease;
}
div#blogright li a:hover {
  opacity: 0.6;
}
div#blogright ul.children {
  padding-left: 12px;
  margin-bottom: 0;
}
div#blogright ul.children li {
  border-bottom: none;
  padding: 6px 0;
}
div#blogright select.minimal {
  display: block;
  width: 100%;
  background-color: #fff;
  border: 1px solid #999;
  border-radius: 4px;
  padding: 0.6em 3.5em 0.6em 1em;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 15px;
  line-height: 1.5;
  color: var(--black);
  cursor: pointer;
  appearance: none;
  box-sizing: border-box;
  background-image: linear-gradient(45deg, transparent 50%, #333 50%), linear-gradient(135deg, #333 50%, transparent 50%), linear-gradient(to right, #ccc, #ccc);
  background-position: calc(100% - 20px) calc(1em + 2px), calc(100% - 15px) calc(1em + 2px), calc(100% - 2.5em) 0.5em;
  background-size: 5px 5px, 5px 5px, 1px 1.5em;
  background-repeat: no-repeat;
  margin-top: 24px;
}
div#blogright select.minimal:focus {
  outline: 2px solid var(--green);
  outline-offset: 0;
}

.pager {
  margin: 48px 0 0;
  display: flex;
  justify-content: center;
  gap: 4px;
}
.pager a.page-numbers,
.pager .current {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-family: "Lato", sans-serif;
  border-radius: 50%;
  border: 1px solid var(--green);
  background-color: var(--green);
  color: #fff;
  text-decoration: none;
  letter-spacing: 0;
  transition: opacity 0.2s ease;
}
.pager a.page-numbers:hover,
.pager .current:hover {
  opacity: 0.7;
}
.pager .current {
  background-color: #fff;
  color: var(--green);
}
.pager span.dots {
  display: flex;
  align-items: center;
  font-size: 14px;
  color: #999;
  padding: 0 4px;
}

a.btn-ichiran {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 264px;
  height: 60px;
  margin: 48px auto 0;
  font-family: "Lato", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--green);
  border: 3px solid var(--green);
  border-radius: 40px;
  background: #fff;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}
a.btn-ichiran:hover {
  background: var(--green);
  color: #fff;
  opacity: 1;
}

div#blogleft .contents h1 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 1.4;
}
div#blogleft .contents h2 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 1.5;
}
div#blogleft .contents h3 {
  font-size: 18px;
  font-weight: 700;
  padding: 10px 0 10px 14px;
  border-left: 4px solid var(--green);
  margin: 40px 0 16px;
}
div#blogleft .contents h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 16px;
}
div#blogleft .contents strong {
  font-weight: 700;
}
div#blogleft .contents ul li {
  list-style-type: disc;
  list-style-position: inside;
  margin-bottom: 12px;
  line-height: 1.7;
  font-size: 15px;
}
div#blogleft .contents ol li {
  list-style-type: decimal;
  margin-left: 20px;
  margin-bottom: 12px;
  font-size: 15px;
}
div#blogleft .contents em {
  font-style: italic;
}

@media (max-width: 767px) {
  #news-ttl h1 {
    font-size: 40px;
  }
  div#blogmain {
    padding: 32px 0 60px;
  }
}

/*# sourceMappingURL=style.css.map */
