@charset "UTF-8";
.scroll-fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.scroll-fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.scroll-fade-in--delay-1 {
  transition-delay: 0.15s;
}
.scroll-fade-in--delay-2 {
  transition-delay: 0.3s;
}
.scroll-fade-in--delay-3 {
  transition-delay: 0.45s;
}
.scroll-fade-in--delay-4 {
  transition-delay: 0.6s;
}
.scroll-fade-in--delay-5 {
  transition-delay: 0.75s;
}

@keyframes heroSlideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes heroSlideFromLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "BIZ UDPGothic", -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  color: #333333;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  background-color: #f6f7f3;
}

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.header {
  background: #ffffff;
  border-bottom: 1px solid #e0e0e0;
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 0;
}
.header__container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
}
@media (min-width: 768px) {
  .header__container {
    padding: 20px 40px;
  }
}
.header__logo {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.header__logo a {
  color: #006637;
}
.header__nav {
  display: block;
}
.header__actions {
  display: flex;
  align-items: center;
  gap: 24px;
}
@media (max-width: 1023px) {
  .header__actions {
    flex-direction: column;
    gap: 12px;
    width: 100%;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid #e0e0e0;
  }
  .header__actions .btn-link,
  .header__actions .btn {
    width: 100%;
    justify-content: center;
    padding: 14px 24px;
  }
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}
@media (max-width: 1023px) {
  .hamburger {
    display: flex;
  }
}
.hamburger__line {
  width: 24px;
  height: 2px;
  background: #333333;
  transition: all 0.3s ease;
}
.menu-open .hamburger__line:nth-child(1) {
  transform: rotate(45deg) translate(4px, 4px);
}
.menu-open .hamburger__line:nth-child(2) {
  opacity: 0;
}
.menu-open .hamburger__line:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

@media (max-width: 1023px) {
  .mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background: #ffffff;
    transition: right 0.3s ease;
    overflow-y: auto;
    padding: 80px 20px 40px;
    z-index: 1000;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
  }
  .menu-open .mobile-menu {
    right: 0;
  }
}
@media (min-width: 1024px) {
  .mobile-menu {
    display: flex;
    align-items: center;
    gap: 24px;
    flex: 1;
    justify-content: flex-end;
  }
}

body.menu-open {
  overflow: hidden;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 24px;
}
@media (max-width: 1023px) {
  .nav-list {
    flex-direction: column;
    gap: 12px;
  }
}
.nav-list .nav-item {
  position: relative;
}
@media (min-width: 1024px) {
  .nav-list .nav-item.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}
.nav-list .nav-link {
  font-size: 14px;
  font-weight: 700;
  transition: color 0.3s;
  display: block;
  padding: 10px 0;
}
@media (max-width: 1023px) {
  .nav-list .nav-link {
    padding: 8px 12px;
    font-size: 14px;
    font-weight: 600;
    background: #e8f5e9;
    border-radius: 6px;
  }
}
.nav-list .nav-link:hover, .nav-list .nav-link.active {
  color: #006637;
}

.dropdown-menu {
  position: absolute;
  top: 80%;
  left: 0;
  transform: translateY(-10px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.15s ease;
  z-index: 1000;
  margin-top: 10px;
  min-width: 280px;
}
@media (max-width: 1023px) {
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    margin-top: 6px;
    min-width: auto;
  }
}
.dropdown-menu::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 20px;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid #ffffff;
  filter: drop-shadow(0 -2px 2px rgba(0, 0, 0, 0.05));
}
@media (max-width: 1023px) {
  .dropdown-menu::before {
    display: none;
  }
}
.dropdown-menu .dropdown-content {
  background: #ffffff;
  border-radius: 4px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  padding: 8px 0;
  backdrop-filter: blur(10px);
}
@media (max-width: 1023px) {
  .dropdown-menu .dropdown-content {
    box-shadow: none;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
  }
}
.dropdown-menu .dropdown-item {
  display: flex;
  flex-direction: column;
  padding: 4px 8px;
  border-radius: 4px;
  transition: all 0.12s ease;
  border-left: 3px solid transparent;
}
@media (max-width: 1023px) {
  .dropdown-menu .dropdown-item {
    padding: 8px 10px;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    margin-bottom: 0;
  }
  .dropdown-menu .dropdown-item:last-child {
    margin-bottom: 0;
  }
}
.dropdown-menu .dropdown-item:hover {
  background: linear-gradient(90deg, rgba(0, 102, 55, 0.08) 0%, rgba(0, 102, 55, 0.02) 100%);
  transform: translateX(4px);
}
.dropdown-menu .dropdown-item:hover .dropdown-item__title {
  color: #006637;
}
.dropdown-menu .dropdown-item__title {
  font-size: 14px;
  font-weight: 700;
  color: #333333;
  transition: color 0.2s ease;
}
@media (max-width: 1023px) {
  .dropdown-menu .dropdown-item__title {
    font-size: 12px;
    font-weight: 600;
  }
}
.dropdown-menu .dropdown-item__desc {
  font-size: 9px;
  color: #666666;
  font-weight: 400;
  letter-spacing: 0.02em;
}
@media (max-width: 1023px) {
  .dropdown-menu .dropdown-item__desc {
    display: none;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 24px;
  border-radius: 24px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s;
  white-space: nowrap;
}
.btn--primary {
  background: #006637;
  color: #ffffff;
}
.btn--primary:hover {
  background: rgb(0, 51, 27.5);
}
.btn--secondary {
  background: #e67e3c;
  color: #ffffff;
}
.btn--secondary:hover {
  background: rgb(211.8409090909, 98.8590909091, 27.1590909091);
}
.btn--large {
  padding: 14px 32px;
  font-size: 16px;
}
.btn__icon {
  margin-left: 8px;
  width: 16px;
  height: 16px;
  display: inline-block;
}
.btn__icon::after {
  content: "→";
}

.btn-link {
  font-size: 14px;
  font-weight: 700;
  color: #333333;
  transition: color 0.3s;
}
.btn-link:hover {
  color: #006637;
}
.btn-link--large {
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.btn-link__icon::after {
  content: "→";
  color: #006637;
}

.breadcrumb {
  padding: 0;
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateY(30px);
  animation: heroSlideUp 0.6s ease-out forwards;
}
.breadcrumb__container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (min-width: 768px) {
  .breadcrumb__container {
    padding: 20px 40px;
  }
}
.breadcrumb__list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  list-style: none;
  gap: 4px 8px;
  font-size: 14px;
}
.breadcrumb__item {
  display: flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.8);
}
.breadcrumb__item:not(:last-child)::after {
  content: "›";
  margin-left: 8px;
  color: rgba(255, 255, 255, 0.8);
}
.breadcrumb__item a {
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.3s;
}
.breadcrumb__item a:hover {
  color: #ffffff;
}
.breadcrumb__item--current {
  color: #ffffff;
  font-weight: 600;
}

.hero {
  background-image: url("../../images/content-head-frame.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
  padding: 25px 0;
}
.hero__container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
@media (min-width: 768px) {
  .hero__container {
    padding: 20px 40px;
  }
}
@media (min-width: 768px) {
  .hero__container {
    grid-template-columns: 1fr 1fr;
  }
}
.hero__content {
  color: #ffffff;
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateY(30px);
  animation: heroSlideUp 0.6s ease-out forwards;
}
.hero__label {
  display: inline-block;
  background: #ffffff;
  color: #006637;
  padding: 4px 16px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 16px;
}
@media (max-width: 767px) {
  .hero__label {
    margin-top: 16px;
  }
}
.hero__title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.3;
}
@media (min-width: 768px) {
  .hero__title {
    font-size: 48px;
  }
}
.hero__text {
  font-size: 14px;
  line-height: 1.8;
  opacity: 0.95;
}
.hero__image {
  position: relative;
  z-index: 1;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  opacity: 0;
  transform: translateY(30px);
  animation: heroSlideUp 0.6s ease-out forwards;
}
.hero__image img {
  width: 100%;
  height: auto;
}

.footer {
  background: #ffffff;
  padding: 60px 0 20px;
}
.footer__container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (min-width: 768px) {
  .footer__container {
    padding: 20px 40px;
  }
}
.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 60px;
}
@media (min-width: 768px) {
  .footer__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.footer__column h3 {
  margin-bottom: 16px;
}
.footer__heading {
  font-size: 16px;
  font-weight: 700;
  border-left: 5px solid #006637;
  padding-left: 10px;
  color: #333333;
  margin-top: 24px;
}
.footer__heading:first-child {
  margin-top: 0;
}
.footer__list {
  list-style: none;
}
.footer__list li {
  margin-bottom: 0;
}
.footer__list a {
  font-size: 14px;
  color: #000;
  transition: color 0.3s;
}
.footer__list a:hover {
  color: #006637;
}
.footer__cta {
  padding: 0;
  margin-bottom: 40px;
}
.footer__buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
  background-color: #F6F7F3;
  padding: 20px;
  border-radius: 10px;
  border: 1px solid #e1e1e1;
}
@media (min-width: 768px) {
  .footer__buttons {
    flex-direction: row;
    align-items: center;
    gap: 0;
  }
}

.btn--contact {
  background: #006637;
  color: #ffffff;
  border-radius: 50px;
  padding: 16px 40px;
  font-size: 16px;
  position: relative;
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (min-width: 768px) {
  .btn--contact {
    border-right: 1px solid #e1e1e1;
    margin-right: 24px;
  }
}
@media (max-width: 767px) {
  .btn--contact {
    width: 100%;
  }
}
.btn--contact .btn__text {
  flex: 1;
  text-align: center;
}
.btn--contact p {
  width: 32px;
  height: 32px;
  background: #ffffff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin: 0;
  padding: 4px;
}
.btn--contact .btn__icon--arrow {
  width: 24px;
  height: 24px;
  background: #ffffff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.btn--contact .btn__icon--arrow::after {
  content: "→";
  color: #006637;
  font-weight: 300;
  font-size: 14px;
}
.btn--contact:hover {
  background: rgb(0, 76.5, 41.25);
}

.footer__recruit-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
  align-items: flex-start;
  text-decoration: none;
  transition: opacity 0.3s;
}
@media (max-width: 767px) {
  .footer__recruit-text {
    border-top: 1px solid rgba(0, 102, 55, 0.3);
    padding-top: 15px;
  }
}
.footer__recruit-text:hover {
  opacity: 0.8;
}
.footer__recruit-text:hover .footer__recruit-arrow {
  background: rgb(0, 51, 27.5);
}

.footer__recruit-label {
  background: transparent;
  color: #006637;
  border: 1px solid #006637;
  border-radius: 20px;
  padding: 4px 12px;
  font-size: 11px;
  font-weight: 400;
  white-space: nowrap;
}

.footer__recruit-link {
  color: #006637;
  font-size: 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.footer__recruit-link .footer__recruit-text-content {
  flex: 1;
}
.footer__recruit-link .footer__recruit-arrow {
  width: 24px;
  height: 24px;
  background: #006637;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 300;
  font-size: 14px;
  flex-shrink: 0;
  transition: background 0.3s;
  position: relative;
  top: -15px;
  left: 10px;
}

@media (max-width: 767px) {
  .footer__cta .footer__buttons .footer__recruit-text {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
  }
}
.footer__bottom {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-bottom: 24px;
  margin-bottom: 24px;
}
.footer__links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer__links a {
  font-size: 14px;
  color: #333;
  transition: color 0.3s;
}
.footer__links a:hover {
  color: #006637;
}
.footer__divider {
  display: flex;
  align-items: center;
  gap: 0;
  width: 100%;
  margin: 12px 0;
}
.footer__divider-dot {
  width: 8px;
  height: 8px;
  background: #006637;
  border-radius: 50%;
  flex-shrink: 0;
}
.footer__divider-line {
  flex: 1;
  height: 1px;
  background: #006637;
}
.footer__social-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
}
.footer__social {
  display: flex;
  align-items: center;
  gap: 4px;
}
.footer__social a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}
.footer__social a img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}
.footer__social a:hover {
  background: #006637;
  color: #ffffff;
}
.footer__copyright {
  text-align: center;
}
.footer__copyright p {
  font-size: 12px;
  color: #666666;
}

.section-title-wrapper {
  margin: 0 20px 40px;
  max-width: 900px;
  background: linear-gradient(90deg, #2d5a3d 0%, rgba(0, 102, 55, 0.7) 50%, rgba(232, 245, 233, 0.3) 100%);
  padding: 15px 20px;
  text-align: left;
  border-radius: 12px;
  position: relative;
  border-left: 5px solid #e67e3c;
}
@media (min-width: 768px) {
  .section-title-wrapper {
    margin: 0 auto 40px;
    padding: 15px 40px;
  }
}
.section-title-wrapper::before {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  background: #ffffff;
  border-radius: 50%;
  top: 20px;
  left: 25px;
}
@media (max-width: 1023px) {
  .section-title-wrapper::before {
    top: 16px;
    right: 25px;
  }
}
.section-title-wrapper::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  background: #ffffff;
  border-radius: 50%;
  bottom: 20px;
  left: 25px;
}
@media (max-width: 1023px) {
  .section-title-wrapper::after {
    bottom: 16px;
    left: 25px;
  }
}
.section-title-wrapper .section-title {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  margin: 0;
  padding-left: 30px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  position: relative;
}
.section-title-wrapper .section-title::before {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  background: #006637;
  border-radius: 50%;
  top: 5px;
  right: -20px;
}
@media (max-width: 1023px) {
  .section-title-wrapper .section-title::before {
    top: 1px;
    right: 0px;
  }
}
.section-title-wrapper .section-title::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  background: #006637;
  border-radius: 50%;
  bottom: 2px;
  right: -20px;
}
@media (max-width: 1023px) {
  .section-title-wrapper .section-title::after {
    bottom: 1px;
    right: 0px;
  }
}
@media (min-width: 768px) {
  .section-title-wrapper .section-title {
    font-size: 28px;
  }
}

.dotted-section-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 40px;
  font-size: 22px;
  font-weight: 700;
  color: #333333;
  position: relative;
}
.dotted-section-title::before, .dotted-section-title::after {
  content: "";
  width: 8px;
  height: 8px;
  background: #006637;
  border-radius: 50%;
}
@media (min-width: 768px) {
  .dotted-section-title {
    font-size: 26px;
    gap: 20px;
  }
  .dotted-section-title::before, .dotted-section-title::after {
    width: 10px;
    height: 10px;
  }
}

.heading-with-line {
  font-size: 18px;
  font-weight: 600;
  color: #333333;
  display: flex;
  align-items: center;
  position: relative;
  background-image: linear-gradient(to right, #006637, #006637);
  background-size: 100% 1px;
  background-position: center;
  background-repeat: no-repeat;
}
.heading-with-line::before {
  content: "";
  width: 8px;
  height: 8px;
  background-color: #006637;
  border-radius: 50%;
  margin-right: 12px;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}
.heading-with-line::after {
  content: "";
  width: 8px;
  height: 8px;
  background-color: #006637;
  border-radius: 50%;
  margin-left: auto;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}
.heading-with-line > span {
  background-color: #f6f7f3;
  padding: 0 20px;
  position: relative;
  z-index: 2;
  margin-left: -12px;
}
@media (min-width: 768px) {
  .heading-with-line {
    font-size: 20px;
  }
}

.contact-wrap {
  background-color: #f6f7f3;
  padding: 60px 40px;
}
@media (max-width: 1023px) {
  .contact-wrap {
    padding: 60px 20px;
  }
}

.contact {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 30px;
  border-radius: 20px;
  background-image: url("../../images/contact-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
}
@media (max-width: 767px) {
  .contact {
    padding: 20px;
  }
}
.contact__container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
  padding: 20px 0;
}
@media (min-width: 768px) {
  .contact__container {
    padding: 20px 40px;
  }
}
.contact__card {
  background: #ffffff;
  border-radius: 16px;
  padding: 40px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}
@media (min-width: 768px) {
  .contact__card {
    grid-template-columns: 250px 1fr;
    padding: 40px;
  }
}
@media (max-width: 1023px) {
  .contact__card {
    display: block;
    padding: 30px 20px;
  }
}
.contact__image {
  width: 100%;
  max-width: 250px;
  margin: 0 auto;
}
.contact__image img {
  width: 100%;
  height: auto;
}
.contact__label {
  display: inline-block;
  background: #006637;
  color: #ffffff;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 200;
  margin-bottom: 12px;
}
@media (max-width: 1023px) {
  .contact__label {
    margin-top: 12px;
  }
}
.contact__title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #2d5a3d;
}
@media (min-width: 768px) {
  .contact__title {
    font-size: 32px;
  }
}
.contact__text {
  font-size: 14px;
  font-weight: bold;
  line-height: 1.8;
  color: #2d5a3d;
  margin-bottom: 32px;
}
.contact__actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background-color: #f6f7f3;
  padding: 25px;
  border-radius: 20px;
  border: 1px solid #e8f5e9;
}
@media (min-width: 768px) {
  .contact__actions {
    flex-direction: row;
    align-items: center;
  }
}
.contact__actions .btn--contact {
  width: 40%;
}
@media (max-width: 1023px) {
  .contact__actions .btn--contact {
    width: 100%;
  }
}
.contact__actions .btn--contact p {
  margin-left: 15px;
}
